diff --git a/src/grammar/flink/FlinkSqlLexer.g4 b/src/grammar/flink/FlinkSqlLexer.g4 index 0b1148e7..080187d5 100644 --- a/src/grammar/flink/FlinkSqlLexer.g4 +++ b/src/grammar/flink/FlinkSqlLexer.g4 @@ -171,6 +171,7 @@ KW_FILTER : 'FILTER'; KW_FIRST_VALUE : 'FIRST_VALUE'; KW_FLOAT : 'FLOAT'; KW_FLOOR : 'FLOOR'; +KW_FOLLOWING : 'FOLLOWING'; KW_FOR : 'FOR'; KW_FOREIGN : 'FOREIGN'; KW_FRAME_ROW : 'FRAME_ROW'; @@ -305,6 +306,7 @@ KW_PERCENTILE_DISC : 'PERCENTILE_DISC'; KW_PERCENT_RANK : 'PERCENT_RANK'; KW_PERIOD : 'PERIOD'; KW_PERMUTE : 'PERMUTE'; +KW_RETURNING : 'RETURNING'; KW_PIVOT : 'PIVOT'; KW_PORTION : 'PORTION'; KW_POSITION : 'POSITION'; @@ -428,6 +430,7 @@ KW_TRUNCATE : 'TRUNCATE'; KW_TRY_CAST : 'TRY_CAST'; KW_TUESDAY : 'TUESDAY'; KW_UESCAPE : 'UESCAPE'; +KW_UNBOUNDED : 'UNBOUNDED'; KW_UNION : 'UNION'; KW_UNIQUE : 'UNIQUE'; KW_UNKNOWN : 'UNKNOWN'; diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index b9689253..955de8ac 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -496,8 +496,8 @@ projectItemDefinition ; overWindowItem - : primaryExpression KW_OVER windowSpec KW_AS identifier - | primaryExpression KW_OVER errorCapturingIdentifier KW_AS identifier + : primaryExpression KW_OVER windowSpec (KW_AS identifier)? + | primaryExpression KW_OVER errorCapturingIdentifier (KW_AS identifier)? ; fromClause @@ -644,7 +644,9 @@ orderByClause ; orderItemDefinition - : columnName ordering=(KW_ASC | KW_DESC)? (KW_NULLS nullOrder=(KW_LAST | KW_FIRST))? + : (columnName | valueExpression) ordering=(KW_ASC | KW_DESC)? ( + KW_NULLS nullOrder=(KW_LAST | KW_FIRST) + )? ; limitClause @@ -694,6 +696,7 @@ patternVariablesDefinition windowFrame : KW_RANGE KW_BETWEEN timeIntervalExpression frameBound + | (KW_ROWS | KW_RANGE) KW_BETWEEN frameStart KW_AND frameEnd | KW_ROWS KW_BETWEEN DIG_LITERAL frameBound ; @@ -701,6 +704,18 @@ frameBound : KW_PRECEDING KW_AND KW_CURRENT KW_ROW ; +frameStart + : KW_UNBOUNDED KW_PRECEDING + | DIG_LITERAL KW_PRECEDING + | KW_CURRENT KW_ROW + ; + +frameEnd + : KW_CURRENT KW_ROW + | DIG_LITERAL KW_FOLLOWING + | KW_UNBOUNDED KW_FOLLOWING + ; + withinClause : KW_WITHIN timeIntervalExpression ; @@ -774,11 +789,12 @@ primaryExpression | functionCallExpression # functionCall // | identifier '->' expression #lambda // | '(' identifier (',' identifier)+ ')' '->' expression #lambda - | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript - | columnNamePath # columnReference - | dereferenceDefinition # dereference - | LR_BRACKET expression RR_BRACKET # parenthesizedExpression - // | EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET #extract + | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript + | columnNamePath # columnReference + | dereferenceDefinition # dereference + | LR_BRACKET expression RR_BRACKET # parenthesizedExpression + | KW_EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET # extract + | jsonValueExpression # jsonValue // | (SUBSTR | SUBSTRING) LR_BRACKET str=valueExpression (KW_FROM | COMMA) pos=valueExpression // ((KW_FOR | COMMA) len=valueExpression)? RR_BRACKET #substring // | TRIM LR_BRACKET trimOption=(BOTH | LEADING | TRAILING)? (trimStr=valueExpression)? @@ -787,6 +803,10 @@ primaryExpression // KW_FROM position=valueExpression (KW_FOR length=valueExpression)? RR_BRACKET #overlay ; +jsonValueExpression + : KW_JSON_VALUE LR_BRACKET expression COMMA stringLiteral (KW_RETURNING columnType)? RR_BRACKET + ; + functionNameCreate : uid ; diff --git a/src/lib/flink/FlinkSqlLexer.interp b/src/lib/flink/FlinkSqlLexer.interp index 60885dd9..71a5ae89 100644 --- a/src/lib/flink/FlinkSqlLexer.interp +++ b/src/lib/flink/FlinkSqlLexer.interp @@ -145,6 +145,7 @@ null 'FIRST_VALUE' 'FLOAT' 'FLOOR' +'FOLLOWING' 'FOR' 'FOREIGN' 'FRAME_ROW' @@ -279,6 +280,7 @@ null 'PERCENT_RANK' 'PERIOD' 'PERMUTE' +'RETURNING' 'PIVOT' 'PORTION' 'POSITION' @@ -402,6 +404,7 @@ null 'TRY_CAST' 'TUESDAY' 'UESCAPE' +'UNBOUNDED' 'UNION' 'UNIQUE' 'UNKNOWN' @@ -690,6 +693,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -824,6 +828,7 @@ KW_PERCENTILE_DISC KW_PERCENT_RANK KW_PERIOD KW_PERMUTE +KW_RETURNING KW_PIVOT KW_PORTION KW_POSITION @@ -947,6 +952,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1234,6 +1240,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -1368,6 +1375,7 @@ KW_PERCENTILE_DISC KW_PERCENT_RANK KW_PERIOD KW_PERMUTE +KW_RETURNING KW_PIVOT KW_PORTION KW_POSITION @@ -1491,6 +1499,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1649,4 +1658,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 542, 5507, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1112, 8, 1, 10, 1, 12, 1, 1115, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 1125, 8, 2, 1, 2, 5, 2, 1128, 8, 2, 10, 2, 12, 2, 1131, 9, 2, 1, 2, 3, 2, 1134, 8, 2, 1, 2, 1, 2, 3, 2, 1138, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 3, 2, 1148, 8, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 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, 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, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 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, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 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, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 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, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 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, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 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, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 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, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 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, 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, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 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, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 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, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 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, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 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, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 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, 122, 1, 122, 1, 122, 1, 122, 1, 122, 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, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 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, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 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, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 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, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 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, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 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, 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, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 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, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 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, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 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, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 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, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 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, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 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, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 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, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 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, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 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, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 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, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 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, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 1, 533, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 537, 3, 537, 5361, 8, 537, 1, 538, 4, 538, 5364, 8, 538, 11, 538, 12, 538, 5365, 1, 539, 4, 539, 5369, 8, 539, 11, 539, 12, 539, 5370, 3, 539, 5373, 8, 539, 1, 539, 1, 539, 4, 539, 5377, 8, 539, 11, 539, 12, 539, 5378, 1, 539, 4, 539, 5382, 8, 539, 11, 539, 12, 539, 5383, 1, 539, 1, 539, 1, 539, 1, 539, 4, 539, 5390, 8, 539, 11, 539, 12, 539, 5391, 3, 539, 5394, 8, 539, 1, 539, 1, 539, 4, 539, 5398, 8, 539, 11, 539, 12, 539, 5399, 1, 539, 1, 539, 1, 539, 4, 539, 5405, 8, 539, 11, 539, 12, 539, 5406, 1, 539, 1, 539, 3, 539, 5411, 8, 539, 1, 540, 1, 540, 1, 541, 1, 541, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 1, 542, 5, 542, 5423, 8, 542, 10, 542, 12, 542, 5426, 9, 542, 1, 542, 1, 542, 1, 543, 1, 543, 3, 543, 5432, 8, 543, 1, 543, 4, 543, 5435, 8, 543, 11, 543, 12, 543, 5436, 1, 544, 5, 544, 5440, 8, 544, 10, 544, 12, 544, 5443, 9, 544, 1, 544, 4, 544, 5446, 8, 544, 11, 544, 12, 544, 5447, 1, 544, 5, 544, 5451, 8, 544, 10, 544, 12, 544, 5454, 9, 544, 1, 545, 1, 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 1, 547, 5, 547, 5466, 8, 547, 10, 547, 12, 547, 5469, 9, 547, 1, 547, 1, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 5, 548, 5479, 8, 548, 10, 548, 12, 548, 5482, 9, 548, 1, 548, 1, 548, 1, 549, 1, 549, 1, 549, 4, 549, 5489, 8, 549, 11, 549, 12, 549, 5490, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 5, 550, 5501, 8, 550, 10, 550, 12, 550, 5504, 9, 550, 1, 550, 1, 550, 3, 1113, 5441, 5447, 0, 551, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, 1055, 528, 1057, 529, 1059, 530, 1061, 531, 1063, 532, 1065, 533, 1067, 534, 1069, 535, 1071, 536, 1073, 537, 1075, 538, 1077, 539, 1079, 540, 1081, 541, 1083, 542, 1085, 0, 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1, 0, 37, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 83, 83, 115, 115, 2, 0, 76, 76, 108, 108, 2, 0, 79, 79, 111, 111, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 87, 87, 119, 119, 2, 0, 82, 82, 114, 114, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 71, 71, 103, 103, 2, 0, 77, 77, 109, 109, 2, 0, 88, 88, 120, 120, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 70, 70, 102, 102, 2, 0, 80, 80, 112, 112, 2, 0, 75, 75, 107, 107, 2, 0, 81, 81, 113, 113, 2, 0, 74, 74, 106, 106, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 5537, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 1, 1103, 1, 0, 0, 0, 3, 1107, 1, 0, 0, 0, 5, 1149, 1, 0, 0, 0, 7, 1153, 1, 0, 0, 0, 9, 1157, 1, 0, 0, 0, 11, 1161, 1, 0, 0, 0, 13, 1170, 1, 0, 0, 0, 15, 1176, 1, 0, 0, 0, 17, 1182, 1, 0, 0, 0, 19, 1190, 1, 0, 0, 0, 21, 1194, 1, 0, 0, 0, 23, 1198, 1, 0, 0, 0, 25, 1202, 1, 0, 0, 0, 27, 1208, 1, 0, 0, 0, 29, 1218, 1, 0, 0, 0, 31, 1235, 1, 0, 0, 0, 33, 1257, 1, 0, 0, 0, 35, 1260, 1, 0, 0, 0, 37, 1271, 1, 0, 0, 0, 39, 1282, 1, 0, 0, 0, 41, 1285, 1, 0, 0, 0, 43, 1292, 1, 0, 0, 0, 45, 1306, 1, 0, 0, 0, 47, 1310, 1, 0, 0, 0, 49, 1316, 1, 0, 0, 0, 51, 1328, 1, 0, 0, 0, 53, 1344, 1, 0, 0, 0, 55, 1352, 1, 0, 0, 0, 57, 1359, 1, 0, 0, 0, 59, 1366, 1, 0, 0, 0, 61, 1370, 1, 0, 0, 0, 63, 1375, 1, 0, 0, 0, 65, 1383, 1, 0, 0, 0, 67, 1388, 1, 0, 0, 0, 69, 1391, 1, 0, 0, 0, 71, 1397, 1, 0, 0, 0, 73, 1402, 1, 0, 0, 0, 75, 1409, 1, 0, 0, 0, 77, 1421, 1, 0, 0, 0, 79, 1430, 1, 0, 0, 0, 81, 1435, 1, 0, 0, 0, 83, 1440, 1, 0, 0, 0, 85, 1449, 1, 0, 0, 0, 87, 1454, 1, 0, 0, 0, 89, 1462, 1, 0, 0, 0, 91, 1477, 1, 0, 0, 0, 93, 1482, 1, 0, 0, 0, 95, 1492, 1, 0, 0, 0, 97, 1509, 1, 0, 0, 0, 99, 1521, 1, 0, 0, 0, 101, 1527, 1, 0, 0, 0, 103, 1538, 1, 0, 0, 0, 105, 1543, 1, 0, 0, 0, 107, 1549, 1, 0, 0, 0, 109, 1558, 1, 0, 0, 0, 111, 1566, 1, 0, 0, 0, 113, 1574, 1, 0, 0, 0, 115, 1581, 1, 0, 0, 0, 117, 1589, 1, 0, 0, 0, 119, 1597, 1, 0, 0, 0, 121, 1604, 1, 0, 0, 0, 123, 1612, 1, 0, 0, 0, 125, 1622, 1, 0, 0, 0, 127, 1630, 1, 0, 0, 0, 129, 1641, 1, 0, 0, 0, 131, 1650, 1, 0, 0, 0, 133, 1658, 1, 0, 0, 0, 135, 1663, 1, 0, 0, 0, 137, 1677, 1, 0, 0, 0, 139, 1683, 1, 0, 0, 0, 141, 1693, 1, 0, 0, 0, 143, 1704, 1, 0, 0, 0, 145, 1711, 1, 0, 0, 0, 147, 1717, 1, 0, 0, 0, 149, 1722, 1, 0, 0, 0, 151, 1732, 1, 0, 0, 0, 153, 1740, 1, 0, 0, 0, 155, 1756, 1, 0, 0, 0, 157, 1769, 1, 0, 0, 0, 159, 1801, 1, 0, 0, 0, 161, 1814, 1, 0, 0, 0, 163, 1827, 1, 0, 0, 0, 165, 1839, 1, 0, 0, 0, 167, 1854, 1, 0, 0, 0, 169, 1867, 1, 0, 0, 0, 171, 1885, 1, 0, 0, 0, 173, 1918, 1, 0, 0, 0, 175, 1931, 1, 0, 0, 0, 177, 1938, 1, 0, 0, 0, 179, 1944, 1, 0, 0, 0, 181, 1954, 1, 0, 0, 0, 183, 1959, 1, 0, 0, 0, 185, 1968, 1, 0, 0, 0, 187, 1982, 1, 0, 0, 0, 189, 1997, 1, 0, 0, 0, 191, 2007, 1, 0, 0, 0, 193, 2018, 1, 0, 0, 0, 195, 2022, 1, 0, 0, 0, 197, 2032, 1, 0, 0, 0, 199, 2042, 1, 0, 0, 0, 201, 2053, 1, 0, 0, 0, 203, 2057, 1, 0, 0, 0, 205, 2065, 1, 0, 0, 0, 207, 2073, 1, 0, 0, 0, 209, 2081, 1, 0, 0, 0, 211, 2088, 1, 0, 0, 0, 213, 2095, 1, 0, 0, 0, 215, 2106, 1, 0, 0, 0, 217, 2112, 1, 0, 0, 0, 219, 2121, 1, 0, 0, 0, 221, 2135, 1, 0, 0, 0, 223, 2144, 1, 0, 0, 0, 225, 2155, 1, 0, 0, 0, 227, 2164, 1, 0, 0, 0, 229, 2168, 1, 0, 0, 0, 231, 2175, 1, 0, 0, 0, 233, 2180, 1, 0, 0, 0, 235, 2188, 1, 0, 0, 0, 237, 2193, 1, 0, 0, 0, 239, 2201, 1, 0, 0, 0, 241, 2206, 1, 0, 0, 0, 243, 2212, 1, 0, 0, 0, 245, 2216, 1, 0, 0, 0, 247, 2226, 1, 0, 0, 0, 249, 2240, 1, 0, 0, 0, 251, 2249, 1, 0, 0, 0, 253, 2256, 1, 0, 0, 0, 255, 2263, 1, 0, 0, 0, 257, 2278, 1, 0, 0, 0, 259, 2284, 1, 0, 0, 0, 261, 2291, 1, 0, 0, 0, 263, 2296, 1, 0, 0, 0, 265, 2304, 1, 0, 0, 0, 267, 2311, 1, 0, 0, 0, 269, 2315, 1, 0, 0, 0, 271, 2323, 1, 0, 0, 0, 273, 2330, 1, 0, 0, 0, 275, 2339, 1, 0, 0, 0, 277, 2348, 1, 0, 0, 0, 279, 2356, 1, 0, 0, 0, 281, 2362, 1, 0, 0, 0, 283, 2368, 1, 0, 0, 0, 285, 2375, 1, 0, 0, 0, 287, 2387, 1, 0, 0, 0, 289, 2393, 1, 0, 0, 0, 291, 2399, 1, 0, 0, 0, 293, 2403, 1, 0, 0, 0, 295, 2411, 1, 0, 0, 0, 297, 2421, 1, 0, 0, 0, 299, 2426, 1, 0, 0, 0, 301, 2433, 1, 0, 0, 0, 303, 2438, 1, 0, 0, 0, 305, 2443, 1, 0, 0, 0, 307, 2452, 1, 0, 0, 0, 309, 2462, 1, 0, 0, 0, 311, 2469, 1, 0, 0, 0, 313, 2473, 1, 0, 0, 0, 315, 2480, 1, 0, 0, 0, 317, 2486, 1, 0, 0, 0, 319, 2492, 1, 0, 0, 0, 321, 2501, 1, 0, 0, 0, 323, 2508, 1, 0, 0, 0, 325, 2521, 1, 0, 0, 0, 327, 2528, 1, 0, 0, 0, 329, 2533, 1, 0, 0, 0, 331, 2538, 1, 0, 0, 0, 333, 2547, 1, 0, 0, 0, 335, 2550, 1, 0, 0, 0, 337, 2556, 1, 0, 0, 0, 339, 2563, 1, 0, 0, 0, 341, 2566, 1, 0, 0, 0, 343, 2574, 1, 0, 0, 0, 345, 2584, 1, 0, 0, 0, 347, 2592, 1, 0, 0, 0, 349, 2598, 1, 0, 0, 0, 351, 2604, 1, 0, 0, 0, 353, 2616, 1, 0, 0, 0, 355, 2623, 1, 0, 0, 0, 357, 2627, 1, 0, 0, 0, 359, 2635, 1, 0, 0, 0, 361, 2645, 1, 0, 0, 0, 363, 2658, 1, 0, 0, 0, 365, 2667, 1, 0, 0, 0, 367, 2672, 1, 0, 0, 0, 369, 2675, 1, 0, 0, 0, 371, 2680, 1, 0, 0, 0, 373, 2685, 1, 0, 0, 0, 375, 2696, 1, 0, 0, 0, 377, 2710, 1, 0, 0, 0, 379, 2730, 1, 0, 0, 0, 381, 2742, 1, 0, 0, 0, 383, 2754, 1, 0, 0, 0, 385, 2769, 1, 0, 0, 0, 387, 2780, 1, 0, 0, 0, 389, 2791, 1, 0, 0, 0, 391, 2795, 1, 0, 0, 0, 393, 2804, 1, 0, 0, 0, 395, 2810, 1, 0, 0, 0, 397, 2821, 1, 0, 0, 0, 399, 2829, 1, 0, 0, 0, 401, 2834, 1, 0, 0, 0, 403, 2842, 1, 0, 0, 0, 405, 2847, 1, 0, 0, 0, 407, 2852, 1, 0, 0, 0, 409, 2863, 1, 0, 0, 0, 411, 2869, 1, 0, 0, 0, 413, 2872, 1, 0, 0, 0, 415, 2878, 1, 0, 0, 0, 417, 2888, 1, 0, 0, 0, 419, 2903, 1, 0, 0, 0, 421, 2909, 1, 0, 0, 0, 423, 2915, 1, 0, 0, 0, 425, 2923, 1, 0, 0, 0, 427, 2936, 1, 0, 0, 0, 429, 2952, 1, 0, 0, 0, 431, 2956, 1, 0, 0, 0, 433, 2965, 1, 0, 0, 0, 435, 2972, 1, 0, 0, 0, 437, 2978, 1, 0, 0, 0, 439, 2987, 1, 0, 0, 0, 441, 2994, 1, 0, 0, 0, 443, 2998, 1, 0, 0, 0, 445, 3004, 1, 0, 0, 0, 447, 3011, 1, 0, 0, 0, 449, 3015, 1, 0, 0, 0, 451, 3024, 1, 0, 0, 0, 453, 3031, 1, 0, 0, 0, 455, 3038, 1, 0, 0, 0, 457, 3046, 1, 0, 0, 0, 459, 3053, 1, 0, 0, 0, 461, 3059, 1, 0, 0, 0, 463, 3064, 1, 0, 0, 0, 465, 3073, 1, 0, 0, 0, 467, 3082, 1, 0, 0, 0, 469, 3090, 1, 0, 0, 0, 471, 3096, 1, 0, 0, 0, 473, 3102, 1, 0, 0, 0, 475, 3106, 1, 0, 0, 0, 477, 3111, 1, 0, 0, 0, 479, 3114, 1, 0, 0, 0, 481, 3119, 1, 0, 0, 0, 483, 3129, 1, 0, 0, 0, 485, 3133, 1, 0, 0, 0, 487, 3143, 1, 0, 0, 0, 489, 3149, 1, 0, 0, 0, 491, 3154, 1, 0, 0, 0, 493, 3161, 1, 0, 0, 0, 495, 3169, 1, 0, 0, 0, 497, 3187, 1, 0, 0, 0, 499, 3200, 1, 0, 0, 0, 501, 3203, 1, 0, 0, 0, 503, 3210, 1, 0, 0, 0, 505, 3214, 1, 0, 0, 0, 507, 3219, 1, 0, 0, 0, 509, 3222, 1, 0, 0, 0, 511, 3226, 1, 0, 0, 0, 513, 3231, 1, 0, 0, 0, 515, 3236, 1, 0, 0, 0, 517, 3239, 1, 0, 0, 0, 519, 3245, 1, 0, 0, 0, 521, 3253, 1, 0, 0, 0, 523, 3257, 1, 0, 0, 0, 525, 3263, 1, 0, 0, 0, 527, 3268, 1, 0, 0, 0, 529, 3277, 1, 0, 0, 0, 531, 3285, 1, 0, 0, 0, 533, 3295, 1, 0, 0, 0, 535, 3307, 1, 0, 0, 0, 537, 3317, 1, 0, 0, 0, 539, 3327, 1, 0, 0, 0, 541, 3339, 1, 0, 0, 0, 543, 3350, 1, 0, 0, 0, 545, 3358, 1, 0, 0, 0, 547, 3362, 1, 0, 0, 0, 549, 3370, 1, 0, 0, 0, 551, 3386, 1, 0, 0, 0, 553, 3402, 1, 0, 0, 0, 555, 3415, 1, 0, 0, 0, 557, 3422, 1, 0, 0, 0, 559, 3430, 1, 0, 0, 0, 561, 3436, 1, 0, 0, 0, 563, 3444, 1, 0, 0, 0, 565, 3453, 1, 0, 0, 0, 567, 3468, 1, 0, 0, 0, 569, 3474, 1, 0, 0, 0, 571, 3483, 1, 0, 0, 0, 573, 3493, 1, 0, 0, 0, 575, 3501, 1, 0, 0, 0, 577, 3506, 1, 0, 0, 0, 579, 3514, 1, 0, 0, 0, 581, 3524, 1, 0, 0, 0, 583, 3532, 1, 0, 0, 0, 585, 3541, 1, 0, 0, 0, 587, 3547, 1, 0, 0, 0, 589, 3552, 1, 0, 0, 0, 591, 3556, 1, 0, 0, 0, 593, 3562, 1, 0, 0, 0, 595, 3567, 1, 0, 0, 0, 597, 3577, 1, 0, 0, 0, 599, 3581, 1, 0, 0, 0, 601, 3592, 1, 0, 0, 0, 603, 3604, 1, 0, 0, 0, 605, 3614, 1, 0, 0, 0, 607, 3624, 1, 0, 0, 0, 609, 3635, 1, 0, 0, 0, 611, 3650, 1, 0, 0, 0, 613, 3658, 1, 0, 0, 0, 615, 3669, 1, 0, 0, 0, 617, 3678, 1, 0, 0, 0, 619, 3687, 1, 0, 0, 0, 621, 3696, 1, 0, 0, 0, 623, 3704, 1, 0, 0, 0, 625, 3711, 1, 0, 0, 0, 627, 3717, 1, 0, 0, 0, 629, 3724, 1, 0, 0, 0, 631, 3731, 1, 0, 0, 0, 633, 3739, 1, 0, 0, 0, 635, 3746, 1, 0, 0, 0, 637, 3752, 1, 0, 0, 0, 639, 3758, 1, 0, 0, 0, 641, 3767, 1, 0, 0, 0, 643, 3774, 1, 0, 0, 0, 645, 3778, 1, 0, 0, 0, 647, 3783, 1, 0, 0, 0, 649, 3794, 1, 0, 0, 0, 651, 3802, 1, 0, 0, 0, 653, 3812, 1, 0, 0, 0, 655, 3824, 1, 0, 0, 0, 657, 3837, 1, 0, 0, 0, 659, 3846, 1, 0, 0, 0, 661, 3856, 1, 0, 0, 0, 663, 3862, 1, 0, 0, 0, 665, 3868, 1, 0, 0, 0, 667, 3875, 1, 0, 0, 0, 669, 3882, 1, 0, 0, 0, 671, 3889, 1, 0, 0, 0, 673, 3894, 1, 0, 0, 0, 675, 3901, 1, 0, 0, 0, 677, 3911, 1, 0, 0, 0, 679, 3921, 1, 0, 0, 0, 681, 3934, 1, 0, 0, 0, 683, 3938, 1, 0, 0, 0, 685, 3943, 1, 0, 0, 0, 687, 3951, 1, 0, 0, 0, 689, 3956, 1, 0, 0, 0, 691, 3965, 1, 0, 0, 0, 693, 3970, 1, 0, 0, 0, 695, 3979, 1, 0, 0, 0, 697, 3992, 1, 0, 0, 0, 699, 3996, 1, 0, 0, 0, 701, 4009, 1, 0, 0, 0, 703, 4018, 1, 0, 0, 0, 705, 4029, 1, 0, 0, 0, 707, 4034, 1, 0, 0, 0, 709, 4040, 1, 0, 0, 0, 711, 4050, 1, 0, 0, 0, 713, 4057, 1, 0, 0, 0, 715, 4068, 1, 0, 0, 0, 717, 4079, 1, 0, 0, 0, 719, 4091, 1, 0, 0, 0, 721, 4098, 1, 0, 0, 0, 723, 4105, 1, 0, 0, 0, 725, 4116, 1, 0, 0, 0, 727, 4128, 1, 0, 0, 0, 729, 4135, 1, 0, 0, 0, 731, 4145, 1, 0, 0, 0, 733, 4161, 1, 0, 0, 0, 735, 4170, 1, 0, 0, 0, 737, 4174, 1, 0, 0, 0, 739, 4181, 1, 0, 0, 0, 741, 4191, 1, 0, 0, 0, 743, 4198, 1, 0, 0, 0, 745, 4210, 1, 0, 0, 0, 747, 4222, 1, 0, 0, 0, 749, 4228, 1, 0, 0, 0, 751, 4235, 1, 0, 0, 0, 753, 4247, 1, 0, 0, 0, 755, 4252, 1, 0, 0, 0, 757, 4261, 1, 0, 0, 0, 759, 4266, 1, 0, 0, 0, 761, 4276, 1, 0, 0, 0, 763, 4291, 1, 0, 0, 0, 765, 4305, 1, 0, 0, 0, 767, 4321, 1, 0, 0, 0, 769, 4335, 1, 0, 0, 0, 771, 4351, 1, 0, 0, 0, 773, 4361, 1, 0, 0, 0, 775, 4372, 1, 0, 0, 0, 777, 4380, 1, 0, 0, 0, 779, 4383, 1, 0, 0, 0, 781, 4392, 1, 0, 0, 0, 783, 4402, 1, 0, 0, 0, 785, 4418, 1, 0, 0, 0, 787, 4430, 1, 0, 0, 0, 789, 4436, 1, 0, 0, 0, 791, 4444, 1, 0, 0, 0, 793, 4449, 1, 0, 0, 0, 795, 4460, 1, 0, 0, 0, 797, 4465, 1, 0, 0, 0, 799, 4474, 1, 0, 0, 0, 801, 4483, 1, 0, 0, 0, 803, 4491, 1, 0, 0, 0, 805, 4499, 1, 0, 0, 0, 807, 4505, 1, 0, 0, 0, 809, 4512, 1, 0, 0, 0, 811, 4520, 1, 0, 0, 0, 813, 4527, 1, 0, 0, 0, 815, 4535, 1, 0, 0, 0, 817, 4542, 1, 0, 0, 0, 819, 4548, 1, 0, 0, 0, 821, 4555, 1, 0, 0, 0, 823, 4559, 1, 0, 0, 0, 825, 4564, 1, 0, 0, 0, 827, 4570, 1, 0, 0, 0, 829, 4576, 1, 0, 0, 0, 831, 4583, 1, 0, 0, 0, 833, 4592, 1, 0, 0, 0, 835, 4602, 1, 0, 0, 0, 837, 4610, 1, 0, 0, 0, 839, 4618, 1, 0, 0, 0, 841, 4626, 1, 0, 0, 0, 843, 4635, 1, 0, 0, 0, 845, 4646, 1, 0, 0, 0, 847, 4652, 1, 0, 0, 0, 849, 4660, 1, 0, 0, 0, 851, 4670, 1, 0, 0, 0, 853, 4681, 1, 0, 0, 0, 855, 4691, 1, 0, 0, 0, 857, 4697, 1, 0, 0, 0, 859, 4702, 1, 0, 0, 0, 861, 4711, 1, 0, 0, 0, 863, 4717, 1, 0, 0, 0, 865, 4730, 1, 0, 0, 0, 867, 4737, 1, 0, 0, 0, 869, 4742, 1, 0, 0, 0, 871, 4749, 1, 0, 0, 0, 873, 4757, 1, 0, 0, 0, 875, 4762, 1, 0, 0, 0, 877, 4766, 1, 0, 0, 0, 879, 4772, 1, 0, 0, 0, 881, 4776, 1, 0, 0, 0, 883, 4784, 1, 0, 0, 0, 885, 4792, 1, 0, 0, 0, 887, 4800, 1, 0, 0, 0, 889, 4807, 1, 0, 0, 0, 891, 4819, 1, 0, 0, 0, 893, 4828, 1, 0, 0, 0, 895, 4833, 1, 0, 0, 0, 897, 4842, 1, 0, 0, 0, 899, 4847, 1, 0, 0, 0, 901, 4854, 1, 0, 0, 0, 903, 4859, 1, 0, 0, 0, 905, 4870, 1, 0, 0, 0, 907, 4874, 1, 0, 0, 0, 909, 4881, 1, 0, 0, 0, 911, 4887, 1, 0, 0, 0, 913, 4897, 1, 0, 0, 0, 915, 4902, 1, 0, 0, 0, 917, 4908, 1, 0, 0, 0, 919, 4918, 1, 0, 0, 0, 921, 4922, 1, 0, 0, 0, 923, 4928, 1, 0, 0, 0, 925, 4935, 1, 0, 0, 0, 927, 4945, 1, 0, 0, 0, 929, 4949, 1, 0, 0, 0, 931, 4954, 1, 0, 0, 0, 933, 4959, 1, 0, 0, 0, 935, 4963, 1, 0, 0, 0, 937, 4968, 1, 0, 0, 0, 939, 4973, 1, 0, 0, 0, 941, 4977, 1, 0, 0, 0, 943, 4989, 1, 0, 0, 0, 945, 5000, 1, 0, 0, 0, 947, 5012, 1, 0, 0, 0, 949, 5020, 1, 0, 0, 0, 951, 5027, 1, 0, 0, 0, 953, 5038, 1, 0, 0, 0, 955, 5044, 1, 0, 0, 0, 957, 5052, 1, 0, 0, 0, 959, 5057, 1, 0, 0, 0, 961, 5062, 1, 0, 0, 0, 963, 5072, 1, 0, 0, 0, 965, 5079, 1, 0, 0, 0, 967, 5095, 1, 0, 0, 0, 969, 5115, 1, 0, 0, 0, 971, 5128, 1, 0, 0, 0, 973, 5139, 1, 0, 0, 0, 975, 5156, 1, 0, 0, 0, 977, 5176, 1, 0, 0, 0, 979, 5184, 1, 0, 0, 0, 981, 5191, 1, 0, 0, 0, 983, 5200, 1, 0, 0, 0, 985, 5208, 1, 0, 0, 0, 987, 5216, 1, 0, 0, 0, 989, 5221, 1, 0, 0, 0, 991, 5226, 1, 0, 0, 0, 993, 5232, 1, 0, 0, 0, 995, 5237, 1, 0, 0, 0, 997, 5247, 1, 0, 0, 0, 999, 5255, 1, 0, 0, 0, 1001, 5262, 1, 0, 0, 0, 1003, 5269, 1, 0, 0, 0, 1005, 5274, 1, 0, 0, 0, 1007, 5279, 1, 0, 0, 0, 1009, 5285, 1, 0, 0, 0, 1011, 5290, 1, 0, 0, 0, 1013, 5292, 1, 0, 0, 0, 1015, 5294, 1, 0, 0, 0, 1017, 5296, 1, 0, 0, 0, 1019, 5298, 1, 0, 0, 0, 1021, 5300, 1, 0, 0, 0, 1023, 5302, 1, 0, 0, 0, 1025, 5304, 1, 0, 0, 0, 1027, 5306, 1, 0, 0, 0, 1029, 5308, 1, 0, 0, 0, 1031, 5310, 1, 0, 0, 0, 1033, 5312, 1, 0, 0, 0, 1035, 5314, 1, 0, 0, 0, 1037, 5316, 1, 0, 0, 0, 1039, 5318, 1, 0, 0, 0, 1041, 5320, 1, 0, 0, 0, 1043, 5322, 1, 0, 0, 0, 1045, 5324, 1, 0, 0, 0, 1047, 5326, 1, 0, 0, 0, 1049, 5328, 1, 0, 0, 0, 1051, 5330, 1, 0, 0, 0, 1053, 5332, 1, 0, 0, 0, 1055, 5334, 1, 0, 0, 0, 1057, 5336, 1, 0, 0, 0, 1059, 5338, 1, 0, 0, 0, 1061, 5340, 1, 0, 0, 0, 1063, 5342, 1, 0, 0, 0, 1065, 5344, 1, 0, 0, 0, 1067, 5347, 1, 0, 0, 0, 1069, 5350, 1, 0, 0, 0, 1071, 5352, 1, 0, 0, 0, 1073, 5354, 1, 0, 0, 0, 1075, 5360, 1, 0, 0, 0, 1077, 5363, 1, 0, 0, 0, 1079, 5410, 1, 0, 0, 0, 1081, 5412, 1, 0, 0, 0, 1083, 5414, 1, 0, 0, 0, 1085, 5416, 1, 0, 0, 0, 1087, 5429, 1, 0, 0, 0, 1089, 5441, 1, 0, 0, 0, 1091, 5455, 1, 0, 0, 0, 1093, 5457, 1, 0, 0, 0, 1095, 5459, 1, 0, 0, 0, 1097, 5472, 1, 0, 0, 0, 1099, 5485, 1, 0, 0, 0, 1101, 5494, 1, 0, 0, 0, 1103, 1104, 7, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 6, 0, 0, 0, 1106, 2, 1, 0, 0, 0, 1107, 1108, 5, 47, 0, 0, 1108, 1109, 5, 42, 0, 0, 1109, 1113, 1, 0, 0, 0, 1110, 1112, 9, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 1115, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1113, 1111, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1116, 1117, 5, 42, 0, 0, 1117, 1118, 5, 47, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 6, 1, 0, 0, 1120, 4, 1, 0, 0, 0, 1121, 1122, 5, 45, 0, 0, 1122, 1125, 5, 45, 0, 0, 1123, 1125, 5, 35, 0, 0, 1124, 1121, 1, 0, 0, 0, 1124, 1123, 1, 0, 0, 0, 1125, 1129, 1, 0, 0, 0, 1126, 1128, 8, 1, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1137, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1134, 5, 13, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1138, 5, 10, 0, 0, 1136, 1138, 5, 0, 0, 1, 1137, 1133, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1150, 1, 0, 0, 0, 1139, 1140, 5, 45, 0, 0, 1140, 1141, 5, 45, 0, 0, 1141, 1147, 1, 0, 0, 0, 1142, 1144, 5, 13, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 5, 10, 0, 0, 1146, 1148, 5, 0, 0, 1, 1147, 1143, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1124, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 6, 2, 0, 0, 1152, 6, 1, 0, 0, 0, 1153, 1154, 7, 2, 0, 0, 1154, 1155, 7, 3, 0, 0, 1155, 1156, 7, 4, 0, 0, 1156, 8, 1, 0, 0, 0, 1157, 1158, 7, 2, 0, 0, 1158, 1159, 7, 5, 0, 0, 1159, 1160, 7, 5, 0, 0, 1160, 10, 1, 0, 0, 0, 1161, 1162, 7, 2, 0, 0, 1162, 1163, 7, 5, 0, 0, 1163, 1164, 7, 5, 0, 0, 1164, 1165, 7, 6, 0, 0, 1165, 1166, 7, 7, 0, 0, 1166, 1167, 7, 2, 0, 0, 1167, 1168, 7, 8, 0, 0, 1168, 1169, 7, 9, 0, 0, 1169, 12, 1, 0, 0, 0, 1170, 1171, 7, 2, 0, 0, 1171, 1172, 7, 5, 0, 0, 1172, 1173, 7, 5, 0, 0, 1173, 1174, 7, 6, 0, 0, 1174, 1175, 7, 10, 0, 0, 1175, 14, 1, 0, 0, 0, 1176, 1177, 7, 2, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 8, 0, 0, 1179, 1180, 7, 9, 0, 0, 1180, 1181, 7, 11, 0, 0, 1181, 16, 1, 0, 0, 0, 1182, 1183, 7, 2, 0, 0, 1183, 1184, 7, 12, 0, 0, 1184, 1185, 7, 2, 0, 0, 1185, 1186, 7, 5, 0, 0, 1186, 1187, 7, 13, 0, 0, 1187, 1188, 7, 14, 0, 0, 1188, 1189, 7, 9, 0, 0, 1189, 18, 1, 0, 0, 0, 1190, 1191, 7, 2, 0, 0, 1191, 1192, 7, 12, 0, 0, 1192, 1193, 7, 15, 0, 0, 1193, 20, 1, 0, 0, 0, 1194, 1195, 7, 2, 0, 0, 1195, 1196, 7, 12, 0, 0, 1196, 1197, 7, 13, 0, 0, 1197, 22, 1, 0, 0, 0, 1198, 1199, 7, 2, 0, 0, 1199, 1200, 7, 11, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 24, 1, 0, 0, 0, 1202, 1203, 7, 2, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 11, 0, 0, 1205, 1206, 7, 2, 0, 0, 1206, 1207, 7, 13, 0, 0, 1207, 26, 1, 0, 0, 0, 1208, 1209, 7, 2, 0, 0, 1209, 1210, 7, 11, 0, 0, 1210, 1211, 7, 11, 0, 0, 1211, 1212, 7, 2, 0, 0, 1212, 1213, 7, 13, 0, 0, 1213, 1214, 5, 95, 0, 0, 1214, 1215, 7, 2, 0, 0, 1215, 1216, 7, 16, 0, 0, 1216, 1217, 7, 16, 0, 0, 1217, 28, 1, 0, 0, 0, 1218, 1219, 7, 2, 0, 0, 1219, 1220, 7, 11, 0, 0, 1220, 1221, 7, 11, 0, 0, 1221, 1222, 7, 2, 0, 0, 1222, 1223, 7, 13, 0, 0, 1223, 1224, 5, 95, 0, 0, 1224, 1225, 7, 7, 0, 0, 1225, 1226, 7, 6, 0, 0, 1226, 1227, 7, 12, 0, 0, 1227, 1228, 7, 7, 0, 0, 1228, 1229, 7, 2, 0, 0, 1229, 1230, 7, 8, 0, 0, 1230, 1231, 5, 95, 0, 0, 1231, 1232, 7, 2, 0, 0, 1232, 1233, 7, 16, 0, 0, 1233, 1234, 7, 16, 0, 0, 1234, 30, 1, 0, 0, 0, 1235, 1236, 7, 2, 0, 0, 1236, 1237, 7, 11, 0, 0, 1237, 1238, 7, 11, 0, 0, 1238, 1239, 7, 2, 0, 0, 1239, 1240, 7, 13, 0, 0, 1240, 1241, 5, 95, 0, 0, 1241, 1242, 7, 17, 0, 0, 1242, 1243, 7, 2, 0, 0, 1243, 1244, 7, 18, 0, 0, 1244, 1245, 5, 95, 0, 0, 1245, 1246, 7, 7, 0, 0, 1246, 1247, 7, 2, 0, 0, 1247, 1248, 7, 11, 0, 0, 1248, 1249, 7, 15, 0, 0, 1249, 1250, 7, 19, 0, 0, 1250, 1251, 7, 12, 0, 0, 1251, 1252, 7, 2, 0, 0, 1252, 1253, 7, 5, 0, 0, 1253, 1254, 7, 19, 0, 0, 1254, 1255, 7, 8, 0, 0, 1255, 1256, 7, 13, 0, 0, 1256, 32, 1, 0, 0, 0, 1257, 1258, 7, 2, 0, 0, 1258, 1259, 7, 4, 0, 0, 1259, 34, 1, 0, 0, 0, 1260, 1261, 7, 2, 0, 0, 1261, 1262, 7, 4, 0, 0, 1262, 1263, 7, 9, 0, 0, 1263, 1264, 7, 12, 0, 0, 1264, 1265, 7, 4, 0, 0, 1265, 1266, 7, 19, 0, 0, 1266, 1267, 7, 8, 0, 0, 1267, 1268, 7, 19, 0, 0, 1268, 1269, 7, 20, 0, 0, 1269, 1270, 7, 9, 0, 0, 1270, 36, 1, 0, 0, 0, 1271, 1272, 7, 2, 0, 0, 1272, 1273, 7, 4, 0, 0, 1273, 1274, 7, 13, 0, 0, 1274, 1275, 7, 17, 0, 0, 1275, 1276, 7, 17, 0, 0, 1276, 1277, 7, 9, 0, 0, 1277, 1278, 7, 8, 0, 0, 1278, 1279, 7, 11, 0, 0, 1279, 1280, 7, 19, 0, 0, 1280, 1281, 7, 7, 0, 0, 1281, 38, 1, 0, 0, 0, 1282, 1283, 7, 2, 0, 0, 1283, 1284, 7, 8, 0, 0, 1284, 40, 1, 0, 0, 0, 1285, 1286, 7, 2, 0, 0, 1286, 1287, 7, 8, 0, 0, 1287, 1288, 7, 6, 0, 0, 1288, 1289, 7, 17, 0, 0, 1289, 1290, 7, 19, 0, 0, 1290, 1291, 7, 7, 0, 0, 1291, 42, 1, 0, 0, 0, 1292, 1293, 7, 2, 0, 0, 1293, 1294, 7, 21, 0, 0, 1294, 1295, 7, 8, 0, 0, 1295, 1296, 7, 22, 0, 0, 1296, 1297, 7, 6, 0, 0, 1297, 1298, 7, 11, 0, 0, 1298, 1299, 7, 19, 0, 0, 1299, 1300, 7, 14, 0, 0, 1300, 1301, 7, 2, 0, 0, 1301, 1302, 7, 8, 0, 0, 1302, 1303, 7, 19, 0, 0, 1303, 1304, 7, 6, 0, 0, 1304, 1305, 7, 12, 0, 0, 1305, 44, 1, 0, 0, 0, 1306, 1307, 7, 2, 0, 0, 1307, 1308, 7, 20, 0, 0, 1308, 1309, 7, 16, 0, 0, 1309, 46, 1, 0, 0, 0, 1310, 1311, 7, 3, 0, 0, 1311, 1312, 7, 9, 0, 0, 1312, 1313, 7, 16, 0, 0, 1313, 1314, 7, 19, 0, 0, 1314, 1315, 7, 12, 0, 0, 1315, 48, 1, 0, 0, 0, 1316, 1317, 7, 3, 0, 0, 1317, 1318, 7, 9, 0, 0, 1318, 1319, 7, 16, 0, 0, 1319, 1320, 7, 19, 0, 0, 1320, 1321, 7, 12, 0, 0, 1321, 1322, 5, 95, 0, 0, 1322, 1323, 7, 23, 0, 0, 1323, 1324, 7, 11, 0, 0, 1324, 1325, 7, 2, 0, 0, 1325, 1326, 7, 17, 0, 0, 1326, 1327, 7, 9, 0, 0, 1327, 50, 1, 0, 0, 0, 1328, 1329, 7, 3, 0, 0, 1329, 1330, 7, 9, 0, 0, 1330, 1331, 7, 16, 0, 0, 1331, 1332, 7, 19, 0, 0, 1332, 1333, 7, 12, 0, 0, 1333, 1334, 5, 95, 0, 0, 1334, 1335, 7, 24, 0, 0, 1335, 1336, 7, 2, 0, 0, 1336, 1337, 7, 11, 0, 0, 1337, 1338, 7, 8, 0, 0, 1338, 1339, 7, 19, 0, 0, 1339, 1340, 7, 8, 0, 0, 1340, 1341, 7, 19, 0, 0, 1341, 1342, 7, 6, 0, 0, 1342, 1343, 7, 12, 0, 0, 1343, 52, 1, 0, 0, 0, 1344, 1345, 7, 3, 0, 0, 1345, 1346, 7, 9, 0, 0, 1346, 1347, 7, 8, 0, 0, 1347, 1348, 7, 10, 0, 0, 1348, 1349, 7, 9, 0, 0, 1349, 1350, 7, 9, 0, 0, 1350, 1351, 7, 12, 0, 0, 1351, 54, 1, 0, 0, 0, 1352, 1353, 7, 3, 0, 0, 1353, 1354, 7, 19, 0, 0, 1354, 1355, 7, 16, 0, 0, 1355, 1356, 7, 19, 0, 0, 1356, 1357, 7, 12, 0, 0, 1357, 1358, 7, 8, 0, 0, 1358, 56, 1, 0, 0, 0, 1359, 1360, 7, 3, 0, 0, 1360, 1361, 7, 19, 0, 0, 1361, 1362, 7, 12, 0, 0, 1362, 1363, 7, 2, 0, 0, 1363, 1364, 7, 11, 0, 0, 1364, 1365, 7, 13, 0, 0, 1365, 58, 1, 0, 0, 0, 1366, 1367, 7, 3, 0, 0, 1367, 1368, 7, 19, 0, 0, 1368, 1369, 7, 8, 0, 0, 1369, 60, 1, 0, 0, 0, 1370, 1371, 7, 3, 0, 0, 1371, 1372, 7, 5, 0, 0, 1372, 1373, 7, 6, 0, 0, 1373, 1374, 7, 3, 0, 0, 1374, 62, 1, 0, 0, 0, 1375, 1376, 7, 3, 0, 0, 1376, 1377, 7, 6, 0, 0, 1377, 1378, 7, 6, 0, 0, 1378, 1379, 7, 5, 0, 0, 1379, 1380, 7, 9, 0, 0, 1380, 1381, 7, 2, 0, 0, 1381, 1382, 7, 12, 0, 0, 1382, 64, 1, 0, 0, 0, 1383, 1384, 7, 3, 0, 0, 1384, 1385, 7, 6, 0, 0, 1385, 1386, 7, 8, 0, 0, 1386, 1387, 7, 22, 0, 0, 1387, 66, 1, 0, 0, 0, 1388, 1389, 7, 3, 0, 0, 1389, 1390, 7, 13, 0, 0, 1390, 68, 1, 0, 0, 0, 1391, 1392, 7, 3, 0, 0, 1392, 1393, 7, 13, 0, 0, 1393, 1394, 7, 8, 0, 0, 1394, 1395, 7, 9, 0, 0, 1395, 1396, 7, 4, 0, 0, 1396, 70, 1, 0, 0, 0, 1397, 1398, 7, 7, 0, 0, 1398, 1399, 7, 2, 0, 0, 1399, 1400, 7, 5, 0, 0, 1400, 1401, 7, 5, 0, 0, 1401, 72, 1, 0, 0, 0, 1402, 1403, 7, 7, 0, 0, 1403, 1404, 7, 2, 0, 0, 1404, 1405, 7, 5, 0, 0, 1405, 1406, 7, 5, 0, 0, 1406, 1407, 7, 9, 0, 0, 1407, 1408, 7, 15, 0, 0, 1408, 74, 1, 0, 0, 0, 1409, 1410, 7, 7, 0, 0, 1410, 1411, 7, 2, 0, 0, 1411, 1412, 7, 11, 0, 0, 1412, 1413, 7, 15, 0, 0, 1413, 1414, 7, 19, 0, 0, 1414, 1415, 7, 12, 0, 0, 1415, 1416, 7, 2, 0, 0, 1416, 1417, 7, 5, 0, 0, 1417, 1418, 7, 19, 0, 0, 1418, 1419, 7, 8, 0, 0, 1419, 1420, 7, 13, 0, 0, 1420, 76, 1, 0, 0, 0, 1421, 1422, 7, 7, 0, 0, 1422, 1423, 7, 2, 0, 0, 1423, 1424, 7, 4, 0, 0, 1424, 1425, 7, 7, 0, 0, 1425, 1426, 7, 2, 0, 0, 1426, 1427, 7, 15, 0, 0, 1427, 1428, 7, 9, 0, 0, 1428, 1429, 7, 15, 0, 0, 1429, 78, 1, 0, 0, 0, 1430, 1431, 7, 7, 0, 0, 1431, 1432, 7, 2, 0, 0, 1432, 1433, 7, 4, 0, 0, 1433, 1434, 7, 9, 0, 0, 1434, 80, 1, 0, 0, 0, 1435, 1436, 7, 7, 0, 0, 1436, 1437, 7, 2, 0, 0, 1437, 1438, 7, 4, 0, 0, 1438, 1439, 7, 8, 0, 0, 1439, 82, 1, 0, 0, 0, 1440, 1441, 7, 7, 0, 0, 1441, 1442, 7, 2, 0, 0, 1442, 1443, 7, 8, 0, 0, 1443, 1444, 7, 2, 0, 0, 1444, 1445, 7, 5, 0, 0, 1445, 1446, 7, 6, 0, 0, 1446, 1447, 7, 16, 0, 0, 1447, 1448, 7, 4, 0, 0, 1448, 84, 1, 0, 0, 0, 1449, 1450, 7, 7, 0, 0, 1450, 1451, 7, 9, 0, 0, 1451, 1452, 7, 19, 0, 0, 1452, 1453, 7, 5, 0, 0, 1453, 86, 1, 0, 0, 0, 1454, 1455, 7, 7, 0, 0, 1455, 1456, 7, 9, 0, 0, 1456, 1457, 7, 19, 0, 0, 1457, 1458, 7, 5, 0, 0, 1458, 1459, 7, 19, 0, 0, 1459, 1460, 7, 12, 0, 0, 1460, 1461, 7, 16, 0, 0, 1461, 88, 1, 0, 0, 0, 1462, 1463, 7, 7, 0, 0, 1463, 1464, 7, 22, 0, 0, 1464, 1465, 7, 2, 0, 0, 1465, 1466, 7, 12, 0, 0, 1466, 1467, 7, 16, 0, 0, 1467, 1468, 7, 9, 0, 0, 1468, 1469, 7, 5, 0, 0, 1469, 1470, 7, 6, 0, 0, 1470, 1471, 7, 16, 0, 0, 1471, 1472, 5, 95, 0, 0, 1472, 1473, 7, 17, 0, 0, 1473, 1474, 7, 6, 0, 0, 1474, 1475, 7, 15, 0, 0, 1475, 1476, 7, 9, 0, 0, 1476, 90, 1, 0, 0, 0, 1477, 1478, 7, 7, 0, 0, 1478, 1479, 7, 22, 0, 0, 1479, 1480, 7, 2, 0, 0, 1480, 1481, 7, 11, 0, 0, 1481, 92, 1, 0, 0, 0, 1482, 1483, 7, 7, 0, 0, 1483, 1484, 7, 22, 0, 0, 1484, 1485, 7, 2, 0, 0, 1485, 1486, 7, 11, 0, 0, 1486, 1487, 7, 2, 0, 0, 1487, 1488, 7, 7, 0, 0, 1488, 1489, 7, 8, 0, 0, 1489, 1490, 7, 9, 0, 0, 1490, 1491, 7, 11, 0, 0, 1491, 94, 1, 0, 0, 0, 1492, 1493, 7, 7, 0, 0, 1493, 1494, 7, 22, 0, 0, 1494, 1495, 7, 2, 0, 0, 1495, 1496, 7, 11, 0, 0, 1496, 1497, 7, 2, 0, 0, 1497, 1498, 7, 7, 0, 0, 1498, 1499, 7, 8, 0, 0, 1499, 1500, 7, 9, 0, 0, 1500, 1501, 7, 11, 0, 0, 1501, 1502, 5, 95, 0, 0, 1502, 1503, 7, 5, 0, 0, 1503, 1504, 7, 9, 0, 0, 1504, 1505, 7, 12, 0, 0, 1505, 1506, 7, 16, 0, 0, 1506, 1507, 7, 8, 0, 0, 1507, 1508, 7, 22, 0, 0, 1508, 96, 1, 0, 0, 0, 1509, 1510, 7, 7, 0, 0, 1510, 1511, 7, 22, 0, 0, 1511, 1512, 7, 2, 0, 0, 1512, 1513, 7, 11, 0, 0, 1513, 1514, 5, 95, 0, 0, 1514, 1515, 7, 5, 0, 0, 1515, 1516, 7, 9, 0, 0, 1516, 1517, 7, 12, 0, 0, 1517, 1518, 7, 16, 0, 0, 1518, 1519, 7, 8, 0, 0, 1519, 1520, 7, 22, 0, 0, 1520, 98, 1, 0, 0, 0, 1521, 1522, 7, 7, 0, 0, 1522, 1523, 7, 22, 0, 0, 1523, 1524, 7, 9, 0, 0, 1524, 1525, 7, 7, 0, 0, 1525, 1526, 7, 25, 0, 0, 1526, 100, 1, 0, 0, 0, 1527, 1528, 7, 7, 0, 0, 1528, 1529, 7, 5, 0, 0, 1529, 1530, 7, 2, 0, 0, 1530, 1531, 7, 4, 0, 0, 1531, 1532, 7, 4, 0, 0, 1532, 1533, 7, 19, 0, 0, 1533, 1534, 7, 23, 0, 0, 1534, 1535, 7, 19, 0, 0, 1535, 1536, 7, 9, 0, 0, 1536, 1537, 7, 11, 0, 0, 1537, 102, 1, 0, 0, 0, 1538, 1539, 7, 7, 0, 0, 1539, 1540, 7, 5, 0, 0, 1540, 1541, 7, 6, 0, 0, 1541, 1542, 7, 3, 0, 0, 1542, 104, 1, 0, 0, 0, 1543, 1544, 7, 7, 0, 0, 1544, 1545, 7, 5, 0, 0, 1545, 1546, 7, 6, 0, 0, 1546, 1547, 7, 4, 0, 0, 1547, 1548, 7, 9, 0, 0, 1548, 106, 1, 0, 0, 0, 1549, 1550, 7, 7, 0, 0, 1550, 1551, 7, 6, 0, 0, 1551, 1552, 7, 2, 0, 0, 1552, 1553, 7, 5, 0, 0, 1553, 1554, 7, 9, 0, 0, 1554, 1555, 7, 4, 0, 0, 1555, 1556, 7, 7, 0, 0, 1556, 1557, 7, 9, 0, 0, 1557, 108, 1, 0, 0, 0, 1558, 1559, 7, 7, 0, 0, 1559, 1560, 7, 6, 0, 0, 1560, 1561, 7, 5, 0, 0, 1561, 1562, 7, 5, 0, 0, 1562, 1563, 7, 2, 0, 0, 1563, 1564, 7, 8, 0, 0, 1564, 1565, 7, 9, 0, 0, 1565, 110, 1, 0, 0, 0, 1566, 1567, 7, 7, 0, 0, 1567, 1568, 7, 6, 0, 0, 1568, 1569, 7, 5, 0, 0, 1569, 1570, 7, 5, 0, 0, 1570, 1571, 7, 9, 0, 0, 1571, 1572, 7, 7, 0, 0, 1572, 1573, 7, 8, 0, 0, 1573, 112, 1, 0, 0, 0, 1574, 1575, 7, 7, 0, 0, 1575, 1576, 7, 6, 0, 0, 1576, 1577, 7, 5, 0, 0, 1577, 1578, 7, 21, 0, 0, 1578, 1579, 7, 17, 0, 0, 1579, 1580, 7, 12, 0, 0, 1580, 114, 1, 0, 0, 0, 1581, 1582, 7, 7, 0, 0, 1582, 1583, 7, 6, 0, 0, 1583, 1584, 7, 5, 0, 0, 1584, 1585, 7, 21, 0, 0, 1585, 1586, 7, 17, 0, 0, 1586, 1587, 7, 12, 0, 0, 1587, 1588, 7, 4, 0, 0, 1588, 116, 1, 0, 0, 0, 1589, 1590, 7, 7, 0, 0, 1590, 1591, 7, 6, 0, 0, 1591, 1592, 7, 17, 0, 0, 1592, 1593, 7, 17, 0, 0, 1593, 1594, 7, 9, 0, 0, 1594, 1595, 7, 12, 0, 0, 1595, 1596, 7, 8, 0, 0, 1596, 118, 1, 0, 0, 0, 1597, 1598, 7, 7, 0, 0, 1598, 1599, 7, 6, 0, 0, 1599, 1600, 7, 17, 0, 0, 1600, 1601, 7, 17, 0, 0, 1601, 1602, 7, 19, 0, 0, 1602, 1603, 7, 8, 0, 0, 1603, 120, 1, 0, 0, 0, 1604, 1605, 7, 7, 0, 0, 1605, 1606, 7, 6, 0, 0, 1606, 1607, 7, 17, 0, 0, 1607, 1608, 7, 24, 0, 0, 1608, 1609, 7, 21, 0, 0, 1609, 1610, 7, 8, 0, 0, 1610, 1611, 7, 9, 0, 0, 1611, 122, 1, 0, 0, 0, 1612, 1613, 7, 7, 0, 0, 1613, 1614, 7, 6, 0, 0, 1614, 1615, 7, 12, 0, 0, 1615, 1616, 7, 15, 0, 0, 1616, 1617, 7, 19, 0, 0, 1617, 1618, 7, 8, 0, 0, 1618, 1619, 7, 19, 0, 0, 1619, 1620, 7, 6, 0, 0, 1620, 1621, 7, 12, 0, 0, 1621, 124, 1, 0, 0, 0, 1622, 1623, 7, 7, 0, 0, 1623, 1624, 7, 6, 0, 0, 1624, 1625, 7, 12, 0, 0, 1625, 1626, 7, 12, 0, 0, 1626, 1627, 7, 9, 0, 0, 1627, 1628, 7, 7, 0, 0, 1628, 1629, 7, 8, 0, 0, 1629, 126, 1, 0, 0, 0, 1630, 1631, 7, 7, 0, 0, 1631, 1632, 7, 6, 0, 0, 1632, 1633, 7, 12, 0, 0, 1633, 1634, 7, 4, 0, 0, 1634, 1635, 7, 8, 0, 0, 1635, 1636, 7, 11, 0, 0, 1636, 1637, 7, 2, 0, 0, 1637, 1638, 7, 19, 0, 0, 1638, 1639, 7, 12, 0, 0, 1639, 1640, 7, 8, 0, 0, 1640, 128, 1, 0, 0, 0, 1641, 1642, 7, 7, 0, 0, 1642, 1643, 7, 6, 0, 0, 1643, 1644, 7, 12, 0, 0, 1644, 1645, 7, 8, 0, 0, 1645, 1646, 7, 2, 0, 0, 1646, 1647, 7, 19, 0, 0, 1647, 1648, 7, 12, 0, 0, 1648, 1649, 7, 4, 0, 0, 1649, 130, 1, 0, 0, 0, 1650, 1651, 7, 7, 0, 0, 1651, 1652, 7, 6, 0, 0, 1652, 1653, 7, 12, 0, 0, 1653, 1654, 7, 20, 0, 0, 1654, 1655, 7, 9, 0, 0, 1655, 1656, 7, 11, 0, 0, 1656, 1657, 7, 8, 0, 0, 1657, 132, 1, 0, 0, 0, 1658, 1659, 7, 7, 0, 0, 1659, 1660, 7, 6, 0, 0, 1660, 1661, 7, 11, 0, 0, 1661, 1662, 7, 11, 0, 0, 1662, 134, 1, 0, 0, 0, 1663, 1664, 7, 7, 0, 0, 1664, 1665, 7, 6, 0, 0, 1665, 1666, 7, 11, 0, 0, 1666, 1667, 7, 11, 0, 0, 1667, 1668, 7, 9, 0, 0, 1668, 1669, 7, 4, 0, 0, 1669, 1670, 7, 24, 0, 0, 1670, 1671, 7, 6, 0, 0, 1671, 1672, 7, 12, 0, 0, 1672, 1673, 7, 15, 0, 0, 1673, 1674, 7, 19, 0, 0, 1674, 1675, 7, 12, 0, 0, 1675, 1676, 7, 16, 0, 0, 1676, 136, 1, 0, 0, 0, 1677, 1678, 7, 7, 0, 0, 1678, 1679, 7, 6, 0, 0, 1679, 1680, 7, 21, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 1682, 7, 8, 0, 0, 1682, 138, 1, 0, 0, 0, 1683, 1684, 7, 7, 0, 0, 1684, 1685, 7, 6, 0, 0, 1685, 1686, 7, 20, 0, 0, 1686, 1687, 7, 2, 0, 0, 1687, 1688, 7, 11, 0, 0, 1688, 1689, 5, 95, 0, 0, 1689, 1690, 7, 24, 0, 0, 1690, 1691, 7, 6, 0, 0, 1691, 1692, 7, 24, 0, 0, 1692, 140, 1, 0, 0, 0, 1693, 1694, 7, 7, 0, 0, 1694, 1695, 7, 6, 0, 0, 1695, 1696, 7, 20, 0, 0, 1696, 1697, 7, 2, 0, 0, 1697, 1698, 7, 11, 0, 0, 1698, 1699, 5, 95, 0, 0, 1699, 1700, 7, 4, 0, 0, 1700, 1701, 7, 2, 0, 0, 1701, 1702, 7, 17, 0, 0, 1702, 1703, 7, 24, 0, 0, 1703, 142, 1, 0, 0, 0, 1704, 1705, 7, 7, 0, 0, 1705, 1706, 7, 11, 0, 0, 1706, 1707, 7, 9, 0, 0, 1707, 1708, 7, 2, 0, 0, 1708, 1709, 7, 8, 0, 0, 1709, 1710, 7, 9, 0, 0, 1710, 144, 1, 0, 0, 0, 1711, 1712, 7, 7, 0, 0, 1712, 1713, 7, 11, 0, 0, 1713, 1714, 7, 6, 0, 0, 1714, 1715, 7, 4, 0, 0, 1715, 1716, 7, 4, 0, 0, 1716, 146, 1, 0, 0, 0, 1717, 1718, 7, 7, 0, 0, 1718, 1719, 7, 21, 0, 0, 1719, 1720, 7, 3, 0, 0, 1720, 1721, 7, 9, 0, 0, 1721, 148, 1, 0, 0, 0, 1722, 1723, 7, 7, 0, 0, 1723, 1724, 7, 21, 0, 0, 1724, 1725, 7, 17, 0, 0, 1725, 1726, 7, 9, 0, 0, 1726, 1727, 5, 95, 0, 0, 1727, 1728, 7, 15, 0, 0, 1728, 1729, 7, 19, 0, 0, 1729, 1730, 7, 4, 0, 0, 1730, 1731, 7, 8, 0, 0, 1731, 150, 1, 0, 0, 0, 1732, 1733, 7, 7, 0, 0, 1733, 1734, 7, 21, 0, 0, 1734, 1735, 7, 11, 0, 0, 1735, 1736, 7, 11, 0, 0, 1736, 1737, 7, 9, 0, 0, 1737, 1738, 7, 12, 0, 0, 1738, 1739, 7, 8, 0, 0, 1739, 152, 1, 0, 0, 0, 1740, 1741, 7, 7, 0, 0, 1741, 1742, 7, 21, 0, 0, 1742, 1743, 7, 11, 0, 0, 1743, 1744, 7, 11, 0, 0, 1744, 1745, 7, 9, 0, 0, 1745, 1746, 7, 12, 0, 0, 1746, 1747, 7, 8, 0, 0, 1747, 1748, 5, 95, 0, 0, 1748, 1749, 7, 7, 0, 0, 1749, 1750, 7, 2, 0, 0, 1750, 1751, 7, 8, 0, 0, 1751, 1752, 7, 2, 0, 0, 1752, 1753, 7, 5, 0, 0, 1753, 1754, 7, 6, 0, 0, 1754, 1755, 7, 16, 0, 0, 1755, 154, 1, 0, 0, 0, 1756, 1757, 7, 7, 0, 0, 1757, 1758, 7, 21, 0, 0, 1758, 1759, 7, 11, 0, 0, 1759, 1760, 7, 11, 0, 0, 1760, 1761, 7, 9, 0, 0, 1761, 1762, 7, 12, 0, 0, 1762, 1763, 7, 8, 0, 0, 1763, 1764, 5, 95, 0, 0, 1764, 1765, 7, 15, 0, 0, 1765, 1766, 7, 2, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 1768, 7, 9, 0, 0, 1768, 156, 1, 0, 0, 0, 1769, 1770, 7, 7, 0, 0, 1770, 1771, 7, 21, 0, 0, 1771, 1772, 7, 11, 0, 0, 1772, 1773, 7, 11, 0, 0, 1773, 1774, 7, 9, 0, 0, 1774, 1775, 7, 12, 0, 0, 1775, 1776, 7, 8, 0, 0, 1776, 1777, 5, 95, 0, 0, 1777, 1778, 7, 15, 0, 0, 1778, 1779, 7, 9, 0, 0, 1779, 1780, 7, 23, 0, 0, 1780, 1781, 7, 2, 0, 0, 1781, 1782, 7, 21, 0, 0, 1782, 1783, 7, 5, 0, 0, 1783, 1784, 7, 8, 0, 0, 1784, 1785, 5, 95, 0, 0, 1785, 1786, 7, 8, 0, 0, 1786, 1787, 7, 11, 0, 0, 1787, 1788, 7, 2, 0, 0, 1788, 1789, 7, 12, 0, 0, 1789, 1790, 7, 4, 0, 0, 1790, 1791, 7, 23, 0, 0, 1791, 1792, 7, 6, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 17, 0, 0, 1794, 1795, 5, 95, 0, 0, 1795, 1796, 7, 16, 0, 0, 1796, 1797, 7, 11, 0, 0, 1797, 1798, 7, 6, 0, 0, 1798, 1799, 7, 21, 0, 0, 1799, 1800, 7, 24, 0, 0, 1800, 158, 1, 0, 0, 0, 1801, 1802, 7, 7, 0, 0, 1802, 1803, 7, 21, 0, 0, 1803, 1804, 7, 11, 0, 0, 1804, 1805, 7, 11, 0, 0, 1805, 1806, 7, 9, 0, 0, 1806, 1807, 7, 12, 0, 0, 1807, 1808, 7, 8, 0, 0, 1808, 1809, 5, 95, 0, 0, 1809, 1810, 7, 24, 0, 0, 1810, 1811, 7, 2, 0, 0, 1811, 1812, 7, 8, 0, 0, 1812, 1813, 7, 22, 0, 0, 1813, 160, 1, 0, 0, 0, 1814, 1815, 7, 7, 0, 0, 1815, 1816, 7, 21, 0, 0, 1816, 1817, 7, 11, 0, 0, 1817, 1818, 7, 11, 0, 0, 1818, 1819, 7, 9, 0, 0, 1819, 1820, 7, 12, 0, 0, 1820, 1821, 7, 8, 0, 0, 1821, 1822, 5, 95, 0, 0, 1822, 1823, 7, 11, 0, 0, 1823, 1824, 7, 6, 0, 0, 1824, 1825, 7, 5, 0, 0, 1825, 1826, 7, 9, 0, 0, 1826, 162, 1, 0, 0, 0, 1827, 1828, 7, 7, 0, 0, 1828, 1829, 7, 21, 0, 0, 1829, 1830, 7, 11, 0, 0, 1830, 1831, 7, 11, 0, 0, 1831, 1832, 7, 9, 0, 0, 1832, 1833, 7, 12, 0, 0, 1833, 1834, 7, 8, 0, 0, 1834, 1835, 5, 95, 0, 0, 1835, 1836, 7, 11, 0, 0, 1836, 1837, 7, 6, 0, 0, 1837, 1838, 7, 10, 0, 0, 1838, 164, 1, 0, 0, 0, 1839, 1840, 7, 7, 0, 0, 1840, 1841, 7, 21, 0, 0, 1841, 1842, 7, 11, 0, 0, 1842, 1843, 7, 11, 0, 0, 1843, 1844, 7, 9, 0, 0, 1844, 1845, 7, 12, 0, 0, 1845, 1846, 7, 8, 0, 0, 1846, 1847, 5, 95, 0, 0, 1847, 1848, 7, 4, 0, 0, 1848, 1849, 7, 7, 0, 0, 1849, 1850, 7, 22, 0, 0, 1850, 1851, 7, 9, 0, 0, 1851, 1852, 7, 17, 0, 0, 1852, 1853, 7, 2, 0, 0, 1853, 166, 1, 0, 0, 0, 1854, 1855, 7, 7, 0, 0, 1855, 1856, 7, 21, 0, 0, 1856, 1857, 7, 11, 0, 0, 1857, 1858, 7, 11, 0, 0, 1858, 1859, 7, 9, 0, 0, 1859, 1860, 7, 12, 0, 0, 1860, 1861, 7, 8, 0, 0, 1861, 1862, 5, 95, 0, 0, 1862, 1863, 7, 8, 0, 0, 1863, 1864, 7, 19, 0, 0, 1864, 1865, 7, 17, 0, 0, 1865, 1866, 7, 9, 0, 0, 1866, 168, 1, 0, 0, 0, 1867, 1868, 7, 7, 0, 0, 1868, 1869, 7, 21, 0, 0, 1869, 1870, 7, 11, 0, 0, 1870, 1871, 7, 11, 0, 0, 1871, 1872, 7, 9, 0, 0, 1872, 1873, 7, 12, 0, 0, 1873, 1874, 7, 8, 0, 0, 1874, 1875, 5, 95, 0, 0, 1875, 1876, 7, 8, 0, 0, 1876, 1877, 7, 19, 0, 0, 1877, 1878, 7, 17, 0, 0, 1878, 1879, 7, 9, 0, 0, 1879, 1880, 7, 4, 0, 0, 1880, 1881, 7, 8, 0, 0, 1881, 1882, 7, 2, 0, 0, 1882, 1883, 7, 17, 0, 0, 1883, 1884, 7, 24, 0, 0, 1884, 170, 1, 0, 0, 0, 1885, 1886, 7, 7, 0, 0, 1886, 1887, 7, 21, 0, 0, 1887, 1888, 7, 11, 0, 0, 1888, 1889, 7, 11, 0, 0, 1889, 1890, 7, 9, 0, 0, 1890, 1891, 7, 12, 0, 0, 1891, 1892, 7, 8, 0, 0, 1892, 1893, 5, 95, 0, 0, 1893, 1894, 7, 8, 0, 0, 1894, 1895, 7, 11, 0, 0, 1895, 1896, 7, 2, 0, 0, 1896, 1897, 7, 12, 0, 0, 1897, 1898, 7, 4, 0, 0, 1898, 1899, 7, 23, 0, 0, 1899, 1900, 7, 6, 0, 0, 1900, 1901, 7, 11, 0, 0, 1901, 1902, 7, 17, 0, 0, 1902, 1903, 5, 95, 0, 0, 1903, 1904, 7, 16, 0, 0, 1904, 1905, 7, 11, 0, 0, 1905, 1906, 7, 6, 0, 0, 1906, 1907, 7, 21, 0, 0, 1907, 1908, 7, 24, 0, 0, 1908, 1909, 5, 95, 0, 0, 1909, 1910, 7, 23, 0, 0, 1910, 1911, 7, 6, 0, 0, 1911, 1912, 7, 11, 0, 0, 1912, 1913, 5, 95, 0, 0, 1913, 1914, 7, 8, 0, 0, 1914, 1915, 7, 13, 0, 0, 1915, 1916, 7, 24, 0, 0, 1916, 1917, 7, 9, 0, 0, 1917, 172, 1, 0, 0, 0, 1918, 1919, 7, 7, 0, 0, 1919, 1920, 7, 21, 0, 0, 1920, 1921, 7, 11, 0, 0, 1921, 1922, 7, 11, 0, 0, 1922, 1923, 7, 9, 0, 0, 1923, 1924, 7, 12, 0, 0, 1924, 1925, 7, 8, 0, 0, 1925, 1926, 5, 95, 0, 0, 1926, 1927, 7, 21, 0, 0, 1927, 1928, 7, 4, 0, 0, 1928, 1929, 7, 9, 0, 0, 1929, 1930, 7, 11, 0, 0, 1930, 174, 1, 0, 0, 0, 1931, 1932, 7, 7, 0, 0, 1932, 1933, 7, 21, 0, 0, 1933, 1934, 7, 11, 0, 0, 1934, 1935, 7, 4, 0, 0, 1935, 1936, 7, 6, 0, 0, 1936, 1937, 7, 11, 0, 0, 1937, 176, 1, 0, 0, 0, 1938, 1939, 7, 7, 0, 0, 1939, 1940, 7, 13, 0, 0, 1940, 1941, 7, 7, 0, 0, 1941, 1942, 7, 5, 0, 0, 1942, 1943, 7, 9, 0, 0, 1943, 178, 1, 0, 0, 0, 1944, 1945, 7, 15, 0, 0, 1945, 1946, 7, 2, 0, 0, 1946, 1947, 7, 8, 0, 0, 1947, 1948, 7, 2, 0, 0, 1948, 1949, 7, 3, 0, 0, 1949, 1950, 7, 2, 0, 0, 1950, 1951, 7, 4, 0, 0, 1951, 1952, 7, 9, 0, 0, 1952, 1953, 7, 4, 0, 0, 1953, 180, 1, 0, 0, 0, 1954, 1955, 7, 15, 0, 0, 1955, 1956, 7, 2, 0, 0, 1956, 1957, 7, 8, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 182, 1, 0, 0, 0, 1959, 1960, 7, 15, 0, 0, 1960, 1961, 7, 2, 0, 0, 1961, 1962, 7, 8, 0, 0, 1962, 1963, 7, 9, 0, 0, 1963, 1964, 7, 8, 0, 0, 1964, 1965, 7, 19, 0, 0, 1965, 1966, 7, 17, 0, 0, 1966, 1967, 7, 9, 0, 0, 1967, 184, 1, 0, 0, 0, 1968, 1969, 7, 15, 0, 0, 1969, 1970, 7, 2, 0, 0, 1970, 1971, 7, 8, 0, 0, 1971, 1972, 7, 9, 0, 0, 1972, 1973, 7, 8, 0, 0, 1973, 1974, 7, 19, 0, 0, 1974, 1975, 7, 17, 0, 0, 1975, 1976, 7, 9, 0, 0, 1976, 1977, 5, 95, 0, 0, 1977, 1978, 7, 15, 0, 0, 1978, 1979, 7, 19, 0, 0, 1979, 1980, 7, 23, 0, 0, 1980, 1981, 7, 23, 0, 0, 1981, 186, 1, 0, 0, 0, 1982, 1983, 7, 15, 0, 0, 1983, 1984, 7, 2, 0, 0, 1984, 1985, 7, 8, 0, 0, 1985, 1986, 7, 9, 0, 0, 1986, 1987, 7, 8, 0, 0, 1987, 1988, 7, 19, 0, 0, 1988, 1989, 7, 17, 0, 0, 1989, 1990, 7, 9, 0, 0, 1990, 1991, 5, 95, 0, 0, 1991, 1992, 7, 8, 0, 0, 1992, 1993, 7, 11, 0, 0, 1993, 1994, 7, 21, 0, 0, 1994, 1995, 7, 12, 0, 0, 1995, 1996, 7, 7, 0, 0, 1996, 188, 1, 0, 0, 0, 1997, 1998, 7, 15, 0, 0, 1998, 1999, 7, 2, 0, 0, 1999, 2000, 7, 8, 0, 0, 2000, 2001, 7, 9, 0, 0, 2001, 2002, 5, 95, 0, 0, 2002, 2003, 7, 15, 0, 0, 2003, 2004, 7, 19, 0, 0, 2004, 2005, 7, 23, 0, 0, 2005, 2006, 7, 23, 0, 0, 2006, 190, 1, 0, 0, 0, 2007, 2008, 7, 15, 0, 0, 2008, 2009, 7, 2, 0, 0, 2009, 2010, 7, 8, 0, 0, 2010, 2011, 7, 9, 0, 0, 2011, 2012, 5, 95, 0, 0, 2012, 2013, 7, 8, 0, 0, 2013, 2014, 7, 11, 0, 0, 2014, 2015, 7, 21, 0, 0, 2015, 2016, 7, 12, 0, 0, 2016, 2017, 7, 7, 0, 0, 2017, 192, 1, 0, 0, 0, 2018, 2019, 7, 15, 0, 0, 2019, 2020, 7, 2, 0, 0, 2020, 2021, 7, 13, 0, 0, 2021, 194, 1, 0, 0, 0, 2022, 2023, 7, 15, 0, 0, 2023, 2024, 7, 2, 0, 0, 2024, 2025, 7, 13, 0, 0, 2025, 2026, 7, 6, 0, 0, 2026, 2027, 7, 23, 0, 0, 2027, 2028, 7, 10, 0, 0, 2028, 2029, 7, 9, 0, 0, 2029, 2030, 7, 9, 0, 0, 2030, 2031, 7, 25, 0, 0, 2031, 196, 1, 0, 0, 0, 2032, 2033, 7, 15, 0, 0, 2033, 2034, 7, 2, 0, 0, 2034, 2035, 7, 13, 0, 0, 2035, 2036, 7, 6, 0, 0, 2036, 2037, 7, 23, 0, 0, 2037, 2038, 7, 13, 0, 0, 2038, 2039, 7, 9, 0, 0, 2039, 2040, 7, 2, 0, 0, 2040, 2041, 7, 11, 0, 0, 2041, 198, 1, 0, 0, 0, 2042, 2043, 7, 15, 0, 0, 2043, 2044, 7, 9, 0, 0, 2044, 2045, 7, 2, 0, 0, 2045, 2046, 7, 5, 0, 0, 2046, 2047, 7, 5, 0, 0, 2047, 2048, 7, 6, 0, 0, 2048, 2049, 7, 7, 0, 0, 2049, 2050, 7, 2, 0, 0, 2050, 2051, 7, 8, 0, 0, 2051, 2052, 7, 9, 0, 0, 2052, 200, 1, 0, 0, 0, 2053, 2054, 7, 15, 0, 0, 2054, 2055, 7, 9, 0, 0, 2055, 2056, 7, 7, 0, 0, 2056, 202, 1, 0, 0, 0, 2057, 2058, 7, 15, 0, 0, 2058, 2059, 7, 9, 0, 0, 2059, 2060, 7, 7, 0, 0, 2060, 2061, 7, 19, 0, 0, 2061, 2062, 7, 17, 0, 0, 2062, 2063, 7, 2, 0, 0, 2063, 2064, 7, 5, 0, 0, 2064, 204, 1, 0, 0, 0, 2065, 2066, 7, 15, 0, 0, 2066, 2067, 7, 9, 0, 0, 2067, 2068, 7, 7, 0, 0, 2068, 2069, 7, 5, 0, 0, 2069, 2070, 7, 2, 0, 0, 2070, 2071, 7, 11, 0, 0, 2071, 2072, 7, 9, 0, 0, 2072, 206, 1, 0, 0, 0, 2073, 2074, 7, 15, 0, 0, 2074, 2075, 7, 9, 0, 0, 2075, 2076, 7, 23, 0, 0, 2076, 2077, 7, 2, 0, 0, 2077, 2078, 7, 21, 0, 0, 2078, 2079, 7, 5, 0, 0, 2079, 2080, 7, 8, 0, 0, 2080, 208, 1, 0, 0, 0, 2081, 2082, 7, 15, 0, 0, 2082, 2083, 7, 9, 0, 0, 2083, 2084, 7, 23, 0, 0, 2084, 2085, 7, 19, 0, 0, 2085, 2086, 7, 12, 0, 0, 2086, 2087, 7, 9, 0, 0, 2087, 210, 1, 0, 0, 0, 2088, 2089, 7, 15, 0, 0, 2089, 2090, 7, 9, 0, 0, 2090, 2091, 7, 5, 0, 0, 2091, 2092, 7, 9, 0, 0, 2092, 2093, 7, 8, 0, 0, 2093, 2094, 7, 9, 0, 0, 2094, 212, 1, 0, 0, 0, 2095, 2096, 7, 15, 0, 0, 2096, 2097, 7, 9, 0, 0, 2097, 2098, 7, 12, 0, 0, 2098, 2099, 7, 4, 0, 0, 2099, 2100, 7, 9, 0, 0, 2100, 2101, 5, 95, 0, 0, 2101, 2102, 7, 11, 0, 0, 2102, 2103, 7, 2, 0, 0, 2103, 2104, 7, 12, 0, 0, 2104, 2105, 7, 25, 0, 0, 2105, 214, 1, 0, 0, 0, 2106, 2107, 7, 15, 0, 0, 2107, 2108, 7, 9, 0, 0, 2108, 2109, 7, 11, 0, 0, 2109, 2110, 7, 9, 0, 0, 2110, 2111, 7, 23, 0, 0, 2111, 216, 1, 0, 0, 0, 2112, 2113, 7, 15, 0, 0, 2113, 2114, 7, 9, 0, 0, 2114, 2115, 7, 4, 0, 0, 2115, 2116, 7, 7, 0, 0, 2116, 2117, 7, 11, 0, 0, 2117, 2118, 7, 19, 0, 0, 2118, 2119, 7, 3, 0, 0, 2119, 2120, 7, 9, 0, 0, 2120, 218, 1, 0, 0, 0, 2121, 2122, 7, 15, 0, 0, 2122, 2123, 7, 9, 0, 0, 2123, 2124, 7, 8, 0, 0, 2124, 2125, 7, 9, 0, 0, 2125, 2126, 7, 11, 0, 0, 2126, 2127, 7, 17, 0, 0, 2127, 2128, 7, 19, 0, 0, 2128, 2129, 7, 12, 0, 0, 2129, 2130, 7, 19, 0, 0, 2130, 2131, 7, 4, 0, 0, 2131, 2132, 7, 8, 0, 0, 2132, 2133, 7, 19, 0, 0, 2133, 2134, 7, 7, 0, 0, 2134, 220, 1, 0, 0, 0, 2135, 2136, 7, 15, 0, 0, 2136, 2137, 7, 19, 0, 0, 2137, 2138, 7, 4, 0, 0, 2138, 2139, 7, 2, 0, 0, 2139, 2140, 7, 5, 0, 0, 2140, 2141, 7, 5, 0, 0, 2141, 2142, 7, 6, 0, 0, 2142, 2143, 7, 10, 0, 0, 2143, 222, 1, 0, 0, 0, 2144, 2145, 7, 15, 0, 0, 2145, 2146, 7, 19, 0, 0, 2146, 2147, 7, 4, 0, 0, 2147, 2148, 7, 7, 0, 0, 2148, 2149, 7, 6, 0, 0, 2149, 2150, 7, 12, 0, 0, 2150, 2151, 7, 12, 0, 0, 2151, 2152, 7, 9, 0, 0, 2152, 2153, 7, 7, 0, 0, 2153, 2154, 7, 8, 0, 0, 2154, 224, 1, 0, 0, 0, 2155, 2156, 7, 15, 0, 0, 2156, 2157, 7, 19, 0, 0, 2157, 2158, 7, 4, 0, 0, 2158, 2159, 7, 8, 0, 0, 2159, 2160, 7, 19, 0, 0, 2160, 2161, 7, 12, 0, 0, 2161, 2162, 7, 7, 0, 0, 2162, 2163, 7, 8, 0, 0, 2163, 226, 1, 0, 0, 0, 2164, 2165, 7, 15, 0, 0, 2165, 2166, 7, 6, 0, 0, 2166, 2167, 7, 8, 0, 0, 2167, 228, 1, 0, 0, 0, 2168, 2169, 7, 15, 0, 0, 2169, 2170, 7, 6, 0, 0, 2170, 2171, 7, 21, 0, 0, 2171, 2172, 7, 3, 0, 0, 2172, 2173, 7, 5, 0, 0, 2173, 2174, 7, 9, 0, 0, 2174, 230, 1, 0, 0, 0, 2175, 2176, 7, 15, 0, 0, 2176, 2177, 7, 11, 0, 0, 2177, 2178, 7, 6, 0, 0, 2178, 2179, 7, 24, 0, 0, 2179, 232, 1, 0, 0, 0, 2180, 2181, 7, 15, 0, 0, 2181, 2182, 7, 13, 0, 0, 2182, 2183, 7, 12, 0, 0, 2183, 2184, 7, 2, 0, 0, 2184, 2185, 7, 17, 0, 0, 2185, 2186, 7, 19, 0, 0, 2186, 2187, 7, 7, 0, 0, 2187, 234, 1, 0, 0, 0, 2188, 2189, 7, 9, 0, 0, 2189, 2190, 7, 2, 0, 0, 2190, 2191, 7, 7, 0, 0, 2191, 2192, 7, 22, 0, 0, 2192, 236, 1, 0, 0, 0, 2193, 2194, 7, 9, 0, 0, 2194, 2195, 7, 5, 0, 0, 2195, 2196, 7, 9, 0, 0, 2196, 2197, 7, 17, 0, 0, 2197, 2198, 7, 9, 0, 0, 2198, 2199, 7, 12, 0, 0, 2199, 2200, 7, 8, 0, 0, 2200, 238, 1, 0, 0, 0, 2201, 2202, 7, 9, 0, 0, 2202, 2203, 7, 5, 0, 0, 2203, 2204, 7, 4, 0, 0, 2204, 2205, 7, 9, 0, 0, 2205, 240, 1, 0, 0, 0, 2206, 2207, 7, 9, 0, 0, 2207, 2208, 7, 17, 0, 0, 2208, 2209, 7, 24, 0, 0, 2209, 2210, 7, 8, 0, 0, 2210, 2211, 7, 13, 0, 0, 2211, 242, 1, 0, 0, 0, 2212, 2213, 7, 9, 0, 0, 2213, 2214, 7, 12, 0, 0, 2214, 2215, 7, 15, 0, 0, 2215, 244, 1, 0, 0, 0, 2216, 2217, 7, 9, 0, 0, 2217, 2218, 7, 12, 0, 0, 2218, 2219, 7, 15, 0, 0, 2219, 2220, 5, 95, 0, 0, 2220, 2221, 7, 23, 0, 0, 2221, 2222, 7, 11, 0, 0, 2222, 2223, 7, 2, 0, 0, 2223, 2224, 7, 17, 0, 0, 2224, 2225, 7, 9, 0, 0, 2225, 246, 1, 0, 0, 0, 2226, 2227, 7, 9, 0, 0, 2227, 2228, 7, 12, 0, 0, 2228, 2229, 7, 15, 0, 0, 2229, 2230, 5, 95, 0, 0, 2230, 2231, 7, 24, 0, 0, 2231, 2232, 7, 2, 0, 0, 2232, 2233, 7, 11, 0, 0, 2233, 2234, 7, 8, 0, 0, 2234, 2235, 7, 19, 0, 0, 2235, 2236, 7, 8, 0, 0, 2236, 2237, 7, 19, 0, 0, 2237, 2238, 7, 6, 0, 0, 2238, 2239, 7, 12, 0, 0, 2239, 248, 1, 0, 0, 0, 2240, 2241, 7, 9, 0, 0, 2241, 2242, 7, 12, 0, 0, 2242, 2243, 7, 23, 0, 0, 2243, 2244, 7, 6, 0, 0, 2244, 2245, 7, 11, 0, 0, 2245, 2246, 7, 7, 0, 0, 2246, 2247, 7, 9, 0, 0, 2247, 2248, 7, 15, 0, 0, 2248, 250, 1, 0, 0, 0, 2249, 2250, 7, 9, 0, 0, 2250, 2251, 7, 26, 0, 0, 2251, 2252, 7, 21, 0, 0, 2252, 2253, 7, 2, 0, 0, 2253, 2254, 7, 5, 0, 0, 2254, 2255, 7, 4, 0, 0, 2255, 252, 1, 0, 0, 0, 2256, 2257, 7, 9, 0, 0, 2257, 2258, 7, 4, 0, 0, 2258, 2259, 7, 7, 0, 0, 2259, 2260, 7, 2, 0, 0, 2260, 2261, 7, 24, 0, 0, 2261, 2262, 7, 9, 0, 0, 2262, 254, 1, 0, 0, 0, 2263, 2264, 7, 9, 0, 0, 2264, 2265, 7, 4, 0, 0, 2265, 2266, 7, 8, 0, 0, 2266, 2267, 7, 19, 0, 0, 2267, 2268, 7, 17, 0, 0, 2268, 2269, 7, 2, 0, 0, 2269, 2270, 7, 8, 0, 0, 2270, 2271, 7, 9, 0, 0, 2271, 2272, 7, 15, 0, 0, 2272, 2273, 5, 95, 0, 0, 2273, 2274, 7, 7, 0, 0, 2274, 2275, 7, 6, 0, 0, 2275, 2276, 7, 4, 0, 0, 2276, 2277, 7, 8, 0, 0, 2277, 256, 1, 0, 0, 0, 2278, 2279, 7, 9, 0, 0, 2279, 2280, 7, 20, 0, 0, 2280, 2281, 7, 9, 0, 0, 2281, 2282, 7, 11, 0, 0, 2282, 2283, 7, 13, 0, 0, 2283, 258, 1, 0, 0, 0, 2284, 2285, 7, 9, 0, 0, 2285, 2286, 7, 18, 0, 0, 2286, 2287, 7, 7, 0, 0, 2287, 2288, 7, 9, 0, 0, 2288, 2289, 7, 24, 0, 0, 2289, 2290, 7, 8, 0, 0, 2290, 260, 1, 0, 0, 0, 2291, 2292, 7, 9, 0, 0, 2292, 2293, 7, 18, 0, 0, 2293, 2294, 7, 9, 0, 0, 2294, 2295, 7, 7, 0, 0, 2295, 262, 1, 0, 0, 0, 2296, 2297, 7, 9, 0, 0, 2297, 2298, 7, 18, 0, 0, 2298, 2299, 7, 9, 0, 0, 2299, 2300, 7, 7, 0, 0, 2300, 2301, 7, 21, 0, 0, 2301, 2302, 7, 8, 0, 0, 2302, 2303, 7, 9, 0, 0, 2303, 264, 1, 0, 0, 0, 2304, 2305, 7, 9, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2307, 7, 19, 0, 0, 2307, 2308, 7, 4, 0, 0, 2308, 2309, 7, 8, 0, 0, 2309, 2310, 7, 4, 0, 0, 2310, 266, 1, 0, 0, 0, 2311, 2312, 7, 9, 0, 0, 2312, 2313, 7, 18, 0, 0, 2313, 2314, 7, 24, 0, 0, 2314, 268, 1, 0, 0, 0, 2315, 2316, 7, 9, 0, 0, 2316, 2317, 7, 18, 0, 0, 2317, 2318, 7, 24, 0, 0, 2318, 2319, 7, 5, 0, 0, 2319, 2320, 7, 2, 0, 0, 2320, 2321, 7, 19, 0, 0, 2321, 2322, 7, 12, 0, 0, 2322, 270, 1, 0, 0, 0, 2323, 2324, 7, 9, 0, 0, 2324, 2325, 7, 18, 0, 0, 2325, 2326, 7, 8, 0, 0, 2326, 2327, 7, 9, 0, 0, 2327, 2328, 7, 12, 0, 0, 2328, 2329, 7, 15, 0, 0, 2329, 272, 1, 0, 0, 0, 2330, 2331, 7, 9, 0, 0, 2331, 2332, 7, 18, 0, 0, 2332, 2333, 7, 8, 0, 0, 2333, 2334, 7, 9, 0, 0, 2334, 2335, 7, 12, 0, 0, 2335, 2336, 7, 15, 0, 0, 2336, 2337, 7, 9, 0, 0, 2337, 2338, 7, 15, 0, 0, 2338, 274, 1, 0, 0, 0, 2339, 2340, 7, 9, 0, 0, 2340, 2341, 7, 18, 0, 0, 2341, 2342, 7, 8, 0, 0, 2342, 2343, 7, 9, 0, 0, 2343, 2344, 7, 11, 0, 0, 2344, 2345, 7, 12, 0, 0, 2345, 2346, 7, 2, 0, 0, 2346, 2347, 7, 5, 0, 0, 2347, 276, 1, 0, 0, 0, 2348, 2349, 7, 9, 0, 0, 2349, 2350, 7, 18, 0, 0, 2350, 2351, 7, 8, 0, 0, 2351, 2352, 7, 11, 0, 0, 2352, 2353, 7, 2, 0, 0, 2353, 2354, 7, 7, 0, 0, 2354, 2355, 7, 8, 0, 0, 2355, 278, 1, 0, 0, 0, 2356, 2357, 7, 23, 0, 0, 2357, 2358, 7, 2, 0, 0, 2358, 2359, 7, 5, 0, 0, 2359, 2360, 7, 4, 0, 0, 2360, 2361, 7, 9, 0, 0, 2361, 280, 1, 0, 0, 0, 2362, 2363, 7, 23, 0, 0, 2363, 2364, 7, 9, 0, 0, 2364, 2365, 7, 8, 0, 0, 2365, 2366, 7, 7, 0, 0, 2366, 2367, 7, 22, 0, 0, 2367, 282, 1, 0, 0, 0, 2368, 2369, 7, 23, 0, 0, 2369, 2370, 7, 19, 0, 0, 2370, 2371, 7, 5, 0, 0, 2371, 2372, 7, 8, 0, 0, 2372, 2373, 7, 9, 0, 0, 2373, 2374, 7, 11, 0, 0, 2374, 284, 1, 0, 0, 0, 2375, 2376, 7, 23, 0, 0, 2376, 2377, 7, 19, 0, 0, 2377, 2378, 7, 11, 0, 0, 2378, 2379, 7, 4, 0, 0, 2379, 2380, 7, 8, 0, 0, 2380, 2381, 5, 95, 0, 0, 2381, 2382, 7, 20, 0, 0, 2382, 2383, 7, 2, 0, 0, 2383, 2384, 7, 5, 0, 0, 2384, 2385, 7, 21, 0, 0, 2385, 2386, 7, 9, 0, 0, 2386, 286, 1, 0, 0, 0, 2387, 2388, 7, 23, 0, 0, 2388, 2389, 7, 5, 0, 0, 2389, 2390, 7, 6, 0, 0, 2390, 2391, 7, 2, 0, 0, 2391, 2392, 7, 8, 0, 0, 2392, 288, 1, 0, 0, 0, 2393, 2394, 7, 23, 0, 0, 2394, 2395, 7, 5, 0, 0, 2395, 2396, 7, 6, 0, 0, 2396, 2397, 7, 6, 0, 0, 2397, 2398, 7, 11, 0, 0, 2398, 290, 1, 0, 0, 0, 2399, 2400, 7, 23, 0, 0, 2400, 2401, 7, 6, 0, 0, 2401, 2402, 7, 11, 0, 0, 2402, 292, 1, 0, 0, 0, 2403, 2404, 7, 23, 0, 0, 2404, 2405, 7, 6, 0, 0, 2405, 2406, 7, 11, 0, 0, 2406, 2407, 7, 9, 0, 0, 2407, 2408, 7, 19, 0, 0, 2408, 2409, 7, 16, 0, 0, 2409, 2410, 7, 12, 0, 0, 2410, 294, 1, 0, 0, 0, 2411, 2412, 7, 23, 0, 0, 2412, 2413, 7, 11, 0, 0, 2413, 2414, 7, 2, 0, 0, 2414, 2415, 7, 17, 0, 0, 2415, 2416, 7, 9, 0, 0, 2416, 2417, 5, 95, 0, 0, 2417, 2418, 7, 11, 0, 0, 2418, 2419, 7, 6, 0, 0, 2419, 2420, 7, 10, 0, 0, 2420, 296, 1, 0, 0, 0, 2421, 2422, 7, 23, 0, 0, 2422, 2423, 7, 11, 0, 0, 2423, 2424, 7, 9, 0, 0, 2424, 2425, 7, 9, 0, 0, 2425, 298, 1, 0, 0, 0, 2426, 2427, 7, 23, 0, 0, 2427, 2428, 7, 11, 0, 0, 2428, 2429, 7, 19, 0, 0, 2429, 2430, 7, 15, 0, 0, 2430, 2431, 7, 2, 0, 0, 2431, 2432, 7, 13, 0, 0, 2432, 300, 1, 0, 0, 0, 2433, 2434, 7, 23, 0, 0, 2434, 2435, 7, 11, 0, 0, 2435, 2436, 7, 6, 0, 0, 2436, 2437, 7, 17, 0, 0, 2437, 302, 1, 0, 0, 0, 2438, 2439, 7, 23, 0, 0, 2439, 2440, 7, 21, 0, 0, 2440, 2441, 7, 5, 0, 0, 2441, 2442, 7, 5, 0, 0, 2442, 304, 1, 0, 0, 0, 2443, 2444, 7, 23, 0, 0, 2444, 2445, 7, 21, 0, 0, 2445, 2446, 7, 12, 0, 0, 2446, 2447, 7, 7, 0, 0, 2447, 2448, 7, 8, 0, 0, 2448, 2449, 7, 19, 0, 0, 2449, 2450, 7, 6, 0, 0, 2450, 2451, 7, 12, 0, 0, 2451, 306, 1, 0, 0, 0, 2452, 2453, 7, 23, 0, 0, 2453, 2454, 7, 21, 0, 0, 2454, 2455, 7, 12, 0, 0, 2455, 2456, 7, 7, 0, 0, 2456, 2457, 7, 8, 0, 0, 2457, 2458, 7, 19, 0, 0, 2458, 2459, 7, 6, 0, 0, 2459, 2460, 7, 12, 0, 0, 2460, 2461, 7, 4, 0, 0, 2461, 308, 1, 0, 0, 0, 2462, 2463, 7, 23, 0, 0, 2463, 2464, 7, 21, 0, 0, 2464, 2465, 7, 4, 0, 0, 2465, 2466, 7, 19, 0, 0, 2466, 2467, 7, 6, 0, 0, 2467, 2468, 7, 12, 0, 0, 2468, 310, 1, 0, 0, 0, 2469, 2470, 7, 16, 0, 0, 2470, 2471, 7, 9, 0, 0, 2471, 2472, 7, 8, 0, 0, 2472, 312, 1, 0, 0, 0, 2473, 2474, 7, 16, 0, 0, 2474, 2475, 7, 5, 0, 0, 2475, 2476, 7, 6, 0, 0, 2476, 2477, 7, 3, 0, 0, 2477, 2478, 7, 2, 0, 0, 2478, 2479, 7, 5, 0, 0, 2479, 314, 1, 0, 0, 0, 2480, 2481, 7, 16, 0, 0, 2481, 2482, 7, 11, 0, 0, 2482, 2483, 7, 2, 0, 0, 2483, 2484, 7, 12, 0, 0, 2484, 2485, 7, 8, 0, 0, 2485, 316, 1, 0, 0, 0, 2486, 2487, 7, 16, 0, 0, 2487, 2488, 7, 11, 0, 0, 2488, 2489, 7, 6, 0, 0, 2489, 2490, 7, 21, 0, 0, 2490, 2491, 7, 24, 0, 0, 2491, 318, 1, 0, 0, 0, 2492, 2493, 7, 16, 0, 0, 2493, 2494, 7, 11, 0, 0, 2494, 2495, 7, 6, 0, 0, 2495, 2496, 7, 21, 0, 0, 2496, 2497, 7, 24, 0, 0, 2497, 2498, 7, 19, 0, 0, 2498, 2499, 7, 12, 0, 0, 2499, 2500, 7, 16, 0, 0, 2500, 320, 1, 0, 0, 0, 2501, 2502, 7, 16, 0, 0, 2502, 2503, 7, 11, 0, 0, 2503, 2504, 7, 6, 0, 0, 2504, 2505, 7, 21, 0, 0, 2505, 2506, 7, 24, 0, 0, 2506, 2507, 7, 4, 0, 0, 2507, 322, 1, 0, 0, 0, 2508, 2509, 7, 16, 0, 0, 2509, 2510, 7, 11, 0, 0, 2510, 2511, 7, 6, 0, 0, 2511, 2512, 7, 21, 0, 0, 2512, 2513, 7, 24, 0, 0, 2513, 2514, 5, 95, 0, 0, 2514, 2515, 7, 7, 0, 0, 2515, 2516, 7, 6, 0, 0, 2516, 2517, 7, 12, 0, 0, 2517, 2518, 7, 7, 0, 0, 2518, 2519, 7, 2, 0, 0, 2519, 2520, 7, 8, 0, 0, 2520, 324, 1, 0, 0, 0, 2521, 2522, 7, 22, 0, 0, 2522, 2523, 7, 2, 0, 0, 2523, 2524, 7, 20, 0, 0, 2524, 2525, 7, 19, 0, 0, 2525, 2526, 7, 12, 0, 0, 2526, 2527, 7, 16, 0, 0, 2527, 326, 1, 0, 0, 0, 2528, 2529, 7, 22, 0, 0, 2529, 2530, 7, 6, 0, 0, 2530, 2531, 7, 5, 0, 0, 2531, 2532, 7, 15, 0, 0, 2532, 328, 1, 0, 0, 0, 2533, 2534, 7, 22, 0, 0, 2534, 2535, 7, 6, 0, 0, 2535, 2536, 7, 21, 0, 0, 2536, 2537, 7, 11, 0, 0, 2537, 330, 1, 0, 0, 0, 2538, 2539, 7, 19, 0, 0, 2539, 2540, 7, 15, 0, 0, 2540, 2541, 7, 9, 0, 0, 2541, 2542, 7, 12, 0, 0, 2542, 2543, 7, 8, 0, 0, 2543, 2544, 7, 19, 0, 0, 2544, 2545, 7, 8, 0, 0, 2545, 2546, 7, 13, 0, 0, 2546, 332, 1, 0, 0, 0, 2547, 2548, 7, 19, 0, 0, 2548, 2549, 7, 23, 0, 0, 2549, 334, 1, 0, 0, 0, 2550, 2551, 7, 19, 0, 0, 2551, 2552, 7, 5, 0, 0, 2552, 2553, 7, 19, 0, 0, 2553, 2554, 7, 25, 0, 0, 2554, 2555, 7, 9, 0, 0, 2555, 336, 1, 0, 0, 0, 2556, 2557, 7, 19, 0, 0, 2557, 2558, 7, 17, 0, 0, 2558, 2559, 7, 24, 0, 0, 2559, 2560, 7, 6, 0, 0, 2560, 2561, 7, 11, 0, 0, 2561, 2562, 7, 8, 0, 0, 2562, 338, 1, 0, 0, 0, 2563, 2564, 7, 19, 0, 0, 2564, 2565, 7, 12, 0, 0, 2565, 340, 1, 0, 0, 0, 2566, 2567, 7, 19, 0, 0, 2567, 2568, 7, 12, 0, 0, 2568, 2569, 7, 7, 0, 0, 2569, 2570, 7, 5, 0, 0, 2570, 2571, 7, 21, 0, 0, 2571, 2572, 7, 15, 0, 0, 2572, 2573, 7, 9, 0, 0, 2573, 342, 1, 0, 0, 0, 2574, 2575, 7, 19, 0, 0, 2575, 2576, 7, 12, 0, 0, 2576, 2577, 7, 15, 0, 0, 2577, 2578, 7, 19, 0, 0, 2578, 2579, 7, 7, 0, 0, 2579, 2580, 7, 2, 0, 0, 2580, 2581, 7, 8, 0, 0, 2581, 2582, 7, 6, 0, 0, 2582, 2583, 7, 11, 0, 0, 2583, 344, 1, 0, 0, 0, 2584, 2585, 7, 19, 0, 0, 2585, 2586, 7, 12, 0, 0, 2586, 2587, 7, 19, 0, 0, 2587, 2588, 7, 8, 0, 0, 2588, 2589, 7, 19, 0, 0, 2589, 2590, 7, 2, 0, 0, 2590, 2591, 7, 5, 0, 0, 2591, 346, 1, 0, 0, 0, 2592, 2593, 7, 19, 0, 0, 2593, 2594, 7, 12, 0, 0, 2594, 2595, 7, 12, 0, 0, 2595, 2596, 7, 9, 0, 0, 2596, 2597, 7, 11, 0, 0, 2597, 348, 1, 0, 0, 0, 2598, 2599, 7, 19, 0, 0, 2599, 2600, 7, 12, 0, 0, 2600, 2601, 7, 6, 0, 0, 2601, 2602, 7, 21, 0, 0, 2602, 2603, 7, 8, 0, 0, 2603, 350, 1, 0, 0, 0, 2604, 2605, 7, 19, 0, 0, 2605, 2606, 7, 12, 0, 0, 2606, 2607, 7, 4, 0, 0, 2607, 2608, 7, 9, 0, 0, 2608, 2609, 7, 12, 0, 0, 2609, 2610, 7, 4, 0, 0, 2610, 2611, 7, 19, 0, 0, 2611, 2612, 7, 8, 0, 0, 2612, 2613, 7, 19, 0, 0, 2613, 2614, 7, 20, 0, 0, 2614, 2615, 7, 9, 0, 0, 2615, 352, 1, 0, 0, 0, 2616, 2617, 7, 19, 0, 0, 2617, 2618, 7, 12, 0, 0, 2618, 2619, 7, 4, 0, 0, 2619, 2620, 7, 9, 0, 0, 2620, 2621, 7, 11, 0, 0, 2621, 2622, 7, 8, 0, 0, 2622, 354, 1, 0, 0, 0, 2623, 2624, 7, 19, 0, 0, 2624, 2625, 7, 12, 0, 0, 2625, 2626, 7, 8, 0, 0, 2626, 356, 1, 0, 0, 0, 2627, 2628, 7, 19, 0, 0, 2628, 2629, 7, 12, 0, 0, 2629, 2630, 7, 8, 0, 0, 2630, 2631, 7, 9, 0, 0, 2631, 2632, 7, 16, 0, 0, 2632, 2633, 7, 9, 0, 0, 2633, 2634, 7, 11, 0, 0, 2634, 358, 1, 0, 0, 0, 2635, 2636, 7, 19, 0, 0, 2636, 2637, 7, 12, 0, 0, 2637, 2638, 7, 8, 0, 0, 2638, 2639, 7, 9, 0, 0, 2639, 2640, 7, 11, 0, 0, 2640, 2641, 7, 4, 0, 0, 2641, 2642, 7, 9, 0, 0, 2642, 2643, 7, 7, 0, 0, 2643, 2644, 7, 8, 0, 0, 2644, 360, 1, 0, 0, 0, 2645, 2646, 7, 19, 0, 0, 2646, 2647, 7, 12, 0, 0, 2647, 2648, 7, 8, 0, 0, 2648, 2649, 7, 9, 0, 0, 2649, 2650, 7, 11, 0, 0, 2650, 2651, 7, 4, 0, 0, 2651, 2652, 7, 9, 0, 0, 2652, 2653, 7, 7, 0, 0, 2653, 2654, 7, 8, 0, 0, 2654, 2655, 7, 19, 0, 0, 2655, 2656, 7, 6, 0, 0, 2656, 2657, 7, 12, 0, 0, 2657, 362, 1, 0, 0, 0, 2658, 2659, 7, 19, 0, 0, 2659, 2660, 7, 12, 0, 0, 2660, 2661, 7, 8, 0, 0, 2661, 2662, 7, 9, 0, 0, 2662, 2663, 7, 11, 0, 0, 2663, 2664, 7, 20, 0, 0, 2664, 2665, 7, 2, 0, 0, 2665, 2666, 7, 5, 0, 0, 2666, 364, 1, 0, 0, 0, 2667, 2668, 7, 19, 0, 0, 2668, 2669, 7, 12, 0, 0, 2669, 2670, 7, 8, 0, 0, 2670, 2671, 7, 6, 0, 0, 2671, 366, 1, 0, 0, 0, 2672, 2673, 7, 19, 0, 0, 2673, 2674, 7, 4, 0, 0, 2674, 368, 1, 0, 0, 0, 2675, 2676, 7, 27, 0, 0, 2676, 2677, 7, 6, 0, 0, 2677, 2678, 7, 19, 0, 0, 2678, 2679, 7, 12, 0, 0, 2679, 370, 1, 0, 0, 0, 2680, 2681, 7, 27, 0, 0, 2681, 2682, 7, 4, 0, 0, 2682, 2683, 7, 6, 0, 0, 2683, 2684, 7, 12, 0, 0, 2684, 372, 1, 0, 0, 0, 2685, 2686, 7, 27, 0, 0, 2686, 2687, 7, 4, 0, 0, 2687, 2688, 7, 6, 0, 0, 2688, 2689, 7, 12, 0, 0, 2689, 2690, 5, 95, 0, 0, 2690, 2691, 7, 2, 0, 0, 2691, 2692, 7, 11, 0, 0, 2692, 2693, 7, 11, 0, 0, 2693, 2694, 7, 2, 0, 0, 2694, 2695, 7, 13, 0, 0, 2695, 374, 1, 0, 0, 0, 2696, 2697, 7, 27, 0, 0, 2697, 2698, 7, 4, 0, 0, 2698, 2699, 7, 6, 0, 0, 2699, 2700, 7, 12, 0, 0, 2700, 2701, 5, 95, 0, 0, 2701, 2702, 7, 2, 0, 0, 2702, 2703, 7, 11, 0, 0, 2703, 2704, 7, 11, 0, 0, 2704, 2705, 7, 2, 0, 0, 2705, 2706, 7, 13, 0, 0, 2706, 2707, 7, 2, 0, 0, 2707, 2708, 7, 16, 0, 0, 2708, 2709, 7, 16, 0, 0, 2709, 376, 1, 0, 0, 0, 2710, 2711, 7, 27, 0, 0, 2711, 2712, 7, 4, 0, 0, 2712, 2713, 7, 6, 0, 0, 2713, 2714, 7, 12, 0, 0, 2714, 2715, 5, 95, 0, 0, 2715, 2716, 7, 9, 0, 0, 2716, 2717, 7, 18, 0, 0, 2717, 2718, 7, 9, 0, 0, 2718, 2719, 7, 7, 0, 0, 2719, 2720, 7, 21, 0, 0, 2720, 2721, 7, 8, 0, 0, 2721, 2722, 7, 19, 0, 0, 2722, 2723, 7, 6, 0, 0, 2723, 2724, 7, 12, 0, 0, 2724, 2725, 5, 95, 0, 0, 2725, 2726, 7, 24, 0, 0, 2726, 2727, 7, 5, 0, 0, 2727, 2728, 7, 2, 0, 0, 2728, 2729, 7, 12, 0, 0, 2729, 378, 1, 0, 0, 0, 2730, 2731, 7, 27, 0, 0, 2731, 2732, 7, 4, 0, 0, 2732, 2733, 7, 6, 0, 0, 2733, 2734, 7, 12, 0, 0, 2734, 2735, 5, 95, 0, 0, 2735, 2736, 7, 9, 0, 0, 2736, 2737, 7, 18, 0, 0, 2737, 2738, 7, 19, 0, 0, 2738, 2739, 7, 4, 0, 0, 2739, 2740, 7, 8, 0, 0, 2740, 2741, 7, 4, 0, 0, 2741, 380, 1, 0, 0, 0, 2742, 2743, 7, 27, 0, 0, 2743, 2744, 7, 4, 0, 0, 2744, 2745, 7, 6, 0, 0, 2745, 2746, 7, 12, 0, 0, 2746, 2747, 5, 95, 0, 0, 2747, 2748, 7, 6, 0, 0, 2748, 2749, 7, 3, 0, 0, 2749, 2750, 7, 27, 0, 0, 2750, 2751, 7, 9, 0, 0, 2751, 2752, 7, 7, 0, 0, 2752, 2753, 7, 8, 0, 0, 2753, 382, 1, 0, 0, 0, 2754, 2755, 7, 27, 0, 0, 2755, 2756, 7, 4, 0, 0, 2756, 2757, 7, 6, 0, 0, 2757, 2758, 7, 12, 0, 0, 2758, 2759, 5, 95, 0, 0, 2759, 2760, 7, 6, 0, 0, 2760, 2761, 7, 3, 0, 0, 2761, 2762, 7, 27, 0, 0, 2762, 2763, 7, 9, 0, 0, 2763, 2764, 7, 7, 0, 0, 2764, 2765, 7, 8, 0, 0, 2765, 2766, 7, 2, 0, 0, 2766, 2767, 7, 16, 0, 0, 2767, 2768, 7, 16, 0, 0, 2768, 384, 1, 0, 0, 0, 2769, 2770, 7, 27, 0, 0, 2770, 2771, 7, 4, 0, 0, 2771, 2772, 7, 6, 0, 0, 2772, 2773, 7, 12, 0, 0, 2773, 2774, 5, 95, 0, 0, 2774, 2775, 7, 26, 0, 0, 2775, 2776, 7, 21, 0, 0, 2776, 2777, 7, 9, 0, 0, 2777, 2778, 7, 11, 0, 0, 2778, 2779, 7, 13, 0, 0, 2779, 386, 1, 0, 0, 0, 2780, 2781, 7, 27, 0, 0, 2781, 2782, 7, 4, 0, 0, 2782, 2783, 7, 6, 0, 0, 2783, 2784, 7, 12, 0, 0, 2784, 2785, 5, 95, 0, 0, 2785, 2786, 7, 20, 0, 0, 2786, 2787, 7, 2, 0, 0, 2787, 2788, 7, 5, 0, 0, 2788, 2789, 7, 21, 0, 0, 2789, 2790, 7, 9, 0, 0, 2790, 388, 1, 0, 0, 0, 2791, 2792, 7, 5, 0, 0, 2792, 2793, 7, 2, 0, 0, 2793, 2794, 7, 16, 0, 0, 2794, 390, 1, 0, 0, 0, 2795, 2796, 7, 5, 0, 0, 2796, 2797, 7, 2, 0, 0, 2797, 2798, 7, 12, 0, 0, 2798, 2799, 7, 16, 0, 0, 2799, 2800, 7, 21, 0, 0, 2800, 2801, 7, 2, 0, 0, 2801, 2802, 7, 16, 0, 0, 2802, 2803, 7, 9, 0, 0, 2803, 392, 1, 0, 0, 0, 2804, 2805, 7, 5, 0, 0, 2805, 2806, 7, 2, 0, 0, 2806, 2807, 7, 11, 0, 0, 2807, 2808, 7, 16, 0, 0, 2808, 2809, 7, 9, 0, 0, 2809, 394, 1, 0, 0, 0, 2810, 2811, 7, 5, 0, 0, 2811, 2812, 7, 2, 0, 0, 2812, 2813, 7, 4, 0, 0, 2813, 2814, 7, 8, 0, 0, 2814, 2815, 5, 95, 0, 0, 2815, 2816, 7, 20, 0, 0, 2816, 2817, 7, 2, 0, 0, 2817, 2818, 7, 5, 0, 0, 2818, 2819, 7, 21, 0, 0, 2819, 2820, 7, 9, 0, 0, 2820, 396, 1, 0, 0, 0, 2821, 2822, 7, 5, 0, 0, 2822, 2823, 7, 2, 0, 0, 2823, 2824, 7, 8, 0, 0, 2824, 2825, 7, 9, 0, 0, 2825, 2826, 7, 11, 0, 0, 2826, 2827, 7, 2, 0, 0, 2827, 2828, 7, 5, 0, 0, 2828, 398, 1, 0, 0, 0, 2829, 2830, 7, 5, 0, 0, 2830, 2831, 7, 9, 0, 0, 2831, 2832, 7, 2, 0, 0, 2832, 2833, 7, 15, 0, 0, 2833, 400, 1, 0, 0, 0, 2834, 2835, 7, 5, 0, 0, 2835, 2836, 7, 9, 0, 0, 2836, 2837, 7, 2, 0, 0, 2837, 2838, 7, 15, 0, 0, 2838, 2839, 7, 19, 0, 0, 2839, 2840, 7, 12, 0, 0, 2840, 2841, 7, 16, 0, 0, 2841, 402, 1, 0, 0, 0, 2842, 2843, 7, 5, 0, 0, 2843, 2844, 7, 9, 0, 0, 2844, 2845, 7, 23, 0, 0, 2845, 2846, 7, 8, 0, 0, 2846, 404, 1, 0, 0, 0, 2847, 2848, 7, 5, 0, 0, 2848, 2849, 7, 19, 0, 0, 2849, 2850, 7, 25, 0, 0, 2850, 2851, 7, 9, 0, 0, 2851, 406, 1, 0, 0, 0, 2852, 2853, 7, 5, 0, 0, 2853, 2854, 7, 19, 0, 0, 2854, 2855, 7, 25, 0, 0, 2855, 2856, 7, 9, 0, 0, 2856, 2857, 5, 95, 0, 0, 2857, 2858, 7, 11, 0, 0, 2858, 2859, 7, 9, 0, 0, 2859, 2860, 7, 16, 0, 0, 2860, 2861, 7, 9, 0, 0, 2861, 2862, 7, 18, 0, 0, 2862, 408, 1, 0, 0, 0, 2863, 2864, 7, 5, 0, 0, 2864, 2865, 7, 19, 0, 0, 2865, 2866, 7, 17, 0, 0, 2866, 2867, 7, 19, 0, 0, 2867, 2868, 7, 8, 0, 0, 2868, 410, 1, 0, 0, 0, 2869, 2870, 7, 5, 0, 0, 2870, 2871, 7, 12, 0, 0, 2871, 412, 1, 0, 0, 0, 2872, 2873, 7, 5, 0, 0, 2873, 2874, 7, 6, 0, 0, 2874, 2875, 7, 7, 0, 0, 2875, 2876, 7, 2, 0, 0, 2876, 2877, 7, 5, 0, 0, 2877, 414, 1, 0, 0, 0, 2878, 2879, 7, 5, 0, 0, 2879, 2880, 7, 6, 0, 0, 2880, 2881, 7, 7, 0, 0, 2881, 2882, 7, 2, 0, 0, 2882, 2883, 7, 5, 0, 0, 2883, 2884, 7, 8, 0, 0, 2884, 2885, 7, 19, 0, 0, 2885, 2886, 7, 17, 0, 0, 2886, 2887, 7, 9, 0, 0, 2887, 416, 1, 0, 0, 0, 2888, 2889, 7, 5, 0, 0, 2889, 2890, 7, 6, 0, 0, 2890, 2891, 7, 7, 0, 0, 2891, 2892, 7, 2, 0, 0, 2892, 2893, 7, 5, 0, 0, 2893, 2894, 7, 8, 0, 0, 2894, 2895, 7, 19, 0, 0, 2895, 2896, 7, 17, 0, 0, 2896, 2897, 7, 9, 0, 0, 2897, 2898, 7, 4, 0, 0, 2898, 2899, 7, 8, 0, 0, 2899, 2900, 7, 2, 0, 0, 2900, 2901, 7, 17, 0, 0, 2901, 2902, 7, 24, 0, 0, 2902, 418, 1, 0, 0, 0, 2903, 2904, 7, 5, 0, 0, 2904, 2905, 7, 6, 0, 0, 2905, 2906, 7, 10, 0, 0, 2906, 2907, 7, 9, 0, 0, 2907, 2908, 7, 11, 0, 0, 2908, 420, 1, 0, 0, 0, 2909, 2910, 7, 17, 0, 0, 2910, 2911, 7, 2, 0, 0, 2911, 2912, 7, 8, 0, 0, 2912, 2913, 7, 7, 0, 0, 2913, 2914, 7, 22, 0, 0, 2914, 422, 1, 0, 0, 0, 2915, 2916, 7, 17, 0, 0, 2916, 2917, 7, 2, 0, 0, 2917, 2918, 7, 8, 0, 0, 2918, 2919, 7, 7, 0, 0, 2919, 2920, 7, 22, 0, 0, 2920, 2921, 7, 9, 0, 0, 2921, 2922, 7, 4, 0, 0, 2922, 424, 1, 0, 0, 0, 2923, 2924, 7, 17, 0, 0, 2924, 2925, 7, 2, 0, 0, 2925, 2926, 7, 8, 0, 0, 2926, 2927, 7, 7, 0, 0, 2927, 2928, 7, 22, 0, 0, 2928, 2929, 5, 95, 0, 0, 2929, 2930, 7, 12, 0, 0, 2930, 2931, 7, 21, 0, 0, 2931, 2932, 7, 17, 0, 0, 2932, 2933, 7, 3, 0, 0, 2933, 2934, 7, 9, 0, 0, 2934, 2935, 7, 11, 0, 0, 2935, 426, 1, 0, 0, 0, 2936, 2937, 7, 17, 0, 0, 2937, 2938, 7, 2, 0, 0, 2938, 2939, 7, 8, 0, 0, 2939, 2940, 7, 7, 0, 0, 2940, 2941, 7, 22, 0, 0, 2941, 2942, 5, 95, 0, 0, 2942, 2943, 7, 11, 0, 0, 2943, 2944, 7, 9, 0, 0, 2944, 2945, 7, 7, 0, 0, 2945, 2946, 7, 6, 0, 0, 2946, 2947, 7, 16, 0, 0, 2947, 2948, 7, 12, 0, 0, 2948, 2949, 7, 19, 0, 0, 2949, 2950, 7, 14, 0, 0, 2950, 2951, 7, 9, 0, 0, 2951, 428, 1, 0, 0, 0, 2952, 2953, 7, 17, 0, 0, 2953, 2954, 7, 2, 0, 0, 2954, 2955, 7, 18, 0, 0, 2955, 430, 1, 0, 0, 0, 2956, 2957, 7, 17, 0, 0, 2957, 2958, 7, 9, 0, 0, 2958, 2959, 7, 2, 0, 0, 2959, 2960, 7, 4, 0, 0, 2960, 2961, 7, 21, 0, 0, 2961, 2962, 7, 11, 0, 0, 2962, 2963, 7, 9, 0, 0, 2963, 2964, 7, 4, 0, 0, 2964, 432, 1, 0, 0, 0, 2965, 2966, 7, 17, 0, 0, 2966, 2967, 7, 9, 0, 0, 2967, 2968, 7, 17, 0, 0, 2968, 2969, 7, 3, 0, 0, 2969, 2970, 7, 9, 0, 0, 2970, 2971, 7, 11, 0, 0, 2971, 434, 1, 0, 0, 0, 2972, 2973, 7, 17, 0, 0, 2973, 2974, 7, 9, 0, 0, 2974, 2975, 7, 11, 0, 0, 2975, 2976, 7, 16, 0, 0, 2976, 2977, 7, 9, 0, 0, 2977, 436, 1, 0, 0, 0, 2978, 2979, 7, 17, 0, 0, 2979, 2980, 7, 9, 0, 0, 2980, 2981, 7, 8, 0, 0, 2981, 2982, 7, 2, 0, 0, 2982, 2983, 7, 15, 0, 0, 2983, 2984, 7, 2, 0, 0, 2984, 2985, 7, 8, 0, 0, 2985, 2986, 7, 2, 0, 0, 2986, 438, 1, 0, 0, 0, 2987, 2988, 7, 17, 0, 0, 2988, 2989, 7, 9, 0, 0, 2989, 2990, 7, 8, 0, 0, 2990, 2991, 7, 22, 0, 0, 2991, 2992, 7, 6, 0, 0, 2992, 2993, 7, 15, 0, 0, 2993, 440, 1, 0, 0, 0, 2994, 2995, 7, 17, 0, 0, 2995, 2996, 7, 19, 0, 0, 2996, 2997, 7, 12, 0, 0, 2997, 442, 1, 0, 0, 0, 2998, 2999, 7, 17, 0, 0, 2999, 3000, 7, 19, 0, 0, 3000, 3001, 7, 12, 0, 0, 3001, 3002, 7, 21, 0, 0, 3002, 3003, 7, 4, 0, 0, 3003, 444, 1, 0, 0, 0, 3004, 3005, 7, 17, 0, 0, 3005, 3006, 7, 19, 0, 0, 3006, 3007, 7, 12, 0, 0, 3007, 3008, 7, 21, 0, 0, 3008, 3009, 7, 8, 0, 0, 3009, 3010, 7, 9, 0, 0, 3010, 446, 1, 0, 0, 0, 3011, 3012, 7, 17, 0, 0, 3012, 3013, 7, 6, 0, 0, 3013, 3014, 7, 15, 0, 0, 3014, 448, 1, 0, 0, 0, 3015, 3016, 7, 17, 0, 0, 3016, 3017, 7, 6, 0, 0, 3017, 3018, 7, 15, 0, 0, 3018, 3019, 7, 19, 0, 0, 3019, 3020, 7, 23, 0, 0, 3020, 3021, 7, 19, 0, 0, 3021, 3022, 7, 9, 0, 0, 3022, 3023, 7, 4, 0, 0, 3023, 450, 1, 0, 0, 0, 3024, 3025, 7, 17, 0, 0, 3025, 3026, 7, 6, 0, 0, 3026, 3027, 7, 15, 0, 0, 3027, 3028, 7, 19, 0, 0, 3028, 3029, 7, 23, 0, 0, 3029, 3030, 7, 13, 0, 0, 3030, 452, 1, 0, 0, 0, 3031, 3032, 7, 17, 0, 0, 3032, 3033, 7, 6, 0, 0, 3033, 3034, 7, 15, 0, 0, 3034, 3035, 7, 21, 0, 0, 3035, 3036, 7, 5, 0, 0, 3036, 3037, 7, 9, 0, 0, 3037, 454, 1, 0, 0, 0, 3038, 3039, 7, 17, 0, 0, 3039, 3040, 7, 6, 0, 0, 3040, 3041, 7, 15, 0, 0, 3041, 3042, 7, 21, 0, 0, 3042, 3043, 7, 5, 0, 0, 3043, 3044, 7, 9, 0, 0, 3044, 3045, 7, 4, 0, 0, 3045, 456, 1, 0, 0, 0, 3046, 3047, 7, 17, 0, 0, 3047, 3048, 7, 6, 0, 0, 3048, 3049, 7, 12, 0, 0, 3049, 3050, 7, 15, 0, 0, 3050, 3051, 7, 2, 0, 0, 3051, 3052, 7, 13, 0, 0, 3052, 458, 1, 0, 0, 0, 3053, 3054, 7, 17, 0, 0, 3054, 3055, 7, 6, 0, 0, 3055, 3056, 7, 12, 0, 0, 3056, 3057, 7, 8, 0, 0, 3057, 3058, 7, 22, 0, 0, 3058, 460, 1, 0, 0, 0, 3059, 3060, 7, 17, 0, 0, 3060, 3061, 7, 6, 0, 0, 3061, 3062, 7, 11, 0, 0, 3062, 3063, 7, 9, 0, 0, 3063, 462, 1, 0, 0, 0, 3064, 3065, 7, 17, 0, 0, 3065, 3066, 7, 21, 0, 0, 3066, 3067, 7, 5, 0, 0, 3067, 3068, 7, 8, 0, 0, 3068, 3069, 7, 19, 0, 0, 3069, 3070, 7, 4, 0, 0, 3070, 3071, 7, 9, 0, 0, 3071, 3072, 7, 8, 0, 0, 3072, 464, 1, 0, 0, 0, 3073, 3074, 7, 12, 0, 0, 3074, 3075, 7, 2, 0, 0, 3075, 3076, 7, 8, 0, 0, 3076, 3077, 7, 19, 0, 0, 3077, 3078, 7, 6, 0, 0, 3078, 3079, 7, 12, 0, 0, 3079, 3080, 7, 2, 0, 0, 3080, 3081, 7, 5, 0, 0, 3081, 466, 1, 0, 0, 0, 3082, 3083, 7, 12, 0, 0, 3083, 3084, 7, 2, 0, 0, 3084, 3085, 7, 8, 0, 0, 3085, 3086, 7, 21, 0, 0, 3086, 3087, 7, 11, 0, 0, 3087, 3088, 7, 2, 0, 0, 3088, 3089, 7, 5, 0, 0, 3089, 468, 1, 0, 0, 0, 3090, 3091, 7, 12, 0, 0, 3091, 3092, 7, 7, 0, 0, 3092, 3093, 7, 22, 0, 0, 3093, 3094, 7, 2, 0, 0, 3094, 3095, 7, 11, 0, 0, 3095, 470, 1, 0, 0, 0, 3096, 3097, 7, 12, 0, 0, 3097, 3098, 7, 7, 0, 0, 3098, 3099, 7, 5, 0, 0, 3099, 3100, 7, 6, 0, 0, 3100, 3101, 7, 3, 0, 0, 3101, 472, 1, 0, 0, 0, 3102, 3103, 7, 12, 0, 0, 3103, 3104, 7, 9, 0, 0, 3104, 3105, 7, 10, 0, 0, 3105, 474, 1, 0, 0, 0, 3106, 3107, 7, 12, 0, 0, 3107, 3108, 7, 9, 0, 0, 3108, 3109, 7, 18, 0, 0, 3109, 3110, 7, 8, 0, 0, 3110, 476, 1, 0, 0, 0, 3111, 3112, 7, 12, 0, 0, 3112, 3113, 7, 6, 0, 0, 3113, 478, 1, 0, 0, 0, 3114, 3115, 7, 12, 0, 0, 3115, 3116, 7, 6, 0, 0, 3116, 3117, 7, 12, 0, 0, 3117, 3118, 7, 9, 0, 0, 3118, 480, 1, 0, 0, 0, 3119, 3120, 7, 12, 0, 0, 3120, 3121, 7, 6, 0, 0, 3121, 3122, 7, 11, 0, 0, 3122, 3123, 7, 17, 0, 0, 3123, 3124, 7, 2, 0, 0, 3124, 3125, 7, 5, 0, 0, 3125, 3126, 7, 19, 0, 0, 3126, 3127, 7, 14, 0, 0, 3127, 3128, 7, 9, 0, 0, 3128, 482, 1, 0, 0, 0, 3129, 3130, 7, 12, 0, 0, 3130, 3131, 7, 6, 0, 0, 3131, 3132, 7, 8, 0, 0, 3132, 484, 1, 0, 0, 0, 3133, 3134, 7, 12, 0, 0, 3134, 3135, 7, 8, 0, 0, 3135, 3136, 7, 22, 0, 0, 3136, 3137, 5, 95, 0, 0, 3137, 3138, 7, 20, 0, 0, 3138, 3139, 7, 2, 0, 0, 3139, 3140, 7, 5, 0, 0, 3140, 3141, 7, 21, 0, 0, 3141, 3142, 7, 9, 0, 0, 3142, 486, 1, 0, 0, 0, 3143, 3144, 7, 12, 0, 0, 3144, 3145, 7, 8, 0, 0, 3145, 3146, 7, 19, 0, 0, 3146, 3147, 7, 5, 0, 0, 3147, 3148, 7, 9, 0, 0, 3148, 488, 1, 0, 0, 0, 3149, 3150, 7, 12, 0, 0, 3150, 3151, 7, 21, 0, 0, 3151, 3152, 7, 5, 0, 0, 3152, 3153, 7, 5, 0, 0, 3153, 490, 1, 0, 0, 0, 3154, 3155, 7, 12, 0, 0, 3155, 3156, 7, 21, 0, 0, 3156, 3157, 7, 5, 0, 0, 3157, 3158, 7, 5, 0, 0, 3158, 3159, 7, 19, 0, 0, 3159, 3160, 7, 23, 0, 0, 3160, 492, 1, 0, 0, 0, 3161, 3162, 7, 12, 0, 0, 3162, 3163, 7, 21, 0, 0, 3163, 3164, 7, 17, 0, 0, 3164, 3165, 7, 9, 0, 0, 3165, 3166, 7, 11, 0, 0, 3166, 3167, 7, 19, 0, 0, 3167, 3168, 7, 7, 0, 0, 3168, 494, 1, 0, 0, 0, 3169, 3170, 7, 6, 0, 0, 3170, 3171, 7, 7, 0, 0, 3171, 3172, 7, 7, 0, 0, 3172, 3173, 7, 21, 0, 0, 3173, 3174, 7, 11, 0, 0, 3174, 3175, 7, 11, 0, 0, 3175, 3176, 7, 9, 0, 0, 3176, 3177, 7, 12, 0, 0, 3177, 3178, 7, 7, 0, 0, 3178, 3179, 7, 9, 0, 0, 3179, 3180, 7, 4, 0, 0, 3180, 3181, 5, 95, 0, 0, 3181, 3182, 7, 11, 0, 0, 3182, 3183, 7, 9, 0, 0, 3183, 3184, 7, 16, 0, 0, 3184, 3185, 7, 9, 0, 0, 3185, 3186, 7, 18, 0, 0, 3186, 496, 1, 0, 0, 0, 3187, 3188, 7, 6, 0, 0, 3188, 3189, 7, 7, 0, 0, 3189, 3190, 7, 8, 0, 0, 3190, 3191, 7, 9, 0, 0, 3191, 3192, 7, 8, 0, 0, 3192, 3193, 5, 95, 0, 0, 3193, 3194, 7, 5, 0, 0, 3194, 3195, 7, 9, 0, 0, 3195, 3196, 7, 12, 0, 0, 3196, 3197, 7, 16, 0, 0, 3197, 3198, 7, 8, 0, 0, 3198, 3199, 7, 22, 0, 0, 3199, 498, 1, 0, 0, 0, 3200, 3201, 7, 6, 0, 0, 3201, 3202, 7, 23, 0, 0, 3202, 500, 1, 0, 0, 0, 3203, 3204, 7, 6, 0, 0, 3204, 3205, 7, 23, 0, 0, 3205, 3206, 7, 23, 0, 0, 3206, 3207, 7, 4, 0, 0, 3207, 3208, 7, 9, 0, 0, 3208, 3209, 7, 8, 0, 0, 3209, 502, 1, 0, 0, 0, 3210, 3211, 7, 6, 0, 0, 3211, 3212, 7, 5, 0, 0, 3212, 3213, 7, 15, 0, 0, 3213, 504, 1, 0, 0, 0, 3214, 3215, 7, 6, 0, 0, 3215, 3216, 7, 17, 0, 0, 3216, 3217, 7, 19, 0, 0, 3217, 3218, 7, 8, 0, 0, 3218, 506, 1, 0, 0, 0, 3219, 3220, 7, 6, 0, 0, 3220, 3221, 7, 12, 0, 0, 3221, 508, 1, 0, 0, 0, 3222, 3223, 7, 6, 0, 0, 3223, 3224, 7, 12, 0, 0, 3224, 3225, 7, 9, 0, 0, 3225, 510, 1, 0, 0, 0, 3226, 3227, 7, 6, 0, 0, 3227, 3228, 7, 12, 0, 0, 3228, 3229, 7, 5, 0, 0, 3229, 3230, 7, 13, 0, 0, 3230, 512, 1, 0, 0, 0, 3231, 3232, 7, 6, 0, 0, 3232, 3233, 7, 24, 0, 0, 3233, 3234, 7, 9, 0, 0, 3234, 3235, 7, 12, 0, 0, 3235, 514, 1, 0, 0, 0, 3236, 3237, 7, 6, 0, 0, 3237, 3238, 7, 11, 0, 0, 3238, 516, 1, 0, 0, 0, 3239, 3240, 7, 6, 0, 0, 3240, 3241, 7, 11, 0, 0, 3241, 3242, 7, 15, 0, 0, 3242, 3243, 7, 9, 0, 0, 3243, 3244, 7, 11, 0, 0, 3244, 518, 1, 0, 0, 0, 3245, 3246, 7, 6, 0, 0, 3246, 3247, 7, 11, 0, 0, 3247, 3248, 7, 15, 0, 0, 3248, 3249, 7, 19, 0, 0, 3249, 3250, 7, 12, 0, 0, 3250, 3251, 7, 2, 0, 0, 3251, 3252, 7, 5, 0, 0, 3252, 520, 1, 0, 0, 0, 3253, 3254, 7, 6, 0, 0, 3254, 3255, 7, 21, 0, 0, 3255, 3256, 7, 8, 0, 0, 3256, 522, 1, 0, 0, 0, 3257, 3258, 7, 6, 0, 0, 3258, 3259, 7, 21, 0, 0, 3259, 3260, 7, 8, 0, 0, 3260, 3261, 7, 9, 0, 0, 3261, 3262, 7, 11, 0, 0, 3262, 524, 1, 0, 0, 0, 3263, 3264, 7, 6, 0, 0, 3264, 3265, 7, 20, 0, 0, 3265, 3266, 7, 9, 0, 0, 3266, 3267, 7, 11, 0, 0, 3267, 526, 1, 0, 0, 0, 3268, 3269, 7, 6, 0, 0, 3269, 3270, 7, 20, 0, 0, 3270, 3271, 7, 9, 0, 0, 3271, 3272, 7, 11, 0, 0, 3272, 3273, 7, 5, 0, 0, 3273, 3274, 7, 2, 0, 0, 3274, 3275, 7, 24, 0, 0, 3275, 3276, 7, 4, 0, 0, 3276, 528, 1, 0, 0, 0, 3277, 3278, 7, 6, 0, 0, 3278, 3279, 7, 20, 0, 0, 3279, 3280, 7, 9, 0, 0, 3280, 3281, 7, 11, 0, 0, 3281, 3282, 7, 5, 0, 0, 3282, 3283, 7, 2, 0, 0, 3283, 3284, 7, 13, 0, 0, 3284, 530, 1, 0, 0, 0, 3285, 3286, 7, 6, 0, 0, 3286, 3287, 7, 20, 0, 0, 3287, 3288, 7, 9, 0, 0, 3288, 3289, 7, 11, 0, 0, 3289, 3290, 7, 10, 0, 0, 3290, 3291, 7, 11, 0, 0, 3291, 3292, 7, 19, 0, 0, 3292, 3293, 7, 8, 0, 0, 3293, 3294, 7, 9, 0, 0, 3294, 532, 1, 0, 0, 0, 3295, 3296, 7, 6, 0, 0, 3296, 3297, 7, 20, 0, 0, 3297, 3298, 7, 9, 0, 0, 3298, 3299, 7, 11, 0, 0, 3299, 3300, 7, 10, 0, 0, 3300, 3301, 7, 11, 0, 0, 3301, 3302, 7, 19, 0, 0, 3302, 3303, 7, 8, 0, 0, 3303, 3304, 7, 19, 0, 0, 3304, 3305, 7, 12, 0, 0, 3305, 3306, 7, 16, 0, 0, 3306, 534, 1, 0, 0, 0, 3307, 3308, 7, 24, 0, 0, 3308, 3309, 7, 2, 0, 0, 3309, 3310, 7, 11, 0, 0, 3310, 3311, 7, 2, 0, 0, 3311, 3312, 7, 17, 0, 0, 3312, 3313, 7, 9, 0, 0, 3313, 3314, 7, 8, 0, 0, 3314, 3315, 7, 9, 0, 0, 3315, 3316, 7, 11, 0, 0, 3316, 536, 1, 0, 0, 0, 3317, 3318, 7, 24, 0, 0, 3318, 3319, 7, 2, 0, 0, 3319, 3320, 7, 11, 0, 0, 3320, 3321, 7, 8, 0, 0, 3321, 3322, 7, 19, 0, 0, 3322, 3323, 7, 8, 0, 0, 3323, 3324, 7, 19, 0, 0, 3324, 3325, 7, 6, 0, 0, 3325, 3326, 7, 12, 0, 0, 3326, 538, 1, 0, 0, 0, 3327, 3328, 7, 24, 0, 0, 3328, 3329, 7, 2, 0, 0, 3329, 3330, 7, 11, 0, 0, 3330, 3331, 7, 8, 0, 0, 3331, 3332, 7, 19, 0, 0, 3332, 3333, 7, 8, 0, 0, 3333, 3334, 7, 19, 0, 0, 3334, 3335, 7, 6, 0, 0, 3335, 3336, 7, 12, 0, 0, 3336, 3337, 7, 9, 0, 0, 3337, 3338, 7, 15, 0, 0, 3338, 540, 1, 0, 0, 0, 3339, 3340, 7, 24, 0, 0, 3340, 3341, 7, 2, 0, 0, 3341, 3342, 7, 11, 0, 0, 3342, 3343, 7, 8, 0, 0, 3343, 3344, 7, 19, 0, 0, 3344, 3345, 7, 8, 0, 0, 3345, 3346, 7, 19, 0, 0, 3346, 3347, 7, 6, 0, 0, 3347, 3348, 7, 12, 0, 0, 3348, 3349, 7, 4, 0, 0, 3349, 542, 1, 0, 0, 0, 3350, 3351, 7, 24, 0, 0, 3351, 3352, 7, 2, 0, 0, 3352, 3353, 7, 8, 0, 0, 3353, 3354, 7, 8, 0, 0, 3354, 3355, 7, 9, 0, 0, 3355, 3356, 7, 11, 0, 0, 3356, 3357, 7, 12, 0, 0, 3357, 544, 1, 0, 0, 0, 3358, 3359, 7, 24, 0, 0, 3359, 3360, 7, 9, 0, 0, 3360, 3361, 7, 11, 0, 0, 3361, 546, 1, 0, 0, 0, 3362, 3363, 7, 24, 0, 0, 3363, 3364, 7, 9, 0, 0, 3364, 3365, 7, 11, 0, 0, 3365, 3366, 7, 7, 0, 0, 3366, 3367, 7, 9, 0, 0, 3367, 3368, 7, 12, 0, 0, 3368, 3369, 7, 8, 0, 0, 3369, 548, 1, 0, 0, 0, 3370, 3371, 7, 24, 0, 0, 3371, 3372, 7, 9, 0, 0, 3372, 3373, 7, 11, 0, 0, 3373, 3374, 7, 7, 0, 0, 3374, 3375, 7, 9, 0, 0, 3375, 3376, 7, 12, 0, 0, 3376, 3377, 7, 8, 0, 0, 3377, 3378, 7, 19, 0, 0, 3378, 3379, 7, 5, 0, 0, 3379, 3380, 7, 9, 0, 0, 3380, 3381, 5, 95, 0, 0, 3381, 3382, 7, 7, 0, 0, 3382, 3383, 7, 6, 0, 0, 3383, 3384, 7, 12, 0, 0, 3384, 3385, 7, 8, 0, 0, 3385, 550, 1, 0, 0, 0, 3386, 3387, 7, 24, 0, 0, 3387, 3388, 7, 9, 0, 0, 3388, 3389, 7, 11, 0, 0, 3389, 3390, 7, 7, 0, 0, 3390, 3391, 7, 9, 0, 0, 3391, 3392, 7, 12, 0, 0, 3392, 3393, 7, 8, 0, 0, 3393, 3394, 7, 19, 0, 0, 3394, 3395, 7, 5, 0, 0, 3395, 3396, 7, 9, 0, 0, 3396, 3397, 5, 95, 0, 0, 3397, 3398, 7, 15, 0, 0, 3398, 3399, 7, 19, 0, 0, 3399, 3400, 7, 4, 0, 0, 3400, 3401, 7, 7, 0, 0, 3401, 552, 1, 0, 0, 0, 3402, 3403, 7, 24, 0, 0, 3403, 3404, 7, 9, 0, 0, 3404, 3405, 7, 11, 0, 0, 3405, 3406, 7, 7, 0, 0, 3406, 3407, 7, 9, 0, 0, 3407, 3408, 7, 12, 0, 0, 3408, 3409, 7, 8, 0, 0, 3409, 3410, 5, 95, 0, 0, 3410, 3411, 7, 11, 0, 0, 3411, 3412, 7, 2, 0, 0, 3412, 3413, 7, 12, 0, 0, 3413, 3414, 7, 25, 0, 0, 3414, 554, 1, 0, 0, 0, 3415, 3416, 7, 24, 0, 0, 3416, 3417, 7, 9, 0, 0, 3417, 3418, 7, 11, 0, 0, 3418, 3419, 7, 19, 0, 0, 3419, 3420, 7, 6, 0, 0, 3420, 3421, 7, 15, 0, 0, 3421, 556, 1, 0, 0, 0, 3422, 3423, 7, 24, 0, 0, 3423, 3424, 7, 9, 0, 0, 3424, 3425, 7, 11, 0, 0, 3425, 3426, 7, 17, 0, 0, 3426, 3427, 7, 21, 0, 0, 3427, 3428, 7, 8, 0, 0, 3428, 3429, 7, 9, 0, 0, 3429, 558, 1, 0, 0, 0, 3430, 3431, 7, 24, 0, 0, 3431, 3432, 7, 19, 0, 0, 3432, 3433, 7, 20, 0, 0, 3433, 3434, 7, 6, 0, 0, 3434, 3435, 7, 8, 0, 0, 3435, 560, 1, 0, 0, 0, 3436, 3437, 7, 24, 0, 0, 3437, 3438, 7, 6, 0, 0, 3438, 3439, 7, 11, 0, 0, 3439, 3440, 7, 8, 0, 0, 3440, 3441, 7, 19, 0, 0, 3441, 3442, 7, 6, 0, 0, 3442, 3443, 7, 12, 0, 0, 3443, 562, 1, 0, 0, 0, 3444, 3445, 7, 24, 0, 0, 3445, 3446, 7, 6, 0, 0, 3446, 3447, 7, 4, 0, 0, 3447, 3448, 7, 19, 0, 0, 3448, 3449, 7, 8, 0, 0, 3449, 3450, 7, 19, 0, 0, 3450, 3451, 7, 6, 0, 0, 3451, 3452, 7, 12, 0, 0, 3452, 564, 1, 0, 0, 0, 3453, 3454, 7, 24, 0, 0, 3454, 3455, 7, 6, 0, 0, 3455, 3456, 7, 4, 0, 0, 3456, 3457, 7, 19, 0, 0, 3457, 3458, 7, 8, 0, 0, 3458, 3459, 7, 19, 0, 0, 3459, 3460, 7, 6, 0, 0, 3460, 3461, 7, 12, 0, 0, 3461, 3462, 5, 95, 0, 0, 3462, 3463, 7, 11, 0, 0, 3463, 3464, 7, 9, 0, 0, 3464, 3465, 7, 16, 0, 0, 3465, 3466, 7, 9, 0, 0, 3466, 3467, 7, 18, 0, 0, 3467, 566, 1, 0, 0, 0, 3468, 3469, 7, 24, 0, 0, 3469, 3470, 7, 6, 0, 0, 3470, 3471, 7, 10, 0, 0, 3471, 3472, 7, 9, 0, 0, 3472, 3473, 7, 11, 0, 0, 3473, 568, 1, 0, 0, 0, 3474, 3475, 7, 24, 0, 0, 3475, 3476, 7, 11, 0, 0, 3476, 3477, 7, 9, 0, 0, 3477, 3478, 7, 7, 0, 0, 3478, 3479, 7, 9, 0, 0, 3479, 3480, 7, 15, 0, 0, 3480, 3481, 7, 9, 0, 0, 3481, 3482, 7, 4, 0, 0, 3482, 570, 1, 0, 0, 0, 3483, 3484, 7, 24, 0, 0, 3484, 3485, 7, 11, 0, 0, 3485, 3486, 7, 9, 0, 0, 3486, 3487, 7, 7, 0, 0, 3487, 3488, 7, 19, 0, 0, 3488, 3489, 7, 4, 0, 0, 3489, 3490, 7, 19, 0, 0, 3490, 3491, 7, 6, 0, 0, 3491, 3492, 7, 12, 0, 0, 3492, 572, 1, 0, 0, 0, 3493, 3494, 7, 24, 0, 0, 3494, 3495, 7, 11, 0, 0, 3495, 3496, 7, 9, 0, 0, 3496, 3497, 7, 24, 0, 0, 3497, 3498, 7, 2, 0, 0, 3498, 3499, 7, 11, 0, 0, 3499, 3500, 7, 9, 0, 0, 3500, 574, 1, 0, 0, 0, 3501, 3502, 7, 24, 0, 0, 3502, 3503, 7, 11, 0, 0, 3503, 3504, 7, 9, 0, 0, 3504, 3505, 7, 20, 0, 0, 3505, 576, 1, 0, 0, 0, 3506, 3507, 7, 24, 0, 0, 3507, 3508, 7, 11, 0, 0, 3508, 3509, 7, 19, 0, 0, 3509, 3510, 7, 17, 0, 0, 3510, 3511, 7, 2, 0, 0, 3511, 3512, 7, 11, 0, 0, 3512, 3513, 7, 13, 0, 0, 3513, 578, 1, 0, 0, 0, 3514, 3515, 7, 24, 0, 0, 3515, 3516, 7, 11, 0, 0, 3516, 3517, 7, 6, 0, 0, 3517, 3518, 7, 7, 0, 0, 3518, 3519, 7, 9, 0, 0, 3519, 3520, 7, 15, 0, 0, 3520, 3521, 7, 21, 0, 0, 3521, 3522, 7, 11, 0, 0, 3522, 3523, 7, 9, 0, 0, 3523, 580, 1, 0, 0, 0, 3524, 3525, 7, 26, 0, 0, 3525, 3526, 7, 21, 0, 0, 3526, 3527, 7, 2, 0, 0, 3527, 3528, 7, 5, 0, 0, 3528, 3529, 7, 19, 0, 0, 3529, 3530, 7, 23, 0, 0, 3530, 3531, 7, 13, 0, 0, 3531, 582, 1, 0, 0, 0, 3532, 3533, 7, 26, 0, 0, 3533, 3534, 7, 21, 0, 0, 3534, 3535, 7, 2, 0, 0, 3535, 3536, 7, 11, 0, 0, 3536, 3537, 7, 8, 0, 0, 3537, 3538, 7, 9, 0, 0, 3538, 3539, 7, 11, 0, 0, 3539, 3540, 7, 4, 0, 0, 3540, 584, 1, 0, 0, 0, 3541, 3542, 7, 11, 0, 0, 3542, 3543, 7, 2, 0, 0, 3543, 3544, 7, 12, 0, 0, 3544, 3545, 7, 16, 0, 0, 3545, 3546, 7, 9, 0, 0, 3546, 586, 1, 0, 0, 0, 3547, 3548, 7, 11, 0, 0, 3548, 3549, 7, 2, 0, 0, 3549, 3550, 7, 12, 0, 0, 3550, 3551, 7, 25, 0, 0, 3551, 588, 1, 0, 0, 0, 3552, 3553, 7, 11, 0, 0, 3553, 3554, 7, 2, 0, 0, 3554, 3555, 7, 10, 0, 0, 3555, 590, 1, 0, 0, 0, 3556, 3557, 7, 11, 0, 0, 3557, 3558, 7, 9, 0, 0, 3558, 3559, 7, 2, 0, 0, 3559, 3560, 7, 15, 0, 0, 3560, 3561, 7, 4, 0, 0, 3561, 592, 1, 0, 0, 0, 3562, 3563, 7, 11, 0, 0, 3563, 3564, 7, 9, 0, 0, 3564, 3565, 7, 2, 0, 0, 3565, 3566, 7, 5, 0, 0, 3566, 594, 1, 0, 0, 0, 3567, 3568, 7, 11, 0, 0, 3568, 3569, 7, 9, 0, 0, 3569, 3570, 7, 7, 0, 0, 3570, 3571, 7, 21, 0, 0, 3571, 3572, 7, 11, 0, 0, 3572, 3573, 7, 4, 0, 0, 3573, 3574, 7, 19, 0, 0, 3574, 3575, 7, 20, 0, 0, 3575, 3576, 7, 9, 0, 0, 3576, 596, 1, 0, 0, 0, 3577, 3578, 7, 11, 0, 0, 3578, 3579, 7, 9, 0, 0, 3579, 3580, 7, 23, 0, 0, 3580, 598, 1, 0, 0, 0, 3581, 3582, 7, 11, 0, 0, 3582, 3583, 7, 9, 0, 0, 3583, 3584, 7, 23, 0, 0, 3584, 3585, 7, 9, 0, 0, 3585, 3586, 7, 11, 0, 0, 3586, 3587, 7, 9, 0, 0, 3587, 3588, 7, 12, 0, 0, 3588, 3589, 7, 7, 0, 0, 3589, 3590, 7, 9, 0, 0, 3590, 3591, 7, 4, 0, 0, 3591, 600, 1, 0, 0, 0, 3592, 3593, 7, 11, 0, 0, 3593, 3594, 7, 9, 0, 0, 3594, 3595, 7, 23, 0, 0, 3595, 3596, 7, 9, 0, 0, 3596, 3597, 7, 11, 0, 0, 3597, 3598, 7, 9, 0, 0, 3598, 3599, 7, 12, 0, 0, 3599, 3600, 7, 7, 0, 0, 3600, 3601, 7, 19, 0, 0, 3601, 3602, 7, 12, 0, 0, 3602, 3603, 7, 16, 0, 0, 3603, 602, 1, 0, 0, 0, 3604, 3605, 7, 11, 0, 0, 3605, 3606, 7, 9, 0, 0, 3606, 3607, 7, 16, 0, 0, 3607, 3608, 7, 11, 0, 0, 3608, 3609, 5, 95, 0, 0, 3609, 3610, 7, 2, 0, 0, 3610, 3611, 7, 20, 0, 0, 3611, 3612, 7, 16, 0, 0, 3612, 3613, 7, 18, 0, 0, 3613, 604, 1, 0, 0, 0, 3614, 3615, 7, 11, 0, 0, 3615, 3616, 7, 9, 0, 0, 3616, 3617, 7, 16, 0, 0, 3617, 3618, 7, 11, 0, 0, 3618, 3619, 5, 95, 0, 0, 3619, 3620, 7, 2, 0, 0, 3620, 3621, 7, 20, 0, 0, 3621, 3622, 7, 16, 0, 0, 3622, 3623, 7, 13, 0, 0, 3623, 606, 1, 0, 0, 0, 3624, 3625, 7, 11, 0, 0, 3625, 3626, 7, 9, 0, 0, 3626, 3627, 7, 16, 0, 0, 3627, 3628, 7, 11, 0, 0, 3628, 3629, 5, 95, 0, 0, 3629, 3630, 7, 7, 0, 0, 3630, 3631, 7, 6, 0, 0, 3631, 3632, 7, 21, 0, 0, 3632, 3633, 7, 12, 0, 0, 3633, 3634, 7, 8, 0, 0, 3634, 608, 1, 0, 0, 0, 3635, 3636, 7, 11, 0, 0, 3636, 3637, 7, 9, 0, 0, 3637, 3638, 7, 16, 0, 0, 3638, 3639, 7, 11, 0, 0, 3639, 3640, 5, 95, 0, 0, 3640, 3641, 7, 19, 0, 0, 3641, 3642, 7, 12, 0, 0, 3642, 3643, 7, 8, 0, 0, 3643, 3644, 7, 9, 0, 0, 3644, 3645, 7, 11, 0, 0, 3645, 3646, 7, 7, 0, 0, 3646, 3647, 7, 9, 0, 0, 3647, 3648, 7, 24, 0, 0, 3648, 3649, 7, 8, 0, 0, 3649, 610, 1, 0, 0, 0, 3650, 3651, 7, 11, 0, 0, 3651, 3652, 7, 9, 0, 0, 3652, 3653, 7, 16, 0, 0, 3653, 3654, 7, 11, 0, 0, 3654, 3655, 5, 95, 0, 0, 3655, 3656, 7, 11, 0, 0, 3656, 3657, 5, 50, 0, 0, 3657, 612, 1, 0, 0, 0, 3658, 3659, 7, 11, 0, 0, 3659, 3660, 7, 9, 0, 0, 3660, 3661, 7, 16, 0, 0, 3661, 3662, 7, 11, 0, 0, 3662, 3663, 5, 95, 0, 0, 3663, 3664, 7, 4, 0, 0, 3664, 3665, 7, 5, 0, 0, 3665, 3666, 7, 6, 0, 0, 3666, 3667, 7, 24, 0, 0, 3667, 3668, 7, 9, 0, 0, 3668, 614, 1, 0, 0, 0, 3669, 3670, 7, 11, 0, 0, 3670, 3671, 7, 9, 0, 0, 3671, 3672, 7, 16, 0, 0, 3672, 3673, 7, 11, 0, 0, 3673, 3674, 5, 95, 0, 0, 3674, 3675, 7, 4, 0, 0, 3675, 3676, 7, 18, 0, 0, 3676, 3677, 7, 18, 0, 0, 3677, 616, 1, 0, 0, 0, 3678, 3679, 7, 11, 0, 0, 3679, 3680, 7, 9, 0, 0, 3680, 3681, 7, 16, 0, 0, 3681, 3682, 7, 11, 0, 0, 3682, 3683, 5, 95, 0, 0, 3683, 3684, 7, 4, 0, 0, 3684, 3685, 7, 18, 0, 0, 3685, 3686, 7, 13, 0, 0, 3686, 618, 1, 0, 0, 0, 3687, 3688, 7, 11, 0, 0, 3688, 3689, 7, 9, 0, 0, 3689, 3690, 7, 16, 0, 0, 3690, 3691, 7, 11, 0, 0, 3691, 3692, 5, 95, 0, 0, 3692, 3693, 7, 4, 0, 0, 3693, 3694, 7, 13, 0, 0, 3694, 3695, 7, 13, 0, 0, 3695, 620, 1, 0, 0, 0, 3696, 3697, 7, 11, 0, 0, 3697, 3698, 7, 9, 0, 0, 3698, 3699, 7, 5, 0, 0, 3699, 3700, 7, 9, 0, 0, 3700, 3701, 7, 2, 0, 0, 3701, 3702, 7, 4, 0, 0, 3702, 3703, 7, 9, 0, 0, 3703, 622, 1, 0, 0, 0, 3704, 3705, 7, 11, 0, 0, 3705, 3706, 7, 9, 0, 0, 3706, 3707, 7, 12, 0, 0, 3707, 3708, 7, 2, 0, 0, 3708, 3709, 7, 17, 0, 0, 3709, 3710, 7, 9, 0, 0, 3710, 624, 1, 0, 0, 0, 3711, 3712, 7, 11, 0, 0, 3712, 3713, 7, 9, 0, 0, 3713, 3714, 7, 4, 0, 0, 3714, 3715, 7, 9, 0, 0, 3715, 3716, 7, 8, 0, 0, 3716, 626, 1, 0, 0, 0, 3717, 3718, 7, 11, 0, 0, 3718, 3719, 7, 9, 0, 0, 3719, 3720, 7, 4, 0, 0, 3720, 3721, 7, 21, 0, 0, 3721, 3722, 7, 5, 0, 0, 3722, 3723, 7, 8, 0, 0, 3723, 628, 1, 0, 0, 0, 3724, 3725, 7, 11, 0, 0, 3725, 3726, 7, 9, 0, 0, 3726, 3727, 7, 8, 0, 0, 3727, 3728, 7, 21, 0, 0, 3728, 3729, 7, 11, 0, 0, 3729, 3730, 7, 12, 0, 0, 3730, 630, 1, 0, 0, 0, 3731, 3732, 7, 11, 0, 0, 3732, 3733, 7, 9, 0, 0, 3733, 3734, 7, 8, 0, 0, 3734, 3735, 7, 21, 0, 0, 3735, 3736, 7, 11, 0, 0, 3736, 3737, 7, 12, 0, 0, 3737, 3738, 7, 4, 0, 0, 3738, 632, 1, 0, 0, 0, 3739, 3740, 7, 11, 0, 0, 3740, 3741, 7, 9, 0, 0, 3741, 3742, 7, 20, 0, 0, 3742, 3743, 7, 6, 0, 0, 3743, 3744, 7, 25, 0, 0, 3744, 3745, 7, 9, 0, 0, 3745, 634, 1, 0, 0, 0, 3746, 3747, 7, 11, 0, 0, 3747, 3748, 7, 19, 0, 0, 3748, 3749, 7, 16, 0, 0, 3749, 3750, 7, 22, 0, 0, 3750, 3751, 7, 8, 0, 0, 3751, 636, 1, 0, 0, 0, 3752, 3753, 7, 11, 0, 0, 3753, 3754, 7, 5, 0, 0, 3754, 3755, 7, 19, 0, 0, 3755, 3756, 7, 25, 0, 0, 3756, 3757, 7, 9, 0, 0, 3757, 638, 1, 0, 0, 0, 3758, 3759, 7, 11, 0, 0, 3759, 3760, 7, 6, 0, 0, 3760, 3761, 7, 5, 0, 0, 3761, 3762, 7, 5, 0, 0, 3762, 3763, 7, 3, 0, 0, 3763, 3764, 7, 2, 0, 0, 3764, 3765, 7, 7, 0, 0, 3765, 3766, 7, 25, 0, 0, 3766, 640, 1, 0, 0, 0, 3767, 3768, 7, 11, 0, 0, 3768, 3769, 7, 6, 0, 0, 3769, 3770, 7, 5, 0, 0, 3770, 3771, 7, 5, 0, 0, 3771, 3772, 7, 21, 0, 0, 3772, 3773, 7, 24, 0, 0, 3773, 642, 1, 0, 0, 0, 3774, 3775, 7, 11, 0, 0, 3775, 3776, 7, 6, 0, 0, 3776, 3777, 7, 10, 0, 0, 3777, 644, 1, 0, 0, 0, 3778, 3779, 7, 11, 0, 0, 3779, 3780, 7, 6, 0, 0, 3780, 3781, 7, 10, 0, 0, 3781, 3782, 7, 4, 0, 0, 3782, 646, 1, 0, 0, 0, 3783, 3784, 7, 11, 0, 0, 3784, 3785, 7, 6, 0, 0, 3785, 3786, 7, 10, 0, 0, 3786, 3787, 5, 95, 0, 0, 3787, 3788, 7, 12, 0, 0, 3788, 3789, 7, 21, 0, 0, 3789, 3790, 7, 17, 0, 0, 3790, 3791, 7, 3, 0, 0, 3791, 3792, 7, 9, 0, 0, 3792, 3793, 7, 11, 0, 0, 3793, 648, 1, 0, 0, 0, 3794, 3795, 7, 11, 0, 0, 3795, 3796, 7, 21, 0, 0, 3796, 3797, 7, 12, 0, 0, 3797, 3798, 7, 12, 0, 0, 3798, 3799, 7, 19, 0, 0, 3799, 3800, 7, 12, 0, 0, 3800, 3801, 7, 16, 0, 0, 3801, 650, 1, 0, 0, 0, 3802, 3803, 7, 4, 0, 0, 3803, 3804, 7, 2, 0, 0, 3804, 3805, 7, 23, 0, 0, 3805, 3806, 7, 9, 0, 0, 3806, 3807, 5, 95, 0, 0, 3807, 3808, 7, 7, 0, 0, 3808, 3809, 7, 2, 0, 0, 3809, 3810, 7, 4, 0, 0, 3810, 3811, 7, 8, 0, 0, 3811, 652, 1, 0, 0, 0, 3812, 3813, 7, 4, 0, 0, 3813, 3814, 7, 2, 0, 0, 3814, 3815, 7, 23, 0, 0, 3815, 3816, 7, 9, 0, 0, 3816, 3817, 5, 95, 0, 0, 3817, 3818, 7, 6, 0, 0, 3818, 3819, 7, 23, 0, 0, 3819, 3820, 7, 23, 0, 0, 3820, 3821, 7, 4, 0, 0, 3821, 3822, 7, 9, 0, 0, 3822, 3823, 7, 8, 0, 0, 3823, 654, 1, 0, 0, 0, 3824, 3825, 7, 4, 0, 0, 3825, 3826, 7, 2, 0, 0, 3826, 3827, 7, 23, 0, 0, 3827, 3828, 7, 9, 0, 0, 3828, 3829, 5, 95, 0, 0, 3829, 3830, 7, 6, 0, 0, 3830, 3831, 7, 11, 0, 0, 3831, 3832, 7, 15, 0, 0, 3832, 3833, 7, 19, 0, 0, 3833, 3834, 7, 12, 0, 0, 3834, 3835, 7, 2, 0, 0, 3835, 3836, 7, 5, 0, 0, 3836, 656, 1, 0, 0, 0, 3837, 3838, 7, 4, 0, 0, 3838, 3839, 7, 2, 0, 0, 3839, 3840, 7, 8, 0, 0, 3840, 3841, 7, 21, 0, 0, 3841, 3842, 7, 11, 0, 0, 3842, 3843, 7, 15, 0, 0, 3843, 3844, 7, 2, 0, 0, 3844, 3845, 7, 13, 0, 0, 3845, 658, 1, 0, 0, 0, 3846, 3847, 7, 4, 0, 0, 3847, 3848, 7, 2, 0, 0, 3848, 3849, 7, 20, 0, 0, 3849, 3850, 7, 9, 0, 0, 3850, 3851, 7, 24, 0, 0, 3851, 3852, 7, 6, 0, 0, 3852, 3853, 7, 19, 0, 0, 3853, 3854, 7, 12, 0, 0, 3854, 3855, 7, 8, 0, 0, 3855, 660, 1, 0, 0, 0, 3856, 3857, 7, 4, 0, 0, 3857, 3858, 7, 7, 0, 0, 3858, 3859, 7, 2, 0, 0, 3859, 3860, 7, 5, 0, 0, 3860, 3861, 7, 2, 0, 0, 3861, 662, 1, 0, 0, 0, 3862, 3863, 7, 4, 0, 0, 3863, 3864, 7, 7, 0, 0, 3864, 3865, 7, 6, 0, 0, 3865, 3866, 7, 24, 0, 0, 3866, 3867, 7, 9, 0, 0, 3867, 664, 1, 0, 0, 0, 3868, 3869, 7, 4, 0, 0, 3869, 3870, 7, 7, 0, 0, 3870, 3871, 7, 11, 0, 0, 3871, 3872, 7, 6, 0, 0, 3872, 3873, 7, 5, 0, 0, 3873, 3874, 7, 5, 0, 0, 3874, 666, 1, 0, 0, 0, 3875, 3876, 7, 4, 0, 0, 3876, 3877, 7, 9, 0, 0, 3877, 3878, 7, 2, 0, 0, 3878, 3879, 7, 11, 0, 0, 3879, 3880, 7, 7, 0, 0, 3880, 3881, 7, 22, 0, 0, 3881, 668, 1, 0, 0, 0, 3882, 3883, 7, 4, 0, 0, 3883, 3884, 7, 9, 0, 0, 3884, 3885, 7, 7, 0, 0, 3885, 3886, 7, 6, 0, 0, 3886, 3887, 7, 12, 0, 0, 3887, 3888, 7, 15, 0, 0, 3888, 670, 1, 0, 0, 0, 3889, 3890, 7, 4, 0, 0, 3890, 3891, 7, 9, 0, 0, 3891, 3892, 7, 9, 0, 0, 3892, 3893, 7, 25, 0, 0, 3893, 672, 1, 0, 0, 0, 3894, 3895, 7, 4, 0, 0, 3895, 3896, 7, 9, 0, 0, 3896, 3897, 7, 5, 0, 0, 3897, 3898, 7, 9, 0, 0, 3898, 3899, 7, 7, 0, 0, 3899, 3900, 7, 8, 0, 0, 3900, 674, 1, 0, 0, 0, 3901, 3902, 7, 4, 0, 0, 3902, 3903, 7, 9, 0, 0, 3903, 3904, 7, 12, 0, 0, 3904, 3905, 7, 4, 0, 0, 3905, 3906, 7, 19, 0, 0, 3906, 3907, 7, 8, 0, 0, 3907, 3908, 7, 19, 0, 0, 3908, 3909, 7, 20, 0, 0, 3909, 3910, 7, 9, 0, 0, 3910, 676, 1, 0, 0, 0, 3911, 3912, 7, 4, 0, 0, 3912, 3913, 7, 9, 0, 0, 3913, 3914, 7, 24, 0, 0, 3914, 3915, 7, 2, 0, 0, 3915, 3916, 7, 11, 0, 0, 3916, 3917, 7, 2, 0, 0, 3917, 3918, 7, 8, 0, 0, 3918, 3919, 7, 6, 0, 0, 3919, 3920, 7, 11, 0, 0, 3920, 678, 1, 0, 0, 0, 3921, 3922, 7, 4, 0, 0, 3922, 3923, 7, 9, 0, 0, 3923, 3924, 7, 4, 0, 0, 3924, 3925, 7, 4, 0, 0, 3925, 3926, 7, 19, 0, 0, 3926, 3927, 7, 6, 0, 0, 3927, 3928, 7, 12, 0, 0, 3928, 3929, 5, 95, 0, 0, 3929, 3930, 7, 21, 0, 0, 3930, 3931, 7, 4, 0, 0, 3931, 3932, 7, 9, 0, 0, 3932, 3933, 7, 11, 0, 0, 3933, 680, 1, 0, 0, 0, 3934, 3935, 7, 4, 0, 0, 3935, 3936, 7, 9, 0, 0, 3936, 3937, 7, 8, 0, 0, 3937, 682, 1, 0, 0, 0, 3938, 3939, 7, 4, 0, 0, 3939, 3940, 7, 22, 0, 0, 3940, 3941, 7, 6, 0, 0, 3941, 3942, 7, 10, 0, 0, 3942, 684, 1, 0, 0, 0, 3943, 3944, 7, 4, 0, 0, 3944, 3945, 7, 19, 0, 0, 3945, 3946, 7, 17, 0, 0, 3946, 3947, 7, 19, 0, 0, 3947, 3948, 7, 5, 0, 0, 3948, 3949, 7, 2, 0, 0, 3949, 3950, 7, 11, 0, 0, 3950, 686, 1, 0, 0, 0, 3951, 3952, 7, 4, 0, 0, 3952, 3953, 7, 25, 0, 0, 3953, 3954, 7, 19, 0, 0, 3954, 3955, 7, 24, 0, 0, 3955, 688, 1, 0, 0, 0, 3956, 3957, 7, 4, 0, 0, 3957, 3958, 7, 17, 0, 0, 3958, 3959, 7, 2, 0, 0, 3959, 3960, 7, 5, 0, 0, 3960, 3961, 7, 5, 0, 0, 3961, 3962, 7, 19, 0, 0, 3962, 3963, 7, 12, 0, 0, 3963, 3964, 7, 8, 0, 0, 3964, 690, 1, 0, 0, 0, 3965, 3966, 7, 4, 0, 0, 3966, 3967, 7, 6, 0, 0, 3967, 3968, 7, 17, 0, 0, 3968, 3969, 7, 9, 0, 0, 3969, 692, 1, 0, 0, 0, 3970, 3971, 7, 4, 0, 0, 3971, 3972, 7, 24, 0, 0, 3972, 3973, 7, 9, 0, 0, 3973, 3974, 7, 7, 0, 0, 3974, 3975, 7, 19, 0, 0, 3975, 3976, 7, 23, 0, 0, 3976, 3977, 7, 19, 0, 0, 3977, 3978, 7, 7, 0, 0, 3978, 694, 1, 0, 0, 0, 3979, 3980, 7, 4, 0, 0, 3980, 3981, 7, 24, 0, 0, 3981, 3982, 7, 9, 0, 0, 3982, 3983, 7, 7, 0, 0, 3983, 3984, 7, 19, 0, 0, 3984, 3985, 7, 23, 0, 0, 3985, 3986, 7, 19, 0, 0, 3986, 3987, 7, 7, 0, 0, 3987, 3988, 7, 8, 0, 0, 3988, 3989, 7, 13, 0, 0, 3989, 3990, 7, 24, 0, 0, 3990, 3991, 7, 9, 0, 0, 3991, 696, 1, 0, 0, 0, 3992, 3993, 7, 4, 0, 0, 3993, 3994, 7, 26, 0, 0, 3994, 3995, 7, 5, 0, 0, 3995, 698, 1, 0, 0, 0, 3996, 3997, 7, 4, 0, 0, 3997, 3998, 7, 26, 0, 0, 3998, 3999, 7, 5, 0, 0, 3999, 4000, 7, 9, 0, 0, 4000, 4001, 7, 18, 0, 0, 4001, 4002, 7, 7, 0, 0, 4002, 4003, 7, 9, 0, 0, 4003, 4004, 7, 24, 0, 0, 4004, 4005, 7, 8, 0, 0, 4005, 4006, 7, 19, 0, 0, 4006, 4007, 7, 6, 0, 0, 4007, 4008, 7, 12, 0, 0, 4008, 700, 1, 0, 0, 0, 4009, 4010, 7, 4, 0, 0, 4010, 4011, 7, 26, 0, 0, 4011, 4012, 7, 5, 0, 0, 4012, 4013, 7, 4, 0, 0, 4013, 4014, 7, 8, 0, 0, 4014, 4015, 7, 2, 0, 0, 4015, 4016, 7, 8, 0, 0, 4016, 4017, 7, 9, 0, 0, 4017, 702, 1, 0, 0, 0, 4018, 4019, 7, 4, 0, 0, 4019, 4020, 7, 26, 0, 0, 4020, 4021, 7, 5, 0, 0, 4021, 4022, 7, 10, 0, 0, 4022, 4023, 7, 2, 0, 0, 4023, 4024, 7, 11, 0, 0, 4024, 4025, 7, 12, 0, 0, 4025, 4026, 7, 19, 0, 0, 4026, 4027, 7, 12, 0, 0, 4027, 4028, 7, 16, 0, 0, 4028, 704, 1, 0, 0, 0, 4029, 4030, 7, 4, 0, 0, 4030, 4031, 7, 26, 0, 0, 4031, 4032, 7, 11, 0, 0, 4032, 4033, 7, 8, 0, 0, 4033, 706, 1, 0, 0, 0, 4034, 4035, 7, 4, 0, 0, 4035, 4036, 7, 8, 0, 0, 4036, 4037, 7, 2, 0, 0, 4037, 4038, 7, 11, 0, 0, 4038, 4039, 7, 8, 0, 0, 4039, 708, 1, 0, 0, 0, 4040, 4041, 7, 4, 0, 0, 4041, 4042, 7, 8, 0, 0, 4042, 4043, 7, 2, 0, 0, 4043, 4044, 7, 8, 0, 0, 4044, 4045, 7, 9, 0, 0, 4045, 4046, 7, 17, 0, 0, 4046, 4047, 7, 9, 0, 0, 4047, 4048, 7, 12, 0, 0, 4048, 4049, 7, 8, 0, 0, 4049, 710, 1, 0, 0, 0, 4050, 4051, 7, 4, 0, 0, 4051, 4052, 7, 8, 0, 0, 4052, 4053, 7, 2, 0, 0, 4053, 4054, 7, 8, 0, 0, 4054, 4055, 7, 19, 0, 0, 4055, 4056, 7, 7, 0, 0, 4056, 712, 1, 0, 0, 0, 4057, 4058, 7, 4, 0, 0, 4058, 4059, 7, 8, 0, 0, 4059, 4060, 7, 2, 0, 0, 4060, 4061, 7, 8, 0, 0, 4061, 4062, 7, 19, 0, 0, 4062, 4063, 7, 4, 0, 0, 4063, 4064, 7, 8, 0, 0, 4064, 4065, 7, 19, 0, 0, 4065, 4066, 7, 7, 0, 0, 4066, 4067, 7, 4, 0, 0, 4067, 714, 1, 0, 0, 0, 4068, 4069, 7, 4, 0, 0, 4069, 4070, 7, 8, 0, 0, 4070, 4071, 7, 15, 0, 0, 4071, 4072, 7, 15, 0, 0, 4072, 4073, 7, 9, 0, 0, 4073, 4074, 7, 20, 0, 0, 4074, 4075, 5, 95, 0, 0, 4075, 4076, 7, 24, 0, 0, 4076, 4077, 7, 6, 0, 0, 4077, 4078, 7, 24, 0, 0, 4078, 716, 1, 0, 0, 0, 4079, 4080, 7, 4, 0, 0, 4080, 4081, 7, 8, 0, 0, 4081, 4082, 7, 15, 0, 0, 4082, 4083, 7, 15, 0, 0, 4083, 4084, 7, 9, 0, 0, 4084, 4085, 7, 20, 0, 0, 4085, 4086, 5, 95, 0, 0, 4086, 4087, 7, 4, 0, 0, 4087, 4088, 7, 2, 0, 0, 4088, 4089, 7, 17, 0, 0, 4089, 4090, 7, 24, 0, 0, 4090, 718, 1, 0, 0, 0, 4091, 4092, 7, 4, 0, 0, 4092, 4093, 7, 8, 0, 0, 4093, 4094, 7, 11, 0, 0, 4094, 4095, 7, 9, 0, 0, 4095, 4096, 7, 2, 0, 0, 4096, 4097, 7, 17, 0, 0, 4097, 720, 1, 0, 0, 0, 4098, 4099, 7, 4, 0, 0, 4099, 4100, 7, 8, 0, 0, 4100, 4101, 7, 11, 0, 0, 4101, 4102, 7, 19, 0, 0, 4102, 4103, 7, 12, 0, 0, 4103, 4104, 7, 16, 0, 0, 4104, 722, 1, 0, 0, 0, 4105, 4106, 7, 4, 0, 0, 4106, 4107, 7, 8, 0, 0, 4107, 4108, 7, 11, 0, 0, 4108, 4109, 7, 19, 0, 0, 4109, 4110, 7, 12, 0, 0, 4110, 4111, 7, 16, 0, 0, 4111, 4112, 5, 95, 0, 0, 4112, 4113, 7, 2, 0, 0, 4113, 4114, 7, 16, 0, 0, 4114, 4115, 7, 16, 0, 0, 4115, 724, 1, 0, 0, 0, 4116, 4117, 7, 4, 0, 0, 4117, 4118, 7, 21, 0, 0, 4118, 4119, 7, 3, 0, 0, 4119, 4120, 7, 17, 0, 0, 4120, 4121, 7, 21, 0, 0, 4121, 4122, 7, 5, 0, 0, 4122, 4123, 7, 8, 0, 0, 4123, 4124, 7, 19, 0, 0, 4124, 4125, 7, 4, 0, 0, 4125, 4126, 7, 9, 0, 0, 4126, 4127, 7, 8, 0, 0, 4127, 726, 1, 0, 0, 0, 4128, 4129, 7, 4, 0, 0, 4129, 4130, 7, 21, 0, 0, 4130, 4131, 7, 3, 0, 0, 4131, 4132, 7, 4, 0, 0, 4132, 4133, 7, 9, 0, 0, 4133, 4134, 7, 8, 0, 0, 4134, 728, 1, 0, 0, 0, 4135, 4136, 7, 4, 0, 0, 4136, 4137, 7, 21, 0, 0, 4137, 4138, 7, 3, 0, 0, 4138, 4139, 7, 4, 0, 0, 4139, 4140, 7, 8, 0, 0, 4140, 4141, 7, 11, 0, 0, 4141, 4142, 7, 19, 0, 0, 4142, 4143, 7, 12, 0, 0, 4143, 4144, 7, 16, 0, 0, 4144, 730, 1, 0, 0, 0, 4145, 4146, 7, 4, 0, 0, 4146, 4147, 7, 21, 0, 0, 4147, 4148, 7, 3, 0, 0, 4148, 4149, 7, 4, 0, 0, 4149, 4150, 7, 8, 0, 0, 4150, 4151, 7, 11, 0, 0, 4151, 4152, 7, 19, 0, 0, 4152, 4153, 7, 12, 0, 0, 4153, 4154, 7, 16, 0, 0, 4154, 4155, 5, 95, 0, 0, 4155, 4156, 7, 11, 0, 0, 4156, 4157, 7, 9, 0, 0, 4157, 4158, 7, 16, 0, 0, 4158, 4159, 7, 9, 0, 0, 4159, 4160, 7, 18, 0, 0, 4160, 732, 1, 0, 0, 0, 4161, 4162, 7, 4, 0, 0, 4162, 4163, 7, 21, 0, 0, 4163, 4164, 7, 7, 0, 0, 4164, 4165, 7, 7, 0, 0, 4165, 4166, 7, 9, 0, 0, 4166, 4167, 7, 9, 0, 0, 4167, 4168, 7, 15, 0, 0, 4168, 4169, 7, 4, 0, 0, 4169, 734, 1, 0, 0, 0, 4170, 4171, 7, 4, 0, 0, 4171, 4172, 7, 21, 0, 0, 4172, 4173, 7, 17, 0, 0, 4173, 736, 1, 0, 0, 0, 4174, 4175, 7, 4, 0, 0, 4175, 4176, 7, 21, 0, 0, 4176, 4177, 7, 12, 0, 0, 4177, 4178, 7, 15, 0, 0, 4178, 4179, 7, 2, 0, 0, 4179, 4180, 7, 13, 0, 0, 4180, 738, 1, 0, 0, 0, 4181, 4182, 7, 4, 0, 0, 4182, 4183, 7, 13, 0, 0, 4183, 4184, 7, 17, 0, 0, 4184, 4185, 7, 17, 0, 0, 4185, 4186, 7, 9, 0, 0, 4186, 4187, 7, 8, 0, 0, 4187, 4188, 7, 11, 0, 0, 4188, 4189, 7, 19, 0, 0, 4189, 4190, 7, 7, 0, 0, 4190, 740, 1, 0, 0, 0, 4191, 4192, 7, 4, 0, 0, 4192, 4193, 7, 13, 0, 0, 4193, 4194, 7, 4, 0, 0, 4194, 4195, 7, 8, 0, 0, 4195, 4196, 7, 9, 0, 0, 4196, 4197, 7, 17, 0, 0, 4197, 742, 1, 0, 0, 0, 4198, 4199, 7, 4, 0, 0, 4199, 4200, 7, 13, 0, 0, 4200, 4201, 7, 4, 0, 0, 4201, 4202, 7, 8, 0, 0, 4202, 4203, 7, 9, 0, 0, 4203, 4204, 7, 17, 0, 0, 4204, 4205, 5, 95, 0, 0, 4205, 4206, 7, 8, 0, 0, 4206, 4207, 7, 19, 0, 0, 4207, 4208, 7, 17, 0, 0, 4208, 4209, 7, 9, 0, 0, 4209, 744, 1, 0, 0, 0, 4210, 4211, 7, 4, 0, 0, 4211, 4212, 7, 13, 0, 0, 4212, 4213, 7, 4, 0, 0, 4213, 4214, 7, 8, 0, 0, 4214, 4215, 7, 9, 0, 0, 4215, 4216, 7, 17, 0, 0, 4216, 4217, 5, 95, 0, 0, 4217, 4218, 7, 21, 0, 0, 4218, 4219, 7, 4, 0, 0, 4219, 4220, 7, 9, 0, 0, 4220, 4221, 7, 11, 0, 0, 4221, 746, 1, 0, 0, 0, 4222, 4223, 7, 8, 0, 0, 4223, 4224, 7, 2, 0, 0, 4224, 4225, 7, 3, 0, 0, 4225, 4226, 7, 5, 0, 0, 4226, 4227, 7, 9, 0, 0, 4227, 748, 1, 0, 0, 0, 4228, 4229, 7, 8, 0, 0, 4229, 4230, 7, 2, 0, 0, 4230, 4231, 7, 3, 0, 0, 4231, 4232, 7, 5, 0, 0, 4232, 4233, 7, 9, 0, 0, 4233, 4234, 7, 4, 0, 0, 4234, 750, 1, 0, 0, 0, 4235, 4236, 7, 8, 0, 0, 4236, 4237, 7, 2, 0, 0, 4237, 4238, 7, 3, 0, 0, 4238, 4239, 7, 5, 0, 0, 4239, 4240, 7, 9, 0, 0, 4240, 4241, 7, 4, 0, 0, 4241, 4242, 7, 2, 0, 0, 4242, 4243, 7, 17, 0, 0, 4243, 4244, 7, 24, 0, 0, 4244, 4245, 7, 5, 0, 0, 4245, 4246, 7, 9, 0, 0, 4246, 752, 1, 0, 0, 0, 4247, 4248, 7, 8, 0, 0, 4248, 4249, 7, 22, 0, 0, 4249, 4250, 7, 9, 0, 0, 4250, 4251, 7, 12, 0, 0, 4251, 754, 1, 0, 0, 0, 4252, 4253, 7, 8, 0, 0, 4253, 4254, 7, 22, 0, 0, 4254, 4255, 7, 21, 0, 0, 4255, 4256, 7, 11, 0, 0, 4256, 4257, 7, 4, 0, 0, 4257, 4258, 7, 15, 0, 0, 4258, 4259, 7, 2, 0, 0, 4259, 4260, 7, 13, 0, 0, 4260, 756, 1, 0, 0, 0, 4261, 4262, 7, 8, 0, 0, 4262, 4263, 7, 19, 0, 0, 4263, 4264, 7, 17, 0, 0, 4264, 4265, 7, 9, 0, 0, 4265, 758, 1, 0, 0, 0, 4266, 4267, 7, 8, 0, 0, 4267, 4268, 7, 19, 0, 0, 4268, 4269, 7, 17, 0, 0, 4269, 4270, 7, 9, 0, 0, 4270, 4271, 7, 4, 0, 0, 4271, 4272, 7, 8, 0, 0, 4272, 4273, 7, 2, 0, 0, 4273, 4274, 7, 17, 0, 0, 4274, 4275, 7, 24, 0, 0, 4275, 760, 1, 0, 0, 0, 4276, 4277, 7, 8, 0, 0, 4277, 4278, 7, 19, 0, 0, 4278, 4279, 7, 17, 0, 0, 4279, 4280, 7, 9, 0, 0, 4280, 4281, 7, 4, 0, 0, 4281, 4282, 7, 8, 0, 0, 4282, 4283, 7, 2, 0, 0, 4283, 4284, 7, 17, 0, 0, 4284, 4285, 7, 24, 0, 0, 4285, 4286, 5, 95, 0, 0, 4286, 4287, 7, 15, 0, 0, 4287, 4288, 7, 19, 0, 0, 4288, 4289, 7, 23, 0, 0, 4289, 4290, 7, 23, 0, 0, 4290, 762, 1, 0, 0, 0, 4291, 4292, 7, 8, 0, 0, 4292, 4293, 7, 19, 0, 0, 4293, 4294, 7, 17, 0, 0, 4294, 4295, 7, 9, 0, 0, 4295, 4296, 7, 4, 0, 0, 4296, 4297, 7, 8, 0, 0, 4297, 4298, 7, 2, 0, 0, 4298, 4299, 7, 17, 0, 0, 4299, 4300, 7, 24, 0, 0, 4300, 4301, 5, 95, 0, 0, 4301, 4302, 7, 5, 0, 0, 4302, 4303, 7, 8, 0, 0, 4303, 4304, 7, 14, 0, 0, 4304, 764, 1, 0, 0, 0, 4305, 4306, 7, 8, 0, 0, 4306, 4307, 7, 19, 0, 0, 4307, 4308, 7, 17, 0, 0, 4308, 4309, 7, 9, 0, 0, 4309, 4310, 7, 4, 0, 0, 4310, 4311, 7, 8, 0, 0, 4311, 4312, 7, 2, 0, 0, 4312, 4313, 7, 17, 0, 0, 4313, 4314, 7, 24, 0, 0, 4314, 4315, 5, 95, 0, 0, 4315, 4316, 7, 8, 0, 0, 4316, 4317, 7, 11, 0, 0, 4317, 4318, 7, 21, 0, 0, 4318, 4319, 7, 12, 0, 0, 4319, 4320, 7, 7, 0, 0, 4320, 766, 1, 0, 0, 0, 4321, 4322, 7, 8, 0, 0, 4322, 4323, 7, 19, 0, 0, 4323, 4324, 7, 17, 0, 0, 4324, 4325, 7, 9, 0, 0, 4325, 4326, 7, 14, 0, 0, 4326, 4327, 7, 6, 0, 0, 4327, 4328, 7, 12, 0, 0, 4328, 4329, 7, 9, 0, 0, 4329, 4330, 5, 95, 0, 0, 4330, 4331, 7, 22, 0, 0, 4331, 4332, 7, 6, 0, 0, 4332, 4333, 7, 21, 0, 0, 4333, 4334, 7, 11, 0, 0, 4334, 768, 1, 0, 0, 0, 4335, 4336, 7, 8, 0, 0, 4336, 4337, 7, 19, 0, 0, 4337, 4338, 7, 17, 0, 0, 4338, 4339, 7, 9, 0, 0, 4339, 4340, 7, 14, 0, 0, 4340, 4341, 7, 6, 0, 0, 4341, 4342, 7, 12, 0, 0, 4342, 4343, 7, 9, 0, 0, 4343, 4344, 5, 95, 0, 0, 4344, 4345, 7, 17, 0, 0, 4345, 4346, 7, 19, 0, 0, 4346, 4347, 7, 12, 0, 0, 4347, 4348, 7, 21, 0, 0, 4348, 4349, 7, 8, 0, 0, 4349, 4350, 7, 9, 0, 0, 4350, 770, 1, 0, 0, 0, 4351, 4352, 7, 8, 0, 0, 4352, 4353, 7, 19, 0, 0, 4353, 4354, 7, 17, 0, 0, 4354, 4355, 7, 9, 0, 0, 4355, 4356, 5, 95, 0, 0, 4356, 4357, 7, 15, 0, 0, 4357, 4358, 7, 19, 0, 0, 4358, 4359, 7, 23, 0, 0, 4359, 4360, 7, 23, 0, 0, 4360, 772, 1, 0, 0, 0, 4361, 4362, 7, 8, 0, 0, 4362, 4363, 7, 19, 0, 0, 4363, 4364, 7, 17, 0, 0, 4364, 4365, 7, 9, 0, 0, 4365, 4366, 5, 95, 0, 0, 4366, 4367, 7, 8, 0, 0, 4367, 4368, 7, 11, 0, 0, 4368, 4369, 7, 21, 0, 0, 4369, 4370, 7, 12, 0, 0, 4370, 4371, 7, 7, 0, 0, 4371, 774, 1, 0, 0, 0, 4372, 4373, 7, 8, 0, 0, 4373, 4374, 7, 19, 0, 0, 4374, 4375, 7, 12, 0, 0, 4375, 4376, 7, 13, 0, 0, 4376, 4377, 7, 19, 0, 0, 4377, 4378, 7, 12, 0, 0, 4378, 4379, 7, 8, 0, 0, 4379, 776, 1, 0, 0, 0, 4380, 4381, 7, 8, 0, 0, 4381, 4382, 7, 6, 0, 0, 4382, 778, 1, 0, 0, 0, 4383, 4384, 7, 8, 0, 0, 4384, 4385, 7, 11, 0, 0, 4385, 4386, 7, 2, 0, 0, 4386, 4387, 7, 19, 0, 0, 4387, 4388, 7, 5, 0, 0, 4388, 4389, 7, 19, 0, 0, 4389, 4390, 7, 12, 0, 0, 4390, 4391, 7, 16, 0, 0, 4391, 780, 1, 0, 0, 0, 4392, 4393, 7, 8, 0, 0, 4393, 4394, 7, 11, 0, 0, 4394, 4395, 7, 2, 0, 0, 4395, 4396, 7, 12, 0, 0, 4396, 4397, 7, 4, 0, 0, 4397, 4398, 7, 5, 0, 0, 4398, 4399, 7, 2, 0, 0, 4399, 4400, 7, 8, 0, 0, 4400, 4401, 7, 9, 0, 0, 4401, 782, 1, 0, 0, 0, 4402, 4403, 7, 8, 0, 0, 4403, 4404, 7, 11, 0, 0, 4404, 4405, 7, 2, 0, 0, 4405, 4406, 7, 12, 0, 0, 4406, 4407, 7, 4, 0, 0, 4407, 4408, 7, 5, 0, 0, 4408, 4409, 7, 2, 0, 0, 4409, 4410, 7, 8, 0, 0, 4410, 4411, 7, 9, 0, 0, 4411, 4412, 5, 95, 0, 0, 4412, 4413, 7, 11, 0, 0, 4413, 4414, 7, 9, 0, 0, 4414, 4415, 7, 16, 0, 0, 4415, 4416, 7, 9, 0, 0, 4416, 4417, 7, 18, 0, 0, 4417, 784, 1, 0, 0, 0, 4418, 4419, 7, 8, 0, 0, 4419, 4420, 7, 11, 0, 0, 4420, 4421, 7, 2, 0, 0, 4421, 4422, 7, 12, 0, 0, 4422, 4423, 7, 4, 0, 0, 4423, 4424, 7, 5, 0, 0, 4424, 4425, 7, 2, 0, 0, 4425, 4426, 7, 8, 0, 0, 4426, 4427, 7, 19, 0, 0, 4427, 4428, 7, 6, 0, 0, 4428, 4429, 7, 12, 0, 0, 4429, 786, 1, 0, 0, 0, 4430, 4431, 7, 8, 0, 0, 4431, 4432, 7, 11, 0, 0, 4432, 4433, 7, 9, 0, 0, 4433, 4434, 7, 2, 0, 0, 4434, 4435, 7, 8, 0, 0, 4435, 788, 1, 0, 0, 0, 4436, 4437, 7, 8, 0, 0, 4437, 4438, 7, 11, 0, 0, 4438, 4439, 7, 19, 0, 0, 4439, 4440, 7, 16, 0, 0, 4440, 4441, 7, 16, 0, 0, 4441, 4442, 7, 9, 0, 0, 4442, 4443, 7, 11, 0, 0, 4443, 790, 1, 0, 0, 0, 4444, 4445, 7, 8, 0, 0, 4445, 4446, 7, 11, 0, 0, 4446, 4447, 7, 19, 0, 0, 4447, 4448, 7, 17, 0, 0, 4448, 792, 1, 0, 0, 0, 4449, 4450, 7, 8, 0, 0, 4450, 4451, 7, 11, 0, 0, 4451, 4452, 7, 19, 0, 0, 4452, 4453, 7, 17, 0, 0, 4453, 4454, 5, 95, 0, 0, 4454, 4455, 7, 2, 0, 0, 4455, 4456, 7, 11, 0, 0, 4456, 4457, 7, 11, 0, 0, 4457, 4458, 7, 2, 0, 0, 4458, 4459, 7, 13, 0, 0, 4459, 794, 1, 0, 0, 0, 4460, 4461, 7, 8, 0, 0, 4461, 4462, 7, 11, 0, 0, 4462, 4463, 7, 21, 0, 0, 4463, 4464, 7, 9, 0, 0, 4464, 796, 1, 0, 0, 0, 4465, 4466, 7, 8, 0, 0, 4466, 4467, 7, 11, 0, 0, 4467, 4468, 7, 21, 0, 0, 4468, 4469, 7, 12, 0, 0, 4469, 4470, 7, 7, 0, 0, 4470, 4471, 7, 2, 0, 0, 4471, 4472, 7, 8, 0, 0, 4472, 4473, 7, 9, 0, 0, 4473, 798, 1, 0, 0, 0, 4474, 4475, 7, 8, 0, 0, 4475, 4476, 7, 11, 0, 0, 4476, 4477, 7, 13, 0, 0, 4477, 4478, 5, 95, 0, 0, 4478, 4479, 7, 7, 0, 0, 4479, 4480, 7, 2, 0, 0, 4480, 4481, 7, 4, 0, 0, 4481, 4482, 7, 8, 0, 0, 4482, 800, 1, 0, 0, 0, 4483, 4484, 7, 8, 0, 0, 4484, 4485, 7, 21, 0, 0, 4485, 4486, 7, 9, 0, 0, 4486, 4487, 7, 4, 0, 0, 4487, 4488, 7, 15, 0, 0, 4488, 4489, 7, 2, 0, 0, 4489, 4490, 7, 13, 0, 0, 4490, 802, 1, 0, 0, 0, 4491, 4492, 7, 21, 0, 0, 4492, 4493, 7, 9, 0, 0, 4493, 4494, 7, 4, 0, 0, 4494, 4495, 7, 7, 0, 0, 4495, 4496, 7, 2, 0, 0, 4496, 4497, 7, 24, 0, 0, 4497, 4498, 7, 9, 0, 0, 4498, 804, 1, 0, 0, 0, 4499, 4500, 7, 21, 0, 0, 4500, 4501, 7, 12, 0, 0, 4501, 4502, 7, 19, 0, 0, 4502, 4503, 7, 6, 0, 0, 4503, 4504, 7, 12, 0, 0, 4504, 806, 1, 0, 0, 0, 4505, 4506, 7, 21, 0, 0, 4506, 4507, 7, 12, 0, 0, 4507, 4508, 7, 19, 0, 0, 4508, 4509, 7, 26, 0, 0, 4509, 4510, 7, 21, 0, 0, 4510, 4511, 7, 9, 0, 0, 4511, 808, 1, 0, 0, 0, 4512, 4513, 7, 21, 0, 0, 4513, 4514, 7, 12, 0, 0, 4514, 4515, 7, 25, 0, 0, 4515, 4516, 7, 12, 0, 0, 4516, 4517, 7, 6, 0, 0, 4517, 4518, 7, 10, 0, 0, 4518, 4519, 7, 12, 0, 0, 4519, 810, 1, 0, 0, 0, 4520, 4521, 7, 21, 0, 0, 4521, 4522, 7, 12, 0, 0, 4522, 4523, 7, 12, 0, 0, 4523, 4524, 7, 9, 0, 0, 4524, 4525, 7, 4, 0, 0, 4525, 4526, 7, 8, 0, 0, 4526, 812, 1, 0, 0, 0, 4527, 4528, 7, 21, 0, 0, 4528, 4529, 7, 12, 0, 0, 4529, 4530, 7, 24, 0, 0, 4530, 4531, 7, 19, 0, 0, 4531, 4532, 7, 20, 0, 0, 4532, 4533, 7, 6, 0, 0, 4533, 4534, 7, 8, 0, 0, 4534, 814, 1, 0, 0, 0, 4535, 4536, 7, 21, 0, 0, 4536, 4537, 7, 24, 0, 0, 4537, 4538, 7, 15, 0, 0, 4538, 4539, 7, 2, 0, 0, 4539, 4540, 7, 8, 0, 0, 4540, 4541, 7, 9, 0, 0, 4541, 816, 1, 0, 0, 0, 4542, 4543, 7, 21, 0, 0, 4543, 4544, 7, 24, 0, 0, 4544, 4545, 7, 24, 0, 0, 4545, 4546, 7, 9, 0, 0, 4546, 4547, 7, 11, 0, 0, 4547, 818, 1, 0, 0, 0, 4548, 4549, 7, 21, 0, 0, 4549, 4550, 7, 24, 0, 0, 4550, 4551, 7, 4, 0, 0, 4551, 4552, 7, 9, 0, 0, 4552, 4553, 7, 11, 0, 0, 4553, 4554, 7, 8, 0, 0, 4554, 820, 1, 0, 0, 0, 4555, 4556, 7, 21, 0, 0, 4556, 4557, 7, 4, 0, 0, 4557, 4558, 7, 9, 0, 0, 4558, 822, 1, 0, 0, 0, 4559, 4560, 7, 21, 0, 0, 4560, 4561, 7, 4, 0, 0, 4561, 4562, 7, 9, 0, 0, 4562, 4563, 7, 11, 0, 0, 4563, 824, 1, 0, 0, 0, 4564, 4565, 7, 21, 0, 0, 4565, 4566, 7, 4, 0, 0, 4566, 4567, 7, 19, 0, 0, 4567, 4568, 7, 12, 0, 0, 4568, 4569, 7, 16, 0, 0, 4569, 826, 1, 0, 0, 0, 4570, 4571, 7, 20, 0, 0, 4571, 4572, 7, 2, 0, 0, 4572, 4573, 7, 5, 0, 0, 4573, 4574, 7, 21, 0, 0, 4574, 4575, 7, 9, 0, 0, 4575, 828, 1, 0, 0, 0, 4576, 4577, 7, 20, 0, 0, 4577, 4578, 7, 2, 0, 0, 4578, 4579, 7, 5, 0, 0, 4579, 4580, 7, 21, 0, 0, 4580, 4581, 7, 9, 0, 0, 4581, 4582, 7, 4, 0, 0, 4582, 830, 1, 0, 0, 0, 4583, 4584, 7, 20, 0, 0, 4584, 4585, 7, 2, 0, 0, 4585, 4586, 7, 5, 0, 0, 4586, 4587, 7, 21, 0, 0, 4587, 4588, 7, 9, 0, 0, 4588, 4589, 5, 95, 0, 0, 4589, 4590, 7, 6, 0, 0, 4590, 4591, 7, 23, 0, 0, 4591, 832, 1, 0, 0, 0, 4592, 4593, 7, 20, 0, 0, 4593, 4594, 7, 2, 0, 0, 4594, 4595, 7, 11, 0, 0, 4595, 4596, 7, 3, 0, 0, 4596, 4597, 7, 19, 0, 0, 4597, 4598, 7, 12, 0, 0, 4598, 4599, 7, 2, 0, 0, 4599, 4600, 7, 11, 0, 0, 4600, 4601, 7, 13, 0, 0, 4601, 834, 1, 0, 0, 0, 4602, 4603, 7, 20, 0, 0, 4603, 4604, 7, 2, 0, 0, 4604, 4605, 7, 11, 0, 0, 4605, 4606, 7, 7, 0, 0, 4606, 4607, 7, 22, 0, 0, 4607, 4608, 7, 2, 0, 0, 4608, 4609, 7, 11, 0, 0, 4609, 836, 1, 0, 0, 0, 4610, 4611, 7, 20, 0, 0, 4611, 4612, 7, 2, 0, 0, 4612, 4613, 7, 11, 0, 0, 4613, 4614, 7, 13, 0, 0, 4614, 4615, 7, 19, 0, 0, 4615, 4616, 7, 12, 0, 0, 4616, 4617, 7, 16, 0, 0, 4617, 838, 1, 0, 0, 0, 4618, 4619, 7, 20, 0, 0, 4619, 4620, 7, 2, 0, 0, 4620, 4621, 7, 11, 0, 0, 4621, 4622, 5, 95, 0, 0, 4622, 4623, 7, 24, 0, 0, 4623, 4624, 7, 6, 0, 0, 4624, 4625, 7, 24, 0, 0, 4625, 840, 1, 0, 0, 0, 4626, 4627, 7, 20, 0, 0, 4627, 4628, 7, 2, 0, 0, 4628, 4629, 7, 11, 0, 0, 4629, 4630, 5, 95, 0, 0, 4630, 4631, 7, 4, 0, 0, 4631, 4632, 7, 2, 0, 0, 4632, 4633, 7, 17, 0, 0, 4633, 4634, 7, 24, 0, 0, 4634, 842, 1, 0, 0, 0, 4635, 4636, 7, 20, 0, 0, 4636, 4637, 7, 9, 0, 0, 4637, 4638, 7, 11, 0, 0, 4638, 4639, 7, 4, 0, 0, 4639, 4640, 7, 19, 0, 0, 4640, 4641, 7, 6, 0, 0, 4641, 4642, 7, 12, 0, 0, 4642, 4643, 7, 19, 0, 0, 4643, 4644, 7, 12, 0, 0, 4644, 4645, 7, 16, 0, 0, 4645, 844, 1, 0, 0, 0, 4646, 4647, 7, 20, 0, 0, 4647, 4648, 7, 19, 0, 0, 4648, 4649, 7, 9, 0, 0, 4649, 4650, 7, 10, 0, 0, 4650, 4651, 7, 4, 0, 0, 4651, 846, 1, 0, 0, 0, 4652, 4653, 7, 20, 0, 0, 4653, 4654, 7, 19, 0, 0, 4654, 4655, 7, 11, 0, 0, 4655, 4656, 7, 8, 0, 0, 4656, 4657, 7, 21, 0, 0, 4657, 4658, 7, 2, 0, 0, 4658, 4659, 7, 5, 0, 0, 4659, 848, 1, 0, 0, 0, 4660, 4661, 7, 10, 0, 0, 4661, 4662, 7, 2, 0, 0, 4662, 4663, 7, 8, 0, 0, 4663, 4664, 7, 9, 0, 0, 4664, 4665, 7, 11, 0, 0, 4665, 4666, 7, 17, 0, 0, 4666, 4667, 7, 2, 0, 0, 4667, 4668, 7, 11, 0, 0, 4668, 4669, 7, 25, 0, 0, 4669, 850, 1, 0, 0, 0, 4670, 4671, 7, 10, 0, 0, 4671, 4672, 7, 2, 0, 0, 4672, 4673, 7, 8, 0, 0, 4673, 4674, 7, 9, 0, 0, 4674, 4675, 7, 11, 0, 0, 4675, 4676, 7, 17, 0, 0, 4676, 4677, 7, 2, 0, 0, 4677, 4678, 7, 11, 0, 0, 4678, 4679, 7, 25, 0, 0, 4679, 4680, 7, 4, 0, 0, 4680, 852, 1, 0, 0, 0, 4681, 4682, 7, 10, 0, 0, 4682, 4683, 7, 9, 0, 0, 4683, 4684, 7, 15, 0, 0, 4684, 4685, 7, 12, 0, 0, 4685, 4686, 7, 9, 0, 0, 4686, 4687, 7, 4, 0, 0, 4687, 4688, 7, 15, 0, 0, 4688, 4689, 7, 2, 0, 0, 4689, 4690, 7, 13, 0, 0, 4690, 854, 1, 0, 0, 0, 4691, 4692, 7, 10, 0, 0, 4692, 4693, 7, 9, 0, 0, 4693, 4694, 7, 9, 0, 0, 4694, 4695, 7, 25, 0, 0, 4695, 4696, 7, 4, 0, 0, 4696, 856, 1, 0, 0, 0, 4697, 4698, 7, 10, 0, 0, 4698, 4699, 7, 22, 0, 0, 4699, 4700, 7, 9, 0, 0, 4700, 4701, 7, 12, 0, 0, 4701, 858, 1, 0, 0, 0, 4702, 4703, 7, 10, 0, 0, 4703, 4704, 7, 22, 0, 0, 4704, 4705, 7, 9, 0, 0, 4705, 4706, 7, 12, 0, 0, 4706, 4707, 7, 9, 0, 0, 4707, 4708, 7, 20, 0, 0, 4708, 4709, 7, 9, 0, 0, 4709, 4710, 7, 11, 0, 0, 4710, 860, 1, 0, 0, 0, 4711, 4712, 7, 10, 0, 0, 4712, 4713, 7, 22, 0, 0, 4713, 4714, 7, 9, 0, 0, 4714, 4715, 7, 11, 0, 0, 4715, 4716, 7, 9, 0, 0, 4716, 862, 1, 0, 0, 0, 4717, 4718, 7, 10, 0, 0, 4718, 4719, 7, 19, 0, 0, 4719, 4720, 7, 15, 0, 0, 4720, 4721, 7, 8, 0, 0, 4721, 4722, 7, 22, 0, 0, 4722, 4723, 5, 95, 0, 0, 4723, 4724, 7, 3, 0, 0, 4724, 4725, 7, 21, 0, 0, 4725, 4726, 7, 7, 0, 0, 4726, 4727, 7, 25, 0, 0, 4727, 4728, 7, 9, 0, 0, 4728, 4729, 7, 8, 0, 0, 4729, 864, 1, 0, 0, 0, 4730, 4731, 7, 10, 0, 0, 4731, 4732, 7, 19, 0, 0, 4732, 4733, 7, 12, 0, 0, 4733, 4734, 7, 15, 0, 0, 4734, 4735, 7, 6, 0, 0, 4735, 4736, 7, 10, 0, 0, 4736, 866, 1, 0, 0, 0, 4737, 4738, 7, 10, 0, 0, 4738, 4739, 7, 19, 0, 0, 4739, 4740, 7, 8, 0, 0, 4740, 4741, 7, 22, 0, 0, 4741, 868, 1, 0, 0, 0, 4742, 4743, 7, 10, 0, 0, 4743, 4744, 7, 19, 0, 0, 4744, 4745, 7, 8, 0, 0, 4745, 4746, 7, 22, 0, 0, 4746, 4747, 7, 19, 0, 0, 4747, 4748, 7, 12, 0, 0, 4748, 870, 1, 0, 0, 0, 4749, 4750, 7, 10, 0, 0, 4750, 4751, 7, 19, 0, 0, 4751, 4752, 7, 8, 0, 0, 4752, 4753, 7, 22, 0, 0, 4753, 4754, 7, 6, 0, 0, 4754, 4755, 7, 21, 0, 0, 4755, 4756, 7, 8, 0, 0, 4756, 872, 1, 0, 0, 0, 4757, 4758, 7, 13, 0, 0, 4758, 4759, 7, 9, 0, 0, 4759, 4760, 7, 2, 0, 0, 4760, 4761, 7, 11, 0, 0, 4761, 874, 1, 0, 0, 0, 4762, 4763, 7, 2, 0, 0, 4763, 4764, 7, 15, 0, 0, 4764, 4765, 7, 15, 0, 0, 4765, 876, 1, 0, 0, 0, 4766, 4767, 7, 2, 0, 0, 4767, 4768, 7, 23, 0, 0, 4768, 4769, 7, 8, 0, 0, 4769, 4770, 7, 9, 0, 0, 4770, 4771, 7, 11, 0, 0, 4771, 878, 1, 0, 0, 0, 4772, 4773, 7, 2, 0, 0, 4773, 4774, 7, 4, 0, 0, 4774, 4775, 7, 7, 0, 0, 4775, 880, 1, 0, 0, 0, 4776, 4777, 7, 7, 0, 0, 4777, 4778, 7, 2, 0, 0, 4778, 4779, 7, 4, 0, 0, 4779, 4780, 7, 7, 0, 0, 4780, 4781, 7, 2, 0, 0, 4781, 4782, 7, 15, 0, 0, 4782, 4783, 7, 9, 0, 0, 4783, 882, 1, 0, 0, 0, 4784, 4785, 7, 7, 0, 0, 4785, 4786, 7, 2, 0, 0, 4786, 4787, 7, 8, 0, 0, 4787, 4788, 7, 2, 0, 0, 4788, 4789, 7, 5, 0, 0, 4789, 4790, 7, 6, 0, 0, 4790, 4791, 7, 16, 0, 0, 4791, 884, 1, 0, 0, 0, 4792, 4793, 7, 7, 0, 0, 4793, 4794, 7, 9, 0, 0, 4794, 4795, 7, 12, 0, 0, 4795, 4796, 7, 8, 0, 0, 4796, 4797, 7, 21, 0, 0, 4797, 4798, 7, 11, 0, 0, 4798, 4799, 7, 13, 0, 0, 4799, 886, 1, 0, 0, 0, 4800, 4801, 7, 7, 0, 0, 4801, 4802, 7, 6, 0, 0, 4802, 4803, 7, 12, 0, 0, 4803, 4804, 7, 23, 0, 0, 4804, 4805, 7, 19, 0, 0, 4805, 4806, 7, 16, 0, 0, 4806, 888, 1, 0, 0, 0, 4807, 4808, 7, 7, 0, 0, 4808, 4809, 7, 6, 0, 0, 4809, 4810, 7, 12, 0, 0, 4810, 4811, 7, 4, 0, 0, 4811, 4812, 7, 8, 0, 0, 4812, 4813, 7, 11, 0, 0, 4813, 4814, 7, 2, 0, 0, 4814, 4815, 7, 19, 0, 0, 4815, 4816, 7, 12, 0, 0, 4816, 4817, 7, 8, 0, 0, 4817, 4818, 7, 4, 0, 0, 4818, 890, 1, 0, 0, 0, 4819, 4820, 7, 7, 0, 0, 4820, 4821, 7, 21, 0, 0, 4821, 4822, 7, 17, 0, 0, 4822, 4823, 7, 21, 0, 0, 4823, 4824, 7, 5, 0, 0, 4824, 4825, 7, 2, 0, 0, 4825, 4826, 7, 8, 0, 0, 4826, 4827, 7, 9, 0, 0, 4827, 892, 1, 0, 0, 0, 4828, 4829, 7, 15, 0, 0, 4829, 4830, 7, 2, 0, 0, 4830, 4831, 7, 8, 0, 0, 4831, 4832, 7, 2, 0, 0, 4832, 894, 1, 0, 0, 0, 4833, 4834, 7, 15, 0, 0, 4834, 4835, 7, 2, 0, 0, 4835, 4836, 7, 8, 0, 0, 4836, 4837, 7, 2, 0, 0, 4837, 4838, 7, 3, 0, 0, 4838, 4839, 7, 2, 0, 0, 4839, 4840, 7, 4, 0, 0, 4840, 4841, 7, 9, 0, 0, 4841, 896, 1, 0, 0, 0, 4842, 4843, 7, 15, 0, 0, 4843, 4844, 7, 2, 0, 0, 4844, 4845, 7, 13, 0, 0, 4845, 4846, 7, 4, 0, 0, 4846, 898, 1, 0, 0, 0, 4847, 4848, 7, 15, 0, 0, 4848, 4849, 7, 9, 0, 0, 4849, 4850, 7, 7, 0, 0, 4850, 4851, 7, 2, 0, 0, 4851, 4852, 7, 15, 0, 0, 4852, 4853, 7, 9, 0, 0, 4853, 900, 1, 0, 0, 0, 4854, 4855, 7, 15, 0, 0, 4855, 4856, 7, 9, 0, 0, 4856, 4857, 7, 4, 0, 0, 4857, 4858, 7, 7, 0, 0, 4858, 902, 1, 0, 0, 0, 4859, 4860, 7, 15, 0, 0, 4860, 4861, 7, 9, 0, 0, 4861, 4862, 7, 4, 0, 0, 4862, 4863, 7, 7, 0, 0, 4863, 4864, 7, 11, 0, 0, 4864, 4865, 7, 19, 0, 0, 4865, 4866, 7, 24, 0, 0, 4866, 4867, 7, 8, 0, 0, 4867, 4868, 7, 6, 0, 0, 4868, 4869, 7, 11, 0, 0, 4869, 904, 1, 0, 0, 0, 4870, 4871, 7, 15, 0, 0, 4871, 4872, 7, 19, 0, 0, 4872, 4873, 7, 20, 0, 0, 4873, 906, 1, 0, 0, 0, 4874, 4875, 7, 9, 0, 0, 4875, 4876, 7, 12, 0, 0, 4876, 4877, 7, 16, 0, 0, 4877, 4878, 7, 19, 0, 0, 4878, 4879, 7, 12, 0, 0, 4879, 4880, 7, 9, 0, 0, 4880, 908, 1, 0, 0, 0, 4881, 4882, 7, 9, 0, 0, 4882, 4883, 7, 24, 0, 0, 4883, 4884, 7, 6, 0, 0, 4884, 4885, 7, 7, 0, 0, 4885, 4886, 7, 22, 0, 0, 4886, 910, 1, 0, 0, 0, 4887, 4888, 7, 9, 0, 0, 4888, 4889, 7, 18, 0, 0, 4889, 4890, 7, 7, 0, 0, 4890, 4891, 7, 5, 0, 0, 4891, 4892, 7, 21, 0, 0, 4892, 4893, 7, 15, 0, 0, 4893, 4894, 7, 19, 0, 0, 4894, 4895, 7, 12, 0, 0, 4895, 4896, 7, 16, 0, 0, 4896, 912, 1, 0, 0, 0, 4897, 4898, 7, 23, 0, 0, 4898, 4899, 7, 19, 0, 0, 4899, 4900, 7, 5, 0, 0, 4900, 4901, 7, 9, 0, 0, 4901, 914, 1, 0, 0, 0, 4902, 4903, 7, 23, 0, 0, 4903, 4904, 7, 19, 0, 0, 4904, 4905, 7, 11, 0, 0, 4905, 4906, 7, 4, 0, 0, 4906, 4907, 7, 8, 0, 0, 4907, 916, 1, 0, 0, 0, 4908, 4909, 7, 16, 0, 0, 4909, 4910, 7, 9, 0, 0, 4910, 4911, 7, 12, 0, 0, 4911, 4912, 7, 9, 0, 0, 4912, 4913, 7, 11, 0, 0, 4913, 4914, 7, 2, 0, 0, 4914, 4915, 7, 8, 0, 0, 4915, 4916, 7, 9, 0, 0, 4916, 4917, 7, 15, 0, 0, 4917, 918, 1, 0, 0, 0, 4918, 4919, 7, 22, 0, 0, 4919, 4920, 7, 6, 0, 0, 4920, 4921, 7, 24, 0, 0, 4921, 920, 1, 0, 0, 0, 4922, 4923, 7, 22, 0, 0, 4923, 4924, 7, 6, 0, 0, 4924, 4925, 7, 21, 0, 0, 4925, 4926, 7, 11, 0, 0, 4926, 4927, 7, 4, 0, 0, 4927, 922, 1, 0, 0, 0, 4928, 4929, 7, 19, 0, 0, 4929, 4930, 7, 16, 0, 0, 4930, 4931, 7, 12, 0, 0, 4931, 4932, 7, 6, 0, 0, 4932, 4933, 7, 11, 0, 0, 4933, 4934, 7, 9, 0, 0, 4934, 924, 1, 0, 0, 0, 4935, 4936, 7, 19, 0, 0, 4936, 4937, 7, 12, 0, 0, 4937, 4938, 7, 7, 0, 0, 4938, 4939, 7, 5, 0, 0, 4939, 4940, 7, 21, 0, 0, 4940, 4941, 7, 15, 0, 0, 4941, 4942, 7, 19, 0, 0, 4942, 4943, 7, 12, 0, 0, 4943, 4944, 7, 16, 0, 0, 4944, 926, 1, 0, 0, 0, 4945, 4946, 7, 27, 0, 0, 4946, 4947, 7, 2, 0, 0, 4947, 4948, 7, 11, 0, 0, 4948, 928, 1, 0, 0, 0, 4949, 4950, 7, 27, 0, 0, 4950, 4951, 7, 2, 0, 0, 4951, 4952, 7, 11, 0, 0, 4952, 4953, 7, 4, 0, 0, 4953, 930, 1, 0, 0, 0, 4954, 4955, 7, 27, 0, 0, 4955, 4956, 7, 2, 0, 0, 4956, 4957, 7, 20, 0, 0, 4957, 4958, 7, 2, 0, 0, 4958, 932, 1, 0, 0, 0, 4959, 4960, 7, 25, 0, 0, 4960, 4961, 7, 9, 0, 0, 4961, 4962, 7, 13, 0, 0, 4962, 934, 1, 0, 0, 0, 4963, 4964, 7, 5, 0, 0, 4964, 4965, 7, 2, 0, 0, 4965, 4966, 7, 4, 0, 0, 4966, 4967, 7, 8, 0, 0, 4967, 936, 1, 0, 0, 0, 4968, 4969, 7, 5, 0, 0, 4969, 4970, 7, 6, 0, 0, 4970, 4971, 7, 2, 0, 0, 4971, 4972, 7, 15, 0, 0, 4972, 938, 1, 0, 0, 0, 4973, 4974, 7, 17, 0, 0, 4974, 4975, 7, 2, 0, 0, 4975, 4976, 7, 24, 0, 0, 4976, 940, 1, 0, 0, 0, 4977, 4978, 7, 17, 0, 0, 4978, 4979, 7, 19, 0, 0, 4979, 4980, 7, 7, 0, 0, 4980, 4981, 7, 11, 0, 0, 4981, 4982, 7, 6, 0, 0, 4982, 4983, 7, 4, 0, 0, 4983, 4984, 7, 9, 0, 0, 4984, 4985, 7, 7, 0, 0, 4985, 4986, 7, 6, 0, 0, 4986, 4987, 7, 12, 0, 0, 4987, 4988, 7, 15, 0, 0, 4988, 942, 1, 0, 0, 0, 4989, 4990, 7, 17, 0, 0, 4990, 4991, 7, 19, 0, 0, 4991, 4992, 7, 5, 0, 0, 4992, 4993, 7, 5, 0, 0, 4993, 4994, 7, 9, 0, 0, 4994, 4995, 7, 12, 0, 0, 4995, 4996, 7, 12, 0, 0, 4996, 4997, 7, 19, 0, 0, 4997, 4998, 7, 21, 0, 0, 4998, 4999, 7, 17, 0, 0, 4999, 944, 1, 0, 0, 0, 5000, 5001, 7, 17, 0, 0, 5001, 5002, 7, 19, 0, 0, 5002, 5003, 7, 5, 0, 0, 5003, 5004, 7, 5, 0, 0, 5004, 5005, 7, 19, 0, 0, 5005, 5006, 7, 4, 0, 0, 5006, 5007, 7, 9, 0, 0, 5007, 5008, 7, 7, 0, 0, 5008, 5009, 7, 6, 0, 0, 5009, 5010, 7, 12, 0, 0, 5010, 5011, 7, 15, 0, 0, 5011, 946, 1, 0, 0, 0, 5012, 5013, 7, 17, 0, 0, 5013, 5014, 7, 19, 0, 0, 5014, 5015, 7, 12, 0, 0, 5015, 5016, 7, 21, 0, 0, 5016, 5017, 7, 8, 0, 0, 5017, 5018, 7, 9, 0, 0, 5018, 5019, 7, 4, 0, 0, 5019, 948, 1, 0, 0, 0, 5020, 5021, 7, 17, 0, 0, 5021, 5022, 7, 6, 0, 0, 5022, 5023, 7, 12, 0, 0, 5023, 5024, 7, 8, 0, 0, 5024, 5025, 7, 22, 0, 0, 5025, 5026, 7, 4, 0, 0, 5026, 950, 1, 0, 0, 0, 5027, 5028, 7, 12, 0, 0, 5028, 5029, 7, 2, 0, 0, 5029, 5030, 7, 12, 0, 0, 5030, 5031, 7, 6, 0, 0, 5031, 5032, 7, 4, 0, 0, 5032, 5033, 7, 9, 0, 0, 5033, 5034, 7, 7, 0, 0, 5034, 5035, 7, 6, 0, 0, 5035, 5036, 7, 12, 0, 0, 5036, 5037, 7, 15, 0, 0, 5037, 952, 1, 0, 0, 0, 5038, 5039, 7, 12, 0, 0, 5039, 5040, 7, 21, 0, 0, 5040, 5041, 7, 5, 0, 0, 5041, 5042, 7, 5, 0, 0, 5042, 5043, 7, 4, 0, 0, 5043, 954, 1, 0, 0, 0, 5044, 5045, 7, 6, 0, 0, 5045, 5046, 7, 24, 0, 0, 5046, 5047, 7, 8, 0, 0, 5047, 5048, 7, 19, 0, 0, 5048, 5049, 7, 6, 0, 0, 5049, 5050, 7, 12, 0, 0, 5050, 5051, 7, 4, 0, 0, 5051, 956, 1, 0, 0, 0, 5052, 5053, 7, 24, 0, 0, 5053, 5054, 7, 2, 0, 0, 5054, 5055, 7, 4, 0, 0, 5055, 5056, 7, 8, 0, 0, 5056, 958, 1, 0, 0, 0, 5057, 5058, 7, 24, 0, 0, 5058, 5059, 7, 5, 0, 0, 5059, 5060, 7, 2, 0, 0, 5060, 5061, 7, 12, 0, 0, 5061, 960, 1, 0, 0, 0, 5062, 5063, 7, 24, 0, 0, 5063, 5064, 7, 11, 0, 0, 5064, 5065, 7, 9, 0, 0, 5065, 5066, 7, 7, 0, 0, 5066, 5067, 7, 9, 0, 0, 5067, 5068, 7, 15, 0, 0, 5068, 5069, 7, 19, 0, 0, 5069, 5070, 7, 12, 0, 0, 5070, 5071, 7, 16, 0, 0, 5071, 962, 1, 0, 0, 0, 5072, 5073, 7, 24, 0, 0, 5073, 5074, 7, 13, 0, 0, 5074, 5075, 7, 8, 0, 0, 5075, 5076, 7, 22, 0, 0, 5076, 5077, 7, 6, 0, 0, 5077, 5078, 7, 12, 0, 0, 5078, 964, 1, 0, 0, 0, 5079, 5080, 7, 24, 0, 0, 5080, 5081, 7, 13, 0, 0, 5081, 5082, 7, 8, 0, 0, 5082, 5083, 7, 22, 0, 0, 5083, 5084, 7, 6, 0, 0, 5084, 5085, 7, 12, 0, 0, 5085, 5086, 5, 95, 0, 0, 5086, 5087, 7, 2, 0, 0, 5087, 5088, 7, 11, 0, 0, 5088, 5089, 7, 7, 0, 0, 5089, 5090, 7, 22, 0, 0, 5090, 5091, 7, 19, 0, 0, 5091, 5092, 7, 20, 0, 0, 5092, 5093, 7, 9, 0, 0, 5093, 5094, 7, 4, 0, 0, 5094, 966, 1, 0, 0, 0, 5095, 5096, 7, 24, 0, 0, 5096, 5097, 7, 13, 0, 0, 5097, 5098, 7, 8, 0, 0, 5098, 5099, 7, 22, 0, 0, 5099, 5100, 7, 6, 0, 0, 5100, 5101, 7, 12, 0, 0, 5101, 5102, 5, 95, 0, 0, 5102, 5103, 7, 15, 0, 0, 5103, 5104, 7, 9, 0, 0, 5104, 5105, 7, 24, 0, 0, 5105, 5106, 7, 9, 0, 0, 5106, 5107, 7, 12, 0, 0, 5107, 5108, 7, 15, 0, 0, 5108, 5109, 7, 9, 0, 0, 5109, 5110, 7, 12, 0, 0, 5110, 5111, 7, 7, 0, 0, 5111, 5112, 7, 19, 0, 0, 5112, 5113, 7, 9, 0, 0, 5113, 5114, 7, 4, 0, 0, 5114, 968, 1, 0, 0, 0, 5115, 5116, 7, 24, 0, 0, 5116, 5117, 7, 13, 0, 0, 5117, 5118, 7, 8, 0, 0, 5118, 5119, 7, 22, 0, 0, 5119, 5120, 7, 6, 0, 0, 5120, 5121, 7, 12, 0, 0, 5121, 5122, 5, 95, 0, 0, 5122, 5123, 7, 23, 0, 0, 5123, 5124, 7, 19, 0, 0, 5124, 5125, 7, 5, 0, 0, 5125, 5126, 7, 9, 0, 0, 5126, 5127, 7, 4, 0, 0, 5127, 970, 1, 0, 0, 0, 5128, 5129, 7, 24, 0, 0, 5129, 5130, 7, 13, 0, 0, 5130, 5131, 7, 8, 0, 0, 5131, 5132, 7, 22, 0, 0, 5132, 5133, 7, 6, 0, 0, 5133, 5134, 7, 12, 0, 0, 5134, 5135, 5, 95, 0, 0, 5135, 5136, 7, 27, 0, 0, 5136, 5137, 7, 2, 0, 0, 5137, 5138, 7, 11, 0, 0, 5138, 972, 1, 0, 0, 0, 5139, 5140, 7, 24, 0, 0, 5140, 5141, 7, 13, 0, 0, 5141, 5142, 7, 8, 0, 0, 5142, 5143, 7, 22, 0, 0, 5143, 5144, 7, 6, 0, 0, 5144, 5145, 7, 12, 0, 0, 5145, 5146, 5, 95, 0, 0, 5146, 5147, 7, 24, 0, 0, 5147, 5148, 7, 2, 0, 0, 5148, 5149, 7, 11, 0, 0, 5149, 5150, 7, 2, 0, 0, 5150, 5151, 7, 17, 0, 0, 5151, 5152, 7, 9, 0, 0, 5152, 5153, 7, 8, 0, 0, 5153, 5154, 7, 9, 0, 0, 5154, 5155, 7, 11, 0, 0, 5155, 974, 1, 0, 0, 0, 5156, 5157, 7, 24, 0, 0, 5157, 5158, 7, 13, 0, 0, 5158, 5159, 7, 8, 0, 0, 5159, 5160, 7, 22, 0, 0, 5160, 5161, 7, 6, 0, 0, 5161, 5162, 7, 12, 0, 0, 5162, 5163, 5, 95, 0, 0, 5163, 5164, 7, 11, 0, 0, 5164, 5165, 7, 9, 0, 0, 5165, 5166, 7, 26, 0, 0, 5166, 5167, 7, 21, 0, 0, 5167, 5168, 7, 19, 0, 0, 5168, 5169, 7, 11, 0, 0, 5169, 5170, 7, 9, 0, 0, 5170, 5171, 7, 17, 0, 0, 5171, 5172, 7, 9, 0, 0, 5172, 5173, 7, 12, 0, 0, 5173, 5174, 7, 8, 0, 0, 5174, 5175, 7, 4, 0, 0, 5175, 976, 1, 0, 0, 0, 5176, 5177, 7, 26, 0, 0, 5177, 5178, 7, 21, 0, 0, 5178, 5179, 7, 2, 0, 0, 5179, 5180, 7, 11, 0, 0, 5180, 5181, 7, 8, 0, 0, 5181, 5182, 7, 9, 0, 0, 5182, 5183, 7, 11, 0, 0, 5183, 978, 1, 0, 0, 0, 5184, 5185, 7, 11, 0, 0, 5185, 5186, 7, 9, 0, 0, 5186, 5187, 7, 17, 0, 0, 5187, 5188, 7, 6, 0, 0, 5188, 5189, 7, 20, 0, 0, 5189, 5190, 7, 9, 0, 0, 5190, 980, 1, 0, 0, 0, 5191, 5192, 7, 11, 0, 0, 5192, 5193, 7, 9, 0, 0, 5193, 5194, 7, 4, 0, 0, 5194, 5195, 7, 8, 0, 0, 5195, 5196, 7, 11, 0, 0, 5196, 5197, 7, 19, 0, 0, 5197, 5198, 7, 7, 0, 0, 5198, 5199, 7, 8, 0, 0, 5199, 982, 1, 0, 0, 0, 5200, 5201, 7, 4, 0, 0, 5201, 5202, 7, 9, 0, 0, 5202, 5203, 7, 7, 0, 0, 5203, 5204, 7, 6, 0, 0, 5204, 5205, 7, 12, 0, 0, 5205, 5206, 7, 15, 0, 0, 5206, 5207, 7, 4, 0, 0, 5207, 984, 1, 0, 0, 0, 5208, 5209, 7, 4, 0, 0, 5209, 5210, 7, 9, 0, 0, 5210, 5211, 7, 4, 0, 0, 5211, 5212, 7, 4, 0, 0, 5212, 5213, 7, 19, 0, 0, 5213, 5214, 7, 6, 0, 0, 5214, 5215, 7, 12, 0, 0, 5215, 986, 1, 0, 0, 0, 5216, 5217, 7, 4, 0, 0, 5217, 5218, 7, 9, 0, 0, 5218, 5219, 7, 8, 0, 0, 5219, 5220, 7, 4, 0, 0, 5220, 988, 1, 0, 0, 0, 5221, 5222, 7, 4, 0, 0, 5222, 5223, 7, 19, 0, 0, 5223, 5224, 7, 14, 0, 0, 5224, 5225, 7, 9, 0, 0, 5225, 990, 1, 0, 0, 0, 5226, 5227, 7, 4, 0, 0, 5227, 5228, 7, 5, 0, 0, 5228, 5229, 7, 19, 0, 0, 5229, 5230, 7, 15, 0, 0, 5230, 5231, 7, 9, 0, 0, 5231, 992, 1, 0, 0, 0, 5232, 5233, 7, 4, 0, 0, 5233, 5234, 7, 8, 0, 0, 5234, 5235, 7, 9, 0, 0, 5235, 5236, 7, 24, 0, 0, 5236, 994, 1, 0, 0, 0, 5237, 5238, 7, 8, 0, 0, 5238, 5239, 7, 9, 0, 0, 5239, 5240, 7, 17, 0, 0, 5240, 5241, 7, 24, 0, 0, 5241, 5242, 7, 6, 0, 0, 5242, 5243, 7, 11, 0, 0, 5243, 5244, 7, 2, 0, 0, 5244, 5245, 7, 11, 0, 0, 5245, 5246, 7, 13, 0, 0, 5246, 996, 1, 0, 0, 0, 5247, 5248, 7, 8, 0, 0, 5248, 5249, 7, 19, 0, 0, 5249, 5250, 7, 17, 0, 0, 5250, 5251, 7, 9, 0, 0, 5251, 5252, 7, 7, 0, 0, 5252, 5253, 7, 6, 0, 0, 5253, 5254, 7, 5, 0, 0, 5254, 998, 1, 0, 0, 0, 5255, 5256, 7, 8, 0, 0, 5256, 5257, 7, 21, 0, 0, 5257, 5258, 7, 17, 0, 0, 5258, 5259, 7, 3, 0, 0, 5259, 5260, 7, 5, 0, 0, 5260, 5261, 7, 9, 0, 0, 5261, 1000, 1, 0, 0, 0, 5262, 5263, 7, 21, 0, 0, 5263, 5264, 7, 12, 0, 0, 5264, 5265, 7, 5, 0, 0, 5265, 5266, 7, 6, 0, 0, 5266, 5267, 7, 2, 0, 0, 5267, 5268, 7, 15, 0, 0, 5268, 1002, 1, 0, 0, 0, 5269, 5270, 7, 20, 0, 0, 5270, 5271, 7, 19, 0, 0, 5271, 5272, 7, 9, 0, 0, 5272, 5273, 7, 10, 0, 0, 5273, 1004, 1, 0, 0, 0, 5274, 5275, 7, 10, 0, 0, 5275, 5276, 7, 9, 0, 0, 5276, 5277, 7, 9, 0, 0, 5277, 5278, 7, 25, 0, 0, 5278, 1006, 1, 0, 0, 0, 5279, 5280, 7, 13, 0, 0, 5280, 5281, 7, 9, 0, 0, 5281, 5282, 7, 2, 0, 0, 5282, 5283, 7, 11, 0, 0, 5283, 5284, 7, 4, 0, 0, 5284, 1008, 1, 0, 0, 0, 5285, 5286, 7, 14, 0, 0, 5286, 5287, 7, 6, 0, 0, 5287, 5288, 7, 12, 0, 0, 5288, 5289, 7, 9, 0, 0, 5289, 1010, 1, 0, 0, 0, 5290, 5291, 5, 61, 0, 0, 5291, 1012, 1, 0, 0, 0, 5292, 5293, 5, 62, 0, 0, 5293, 1014, 1, 0, 0, 0, 5294, 5295, 5, 60, 0, 0, 5295, 1016, 1, 0, 0, 0, 5296, 5297, 5, 33, 0, 0, 5297, 1018, 1, 0, 0, 0, 5298, 5299, 5, 126, 0, 0, 5299, 1020, 1, 0, 0, 0, 5300, 5301, 5, 124, 0, 0, 5301, 1022, 1, 0, 0, 0, 5302, 5303, 5, 38, 0, 0, 5303, 1024, 1, 0, 0, 0, 5304, 5305, 5, 94, 0, 0, 5305, 1026, 1, 0, 0, 0, 5306, 5307, 5, 46, 0, 0, 5307, 1028, 1, 0, 0, 0, 5308, 5309, 5, 91, 0, 0, 5309, 1030, 1, 0, 0, 0, 5310, 5311, 5, 93, 0, 0, 5311, 1032, 1, 0, 0, 0, 5312, 5313, 5, 40, 0, 0, 5313, 1034, 1, 0, 0, 0, 5314, 5315, 5, 41, 0, 0, 5315, 1036, 1, 0, 0, 0, 5316, 5317, 5, 123, 0, 0, 5317, 1038, 1, 0, 0, 0, 5318, 5319, 5, 125, 0, 0, 5319, 1040, 1, 0, 0, 0, 5320, 5321, 5, 44, 0, 0, 5321, 1042, 1, 0, 0, 0, 5322, 5323, 5, 59, 0, 0, 5323, 1044, 1, 0, 0, 0, 5324, 5325, 5, 64, 0, 0, 5325, 1046, 1, 0, 0, 0, 5326, 5327, 5, 39, 0, 0, 5327, 1048, 1, 0, 0, 0, 5328, 5329, 5, 34, 0, 0, 5329, 1050, 1, 0, 0, 0, 5330, 5331, 5, 96, 0, 0, 5331, 1052, 1, 0, 0, 0, 5332, 5333, 5, 58, 0, 0, 5333, 1054, 1, 0, 0, 0, 5334, 5335, 5, 42, 0, 0, 5335, 1056, 1, 0, 0, 0, 5336, 5337, 5, 95, 0, 0, 5337, 1058, 1, 0, 0, 0, 5338, 5339, 5, 45, 0, 0, 5339, 1060, 1, 0, 0, 0, 5340, 5341, 5, 43, 0, 0, 5341, 1062, 1, 0, 0, 0, 5342, 5343, 5, 37, 0, 0, 5343, 1064, 1, 0, 0, 0, 5344, 5345, 5, 124, 0, 0, 5345, 5346, 5, 124, 0, 0, 5346, 1066, 1, 0, 0, 0, 5347, 5348, 5, 45, 0, 0, 5348, 5349, 5, 45, 0, 0, 5349, 1068, 1, 0, 0, 0, 5350, 5351, 5, 47, 0, 0, 5351, 1070, 1, 0, 0, 0, 5352, 5353, 5, 63, 0, 0, 5353, 1072, 1, 0, 0, 0, 5354, 5355, 5, 61, 0, 0, 5355, 5356, 5, 62, 0, 0, 5356, 1074, 1, 0, 0, 0, 5357, 5361, 3, 1095, 547, 0, 5358, 5361, 3, 1097, 548, 0, 5359, 5361, 3, 1101, 550, 0, 5360, 5357, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5359, 1, 0, 0, 0, 5361, 1076, 1, 0, 0, 0, 5362, 5364, 3, 1091, 545, 0, 5363, 5362, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 1078, 1, 0, 0, 0, 5367, 5369, 3, 1091, 545, 0, 5368, 5367, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 5373, 1, 0, 0, 0, 5372, 5368, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5376, 5, 46, 0, 0, 5375, 5377, 3, 1091, 545, 0, 5376, 5375, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5376, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5411, 1, 0, 0, 0, 5380, 5382, 3, 1091, 545, 0, 5381, 5380, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5381, 1, 0, 0, 0, 5383, 5384, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 5386, 5, 46, 0, 0, 5386, 5387, 3, 1087, 543, 0, 5387, 5411, 1, 0, 0, 0, 5388, 5390, 3, 1091, 545, 0, 5389, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5391, 5392, 1, 0, 0, 0, 5392, 5394, 1, 0, 0, 0, 5393, 5389, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 5397, 5, 46, 0, 0, 5396, 5398, 3, 1091, 545, 0, 5397, 5396, 1, 0, 0, 0, 5398, 5399, 1, 0, 0, 0, 5399, 5397, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5402, 3, 1087, 543, 0, 5402, 5411, 1, 0, 0, 0, 5403, 5405, 3, 1091, 545, 0, 5404, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5409, 3, 1087, 543, 0, 5409, 5411, 1, 0, 0, 0, 5410, 5372, 1, 0, 0, 0, 5410, 5381, 1, 0, 0, 0, 5410, 5393, 1, 0, 0, 0, 5410, 5404, 1, 0, 0, 0, 5411, 1080, 1, 0, 0, 0, 5412, 5413, 3, 1099, 549, 0, 5413, 1082, 1, 0, 0, 0, 5414, 5415, 3, 1089, 544, 0, 5415, 1084, 1, 0, 0, 0, 5416, 5424, 5, 96, 0, 0, 5417, 5418, 5, 92, 0, 0, 5418, 5423, 9, 0, 0, 0, 5419, 5420, 5, 96, 0, 0, 5420, 5423, 5, 96, 0, 0, 5421, 5423, 8, 28, 0, 0, 5422, 5417, 1, 0, 0, 0, 5422, 5419, 1, 0, 0, 0, 5422, 5421, 1, 0, 0, 0, 5423, 5426, 1, 0, 0, 0, 5424, 5422, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5427, 1, 0, 0, 0, 5426, 5424, 1, 0, 0, 0, 5427, 5428, 5, 96, 0, 0, 5428, 1086, 1, 0, 0, 0, 5429, 5431, 7, 9, 0, 0, 5430, 5432, 7, 29, 0, 0, 5431, 5430, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 1, 0, 0, 0, 5433, 5435, 3, 1091, 545, 0, 5434, 5433, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 1088, 1, 0, 0, 0, 5438, 5440, 7, 30, 0, 0, 5439, 5438, 1, 0, 0, 0, 5440, 5443, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5441, 5439, 1, 0, 0, 0, 5442, 5445, 1, 0, 0, 0, 5443, 5441, 1, 0, 0, 0, 5444, 5446, 7, 31, 0, 0, 5445, 5444, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5447, 5445, 1, 0, 0, 0, 5448, 5452, 1, 0, 0, 0, 5449, 5451, 7, 30, 0, 0, 5450, 5449, 1, 0, 0, 0, 5451, 5454, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 1090, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5455, 5456, 7, 32, 0, 0, 5456, 1092, 1, 0, 0, 0, 5457, 5458, 7, 33, 0, 0, 5458, 1094, 1, 0, 0, 0, 5459, 5467, 5, 34, 0, 0, 5460, 5461, 5, 92, 0, 0, 5461, 5466, 9, 0, 0, 0, 5462, 5463, 5, 34, 0, 0, 5463, 5466, 5, 34, 0, 0, 5464, 5466, 8, 34, 0, 0, 5465, 5460, 1, 0, 0, 0, 5465, 5462, 1, 0, 0, 0, 5465, 5464, 1, 0, 0, 0, 5466, 5469, 1, 0, 0, 0, 5467, 5465, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5470, 1, 0, 0, 0, 5469, 5467, 1, 0, 0, 0, 5470, 5471, 5, 34, 0, 0, 5471, 1096, 1, 0, 0, 0, 5472, 5480, 5, 39, 0, 0, 5473, 5474, 5, 92, 0, 0, 5474, 5479, 9, 0, 0, 0, 5475, 5476, 5, 39, 0, 0, 5476, 5479, 5, 39, 0, 0, 5477, 5479, 8, 35, 0, 0, 5478, 5473, 1, 0, 0, 0, 5478, 5475, 1, 0, 0, 0, 5478, 5477, 1, 0, 0, 0, 5479, 5482, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5483, 1, 0, 0, 0, 5482, 5480, 1, 0, 0, 0, 5483, 5484, 5, 39, 0, 0, 5484, 1098, 1, 0, 0, 0, 5485, 5486, 7, 3, 0, 0, 5486, 5488, 5, 39, 0, 0, 5487, 5489, 7, 36, 0, 0, 5488, 5487, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5488, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 5, 39, 0, 0, 5493, 1100, 1, 0, 0, 0, 5494, 5502, 5, 96, 0, 0, 5495, 5496, 5, 92, 0, 0, 5496, 5501, 9, 0, 0, 0, 5497, 5498, 5, 96, 0, 0, 5498, 5501, 5, 96, 0, 0, 5499, 5501, 8, 28, 0, 0, 5500, 5495, 1, 0, 0, 0, 5500, 5497, 1, 0, 0, 0, 5500, 5499, 1, 0, 0, 0, 5501, 5504, 1, 0, 0, 0, 5502, 5500, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 1, 0, 0, 0, 5504, 5502, 1, 0, 0, 0, 5505, 5506, 5, 96, 0, 0, 5506, 1102, 1, 0, 0, 0, 34, 0, 1113, 1124, 1129, 1133, 1137, 1143, 1147, 1149, 5360, 5365, 5370, 5372, 5378, 5383, 5391, 5393, 5399, 5406, 5410, 5422, 5424, 5431, 5436, 5441, 5447, 5452, 5465, 5467, 5478, 5480, 5490, 5500, 5502, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 545, 5543, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1118, 8, 1, 10, 1, 12, 1, 1121, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 1131, 8, 2, 1, 2, 5, 2, 1134, 8, 2, 10, 2, 12, 2, 1137, 9, 2, 1, 2, 3, 2, 1140, 8, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 3, 2, 1154, 8, 2, 3, 2, 1156, 8, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 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, 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, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 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, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 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, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 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, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 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, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 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, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 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, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 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, 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, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 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, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 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, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 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, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 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, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 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, 122, 1, 122, 1, 122, 1, 122, 1, 122, 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, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 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, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 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, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 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, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 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, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 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, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 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, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 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, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 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, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 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, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 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, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 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, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 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, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 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, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 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, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 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, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 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, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 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, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 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, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 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, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 490, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 493, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 520, 1, 520, 1, 521, 1, 521, 1, 522, 1, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 535, 1, 536, 1, 536, 1, 536, 1, 537, 1, 537, 1, 538, 1, 538, 1, 539, 1, 539, 1, 539, 1, 540, 1, 540, 1, 540, 3, 540, 5397, 8, 540, 1, 541, 4, 541, 5400, 8, 541, 11, 541, 12, 541, 5401, 1, 542, 4, 542, 5405, 8, 542, 11, 542, 12, 542, 5406, 3, 542, 5409, 8, 542, 1, 542, 1, 542, 4, 542, 5413, 8, 542, 11, 542, 12, 542, 5414, 1, 542, 4, 542, 5418, 8, 542, 11, 542, 12, 542, 5419, 1, 542, 1, 542, 1, 542, 1, 542, 4, 542, 5426, 8, 542, 11, 542, 12, 542, 5427, 3, 542, 5430, 8, 542, 1, 542, 1, 542, 4, 542, 5434, 8, 542, 11, 542, 12, 542, 5435, 1, 542, 1, 542, 1, 542, 4, 542, 5441, 8, 542, 11, 542, 12, 542, 5442, 1, 542, 1, 542, 3, 542, 5447, 8, 542, 1, 543, 1, 543, 1, 544, 1, 544, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 5, 545, 5459, 8, 545, 10, 545, 12, 545, 5462, 9, 545, 1, 545, 1, 545, 1, 546, 1, 546, 3, 546, 5468, 8, 546, 1, 546, 4, 546, 5471, 8, 546, 11, 546, 12, 546, 5472, 1, 547, 5, 547, 5476, 8, 547, 10, 547, 12, 547, 5479, 9, 547, 1, 547, 4, 547, 5482, 8, 547, 11, 547, 12, 547, 5483, 1, 547, 5, 547, 5487, 8, 547, 10, 547, 12, 547, 5490, 9, 547, 1, 548, 1, 548, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 1, 550, 5, 550, 5502, 8, 550, 10, 550, 12, 550, 5505, 9, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 1, 551, 5, 551, 5515, 8, 551, 10, 551, 12, 551, 5518, 9, 551, 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 4, 552, 5525, 8, 552, 11, 552, 12, 552, 5526, 1, 552, 1, 552, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 1, 553, 5, 553, 5537, 8, 553, 10, 553, 12, 553, 5540, 9, 553, 1, 553, 1, 553, 3, 1119, 5477, 5483, 0, 554, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, 1055, 528, 1057, 529, 1059, 530, 1061, 531, 1063, 532, 1065, 533, 1067, 534, 1069, 535, 1071, 536, 1073, 537, 1075, 538, 1077, 539, 1079, 540, 1081, 541, 1083, 542, 1085, 543, 1087, 544, 1089, 545, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1103, 0, 1105, 0, 1107, 0, 1, 0, 37, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 83, 83, 115, 115, 2, 0, 76, 76, 108, 108, 2, 0, 79, 79, 111, 111, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 87, 87, 119, 119, 2, 0, 82, 82, 114, 114, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 68, 68, 100, 100, 2, 0, 71, 71, 103, 103, 2, 0, 77, 77, 109, 109, 2, 0, 88, 88, 120, 120, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 70, 70, 102, 102, 2, 0, 80, 80, 112, 112, 2, 0, 75, 75, 107, 107, 2, 0, 81, 81, 113, 113, 2, 0, 74, 74, 106, 106, 2, 0, 92, 92, 96, 96, 2, 0, 43, 43, 45, 45, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 1, 0, 48, 49, 5573, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 0, 1055, 1, 0, 0, 0, 0, 1057, 1, 0, 0, 0, 0, 1059, 1, 0, 0, 0, 0, 1061, 1, 0, 0, 0, 0, 1063, 1, 0, 0, 0, 0, 1065, 1, 0, 0, 0, 0, 1067, 1, 0, 0, 0, 0, 1069, 1, 0, 0, 0, 0, 1071, 1, 0, 0, 0, 0, 1073, 1, 0, 0, 0, 0, 1075, 1, 0, 0, 0, 0, 1077, 1, 0, 0, 0, 0, 1079, 1, 0, 0, 0, 0, 1081, 1, 0, 0, 0, 0, 1083, 1, 0, 0, 0, 0, 1085, 1, 0, 0, 0, 0, 1087, 1, 0, 0, 0, 0, 1089, 1, 0, 0, 0, 1, 1109, 1, 0, 0, 0, 3, 1113, 1, 0, 0, 0, 5, 1155, 1, 0, 0, 0, 7, 1159, 1, 0, 0, 0, 9, 1163, 1, 0, 0, 0, 11, 1167, 1, 0, 0, 0, 13, 1176, 1, 0, 0, 0, 15, 1182, 1, 0, 0, 0, 17, 1188, 1, 0, 0, 0, 19, 1196, 1, 0, 0, 0, 21, 1200, 1, 0, 0, 0, 23, 1204, 1, 0, 0, 0, 25, 1208, 1, 0, 0, 0, 27, 1214, 1, 0, 0, 0, 29, 1224, 1, 0, 0, 0, 31, 1241, 1, 0, 0, 0, 33, 1263, 1, 0, 0, 0, 35, 1266, 1, 0, 0, 0, 37, 1277, 1, 0, 0, 0, 39, 1288, 1, 0, 0, 0, 41, 1291, 1, 0, 0, 0, 43, 1298, 1, 0, 0, 0, 45, 1312, 1, 0, 0, 0, 47, 1316, 1, 0, 0, 0, 49, 1322, 1, 0, 0, 0, 51, 1334, 1, 0, 0, 0, 53, 1350, 1, 0, 0, 0, 55, 1358, 1, 0, 0, 0, 57, 1365, 1, 0, 0, 0, 59, 1372, 1, 0, 0, 0, 61, 1376, 1, 0, 0, 0, 63, 1381, 1, 0, 0, 0, 65, 1389, 1, 0, 0, 0, 67, 1394, 1, 0, 0, 0, 69, 1397, 1, 0, 0, 0, 71, 1403, 1, 0, 0, 0, 73, 1408, 1, 0, 0, 0, 75, 1415, 1, 0, 0, 0, 77, 1427, 1, 0, 0, 0, 79, 1436, 1, 0, 0, 0, 81, 1441, 1, 0, 0, 0, 83, 1446, 1, 0, 0, 0, 85, 1455, 1, 0, 0, 0, 87, 1460, 1, 0, 0, 0, 89, 1468, 1, 0, 0, 0, 91, 1483, 1, 0, 0, 0, 93, 1488, 1, 0, 0, 0, 95, 1498, 1, 0, 0, 0, 97, 1515, 1, 0, 0, 0, 99, 1527, 1, 0, 0, 0, 101, 1533, 1, 0, 0, 0, 103, 1544, 1, 0, 0, 0, 105, 1549, 1, 0, 0, 0, 107, 1555, 1, 0, 0, 0, 109, 1564, 1, 0, 0, 0, 111, 1572, 1, 0, 0, 0, 113, 1580, 1, 0, 0, 0, 115, 1587, 1, 0, 0, 0, 117, 1595, 1, 0, 0, 0, 119, 1603, 1, 0, 0, 0, 121, 1610, 1, 0, 0, 0, 123, 1618, 1, 0, 0, 0, 125, 1628, 1, 0, 0, 0, 127, 1636, 1, 0, 0, 0, 129, 1647, 1, 0, 0, 0, 131, 1656, 1, 0, 0, 0, 133, 1664, 1, 0, 0, 0, 135, 1669, 1, 0, 0, 0, 137, 1683, 1, 0, 0, 0, 139, 1689, 1, 0, 0, 0, 141, 1699, 1, 0, 0, 0, 143, 1710, 1, 0, 0, 0, 145, 1717, 1, 0, 0, 0, 147, 1723, 1, 0, 0, 0, 149, 1728, 1, 0, 0, 0, 151, 1738, 1, 0, 0, 0, 153, 1746, 1, 0, 0, 0, 155, 1762, 1, 0, 0, 0, 157, 1775, 1, 0, 0, 0, 159, 1807, 1, 0, 0, 0, 161, 1820, 1, 0, 0, 0, 163, 1833, 1, 0, 0, 0, 165, 1845, 1, 0, 0, 0, 167, 1860, 1, 0, 0, 0, 169, 1873, 1, 0, 0, 0, 171, 1891, 1, 0, 0, 0, 173, 1924, 1, 0, 0, 0, 175, 1937, 1, 0, 0, 0, 177, 1944, 1, 0, 0, 0, 179, 1950, 1, 0, 0, 0, 181, 1960, 1, 0, 0, 0, 183, 1965, 1, 0, 0, 0, 185, 1974, 1, 0, 0, 0, 187, 1988, 1, 0, 0, 0, 189, 2003, 1, 0, 0, 0, 191, 2013, 1, 0, 0, 0, 193, 2024, 1, 0, 0, 0, 195, 2028, 1, 0, 0, 0, 197, 2038, 1, 0, 0, 0, 199, 2048, 1, 0, 0, 0, 201, 2059, 1, 0, 0, 0, 203, 2063, 1, 0, 0, 0, 205, 2071, 1, 0, 0, 0, 207, 2079, 1, 0, 0, 0, 209, 2087, 1, 0, 0, 0, 211, 2094, 1, 0, 0, 0, 213, 2101, 1, 0, 0, 0, 215, 2112, 1, 0, 0, 0, 217, 2118, 1, 0, 0, 0, 219, 2127, 1, 0, 0, 0, 221, 2141, 1, 0, 0, 0, 223, 2150, 1, 0, 0, 0, 225, 2161, 1, 0, 0, 0, 227, 2170, 1, 0, 0, 0, 229, 2174, 1, 0, 0, 0, 231, 2181, 1, 0, 0, 0, 233, 2186, 1, 0, 0, 0, 235, 2194, 1, 0, 0, 0, 237, 2199, 1, 0, 0, 0, 239, 2207, 1, 0, 0, 0, 241, 2212, 1, 0, 0, 0, 243, 2218, 1, 0, 0, 0, 245, 2222, 1, 0, 0, 0, 247, 2232, 1, 0, 0, 0, 249, 2246, 1, 0, 0, 0, 251, 2255, 1, 0, 0, 0, 253, 2262, 1, 0, 0, 0, 255, 2269, 1, 0, 0, 0, 257, 2284, 1, 0, 0, 0, 259, 2290, 1, 0, 0, 0, 261, 2297, 1, 0, 0, 0, 263, 2302, 1, 0, 0, 0, 265, 2310, 1, 0, 0, 0, 267, 2317, 1, 0, 0, 0, 269, 2321, 1, 0, 0, 0, 271, 2329, 1, 0, 0, 0, 273, 2336, 1, 0, 0, 0, 275, 2345, 1, 0, 0, 0, 277, 2354, 1, 0, 0, 0, 279, 2362, 1, 0, 0, 0, 281, 2368, 1, 0, 0, 0, 283, 2374, 1, 0, 0, 0, 285, 2381, 1, 0, 0, 0, 287, 2393, 1, 0, 0, 0, 289, 2399, 1, 0, 0, 0, 291, 2405, 1, 0, 0, 0, 293, 2415, 1, 0, 0, 0, 295, 2419, 1, 0, 0, 0, 297, 2427, 1, 0, 0, 0, 299, 2437, 1, 0, 0, 0, 301, 2442, 1, 0, 0, 0, 303, 2449, 1, 0, 0, 0, 305, 2454, 1, 0, 0, 0, 307, 2459, 1, 0, 0, 0, 309, 2468, 1, 0, 0, 0, 311, 2478, 1, 0, 0, 0, 313, 2485, 1, 0, 0, 0, 315, 2489, 1, 0, 0, 0, 317, 2496, 1, 0, 0, 0, 319, 2502, 1, 0, 0, 0, 321, 2508, 1, 0, 0, 0, 323, 2517, 1, 0, 0, 0, 325, 2524, 1, 0, 0, 0, 327, 2537, 1, 0, 0, 0, 329, 2544, 1, 0, 0, 0, 331, 2549, 1, 0, 0, 0, 333, 2554, 1, 0, 0, 0, 335, 2563, 1, 0, 0, 0, 337, 2566, 1, 0, 0, 0, 339, 2572, 1, 0, 0, 0, 341, 2579, 1, 0, 0, 0, 343, 2582, 1, 0, 0, 0, 345, 2590, 1, 0, 0, 0, 347, 2600, 1, 0, 0, 0, 349, 2608, 1, 0, 0, 0, 351, 2614, 1, 0, 0, 0, 353, 2620, 1, 0, 0, 0, 355, 2632, 1, 0, 0, 0, 357, 2639, 1, 0, 0, 0, 359, 2643, 1, 0, 0, 0, 361, 2651, 1, 0, 0, 0, 363, 2661, 1, 0, 0, 0, 365, 2674, 1, 0, 0, 0, 367, 2683, 1, 0, 0, 0, 369, 2688, 1, 0, 0, 0, 371, 2691, 1, 0, 0, 0, 373, 2696, 1, 0, 0, 0, 375, 2701, 1, 0, 0, 0, 377, 2712, 1, 0, 0, 0, 379, 2726, 1, 0, 0, 0, 381, 2746, 1, 0, 0, 0, 383, 2758, 1, 0, 0, 0, 385, 2770, 1, 0, 0, 0, 387, 2785, 1, 0, 0, 0, 389, 2796, 1, 0, 0, 0, 391, 2807, 1, 0, 0, 0, 393, 2811, 1, 0, 0, 0, 395, 2820, 1, 0, 0, 0, 397, 2826, 1, 0, 0, 0, 399, 2837, 1, 0, 0, 0, 401, 2845, 1, 0, 0, 0, 403, 2850, 1, 0, 0, 0, 405, 2858, 1, 0, 0, 0, 407, 2863, 1, 0, 0, 0, 409, 2868, 1, 0, 0, 0, 411, 2879, 1, 0, 0, 0, 413, 2885, 1, 0, 0, 0, 415, 2888, 1, 0, 0, 0, 417, 2894, 1, 0, 0, 0, 419, 2904, 1, 0, 0, 0, 421, 2919, 1, 0, 0, 0, 423, 2925, 1, 0, 0, 0, 425, 2931, 1, 0, 0, 0, 427, 2939, 1, 0, 0, 0, 429, 2952, 1, 0, 0, 0, 431, 2968, 1, 0, 0, 0, 433, 2972, 1, 0, 0, 0, 435, 2981, 1, 0, 0, 0, 437, 2988, 1, 0, 0, 0, 439, 2994, 1, 0, 0, 0, 441, 3003, 1, 0, 0, 0, 443, 3010, 1, 0, 0, 0, 445, 3014, 1, 0, 0, 0, 447, 3020, 1, 0, 0, 0, 449, 3027, 1, 0, 0, 0, 451, 3031, 1, 0, 0, 0, 453, 3040, 1, 0, 0, 0, 455, 3047, 1, 0, 0, 0, 457, 3054, 1, 0, 0, 0, 459, 3062, 1, 0, 0, 0, 461, 3069, 1, 0, 0, 0, 463, 3075, 1, 0, 0, 0, 465, 3080, 1, 0, 0, 0, 467, 3089, 1, 0, 0, 0, 469, 3098, 1, 0, 0, 0, 471, 3106, 1, 0, 0, 0, 473, 3112, 1, 0, 0, 0, 475, 3118, 1, 0, 0, 0, 477, 3122, 1, 0, 0, 0, 479, 3127, 1, 0, 0, 0, 481, 3130, 1, 0, 0, 0, 483, 3135, 1, 0, 0, 0, 485, 3145, 1, 0, 0, 0, 487, 3149, 1, 0, 0, 0, 489, 3159, 1, 0, 0, 0, 491, 3165, 1, 0, 0, 0, 493, 3170, 1, 0, 0, 0, 495, 3177, 1, 0, 0, 0, 497, 3185, 1, 0, 0, 0, 499, 3203, 1, 0, 0, 0, 501, 3216, 1, 0, 0, 0, 503, 3219, 1, 0, 0, 0, 505, 3226, 1, 0, 0, 0, 507, 3230, 1, 0, 0, 0, 509, 3235, 1, 0, 0, 0, 511, 3238, 1, 0, 0, 0, 513, 3242, 1, 0, 0, 0, 515, 3247, 1, 0, 0, 0, 517, 3252, 1, 0, 0, 0, 519, 3255, 1, 0, 0, 0, 521, 3261, 1, 0, 0, 0, 523, 3269, 1, 0, 0, 0, 525, 3273, 1, 0, 0, 0, 527, 3279, 1, 0, 0, 0, 529, 3284, 1, 0, 0, 0, 531, 3293, 1, 0, 0, 0, 533, 3301, 1, 0, 0, 0, 535, 3311, 1, 0, 0, 0, 537, 3323, 1, 0, 0, 0, 539, 3333, 1, 0, 0, 0, 541, 3343, 1, 0, 0, 0, 543, 3355, 1, 0, 0, 0, 545, 3366, 1, 0, 0, 0, 547, 3374, 1, 0, 0, 0, 549, 3378, 1, 0, 0, 0, 551, 3386, 1, 0, 0, 0, 553, 3402, 1, 0, 0, 0, 555, 3418, 1, 0, 0, 0, 557, 3431, 1, 0, 0, 0, 559, 3438, 1, 0, 0, 0, 561, 3446, 1, 0, 0, 0, 563, 3456, 1, 0, 0, 0, 565, 3462, 1, 0, 0, 0, 567, 3470, 1, 0, 0, 0, 569, 3479, 1, 0, 0, 0, 571, 3494, 1, 0, 0, 0, 573, 3500, 1, 0, 0, 0, 575, 3509, 1, 0, 0, 0, 577, 3519, 1, 0, 0, 0, 579, 3527, 1, 0, 0, 0, 581, 3532, 1, 0, 0, 0, 583, 3540, 1, 0, 0, 0, 585, 3550, 1, 0, 0, 0, 587, 3558, 1, 0, 0, 0, 589, 3567, 1, 0, 0, 0, 591, 3573, 1, 0, 0, 0, 593, 3578, 1, 0, 0, 0, 595, 3582, 1, 0, 0, 0, 597, 3588, 1, 0, 0, 0, 599, 3593, 1, 0, 0, 0, 601, 3603, 1, 0, 0, 0, 603, 3607, 1, 0, 0, 0, 605, 3618, 1, 0, 0, 0, 607, 3630, 1, 0, 0, 0, 609, 3640, 1, 0, 0, 0, 611, 3650, 1, 0, 0, 0, 613, 3661, 1, 0, 0, 0, 615, 3676, 1, 0, 0, 0, 617, 3684, 1, 0, 0, 0, 619, 3695, 1, 0, 0, 0, 621, 3704, 1, 0, 0, 0, 623, 3713, 1, 0, 0, 0, 625, 3722, 1, 0, 0, 0, 627, 3730, 1, 0, 0, 0, 629, 3737, 1, 0, 0, 0, 631, 3743, 1, 0, 0, 0, 633, 3750, 1, 0, 0, 0, 635, 3757, 1, 0, 0, 0, 637, 3765, 1, 0, 0, 0, 639, 3772, 1, 0, 0, 0, 641, 3778, 1, 0, 0, 0, 643, 3784, 1, 0, 0, 0, 645, 3793, 1, 0, 0, 0, 647, 3800, 1, 0, 0, 0, 649, 3804, 1, 0, 0, 0, 651, 3809, 1, 0, 0, 0, 653, 3820, 1, 0, 0, 0, 655, 3828, 1, 0, 0, 0, 657, 3838, 1, 0, 0, 0, 659, 3850, 1, 0, 0, 0, 661, 3863, 1, 0, 0, 0, 663, 3872, 1, 0, 0, 0, 665, 3882, 1, 0, 0, 0, 667, 3888, 1, 0, 0, 0, 669, 3894, 1, 0, 0, 0, 671, 3901, 1, 0, 0, 0, 673, 3908, 1, 0, 0, 0, 675, 3915, 1, 0, 0, 0, 677, 3920, 1, 0, 0, 0, 679, 3927, 1, 0, 0, 0, 681, 3937, 1, 0, 0, 0, 683, 3947, 1, 0, 0, 0, 685, 3960, 1, 0, 0, 0, 687, 3964, 1, 0, 0, 0, 689, 3969, 1, 0, 0, 0, 691, 3977, 1, 0, 0, 0, 693, 3982, 1, 0, 0, 0, 695, 3991, 1, 0, 0, 0, 697, 3996, 1, 0, 0, 0, 699, 4005, 1, 0, 0, 0, 701, 4018, 1, 0, 0, 0, 703, 4022, 1, 0, 0, 0, 705, 4035, 1, 0, 0, 0, 707, 4044, 1, 0, 0, 0, 709, 4055, 1, 0, 0, 0, 711, 4060, 1, 0, 0, 0, 713, 4066, 1, 0, 0, 0, 715, 4076, 1, 0, 0, 0, 717, 4083, 1, 0, 0, 0, 719, 4094, 1, 0, 0, 0, 721, 4105, 1, 0, 0, 0, 723, 4117, 1, 0, 0, 0, 725, 4124, 1, 0, 0, 0, 727, 4131, 1, 0, 0, 0, 729, 4142, 1, 0, 0, 0, 731, 4154, 1, 0, 0, 0, 733, 4161, 1, 0, 0, 0, 735, 4171, 1, 0, 0, 0, 737, 4187, 1, 0, 0, 0, 739, 4196, 1, 0, 0, 0, 741, 4200, 1, 0, 0, 0, 743, 4207, 1, 0, 0, 0, 745, 4217, 1, 0, 0, 0, 747, 4224, 1, 0, 0, 0, 749, 4236, 1, 0, 0, 0, 751, 4248, 1, 0, 0, 0, 753, 4254, 1, 0, 0, 0, 755, 4261, 1, 0, 0, 0, 757, 4273, 1, 0, 0, 0, 759, 4278, 1, 0, 0, 0, 761, 4287, 1, 0, 0, 0, 763, 4292, 1, 0, 0, 0, 765, 4302, 1, 0, 0, 0, 767, 4317, 1, 0, 0, 0, 769, 4331, 1, 0, 0, 0, 771, 4347, 1, 0, 0, 0, 773, 4361, 1, 0, 0, 0, 775, 4377, 1, 0, 0, 0, 777, 4387, 1, 0, 0, 0, 779, 4398, 1, 0, 0, 0, 781, 4406, 1, 0, 0, 0, 783, 4409, 1, 0, 0, 0, 785, 4418, 1, 0, 0, 0, 787, 4428, 1, 0, 0, 0, 789, 4444, 1, 0, 0, 0, 791, 4456, 1, 0, 0, 0, 793, 4462, 1, 0, 0, 0, 795, 4470, 1, 0, 0, 0, 797, 4475, 1, 0, 0, 0, 799, 4486, 1, 0, 0, 0, 801, 4491, 1, 0, 0, 0, 803, 4500, 1, 0, 0, 0, 805, 4509, 1, 0, 0, 0, 807, 4517, 1, 0, 0, 0, 809, 4525, 1, 0, 0, 0, 811, 4535, 1, 0, 0, 0, 813, 4541, 1, 0, 0, 0, 815, 4548, 1, 0, 0, 0, 817, 4556, 1, 0, 0, 0, 819, 4563, 1, 0, 0, 0, 821, 4571, 1, 0, 0, 0, 823, 4578, 1, 0, 0, 0, 825, 4584, 1, 0, 0, 0, 827, 4591, 1, 0, 0, 0, 829, 4595, 1, 0, 0, 0, 831, 4600, 1, 0, 0, 0, 833, 4606, 1, 0, 0, 0, 835, 4612, 1, 0, 0, 0, 837, 4619, 1, 0, 0, 0, 839, 4628, 1, 0, 0, 0, 841, 4638, 1, 0, 0, 0, 843, 4646, 1, 0, 0, 0, 845, 4654, 1, 0, 0, 0, 847, 4662, 1, 0, 0, 0, 849, 4671, 1, 0, 0, 0, 851, 4682, 1, 0, 0, 0, 853, 4688, 1, 0, 0, 0, 855, 4696, 1, 0, 0, 0, 857, 4706, 1, 0, 0, 0, 859, 4717, 1, 0, 0, 0, 861, 4727, 1, 0, 0, 0, 863, 4733, 1, 0, 0, 0, 865, 4738, 1, 0, 0, 0, 867, 4747, 1, 0, 0, 0, 869, 4753, 1, 0, 0, 0, 871, 4766, 1, 0, 0, 0, 873, 4773, 1, 0, 0, 0, 875, 4778, 1, 0, 0, 0, 877, 4785, 1, 0, 0, 0, 879, 4793, 1, 0, 0, 0, 881, 4798, 1, 0, 0, 0, 883, 4802, 1, 0, 0, 0, 885, 4808, 1, 0, 0, 0, 887, 4812, 1, 0, 0, 0, 889, 4820, 1, 0, 0, 0, 891, 4828, 1, 0, 0, 0, 893, 4836, 1, 0, 0, 0, 895, 4843, 1, 0, 0, 0, 897, 4855, 1, 0, 0, 0, 899, 4864, 1, 0, 0, 0, 901, 4869, 1, 0, 0, 0, 903, 4878, 1, 0, 0, 0, 905, 4883, 1, 0, 0, 0, 907, 4890, 1, 0, 0, 0, 909, 4895, 1, 0, 0, 0, 911, 4906, 1, 0, 0, 0, 913, 4910, 1, 0, 0, 0, 915, 4917, 1, 0, 0, 0, 917, 4923, 1, 0, 0, 0, 919, 4933, 1, 0, 0, 0, 921, 4938, 1, 0, 0, 0, 923, 4944, 1, 0, 0, 0, 925, 4954, 1, 0, 0, 0, 927, 4958, 1, 0, 0, 0, 929, 4964, 1, 0, 0, 0, 931, 4971, 1, 0, 0, 0, 933, 4981, 1, 0, 0, 0, 935, 4985, 1, 0, 0, 0, 937, 4990, 1, 0, 0, 0, 939, 4995, 1, 0, 0, 0, 941, 4999, 1, 0, 0, 0, 943, 5004, 1, 0, 0, 0, 945, 5009, 1, 0, 0, 0, 947, 5013, 1, 0, 0, 0, 949, 5025, 1, 0, 0, 0, 951, 5036, 1, 0, 0, 0, 953, 5048, 1, 0, 0, 0, 955, 5056, 1, 0, 0, 0, 957, 5063, 1, 0, 0, 0, 959, 5074, 1, 0, 0, 0, 961, 5080, 1, 0, 0, 0, 963, 5088, 1, 0, 0, 0, 965, 5093, 1, 0, 0, 0, 967, 5098, 1, 0, 0, 0, 969, 5108, 1, 0, 0, 0, 971, 5115, 1, 0, 0, 0, 973, 5131, 1, 0, 0, 0, 975, 5151, 1, 0, 0, 0, 977, 5164, 1, 0, 0, 0, 979, 5175, 1, 0, 0, 0, 981, 5192, 1, 0, 0, 0, 983, 5212, 1, 0, 0, 0, 985, 5220, 1, 0, 0, 0, 987, 5227, 1, 0, 0, 0, 989, 5236, 1, 0, 0, 0, 991, 5244, 1, 0, 0, 0, 993, 5252, 1, 0, 0, 0, 995, 5257, 1, 0, 0, 0, 997, 5262, 1, 0, 0, 0, 999, 5268, 1, 0, 0, 0, 1001, 5273, 1, 0, 0, 0, 1003, 5283, 1, 0, 0, 0, 1005, 5291, 1, 0, 0, 0, 1007, 5298, 1, 0, 0, 0, 1009, 5305, 1, 0, 0, 0, 1011, 5310, 1, 0, 0, 0, 1013, 5315, 1, 0, 0, 0, 1015, 5321, 1, 0, 0, 0, 1017, 5326, 1, 0, 0, 0, 1019, 5328, 1, 0, 0, 0, 1021, 5330, 1, 0, 0, 0, 1023, 5332, 1, 0, 0, 0, 1025, 5334, 1, 0, 0, 0, 1027, 5336, 1, 0, 0, 0, 1029, 5338, 1, 0, 0, 0, 1031, 5340, 1, 0, 0, 0, 1033, 5342, 1, 0, 0, 0, 1035, 5344, 1, 0, 0, 0, 1037, 5346, 1, 0, 0, 0, 1039, 5348, 1, 0, 0, 0, 1041, 5350, 1, 0, 0, 0, 1043, 5352, 1, 0, 0, 0, 1045, 5354, 1, 0, 0, 0, 1047, 5356, 1, 0, 0, 0, 1049, 5358, 1, 0, 0, 0, 1051, 5360, 1, 0, 0, 0, 1053, 5362, 1, 0, 0, 0, 1055, 5364, 1, 0, 0, 0, 1057, 5366, 1, 0, 0, 0, 1059, 5368, 1, 0, 0, 0, 1061, 5370, 1, 0, 0, 0, 1063, 5372, 1, 0, 0, 0, 1065, 5374, 1, 0, 0, 0, 1067, 5376, 1, 0, 0, 0, 1069, 5378, 1, 0, 0, 0, 1071, 5380, 1, 0, 0, 0, 1073, 5383, 1, 0, 0, 0, 1075, 5386, 1, 0, 0, 0, 1077, 5388, 1, 0, 0, 0, 1079, 5390, 1, 0, 0, 0, 1081, 5396, 1, 0, 0, 0, 1083, 5399, 1, 0, 0, 0, 1085, 5446, 1, 0, 0, 0, 1087, 5448, 1, 0, 0, 0, 1089, 5450, 1, 0, 0, 0, 1091, 5452, 1, 0, 0, 0, 1093, 5465, 1, 0, 0, 0, 1095, 5477, 1, 0, 0, 0, 1097, 5491, 1, 0, 0, 0, 1099, 5493, 1, 0, 0, 0, 1101, 5495, 1, 0, 0, 0, 1103, 5508, 1, 0, 0, 0, 1105, 5521, 1, 0, 0, 0, 1107, 5530, 1, 0, 0, 0, 1109, 1110, 7, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 6, 0, 0, 0, 1112, 2, 1, 0, 0, 0, 1113, 1114, 5, 47, 0, 0, 1114, 1115, 5, 42, 0, 0, 1115, 1119, 1, 0, 0, 0, 1116, 1118, 9, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 1121, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1119, 1, 0, 0, 0, 1122, 1123, 5, 42, 0, 0, 1123, 1124, 5, 47, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 6, 1, 0, 0, 1126, 4, 1, 0, 0, 0, 1127, 1128, 5, 45, 0, 0, 1128, 1131, 5, 45, 0, 0, 1129, 1131, 5, 35, 0, 0, 1130, 1127, 1, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1131, 1135, 1, 0, 0, 0, 1132, 1134, 8, 1, 0, 0, 1133, 1132, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1143, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1140, 5, 13, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1144, 5, 10, 0, 0, 1142, 1144, 5, 0, 0, 1, 1143, 1139, 1, 0, 0, 0, 1143, 1142, 1, 0, 0, 0, 1144, 1156, 1, 0, 0, 0, 1145, 1146, 5, 45, 0, 0, 1146, 1147, 5, 45, 0, 0, 1147, 1153, 1, 0, 0, 0, 1148, 1150, 5, 13, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1154, 5, 10, 0, 0, 1152, 1154, 5, 0, 0, 1, 1153, 1149, 1, 0, 0, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1130, 1, 0, 0, 0, 1155, 1145, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 2, 0, 0, 1158, 6, 1, 0, 0, 0, 1159, 1160, 7, 2, 0, 0, 1160, 1161, 7, 3, 0, 0, 1161, 1162, 7, 4, 0, 0, 1162, 8, 1, 0, 0, 0, 1163, 1164, 7, 2, 0, 0, 1164, 1165, 7, 5, 0, 0, 1165, 1166, 7, 5, 0, 0, 1166, 10, 1, 0, 0, 0, 1167, 1168, 7, 2, 0, 0, 1168, 1169, 7, 5, 0, 0, 1169, 1170, 7, 5, 0, 0, 1170, 1171, 7, 6, 0, 0, 1171, 1172, 7, 7, 0, 0, 1172, 1173, 7, 2, 0, 0, 1173, 1174, 7, 8, 0, 0, 1174, 1175, 7, 9, 0, 0, 1175, 12, 1, 0, 0, 0, 1176, 1177, 7, 2, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 5, 0, 0, 1179, 1180, 7, 6, 0, 0, 1180, 1181, 7, 10, 0, 0, 1181, 14, 1, 0, 0, 0, 1182, 1183, 7, 2, 0, 0, 1183, 1184, 7, 5, 0, 0, 1184, 1185, 7, 8, 0, 0, 1185, 1186, 7, 9, 0, 0, 1186, 1187, 7, 11, 0, 0, 1187, 16, 1, 0, 0, 0, 1188, 1189, 7, 2, 0, 0, 1189, 1190, 7, 12, 0, 0, 1190, 1191, 7, 2, 0, 0, 1191, 1192, 7, 5, 0, 0, 1192, 1193, 7, 13, 0, 0, 1193, 1194, 7, 14, 0, 0, 1194, 1195, 7, 9, 0, 0, 1195, 18, 1, 0, 0, 0, 1196, 1197, 7, 2, 0, 0, 1197, 1198, 7, 12, 0, 0, 1198, 1199, 7, 15, 0, 0, 1199, 20, 1, 0, 0, 0, 1200, 1201, 7, 2, 0, 0, 1201, 1202, 7, 12, 0, 0, 1202, 1203, 7, 13, 0, 0, 1203, 22, 1, 0, 0, 0, 1204, 1205, 7, 2, 0, 0, 1205, 1206, 7, 11, 0, 0, 1206, 1207, 7, 9, 0, 0, 1207, 24, 1, 0, 0, 0, 1208, 1209, 7, 2, 0, 0, 1209, 1210, 7, 11, 0, 0, 1210, 1211, 7, 11, 0, 0, 1211, 1212, 7, 2, 0, 0, 1212, 1213, 7, 13, 0, 0, 1213, 26, 1, 0, 0, 0, 1214, 1215, 7, 2, 0, 0, 1215, 1216, 7, 11, 0, 0, 1216, 1217, 7, 11, 0, 0, 1217, 1218, 7, 2, 0, 0, 1218, 1219, 7, 13, 0, 0, 1219, 1220, 5, 95, 0, 0, 1220, 1221, 7, 2, 0, 0, 1221, 1222, 7, 16, 0, 0, 1222, 1223, 7, 16, 0, 0, 1223, 28, 1, 0, 0, 0, 1224, 1225, 7, 2, 0, 0, 1225, 1226, 7, 11, 0, 0, 1226, 1227, 7, 11, 0, 0, 1227, 1228, 7, 2, 0, 0, 1228, 1229, 7, 13, 0, 0, 1229, 1230, 5, 95, 0, 0, 1230, 1231, 7, 7, 0, 0, 1231, 1232, 7, 6, 0, 0, 1232, 1233, 7, 12, 0, 0, 1233, 1234, 7, 7, 0, 0, 1234, 1235, 7, 2, 0, 0, 1235, 1236, 7, 8, 0, 0, 1236, 1237, 5, 95, 0, 0, 1237, 1238, 7, 2, 0, 0, 1238, 1239, 7, 16, 0, 0, 1239, 1240, 7, 16, 0, 0, 1240, 30, 1, 0, 0, 0, 1241, 1242, 7, 2, 0, 0, 1242, 1243, 7, 11, 0, 0, 1243, 1244, 7, 11, 0, 0, 1244, 1245, 7, 2, 0, 0, 1245, 1246, 7, 13, 0, 0, 1246, 1247, 5, 95, 0, 0, 1247, 1248, 7, 17, 0, 0, 1248, 1249, 7, 2, 0, 0, 1249, 1250, 7, 18, 0, 0, 1250, 1251, 5, 95, 0, 0, 1251, 1252, 7, 7, 0, 0, 1252, 1253, 7, 2, 0, 0, 1253, 1254, 7, 11, 0, 0, 1254, 1255, 7, 15, 0, 0, 1255, 1256, 7, 19, 0, 0, 1256, 1257, 7, 12, 0, 0, 1257, 1258, 7, 2, 0, 0, 1258, 1259, 7, 5, 0, 0, 1259, 1260, 7, 19, 0, 0, 1260, 1261, 7, 8, 0, 0, 1261, 1262, 7, 13, 0, 0, 1262, 32, 1, 0, 0, 0, 1263, 1264, 7, 2, 0, 0, 1264, 1265, 7, 4, 0, 0, 1265, 34, 1, 0, 0, 0, 1266, 1267, 7, 2, 0, 0, 1267, 1268, 7, 4, 0, 0, 1268, 1269, 7, 9, 0, 0, 1269, 1270, 7, 12, 0, 0, 1270, 1271, 7, 4, 0, 0, 1271, 1272, 7, 19, 0, 0, 1272, 1273, 7, 8, 0, 0, 1273, 1274, 7, 19, 0, 0, 1274, 1275, 7, 20, 0, 0, 1275, 1276, 7, 9, 0, 0, 1276, 36, 1, 0, 0, 0, 1277, 1278, 7, 2, 0, 0, 1278, 1279, 7, 4, 0, 0, 1279, 1280, 7, 13, 0, 0, 1280, 1281, 7, 17, 0, 0, 1281, 1282, 7, 17, 0, 0, 1282, 1283, 7, 9, 0, 0, 1283, 1284, 7, 8, 0, 0, 1284, 1285, 7, 11, 0, 0, 1285, 1286, 7, 19, 0, 0, 1286, 1287, 7, 7, 0, 0, 1287, 38, 1, 0, 0, 0, 1288, 1289, 7, 2, 0, 0, 1289, 1290, 7, 8, 0, 0, 1290, 40, 1, 0, 0, 0, 1291, 1292, 7, 2, 0, 0, 1292, 1293, 7, 8, 0, 0, 1293, 1294, 7, 6, 0, 0, 1294, 1295, 7, 17, 0, 0, 1295, 1296, 7, 19, 0, 0, 1296, 1297, 7, 7, 0, 0, 1297, 42, 1, 0, 0, 0, 1298, 1299, 7, 2, 0, 0, 1299, 1300, 7, 21, 0, 0, 1300, 1301, 7, 8, 0, 0, 1301, 1302, 7, 22, 0, 0, 1302, 1303, 7, 6, 0, 0, 1303, 1304, 7, 11, 0, 0, 1304, 1305, 7, 19, 0, 0, 1305, 1306, 7, 14, 0, 0, 1306, 1307, 7, 2, 0, 0, 1307, 1308, 7, 8, 0, 0, 1308, 1309, 7, 19, 0, 0, 1309, 1310, 7, 6, 0, 0, 1310, 1311, 7, 12, 0, 0, 1311, 44, 1, 0, 0, 0, 1312, 1313, 7, 2, 0, 0, 1313, 1314, 7, 20, 0, 0, 1314, 1315, 7, 16, 0, 0, 1315, 46, 1, 0, 0, 0, 1316, 1317, 7, 3, 0, 0, 1317, 1318, 7, 9, 0, 0, 1318, 1319, 7, 16, 0, 0, 1319, 1320, 7, 19, 0, 0, 1320, 1321, 7, 12, 0, 0, 1321, 48, 1, 0, 0, 0, 1322, 1323, 7, 3, 0, 0, 1323, 1324, 7, 9, 0, 0, 1324, 1325, 7, 16, 0, 0, 1325, 1326, 7, 19, 0, 0, 1326, 1327, 7, 12, 0, 0, 1327, 1328, 5, 95, 0, 0, 1328, 1329, 7, 23, 0, 0, 1329, 1330, 7, 11, 0, 0, 1330, 1331, 7, 2, 0, 0, 1331, 1332, 7, 17, 0, 0, 1332, 1333, 7, 9, 0, 0, 1333, 50, 1, 0, 0, 0, 1334, 1335, 7, 3, 0, 0, 1335, 1336, 7, 9, 0, 0, 1336, 1337, 7, 16, 0, 0, 1337, 1338, 7, 19, 0, 0, 1338, 1339, 7, 12, 0, 0, 1339, 1340, 5, 95, 0, 0, 1340, 1341, 7, 24, 0, 0, 1341, 1342, 7, 2, 0, 0, 1342, 1343, 7, 11, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1345, 7, 19, 0, 0, 1345, 1346, 7, 8, 0, 0, 1346, 1347, 7, 19, 0, 0, 1347, 1348, 7, 6, 0, 0, 1348, 1349, 7, 12, 0, 0, 1349, 52, 1, 0, 0, 0, 1350, 1351, 7, 3, 0, 0, 1351, 1352, 7, 9, 0, 0, 1352, 1353, 7, 8, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 1355, 7, 9, 0, 0, 1355, 1356, 7, 9, 0, 0, 1356, 1357, 7, 12, 0, 0, 1357, 54, 1, 0, 0, 0, 1358, 1359, 7, 3, 0, 0, 1359, 1360, 7, 19, 0, 0, 1360, 1361, 7, 16, 0, 0, 1361, 1362, 7, 19, 0, 0, 1362, 1363, 7, 12, 0, 0, 1363, 1364, 7, 8, 0, 0, 1364, 56, 1, 0, 0, 0, 1365, 1366, 7, 3, 0, 0, 1366, 1367, 7, 19, 0, 0, 1367, 1368, 7, 12, 0, 0, 1368, 1369, 7, 2, 0, 0, 1369, 1370, 7, 11, 0, 0, 1370, 1371, 7, 13, 0, 0, 1371, 58, 1, 0, 0, 0, 1372, 1373, 7, 3, 0, 0, 1373, 1374, 7, 19, 0, 0, 1374, 1375, 7, 8, 0, 0, 1375, 60, 1, 0, 0, 0, 1376, 1377, 7, 3, 0, 0, 1377, 1378, 7, 5, 0, 0, 1378, 1379, 7, 6, 0, 0, 1379, 1380, 7, 3, 0, 0, 1380, 62, 1, 0, 0, 0, 1381, 1382, 7, 3, 0, 0, 1382, 1383, 7, 6, 0, 0, 1383, 1384, 7, 6, 0, 0, 1384, 1385, 7, 5, 0, 0, 1385, 1386, 7, 9, 0, 0, 1386, 1387, 7, 2, 0, 0, 1387, 1388, 7, 12, 0, 0, 1388, 64, 1, 0, 0, 0, 1389, 1390, 7, 3, 0, 0, 1390, 1391, 7, 6, 0, 0, 1391, 1392, 7, 8, 0, 0, 1392, 1393, 7, 22, 0, 0, 1393, 66, 1, 0, 0, 0, 1394, 1395, 7, 3, 0, 0, 1395, 1396, 7, 13, 0, 0, 1396, 68, 1, 0, 0, 0, 1397, 1398, 7, 3, 0, 0, 1398, 1399, 7, 13, 0, 0, 1399, 1400, 7, 8, 0, 0, 1400, 1401, 7, 9, 0, 0, 1401, 1402, 7, 4, 0, 0, 1402, 70, 1, 0, 0, 0, 1403, 1404, 7, 7, 0, 0, 1404, 1405, 7, 2, 0, 0, 1405, 1406, 7, 5, 0, 0, 1406, 1407, 7, 5, 0, 0, 1407, 72, 1, 0, 0, 0, 1408, 1409, 7, 7, 0, 0, 1409, 1410, 7, 2, 0, 0, 1410, 1411, 7, 5, 0, 0, 1411, 1412, 7, 5, 0, 0, 1412, 1413, 7, 9, 0, 0, 1413, 1414, 7, 15, 0, 0, 1414, 74, 1, 0, 0, 0, 1415, 1416, 7, 7, 0, 0, 1416, 1417, 7, 2, 0, 0, 1417, 1418, 7, 11, 0, 0, 1418, 1419, 7, 15, 0, 0, 1419, 1420, 7, 19, 0, 0, 1420, 1421, 7, 12, 0, 0, 1421, 1422, 7, 2, 0, 0, 1422, 1423, 7, 5, 0, 0, 1423, 1424, 7, 19, 0, 0, 1424, 1425, 7, 8, 0, 0, 1425, 1426, 7, 13, 0, 0, 1426, 76, 1, 0, 0, 0, 1427, 1428, 7, 7, 0, 0, 1428, 1429, 7, 2, 0, 0, 1429, 1430, 7, 4, 0, 0, 1430, 1431, 7, 7, 0, 0, 1431, 1432, 7, 2, 0, 0, 1432, 1433, 7, 15, 0, 0, 1433, 1434, 7, 9, 0, 0, 1434, 1435, 7, 15, 0, 0, 1435, 78, 1, 0, 0, 0, 1436, 1437, 7, 7, 0, 0, 1437, 1438, 7, 2, 0, 0, 1438, 1439, 7, 4, 0, 0, 1439, 1440, 7, 9, 0, 0, 1440, 80, 1, 0, 0, 0, 1441, 1442, 7, 7, 0, 0, 1442, 1443, 7, 2, 0, 0, 1443, 1444, 7, 4, 0, 0, 1444, 1445, 7, 8, 0, 0, 1445, 82, 1, 0, 0, 0, 1446, 1447, 7, 7, 0, 0, 1447, 1448, 7, 2, 0, 0, 1448, 1449, 7, 8, 0, 0, 1449, 1450, 7, 2, 0, 0, 1450, 1451, 7, 5, 0, 0, 1451, 1452, 7, 6, 0, 0, 1452, 1453, 7, 16, 0, 0, 1453, 1454, 7, 4, 0, 0, 1454, 84, 1, 0, 0, 0, 1455, 1456, 7, 7, 0, 0, 1456, 1457, 7, 9, 0, 0, 1457, 1458, 7, 19, 0, 0, 1458, 1459, 7, 5, 0, 0, 1459, 86, 1, 0, 0, 0, 1460, 1461, 7, 7, 0, 0, 1461, 1462, 7, 9, 0, 0, 1462, 1463, 7, 19, 0, 0, 1463, 1464, 7, 5, 0, 0, 1464, 1465, 7, 19, 0, 0, 1465, 1466, 7, 12, 0, 0, 1466, 1467, 7, 16, 0, 0, 1467, 88, 1, 0, 0, 0, 1468, 1469, 7, 7, 0, 0, 1469, 1470, 7, 22, 0, 0, 1470, 1471, 7, 2, 0, 0, 1471, 1472, 7, 12, 0, 0, 1472, 1473, 7, 16, 0, 0, 1473, 1474, 7, 9, 0, 0, 1474, 1475, 7, 5, 0, 0, 1475, 1476, 7, 6, 0, 0, 1476, 1477, 7, 16, 0, 0, 1477, 1478, 5, 95, 0, 0, 1478, 1479, 7, 17, 0, 0, 1479, 1480, 7, 6, 0, 0, 1480, 1481, 7, 15, 0, 0, 1481, 1482, 7, 9, 0, 0, 1482, 90, 1, 0, 0, 0, 1483, 1484, 7, 7, 0, 0, 1484, 1485, 7, 22, 0, 0, 1485, 1486, 7, 2, 0, 0, 1486, 1487, 7, 11, 0, 0, 1487, 92, 1, 0, 0, 0, 1488, 1489, 7, 7, 0, 0, 1489, 1490, 7, 22, 0, 0, 1490, 1491, 7, 2, 0, 0, 1491, 1492, 7, 11, 0, 0, 1492, 1493, 7, 2, 0, 0, 1493, 1494, 7, 7, 0, 0, 1494, 1495, 7, 8, 0, 0, 1495, 1496, 7, 9, 0, 0, 1496, 1497, 7, 11, 0, 0, 1497, 94, 1, 0, 0, 0, 1498, 1499, 7, 7, 0, 0, 1499, 1500, 7, 22, 0, 0, 1500, 1501, 7, 2, 0, 0, 1501, 1502, 7, 11, 0, 0, 1502, 1503, 7, 2, 0, 0, 1503, 1504, 7, 7, 0, 0, 1504, 1505, 7, 8, 0, 0, 1505, 1506, 7, 9, 0, 0, 1506, 1507, 7, 11, 0, 0, 1507, 1508, 5, 95, 0, 0, 1508, 1509, 7, 5, 0, 0, 1509, 1510, 7, 9, 0, 0, 1510, 1511, 7, 12, 0, 0, 1511, 1512, 7, 16, 0, 0, 1512, 1513, 7, 8, 0, 0, 1513, 1514, 7, 22, 0, 0, 1514, 96, 1, 0, 0, 0, 1515, 1516, 7, 7, 0, 0, 1516, 1517, 7, 22, 0, 0, 1517, 1518, 7, 2, 0, 0, 1518, 1519, 7, 11, 0, 0, 1519, 1520, 5, 95, 0, 0, 1520, 1521, 7, 5, 0, 0, 1521, 1522, 7, 9, 0, 0, 1522, 1523, 7, 12, 0, 0, 1523, 1524, 7, 16, 0, 0, 1524, 1525, 7, 8, 0, 0, 1525, 1526, 7, 22, 0, 0, 1526, 98, 1, 0, 0, 0, 1527, 1528, 7, 7, 0, 0, 1528, 1529, 7, 22, 0, 0, 1529, 1530, 7, 9, 0, 0, 1530, 1531, 7, 7, 0, 0, 1531, 1532, 7, 25, 0, 0, 1532, 100, 1, 0, 0, 0, 1533, 1534, 7, 7, 0, 0, 1534, 1535, 7, 5, 0, 0, 1535, 1536, 7, 2, 0, 0, 1536, 1537, 7, 4, 0, 0, 1537, 1538, 7, 4, 0, 0, 1538, 1539, 7, 19, 0, 0, 1539, 1540, 7, 23, 0, 0, 1540, 1541, 7, 19, 0, 0, 1541, 1542, 7, 9, 0, 0, 1542, 1543, 7, 11, 0, 0, 1543, 102, 1, 0, 0, 0, 1544, 1545, 7, 7, 0, 0, 1545, 1546, 7, 5, 0, 0, 1546, 1547, 7, 6, 0, 0, 1547, 1548, 7, 3, 0, 0, 1548, 104, 1, 0, 0, 0, 1549, 1550, 7, 7, 0, 0, 1550, 1551, 7, 5, 0, 0, 1551, 1552, 7, 6, 0, 0, 1552, 1553, 7, 4, 0, 0, 1553, 1554, 7, 9, 0, 0, 1554, 106, 1, 0, 0, 0, 1555, 1556, 7, 7, 0, 0, 1556, 1557, 7, 6, 0, 0, 1557, 1558, 7, 2, 0, 0, 1558, 1559, 7, 5, 0, 0, 1559, 1560, 7, 9, 0, 0, 1560, 1561, 7, 4, 0, 0, 1561, 1562, 7, 7, 0, 0, 1562, 1563, 7, 9, 0, 0, 1563, 108, 1, 0, 0, 0, 1564, 1565, 7, 7, 0, 0, 1565, 1566, 7, 6, 0, 0, 1566, 1567, 7, 5, 0, 0, 1567, 1568, 7, 5, 0, 0, 1568, 1569, 7, 2, 0, 0, 1569, 1570, 7, 8, 0, 0, 1570, 1571, 7, 9, 0, 0, 1571, 110, 1, 0, 0, 0, 1572, 1573, 7, 7, 0, 0, 1573, 1574, 7, 6, 0, 0, 1574, 1575, 7, 5, 0, 0, 1575, 1576, 7, 5, 0, 0, 1576, 1577, 7, 9, 0, 0, 1577, 1578, 7, 7, 0, 0, 1578, 1579, 7, 8, 0, 0, 1579, 112, 1, 0, 0, 0, 1580, 1581, 7, 7, 0, 0, 1581, 1582, 7, 6, 0, 0, 1582, 1583, 7, 5, 0, 0, 1583, 1584, 7, 21, 0, 0, 1584, 1585, 7, 17, 0, 0, 1585, 1586, 7, 12, 0, 0, 1586, 114, 1, 0, 0, 0, 1587, 1588, 7, 7, 0, 0, 1588, 1589, 7, 6, 0, 0, 1589, 1590, 7, 5, 0, 0, 1590, 1591, 7, 21, 0, 0, 1591, 1592, 7, 17, 0, 0, 1592, 1593, 7, 12, 0, 0, 1593, 1594, 7, 4, 0, 0, 1594, 116, 1, 0, 0, 0, 1595, 1596, 7, 7, 0, 0, 1596, 1597, 7, 6, 0, 0, 1597, 1598, 7, 17, 0, 0, 1598, 1599, 7, 17, 0, 0, 1599, 1600, 7, 9, 0, 0, 1600, 1601, 7, 12, 0, 0, 1601, 1602, 7, 8, 0, 0, 1602, 118, 1, 0, 0, 0, 1603, 1604, 7, 7, 0, 0, 1604, 1605, 7, 6, 0, 0, 1605, 1606, 7, 17, 0, 0, 1606, 1607, 7, 17, 0, 0, 1607, 1608, 7, 19, 0, 0, 1608, 1609, 7, 8, 0, 0, 1609, 120, 1, 0, 0, 0, 1610, 1611, 7, 7, 0, 0, 1611, 1612, 7, 6, 0, 0, 1612, 1613, 7, 17, 0, 0, 1613, 1614, 7, 24, 0, 0, 1614, 1615, 7, 21, 0, 0, 1615, 1616, 7, 8, 0, 0, 1616, 1617, 7, 9, 0, 0, 1617, 122, 1, 0, 0, 0, 1618, 1619, 7, 7, 0, 0, 1619, 1620, 7, 6, 0, 0, 1620, 1621, 7, 12, 0, 0, 1621, 1622, 7, 15, 0, 0, 1622, 1623, 7, 19, 0, 0, 1623, 1624, 7, 8, 0, 0, 1624, 1625, 7, 19, 0, 0, 1625, 1626, 7, 6, 0, 0, 1626, 1627, 7, 12, 0, 0, 1627, 124, 1, 0, 0, 0, 1628, 1629, 7, 7, 0, 0, 1629, 1630, 7, 6, 0, 0, 1630, 1631, 7, 12, 0, 0, 1631, 1632, 7, 12, 0, 0, 1632, 1633, 7, 9, 0, 0, 1633, 1634, 7, 7, 0, 0, 1634, 1635, 7, 8, 0, 0, 1635, 126, 1, 0, 0, 0, 1636, 1637, 7, 7, 0, 0, 1637, 1638, 7, 6, 0, 0, 1638, 1639, 7, 12, 0, 0, 1639, 1640, 7, 4, 0, 0, 1640, 1641, 7, 8, 0, 0, 1641, 1642, 7, 11, 0, 0, 1642, 1643, 7, 2, 0, 0, 1643, 1644, 7, 19, 0, 0, 1644, 1645, 7, 12, 0, 0, 1645, 1646, 7, 8, 0, 0, 1646, 128, 1, 0, 0, 0, 1647, 1648, 7, 7, 0, 0, 1648, 1649, 7, 6, 0, 0, 1649, 1650, 7, 12, 0, 0, 1650, 1651, 7, 8, 0, 0, 1651, 1652, 7, 2, 0, 0, 1652, 1653, 7, 19, 0, 0, 1653, 1654, 7, 12, 0, 0, 1654, 1655, 7, 4, 0, 0, 1655, 130, 1, 0, 0, 0, 1656, 1657, 7, 7, 0, 0, 1657, 1658, 7, 6, 0, 0, 1658, 1659, 7, 12, 0, 0, 1659, 1660, 7, 20, 0, 0, 1660, 1661, 7, 9, 0, 0, 1661, 1662, 7, 11, 0, 0, 1662, 1663, 7, 8, 0, 0, 1663, 132, 1, 0, 0, 0, 1664, 1665, 7, 7, 0, 0, 1665, 1666, 7, 6, 0, 0, 1666, 1667, 7, 11, 0, 0, 1667, 1668, 7, 11, 0, 0, 1668, 134, 1, 0, 0, 0, 1669, 1670, 7, 7, 0, 0, 1670, 1671, 7, 6, 0, 0, 1671, 1672, 7, 11, 0, 0, 1672, 1673, 7, 11, 0, 0, 1673, 1674, 7, 9, 0, 0, 1674, 1675, 7, 4, 0, 0, 1675, 1676, 7, 24, 0, 0, 1676, 1677, 7, 6, 0, 0, 1677, 1678, 7, 12, 0, 0, 1678, 1679, 7, 15, 0, 0, 1679, 1680, 7, 19, 0, 0, 1680, 1681, 7, 12, 0, 0, 1681, 1682, 7, 16, 0, 0, 1682, 136, 1, 0, 0, 0, 1683, 1684, 7, 7, 0, 0, 1684, 1685, 7, 6, 0, 0, 1685, 1686, 7, 21, 0, 0, 1686, 1687, 7, 12, 0, 0, 1687, 1688, 7, 8, 0, 0, 1688, 138, 1, 0, 0, 0, 1689, 1690, 7, 7, 0, 0, 1690, 1691, 7, 6, 0, 0, 1691, 1692, 7, 20, 0, 0, 1692, 1693, 7, 2, 0, 0, 1693, 1694, 7, 11, 0, 0, 1694, 1695, 5, 95, 0, 0, 1695, 1696, 7, 24, 0, 0, 1696, 1697, 7, 6, 0, 0, 1697, 1698, 7, 24, 0, 0, 1698, 140, 1, 0, 0, 0, 1699, 1700, 7, 7, 0, 0, 1700, 1701, 7, 6, 0, 0, 1701, 1702, 7, 20, 0, 0, 1702, 1703, 7, 2, 0, 0, 1703, 1704, 7, 11, 0, 0, 1704, 1705, 5, 95, 0, 0, 1705, 1706, 7, 4, 0, 0, 1706, 1707, 7, 2, 0, 0, 1707, 1708, 7, 17, 0, 0, 1708, 1709, 7, 24, 0, 0, 1709, 142, 1, 0, 0, 0, 1710, 1711, 7, 7, 0, 0, 1711, 1712, 7, 11, 0, 0, 1712, 1713, 7, 9, 0, 0, 1713, 1714, 7, 2, 0, 0, 1714, 1715, 7, 8, 0, 0, 1715, 1716, 7, 9, 0, 0, 1716, 144, 1, 0, 0, 0, 1717, 1718, 7, 7, 0, 0, 1718, 1719, 7, 11, 0, 0, 1719, 1720, 7, 6, 0, 0, 1720, 1721, 7, 4, 0, 0, 1721, 1722, 7, 4, 0, 0, 1722, 146, 1, 0, 0, 0, 1723, 1724, 7, 7, 0, 0, 1724, 1725, 7, 21, 0, 0, 1725, 1726, 7, 3, 0, 0, 1726, 1727, 7, 9, 0, 0, 1727, 148, 1, 0, 0, 0, 1728, 1729, 7, 7, 0, 0, 1729, 1730, 7, 21, 0, 0, 1730, 1731, 7, 17, 0, 0, 1731, 1732, 7, 9, 0, 0, 1732, 1733, 5, 95, 0, 0, 1733, 1734, 7, 15, 0, 0, 1734, 1735, 7, 19, 0, 0, 1735, 1736, 7, 4, 0, 0, 1736, 1737, 7, 8, 0, 0, 1737, 150, 1, 0, 0, 0, 1738, 1739, 7, 7, 0, 0, 1739, 1740, 7, 21, 0, 0, 1740, 1741, 7, 11, 0, 0, 1741, 1742, 7, 11, 0, 0, 1742, 1743, 7, 9, 0, 0, 1743, 1744, 7, 12, 0, 0, 1744, 1745, 7, 8, 0, 0, 1745, 152, 1, 0, 0, 0, 1746, 1747, 7, 7, 0, 0, 1747, 1748, 7, 21, 0, 0, 1748, 1749, 7, 11, 0, 0, 1749, 1750, 7, 11, 0, 0, 1750, 1751, 7, 9, 0, 0, 1751, 1752, 7, 12, 0, 0, 1752, 1753, 7, 8, 0, 0, 1753, 1754, 5, 95, 0, 0, 1754, 1755, 7, 7, 0, 0, 1755, 1756, 7, 2, 0, 0, 1756, 1757, 7, 8, 0, 0, 1757, 1758, 7, 2, 0, 0, 1758, 1759, 7, 5, 0, 0, 1759, 1760, 7, 6, 0, 0, 1760, 1761, 7, 16, 0, 0, 1761, 154, 1, 0, 0, 0, 1762, 1763, 7, 7, 0, 0, 1763, 1764, 7, 21, 0, 0, 1764, 1765, 7, 11, 0, 0, 1765, 1766, 7, 11, 0, 0, 1766, 1767, 7, 9, 0, 0, 1767, 1768, 7, 12, 0, 0, 1768, 1769, 7, 8, 0, 0, 1769, 1770, 5, 95, 0, 0, 1770, 1771, 7, 15, 0, 0, 1771, 1772, 7, 2, 0, 0, 1772, 1773, 7, 8, 0, 0, 1773, 1774, 7, 9, 0, 0, 1774, 156, 1, 0, 0, 0, 1775, 1776, 7, 7, 0, 0, 1776, 1777, 7, 21, 0, 0, 1777, 1778, 7, 11, 0, 0, 1778, 1779, 7, 11, 0, 0, 1779, 1780, 7, 9, 0, 0, 1780, 1781, 7, 12, 0, 0, 1781, 1782, 7, 8, 0, 0, 1782, 1783, 5, 95, 0, 0, 1783, 1784, 7, 15, 0, 0, 1784, 1785, 7, 9, 0, 0, 1785, 1786, 7, 23, 0, 0, 1786, 1787, 7, 2, 0, 0, 1787, 1788, 7, 21, 0, 0, 1788, 1789, 7, 5, 0, 0, 1789, 1790, 7, 8, 0, 0, 1790, 1791, 5, 95, 0, 0, 1791, 1792, 7, 8, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 2, 0, 0, 1794, 1795, 7, 12, 0, 0, 1795, 1796, 7, 4, 0, 0, 1796, 1797, 7, 23, 0, 0, 1797, 1798, 7, 6, 0, 0, 1798, 1799, 7, 11, 0, 0, 1799, 1800, 7, 17, 0, 0, 1800, 1801, 5, 95, 0, 0, 1801, 1802, 7, 16, 0, 0, 1802, 1803, 7, 11, 0, 0, 1803, 1804, 7, 6, 0, 0, 1804, 1805, 7, 21, 0, 0, 1805, 1806, 7, 24, 0, 0, 1806, 158, 1, 0, 0, 0, 1807, 1808, 7, 7, 0, 0, 1808, 1809, 7, 21, 0, 0, 1809, 1810, 7, 11, 0, 0, 1810, 1811, 7, 11, 0, 0, 1811, 1812, 7, 9, 0, 0, 1812, 1813, 7, 12, 0, 0, 1813, 1814, 7, 8, 0, 0, 1814, 1815, 5, 95, 0, 0, 1815, 1816, 7, 24, 0, 0, 1816, 1817, 7, 2, 0, 0, 1817, 1818, 7, 8, 0, 0, 1818, 1819, 7, 22, 0, 0, 1819, 160, 1, 0, 0, 0, 1820, 1821, 7, 7, 0, 0, 1821, 1822, 7, 21, 0, 0, 1822, 1823, 7, 11, 0, 0, 1823, 1824, 7, 11, 0, 0, 1824, 1825, 7, 9, 0, 0, 1825, 1826, 7, 12, 0, 0, 1826, 1827, 7, 8, 0, 0, 1827, 1828, 5, 95, 0, 0, 1828, 1829, 7, 11, 0, 0, 1829, 1830, 7, 6, 0, 0, 1830, 1831, 7, 5, 0, 0, 1831, 1832, 7, 9, 0, 0, 1832, 162, 1, 0, 0, 0, 1833, 1834, 7, 7, 0, 0, 1834, 1835, 7, 21, 0, 0, 1835, 1836, 7, 11, 0, 0, 1836, 1837, 7, 11, 0, 0, 1837, 1838, 7, 9, 0, 0, 1838, 1839, 7, 12, 0, 0, 1839, 1840, 7, 8, 0, 0, 1840, 1841, 5, 95, 0, 0, 1841, 1842, 7, 11, 0, 0, 1842, 1843, 7, 6, 0, 0, 1843, 1844, 7, 10, 0, 0, 1844, 164, 1, 0, 0, 0, 1845, 1846, 7, 7, 0, 0, 1846, 1847, 7, 21, 0, 0, 1847, 1848, 7, 11, 0, 0, 1848, 1849, 7, 11, 0, 0, 1849, 1850, 7, 9, 0, 0, 1850, 1851, 7, 12, 0, 0, 1851, 1852, 7, 8, 0, 0, 1852, 1853, 5, 95, 0, 0, 1853, 1854, 7, 4, 0, 0, 1854, 1855, 7, 7, 0, 0, 1855, 1856, 7, 22, 0, 0, 1856, 1857, 7, 9, 0, 0, 1857, 1858, 7, 17, 0, 0, 1858, 1859, 7, 2, 0, 0, 1859, 166, 1, 0, 0, 0, 1860, 1861, 7, 7, 0, 0, 1861, 1862, 7, 21, 0, 0, 1862, 1863, 7, 11, 0, 0, 1863, 1864, 7, 11, 0, 0, 1864, 1865, 7, 9, 0, 0, 1865, 1866, 7, 12, 0, 0, 1866, 1867, 7, 8, 0, 0, 1867, 1868, 5, 95, 0, 0, 1868, 1869, 7, 8, 0, 0, 1869, 1870, 7, 19, 0, 0, 1870, 1871, 7, 17, 0, 0, 1871, 1872, 7, 9, 0, 0, 1872, 168, 1, 0, 0, 0, 1873, 1874, 7, 7, 0, 0, 1874, 1875, 7, 21, 0, 0, 1875, 1876, 7, 11, 0, 0, 1876, 1877, 7, 11, 0, 0, 1877, 1878, 7, 9, 0, 0, 1878, 1879, 7, 12, 0, 0, 1879, 1880, 7, 8, 0, 0, 1880, 1881, 5, 95, 0, 0, 1881, 1882, 7, 8, 0, 0, 1882, 1883, 7, 19, 0, 0, 1883, 1884, 7, 17, 0, 0, 1884, 1885, 7, 9, 0, 0, 1885, 1886, 7, 4, 0, 0, 1886, 1887, 7, 8, 0, 0, 1887, 1888, 7, 2, 0, 0, 1888, 1889, 7, 17, 0, 0, 1889, 1890, 7, 24, 0, 0, 1890, 170, 1, 0, 0, 0, 1891, 1892, 7, 7, 0, 0, 1892, 1893, 7, 21, 0, 0, 1893, 1894, 7, 11, 0, 0, 1894, 1895, 7, 11, 0, 0, 1895, 1896, 7, 9, 0, 0, 1896, 1897, 7, 12, 0, 0, 1897, 1898, 7, 8, 0, 0, 1898, 1899, 5, 95, 0, 0, 1899, 1900, 7, 8, 0, 0, 1900, 1901, 7, 11, 0, 0, 1901, 1902, 7, 2, 0, 0, 1902, 1903, 7, 12, 0, 0, 1903, 1904, 7, 4, 0, 0, 1904, 1905, 7, 23, 0, 0, 1905, 1906, 7, 6, 0, 0, 1906, 1907, 7, 11, 0, 0, 1907, 1908, 7, 17, 0, 0, 1908, 1909, 5, 95, 0, 0, 1909, 1910, 7, 16, 0, 0, 1910, 1911, 7, 11, 0, 0, 1911, 1912, 7, 6, 0, 0, 1912, 1913, 7, 21, 0, 0, 1913, 1914, 7, 24, 0, 0, 1914, 1915, 5, 95, 0, 0, 1915, 1916, 7, 23, 0, 0, 1916, 1917, 7, 6, 0, 0, 1917, 1918, 7, 11, 0, 0, 1918, 1919, 5, 95, 0, 0, 1919, 1920, 7, 8, 0, 0, 1920, 1921, 7, 13, 0, 0, 1921, 1922, 7, 24, 0, 0, 1922, 1923, 7, 9, 0, 0, 1923, 172, 1, 0, 0, 0, 1924, 1925, 7, 7, 0, 0, 1925, 1926, 7, 21, 0, 0, 1926, 1927, 7, 11, 0, 0, 1927, 1928, 7, 11, 0, 0, 1928, 1929, 7, 9, 0, 0, 1929, 1930, 7, 12, 0, 0, 1930, 1931, 7, 8, 0, 0, 1931, 1932, 5, 95, 0, 0, 1932, 1933, 7, 21, 0, 0, 1933, 1934, 7, 4, 0, 0, 1934, 1935, 7, 9, 0, 0, 1935, 1936, 7, 11, 0, 0, 1936, 174, 1, 0, 0, 0, 1937, 1938, 7, 7, 0, 0, 1938, 1939, 7, 21, 0, 0, 1939, 1940, 7, 11, 0, 0, 1940, 1941, 7, 4, 0, 0, 1941, 1942, 7, 6, 0, 0, 1942, 1943, 7, 11, 0, 0, 1943, 176, 1, 0, 0, 0, 1944, 1945, 7, 7, 0, 0, 1945, 1946, 7, 13, 0, 0, 1946, 1947, 7, 7, 0, 0, 1947, 1948, 7, 5, 0, 0, 1948, 1949, 7, 9, 0, 0, 1949, 178, 1, 0, 0, 0, 1950, 1951, 7, 15, 0, 0, 1951, 1952, 7, 2, 0, 0, 1952, 1953, 7, 8, 0, 0, 1953, 1954, 7, 2, 0, 0, 1954, 1955, 7, 3, 0, 0, 1955, 1956, 7, 2, 0, 0, 1956, 1957, 7, 4, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 1959, 7, 4, 0, 0, 1959, 180, 1, 0, 0, 0, 1960, 1961, 7, 15, 0, 0, 1961, 1962, 7, 2, 0, 0, 1962, 1963, 7, 8, 0, 0, 1963, 1964, 7, 9, 0, 0, 1964, 182, 1, 0, 0, 0, 1965, 1966, 7, 15, 0, 0, 1966, 1967, 7, 2, 0, 0, 1967, 1968, 7, 8, 0, 0, 1968, 1969, 7, 9, 0, 0, 1969, 1970, 7, 8, 0, 0, 1970, 1971, 7, 19, 0, 0, 1971, 1972, 7, 17, 0, 0, 1972, 1973, 7, 9, 0, 0, 1973, 184, 1, 0, 0, 0, 1974, 1975, 7, 15, 0, 0, 1975, 1976, 7, 2, 0, 0, 1976, 1977, 7, 8, 0, 0, 1977, 1978, 7, 9, 0, 0, 1978, 1979, 7, 8, 0, 0, 1979, 1980, 7, 19, 0, 0, 1980, 1981, 7, 17, 0, 0, 1981, 1982, 7, 9, 0, 0, 1982, 1983, 5, 95, 0, 0, 1983, 1984, 7, 15, 0, 0, 1984, 1985, 7, 19, 0, 0, 1985, 1986, 7, 23, 0, 0, 1986, 1987, 7, 23, 0, 0, 1987, 186, 1, 0, 0, 0, 1988, 1989, 7, 15, 0, 0, 1989, 1990, 7, 2, 0, 0, 1990, 1991, 7, 8, 0, 0, 1991, 1992, 7, 9, 0, 0, 1992, 1993, 7, 8, 0, 0, 1993, 1994, 7, 19, 0, 0, 1994, 1995, 7, 17, 0, 0, 1995, 1996, 7, 9, 0, 0, 1996, 1997, 5, 95, 0, 0, 1997, 1998, 7, 8, 0, 0, 1998, 1999, 7, 11, 0, 0, 1999, 2000, 7, 21, 0, 0, 2000, 2001, 7, 12, 0, 0, 2001, 2002, 7, 7, 0, 0, 2002, 188, 1, 0, 0, 0, 2003, 2004, 7, 15, 0, 0, 2004, 2005, 7, 2, 0, 0, 2005, 2006, 7, 8, 0, 0, 2006, 2007, 7, 9, 0, 0, 2007, 2008, 5, 95, 0, 0, 2008, 2009, 7, 15, 0, 0, 2009, 2010, 7, 19, 0, 0, 2010, 2011, 7, 23, 0, 0, 2011, 2012, 7, 23, 0, 0, 2012, 190, 1, 0, 0, 0, 2013, 2014, 7, 15, 0, 0, 2014, 2015, 7, 2, 0, 0, 2015, 2016, 7, 8, 0, 0, 2016, 2017, 7, 9, 0, 0, 2017, 2018, 5, 95, 0, 0, 2018, 2019, 7, 8, 0, 0, 2019, 2020, 7, 11, 0, 0, 2020, 2021, 7, 21, 0, 0, 2021, 2022, 7, 12, 0, 0, 2022, 2023, 7, 7, 0, 0, 2023, 192, 1, 0, 0, 0, 2024, 2025, 7, 15, 0, 0, 2025, 2026, 7, 2, 0, 0, 2026, 2027, 7, 13, 0, 0, 2027, 194, 1, 0, 0, 0, 2028, 2029, 7, 15, 0, 0, 2029, 2030, 7, 2, 0, 0, 2030, 2031, 7, 13, 0, 0, 2031, 2032, 7, 6, 0, 0, 2032, 2033, 7, 23, 0, 0, 2033, 2034, 7, 10, 0, 0, 2034, 2035, 7, 9, 0, 0, 2035, 2036, 7, 9, 0, 0, 2036, 2037, 7, 25, 0, 0, 2037, 196, 1, 0, 0, 0, 2038, 2039, 7, 15, 0, 0, 2039, 2040, 7, 2, 0, 0, 2040, 2041, 7, 13, 0, 0, 2041, 2042, 7, 6, 0, 0, 2042, 2043, 7, 23, 0, 0, 2043, 2044, 7, 13, 0, 0, 2044, 2045, 7, 9, 0, 0, 2045, 2046, 7, 2, 0, 0, 2046, 2047, 7, 11, 0, 0, 2047, 198, 1, 0, 0, 0, 2048, 2049, 7, 15, 0, 0, 2049, 2050, 7, 9, 0, 0, 2050, 2051, 7, 2, 0, 0, 2051, 2052, 7, 5, 0, 0, 2052, 2053, 7, 5, 0, 0, 2053, 2054, 7, 6, 0, 0, 2054, 2055, 7, 7, 0, 0, 2055, 2056, 7, 2, 0, 0, 2056, 2057, 7, 8, 0, 0, 2057, 2058, 7, 9, 0, 0, 2058, 200, 1, 0, 0, 0, 2059, 2060, 7, 15, 0, 0, 2060, 2061, 7, 9, 0, 0, 2061, 2062, 7, 7, 0, 0, 2062, 202, 1, 0, 0, 0, 2063, 2064, 7, 15, 0, 0, 2064, 2065, 7, 9, 0, 0, 2065, 2066, 7, 7, 0, 0, 2066, 2067, 7, 19, 0, 0, 2067, 2068, 7, 17, 0, 0, 2068, 2069, 7, 2, 0, 0, 2069, 2070, 7, 5, 0, 0, 2070, 204, 1, 0, 0, 0, 2071, 2072, 7, 15, 0, 0, 2072, 2073, 7, 9, 0, 0, 2073, 2074, 7, 7, 0, 0, 2074, 2075, 7, 5, 0, 0, 2075, 2076, 7, 2, 0, 0, 2076, 2077, 7, 11, 0, 0, 2077, 2078, 7, 9, 0, 0, 2078, 206, 1, 0, 0, 0, 2079, 2080, 7, 15, 0, 0, 2080, 2081, 7, 9, 0, 0, 2081, 2082, 7, 23, 0, 0, 2082, 2083, 7, 2, 0, 0, 2083, 2084, 7, 21, 0, 0, 2084, 2085, 7, 5, 0, 0, 2085, 2086, 7, 8, 0, 0, 2086, 208, 1, 0, 0, 0, 2087, 2088, 7, 15, 0, 0, 2088, 2089, 7, 9, 0, 0, 2089, 2090, 7, 23, 0, 0, 2090, 2091, 7, 19, 0, 0, 2091, 2092, 7, 12, 0, 0, 2092, 2093, 7, 9, 0, 0, 2093, 210, 1, 0, 0, 0, 2094, 2095, 7, 15, 0, 0, 2095, 2096, 7, 9, 0, 0, 2096, 2097, 7, 5, 0, 0, 2097, 2098, 7, 9, 0, 0, 2098, 2099, 7, 8, 0, 0, 2099, 2100, 7, 9, 0, 0, 2100, 212, 1, 0, 0, 0, 2101, 2102, 7, 15, 0, 0, 2102, 2103, 7, 9, 0, 0, 2103, 2104, 7, 12, 0, 0, 2104, 2105, 7, 4, 0, 0, 2105, 2106, 7, 9, 0, 0, 2106, 2107, 5, 95, 0, 0, 2107, 2108, 7, 11, 0, 0, 2108, 2109, 7, 2, 0, 0, 2109, 2110, 7, 12, 0, 0, 2110, 2111, 7, 25, 0, 0, 2111, 214, 1, 0, 0, 0, 2112, 2113, 7, 15, 0, 0, 2113, 2114, 7, 9, 0, 0, 2114, 2115, 7, 11, 0, 0, 2115, 2116, 7, 9, 0, 0, 2116, 2117, 7, 23, 0, 0, 2117, 216, 1, 0, 0, 0, 2118, 2119, 7, 15, 0, 0, 2119, 2120, 7, 9, 0, 0, 2120, 2121, 7, 4, 0, 0, 2121, 2122, 7, 7, 0, 0, 2122, 2123, 7, 11, 0, 0, 2123, 2124, 7, 19, 0, 0, 2124, 2125, 7, 3, 0, 0, 2125, 2126, 7, 9, 0, 0, 2126, 218, 1, 0, 0, 0, 2127, 2128, 7, 15, 0, 0, 2128, 2129, 7, 9, 0, 0, 2129, 2130, 7, 8, 0, 0, 2130, 2131, 7, 9, 0, 0, 2131, 2132, 7, 11, 0, 0, 2132, 2133, 7, 17, 0, 0, 2133, 2134, 7, 19, 0, 0, 2134, 2135, 7, 12, 0, 0, 2135, 2136, 7, 19, 0, 0, 2136, 2137, 7, 4, 0, 0, 2137, 2138, 7, 8, 0, 0, 2138, 2139, 7, 19, 0, 0, 2139, 2140, 7, 7, 0, 0, 2140, 220, 1, 0, 0, 0, 2141, 2142, 7, 15, 0, 0, 2142, 2143, 7, 19, 0, 0, 2143, 2144, 7, 4, 0, 0, 2144, 2145, 7, 2, 0, 0, 2145, 2146, 7, 5, 0, 0, 2146, 2147, 7, 5, 0, 0, 2147, 2148, 7, 6, 0, 0, 2148, 2149, 7, 10, 0, 0, 2149, 222, 1, 0, 0, 0, 2150, 2151, 7, 15, 0, 0, 2151, 2152, 7, 19, 0, 0, 2152, 2153, 7, 4, 0, 0, 2153, 2154, 7, 7, 0, 0, 2154, 2155, 7, 6, 0, 0, 2155, 2156, 7, 12, 0, 0, 2156, 2157, 7, 12, 0, 0, 2157, 2158, 7, 9, 0, 0, 2158, 2159, 7, 7, 0, 0, 2159, 2160, 7, 8, 0, 0, 2160, 224, 1, 0, 0, 0, 2161, 2162, 7, 15, 0, 0, 2162, 2163, 7, 19, 0, 0, 2163, 2164, 7, 4, 0, 0, 2164, 2165, 7, 8, 0, 0, 2165, 2166, 7, 19, 0, 0, 2166, 2167, 7, 12, 0, 0, 2167, 2168, 7, 7, 0, 0, 2168, 2169, 7, 8, 0, 0, 2169, 226, 1, 0, 0, 0, 2170, 2171, 7, 15, 0, 0, 2171, 2172, 7, 6, 0, 0, 2172, 2173, 7, 8, 0, 0, 2173, 228, 1, 0, 0, 0, 2174, 2175, 7, 15, 0, 0, 2175, 2176, 7, 6, 0, 0, 2176, 2177, 7, 21, 0, 0, 2177, 2178, 7, 3, 0, 0, 2178, 2179, 7, 5, 0, 0, 2179, 2180, 7, 9, 0, 0, 2180, 230, 1, 0, 0, 0, 2181, 2182, 7, 15, 0, 0, 2182, 2183, 7, 11, 0, 0, 2183, 2184, 7, 6, 0, 0, 2184, 2185, 7, 24, 0, 0, 2185, 232, 1, 0, 0, 0, 2186, 2187, 7, 15, 0, 0, 2187, 2188, 7, 13, 0, 0, 2188, 2189, 7, 12, 0, 0, 2189, 2190, 7, 2, 0, 0, 2190, 2191, 7, 17, 0, 0, 2191, 2192, 7, 19, 0, 0, 2192, 2193, 7, 7, 0, 0, 2193, 234, 1, 0, 0, 0, 2194, 2195, 7, 9, 0, 0, 2195, 2196, 7, 2, 0, 0, 2196, 2197, 7, 7, 0, 0, 2197, 2198, 7, 22, 0, 0, 2198, 236, 1, 0, 0, 0, 2199, 2200, 7, 9, 0, 0, 2200, 2201, 7, 5, 0, 0, 2201, 2202, 7, 9, 0, 0, 2202, 2203, 7, 17, 0, 0, 2203, 2204, 7, 9, 0, 0, 2204, 2205, 7, 12, 0, 0, 2205, 2206, 7, 8, 0, 0, 2206, 238, 1, 0, 0, 0, 2207, 2208, 7, 9, 0, 0, 2208, 2209, 7, 5, 0, 0, 2209, 2210, 7, 4, 0, 0, 2210, 2211, 7, 9, 0, 0, 2211, 240, 1, 0, 0, 0, 2212, 2213, 7, 9, 0, 0, 2213, 2214, 7, 17, 0, 0, 2214, 2215, 7, 24, 0, 0, 2215, 2216, 7, 8, 0, 0, 2216, 2217, 7, 13, 0, 0, 2217, 242, 1, 0, 0, 0, 2218, 2219, 7, 9, 0, 0, 2219, 2220, 7, 12, 0, 0, 2220, 2221, 7, 15, 0, 0, 2221, 244, 1, 0, 0, 0, 2222, 2223, 7, 9, 0, 0, 2223, 2224, 7, 12, 0, 0, 2224, 2225, 7, 15, 0, 0, 2225, 2226, 5, 95, 0, 0, 2226, 2227, 7, 23, 0, 0, 2227, 2228, 7, 11, 0, 0, 2228, 2229, 7, 2, 0, 0, 2229, 2230, 7, 17, 0, 0, 2230, 2231, 7, 9, 0, 0, 2231, 246, 1, 0, 0, 0, 2232, 2233, 7, 9, 0, 0, 2233, 2234, 7, 12, 0, 0, 2234, 2235, 7, 15, 0, 0, 2235, 2236, 5, 95, 0, 0, 2236, 2237, 7, 24, 0, 0, 2237, 2238, 7, 2, 0, 0, 2238, 2239, 7, 11, 0, 0, 2239, 2240, 7, 8, 0, 0, 2240, 2241, 7, 19, 0, 0, 2241, 2242, 7, 8, 0, 0, 2242, 2243, 7, 19, 0, 0, 2243, 2244, 7, 6, 0, 0, 2244, 2245, 7, 12, 0, 0, 2245, 248, 1, 0, 0, 0, 2246, 2247, 7, 9, 0, 0, 2247, 2248, 7, 12, 0, 0, 2248, 2249, 7, 23, 0, 0, 2249, 2250, 7, 6, 0, 0, 2250, 2251, 7, 11, 0, 0, 2251, 2252, 7, 7, 0, 0, 2252, 2253, 7, 9, 0, 0, 2253, 2254, 7, 15, 0, 0, 2254, 250, 1, 0, 0, 0, 2255, 2256, 7, 9, 0, 0, 2256, 2257, 7, 26, 0, 0, 2257, 2258, 7, 21, 0, 0, 2258, 2259, 7, 2, 0, 0, 2259, 2260, 7, 5, 0, 0, 2260, 2261, 7, 4, 0, 0, 2261, 252, 1, 0, 0, 0, 2262, 2263, 7, 9, 0, 0, 2263, 2264, 7, 4, 0, 0, 2264, 2265, 7, 7, 0, 0, 2265, 2266, 7, 2, 0, 0, 2266, 2267, 7, 24, 0, 0, 2267, 2268, 7, 9, 0, 0, 2268, 254, 1, 0, 0, 0, 2269, 2270, 7, 9, 0, 0, 2270, 2271, 7, 4, 0, 0, 2271, 2272, 7, 8, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 2274, 7, 17, 0, 0, 2274, 2275, 7, 2, 0, 0, 2275, 2276, 7, 8, 0, 0, 2276, 2277, 7, 9, 0, 0, 2277, 2278, 7, 15, 0, 0, 2278, 2279, 5, 95, 0, 0, 2279, 2280, 7, 7, 0, 0, 2280, 2281, 7, 6, 0, 0, 2281, 2282, 7, 4, 0, 0, 2282, 2283, 7, 8, 0, 0, 2283, 256, 1, 0, 0, 0, 2284, 2285, 7, 9, 0, 0, 2285, 2286, 7, 20, 0, 0, 2286, 2287, 7, 9, 0, 0, 2287, 2288, 7, 11, 0, 0, 2288, 2289, 7, 13, 0, 0, 2289, 258, 1, 0, 0, 0, 2290, 2291, 7, 9, 0, 0, 2291, 2292, 7, 18, 0, 0, 2292, 2293, 7, 7, 0, 0, 2293, 2294, 7, 9, 0, 0, 2294, 2295, 7, 24, 0, 0, 2295, 2296, 7, 8, 0, 0, 2296, 260, 1, 0, 0, 0, 2297, 2298, 7, 9, 0, 0, 2298, 2299, 7, 18, 0, 0, 2299, 2300, 7, 9, 0, 0, 2300, 2301, 7, 7, 0, 0, 2301, 262, 1, 0, 0, 0, 2302, 2303, 7, 9, 0, 0, 2303, 2304, 7, 18, 0, 0, 2304, 2305, 7, 9, 0, 0, 2305, 2306, 7, 7, 0, 0, 2306, 2307, 7, 21, 0, 0, 2307, 2308, 7, 8, 0, 0, 2308, 2309, 7, 9, 0, 0, 2309, 264, 1, 0, 0, 0, 2310, 2311, 7, 9, 0, 0, 2311, 2312, 7, 18, 0, 0, 2312, 2313, 7, 19, 0, 0, 2313, 2314, 7, 4, 0, 0, 2314, 2315, 7, 8, 0, 0, 2315, 2316, 7, 4, 0, 0, 2316, 266, 1, 0, 0, 0, 2317, 2318, 7, 9, 0, 0, 2318, 2319, 7, 18, 0, 0, 2319, 2320, 7, 24, 0, 0, 2320, 268, 1, 0, 0, 0, 2321, 2322, 7, 9, 0, 0, 2322, 2323, 7, 18, 0, 0, 2323, 2324, 7, 24, 0, 0, 2324, 2325, 7, 5, 0, 0, 2325, 2326, 7, 2, 0, 0, 2326, 2327, 7, 19, 0, 0, 2327, 2328, 7, 12, 0, 0, 2328, 270, 1, 0, 0, 0, 2329, 2330, 7, 9, 0, 0, 2330, 2331, 7, 18, 0, 0, 2331, 2332, 7, 8, 0, 0, 2332, 2333, 7, 9, 0, 0, 2333, 2334, 7, 12, 0, 0, 2334, 2335, 7, 15, 0, 0, 2335, 272, 1, 0, 0, 0, 2336, 2337, 7, 9, 0, 0, 2337, 2338, 7, 18, 0, 0, 2338, 2339, 7, 8, 0, 0, 2339, 2340, 7, 9, 0, 0, 2340, 2341, 7, 12, 0, 0, 2341, 2342, 7, 15, 0, 0, 2342, 2343, 7, 9, 0, 0, 2343, 2344, 7, 15, 0, 0, 2344, 274, 1, 0, 0, 0, 2345, 2346, 7, 9, 0, 0, 2346, 2347, 7, 18, 0, 0, 2347, 2348, 7, 8, 0, 0, 2348, 2349, 7, 9, 0, 0, 2349, 2350, 7, 11, 0, 0, 2350, 2351, 7, 12, 0, 0, 2351, 2352, 7, 2, 0, 0, 2352, 2353, 7, 5, 0, 0, 2353, 276, 1, 0, 0, 0, 2354, 2355, 7, 9, 0, 0, 2355, 2356, 7, 18, 0, 0, 2356, 2357, 7, 8, 0, 0, 2357, 2358, 7, 11, 0, 0, 2358, 2359, 7, 2, 0, 0, 2359, 2360, 7, 7, 0, 0, 2360, 2361, 7, 8, 0, 0, 2361, 278, 1, 0, 0, 0, 2362, 2363, 7, 23, 0, 0, 2363, 2364, 7, 2, 0, 0, 2364, 2365, 7, 5, 0, 0, 2365, 2366, 7, 4, 0, 0, 2366, 2367, 7, 9, 0, 0, 2367, 280, 1, 0, 0, 0, 2368, 2369, 7, 23, 0, 0, 2369, 2370, 7, 9, 0, 0, 2370, 2371, 7, 8, 0, 0, 2371, 2372, 7, 7, 0, 0, 2372, 2373, 7, 22, 0, 0, 2373, 282, 1, 0, 0, 0, 2374, 2375, 7, 23, 0, 0, 2375, 2376, 7, 19, 0, 0, 2376, 2377, 7, 5, 0, 0, 2377, 2378, 7, 8, 0, 0, 2378, 2379, 7, 9, 0, 0, 2379, 2380, 7, 11, 0, 0, 2380, 284, 1, 0, 0, 0, 2381, 2382, 7, 23, 0, 0, 2382, 2383, 7, 19, 0, 0, 2383, 2384, 7, 11, 0, 0, 2384, 2385, 7, 4, 0, 0, 2385, 2386, 7, 8, 0, 0, 2386, 2387, 5, 95, 0, 0, 2387, 2388, 7, 20, 0, 0, 2388, 2389, 7, 2, 0, 0, 2389, 2390, 7, 5, 0, 0, 2390, 2391, 7, 21, 0, 0, 2391, 2392, 7, 9, 0, 0, 2392, 286, 1, 0, 0, 0, 2393, 2394, 7, 23, 0, 0, 2394, 2395, 7, 5, 0, 0, 2395, 2396, 7, 6, 0, 0, 2396, 2397, 7, 2, 0, 0, 2397, 2398, 7, 8, 0, 0, 2398, 288, 1, 0, 0, 0, 2399, 2400, 7, 23, 0, 0, 2400, 2401, 7, 5, 0, 0, 2401, 2402, 7, 6, 0, 0, 2402, 2403, 7, 6, 0, 0, 2403, 2404, 7, 11, 0, 0, 2404, 290, 1, 0, 0, 0, 2405, 2406, 7, 23, 0, 0, 2406, 2407, 7, 6, 0, 0, 2407, 2408, 7, 5, 0, 0, 2408, 2409, 7, 5, 0, 0, 2409, 2410, 7, 6, 0, 0, 2410, 2411, 7, 10, 0, 0, 2411, 2412, 7, 19, 0, 0, 2412, 2413, 7, 12, 0, 0, 2413, 2414, 7, 16, 0, 0, 2414, 292, 1, 0, 0, 0, 2415, 2416, 7, 23, 0, 0, 2416, 2417, 7, 6, 0, 0, 2417, 2418, 7, 11, 0, 0, 2418, 294, 1, 0, 0, 0, 2419, 2420, 7, 23, 0, 0, 2420, 2421, 7, 6, 0, 0, 2421, 2422, 7, 11, 0, 0, 2422, 2423, 7, 9, 0, 0, 2423, 2424, 7, 19, 0, 0, 2424, 2425, 7, 16, 0, 0, 2425, 2426, 7, 12, 0, 0, 2426, 296, 1, 0, 0, 0, 2427, 2428, 7, 23, 0, 0, 2428, 2429, 7, 11, 0, 0, 2429, 2430, 7, 2, 0, 0, 2430, 2431, 7, 17, 0, 0, 2431, 2432, 7, 9, 0, 0, 2432, 2433, 5, 95, 0, 0, 2433, 2434, 7, 11, 0, 0, 2434, 2435, 7, 6, 0, 0, 2435, 2436, 7, 10, 0, 0, 2436, 298, 1, 0, 0, 0, 2437, 2438, 7, 23, 0, 0, 2438, 2439, 7, 11, 0, 0, 2439, 2440, 7, 9, 0, 0, 2440, 2441, 7, 9, 0, 0, 2441, 300, 1, 0, 0, 0, 2442, 2443, 7, 23, 0, 0, 2443, 2444, 7, 11, 0, 0, 2444, 2445, 7, 19, 0, 0, 2445, 2446, 7, 15, 0, 0, 2446, 2447, 7, 2, 0, 0, 2447, 2448, 7, 13, 0, 0, 2448, 302, 1, 0, 0, 0, 2449, 2450, 7, 23, 0, 0, 2450, 2451, 7, 11, 0, 0, 2451, 2452, 7, 6, 0, 0, 2452, 2453, 7, 17, 0, 0, 2453, 304, 1, 0, 0, 0, 2454, 2455, 7, 23, 0, 0, 2455, 2456, 7, 21, 0, 0, 2456, 2457, 7, 5, 0, 0, 2457, 2458, 7, 5, 0, 0, 2458, 306, 1, 0, 0, 0, 2459, 2460, 7, 23, 0, 0, 2460, 2461, 7, 21, 0, 0, 2461, 2462, 7, 12, 0, 0, 2462, 2463, 7, 7, 0, 0, 2463, 2464, 7, 8, 0, 0, 2464, 2465, 7, 19, 0, 0, 2465, 2466, 7, 6, 0, 0, 2466, 2467, 7, 12, 0, 0, 2467, 308, 1, 0, 0, 0, 2468, 2469, 7, 23, 0, 0, 2469, 2470, 7, 21, 0, 0, 2470, 2471, 7, 12, 0, 0, 2471, 2472, 7, 7, 0, 0, 2472, 2473, 7, 8, 0, 0, 2473, 2474, 7, 19, 0, 0, 2474, 2475, 7, 6, 0, 0, 2475, 2476, 7, 12, 0, 0, 2476, 2477, 7, 4, 0, 0, 2477, 310, 1, 0, 0, 0, 2478, 2479, 7, 23, 0, 0, 2479, 2480, 7, 21, 0, 0, 2480, 2481, 7, 4, 0, 0, 2481, 2482, 7, 19, 0, 0, 2482, 2483, 7, 6, 0, 0, 2483, 2484, 7, 12, 0, 0, 2484, 312, 1, 0, 0, 0, 2485, 2486, 7, 16, 0, 0, 2486, 2487, 7, 9, 0, 0, 2487, 2488, 7, 8, 0, 0, 2488, 314, 1, 0, 0, 0, 2489, 2490, 7, 16, 0, 0, 2490, 2491, 7, 5, 0, 0, 2491, 2492, 7, 6, 0, 0, 2492, 2493, 7, 3, 0, 0, 2493, 2494, 7, 2, 0, 0, 2494, 2495, 7, 5, 0, 0, 2495, 316, 1, 0, 0, 0, 2496, 2497, 7, 16, 0, 0, 2497, 2498, 7, 11, 0, 0, 2498, 2499, 7, 2, 0, 0, 2499, 2500, 7, 12, 0, 0, 2500, 2501, 7, 8, 0, 0, 2501, 318, 1, 0, 0, 0, 2502, 2503, 7, 16, 0, 0, 2503, 2504, 7, 11, 0, 0, 2504, 2505, 7, 6, 0, 0, 2505, 2506, 7, 21, 0, 0, 2506, 2507, 7, 24, 0, 0, 2507, 320, 1, 0, 0, 0, 2508, 2509, 7, 16, 0, 0, 2509, 2510, 7, 11, 0, 0, 2510, 2511, 7, 6, 0, 0, 2511, 2512, 7, 21, 0, 0, 2512, 2513, 7, 24, 0, 0, 2513, 2514, 7, 19, 0, 0, 2514, 2515, 7, 12, 0, 0, 2515, 2516, 7, 16, 0, 0, 2516, 322, 1, 0, 0, 0, 2517, 2518, 7, 16, 0, 0, 2518, 2519, 7, 11, 0, 0, 2519, 2520, 7, 6, 0, 0, 2520, 2521, 7, 21, 0, 0, 2521, 2522, 7, 24, 0, 0, 2522, 2523, 7, 4, 0, 0, 2523, 324, 1, 0, 0, 0, 2524, 2525, 7, 16, 0, 0, 2525, 2526, 7, 11, 0, 0, 2526, 2527, 7, 6, 0, 0, 2527, 2528, 7, 21, 0, 0, 2528, 2529, 7, 24, 0, 0, 2529, 2530, 5, 95, 0, 0, 2530, 2531, 7, 7, 0, 0, 2531, 2532, 7, 6, 0, 0, 2532, 2533, 7, 12, 0, 0, 2533, 2534, 7, 7, 0, 0, 2534, 2535, 7, 2, 0, 0, 2535, 2536, 7, 8, 0, 0, 2536, 326, 1, 0, 0, 0, 2537, 2538, 7, 22, 0, 0, 2538, 2539, 7, 2, 0, 0, 2539, 2540, 7, 20, 0, 0, 2540, 2541, 7, 19, 0, 0, 2541, 2542, 7, 12, 0, 0, 2542, 2543, 7, 16, 0, 0, 2543, 328, 1, 0, 0, 0, 2544, 2545, 7, 22, 0, 0, 2545, 2546, 7, 6, 0, 0, 2546, 2547, 7, 5, 0, 0, 2547, 2548, 7, 15, 0, 0, 2548, 330, 1, 0, 0, 0, 2549, 2550, 7, 22, 0, 0, 2550, 2551, 7, 6, 0, 0, 2551, 2552, 7, 21, 0, 0, 2552, 2553, 7, 11, 0, 0, 2553, 332, 1, 0, 0, 0, 2554, 2555, 7, 19, 0, 0, 2555, 2556, 7, 15, 0, 0, 2556, 2557, 7, 9, 0, 0, 2557, 2558, 7, 12, 0, 0, 2558, 2559, 7, 8, 0, 0, 2559, 2560, 7, 19, 0, 0, 2560, 2561, 7, 8, 0, 0, 2561, 2562, 7, 13, 0, 0, 2562, 334, 1, 0, 0, 0, 2563, 2564, 7, 19, 0, 0, 2564, 2565, 7, 23, 0, 0, 2565, 336, 1, 0, 0, 0, 2566, 2567, 7, 19, 0, 0, 2567, 2568, 7, 5, 0, 0, 2568, 2569, 7, 19, 0, 0, 2569, 2570, 7, 25, 0, 0, 2570, 2571, 7, 9, 0, 0, 2571, 338, 1, 0, 0, 0, 2572, 2573, 7, 19, 0, 0, 2573, 2574, 7, 17, 0, 0, 2574, 2575, 7, 24, 0, 0, 2575, 2576, 7, 6, 0, 0, 2576, 2577, 7, 11, 0, 0, 2577, 2578, 7, 8, 0, 0, 2578, 340, 1, 0, 0, 0, 2579, 2580, 7, 19, 0, 0, 2580, 2581, 7, 12, 0, 0, 2581, 342, 1, 0, 0, 0, 2582, 2583, 7, 19, 0, 0, 2583, 2584, 7, 12, 0, 0, 2584, 2585, 7, 7, 0, 0, 2585, 2586, 7, 5, 0, 0, 2586, 2587, 7, 21, 0, 0, 2587, 2588, 7, 15, 0, 0, 2588, 2589, 7, 9, 0, 0, 2589, 344, 1, 0, 0, 0, 2590, 2591, 7, 19, 0, 0, 2591, 2592, 7, 12, 0, 0, 2592, 2593, 7, 15, 0, 0, 2593, 2594, 7, 19, 0, 0, 2594, 2595, 7, 7, 0, 0, 2595, 2596, 7, 2, 0, 0, 2596, 2597, 7, 8, 0, 0, 2597, 2598, 7, 6, 0, 0, 2598, 2599, 7, 11, 0, 0, 2599, 346, 1, 0, 0, 0, 2600, 2601, 7, 19, 0, 0, 2601, 2602, 7, 12, 0, 0, 2602, 2603, 7, 19, 0, 0, 2603, 2604, 7, 8, 0, 0, 2604, 2605, 7, 19, 0, 0, 2605, 2606, 7, 2, 0, 0, 2606, 2607, 7, 5, 0, 0, 2607, 348, 1, 0, 0, 0, 2608, 2609, 7, 19, 0, 0, 2609, 2610, 7, 12, 0, 0, 2610, 2611, 7, 12, 0, 0, 2611, 2612, 7, 9, 0, 0, 2612, 2613, 7, 11, 0, 0, 2613, 350, 1, 0, 0, 0, 2614, 2615, 7, 19, 0, 0, 2615, 2616, 7, 12, 0, 0, 2616, 2617, 7, 6, 0, 0, 2617, 2618, 7, 21, 0, 0, 2618, 2619, 7, 8, 0, 0, 2619, 352, 1, 0, 0, 0, 2620, 2621, 7, 19, 0, 0, 2621, 2622, 7, 12, 0, 0, 2622, 2623, 7, 4, 0, 0, 2623, 2624, 7, 9, 0, 0, 2624, 2625, 7, 12, 0, 0, 2625, 2626, 7, 4, 0, 0, 2626, 2627, 7, 19, 0, 0, 2627, 2628, 7, 8, 0, 0, 2628, 2629, 7, 19, 0, 0, 2629, 2630, 7, 20, 0, 0, 2630, 2631, 7, 9, 0, 0, 2631, 354, 1, 0, 0, 0, 2632, 2633, 7, 19, 0, 0, 2633, 2634, 7, 12, 0, 0, 2634, 2635, 7, 4, 0, 0, 2635, 2636, 7, 9, 0, 0, 2636, 2637, 7, 11, 0, 0, 2637, 2638, 7, 8, 0, 0, 2638, 356, 1, 0, 0, 0, 2639, 2640, 7, 19, 0, 0, 2640, 2641, 7, 12, 0, 0, 2641, 2642, 7, 8, 0, 0, 2642, 358, 1, 0, 0, 0, 2643, 2644, 7, 19, 0, 0, 2644, 2645, 7, 12, 0, 0, 2645, 2646, 7, 8, 0, 0, 2646, 2647, 7, 9, 0, 0, 2647, 2648, 7, 16, 0, 0, 2648, 2649, 7, 9, 0, 0, 2649, 2650, 7, 11, 0, 0, 2650, 360, 1, 0, 0, 0, 2651, 2652, 7, 19, 0, 0, 2652, 2653, 7, 12, 0, 0, 2653, 2654, 7, 8, 0, 0, 2654, 2655, 7, 9, 0, 0, 2655, 2656, 7, 11, 0, 0, 2656, 2657, 7, 4, 0, 0, 2657, 2658, 7, 9, 0, 0, 2658, 2659, 7, 7, 0, 0, 2659, 2660, 7, 8, 0, 0, 2660, 362, 1, 0, 0, 0, 2661, 2662, 7, 19, 0, 0, 2662, 2663, 7, 12, 0, 0, 2663, 2664, 7, 8, 0, 0, 2664, 2665, 7, 9, 0, 0, 2665, 2666, 7, 11, 0, 0, 2666, 2667, 7, 4, 0, 0, 2667, 2668, 7, 9, 0, 0, 2668, 2669, 7, 7, 0, 0, 2669, 2670, 7, 8, 0, 0, 2670, 2671, 7, 19, 0, 0, 2671, 2672, 7, 6, 0, 0, 2672, 2673, 7, 12, 0, 0, 2673, 364, 1, 0, 0, 0, 2674, 2675, 7, 19, 0, 0, 2675, 2676, 7, 12, 0, 0, 2676, 2677, 7, 8, 0, 0, 2677, 2678, 7, 9, 0, 0, 2678, 2679, 7, 11, 0, 0, 2679, 2680, 7, 20, 0, 0, 2680, 2681, 7, 2, 0, 0, 2681, 2682, 7, 5, 0, 0, 2682, 366, 1, 0, 0, 0, 2683, 2684, 7, 19, 0, 0, 2684, 2685, 7, 12, 0, 0, 2685, 2686, 7, 8, 0, 0, 2686, 2687, 7, 6, 0, 0, 2687, 368, 1, 0, 0, 0, 2688, 2689, 7, 19, 0, 0, 2689, 2690, 7, 4, 0, 0, 2690, 370, 1, 0, 0, 0, 2691, 2692, 7, 27, 0, 0, 2692, 2693, 7, 6, 0, 0, 2693, 2694, 7, 19, 0, 0, 2694, 2695, 7, 12, 0, 0, 2695, 372, 1, 0, 0, 0, 2696, 2697, 7, 27, 0, 0, 2697, 2698, 7, 4, 0, 0, 2698, 2699, 7, 6, 0, 0, 2699, 2700, 7, 12, 0, 0, 2700, 374, 1, 0, 0, 0, 2701, 2702, 7, 27, 0, 0, 2702, 2703, 7, 4, 0, 0, 2703, 2704, 7, 6, 0, 0, 2704, 2705, 7, 12, 0, 0, 2705, 2706, 5, 95, 0, 0, 2706, 2707, 7, 2, 0, 0, 2707, 2708, 7, 11, 0, 0, 2708, 2709, 7, 11, 0, 0, 2709, 2710, 7, 2, 0, 0, 2710, 2711, 7, 13, 0, 0, 2711, 376, 1, 0, 0, 0, 2712, 2713, 7, 27, 0, 0, 2713, 2714, 7, 4, 0, 0, 2714, 2715, 7, 6, 0, 0, 2715, 2716, 7, 12, 0, 0, 2716, 2717, 5, 95, 0, 0, 2717, 2718, 7, 2, 0, 0, 2718, 2719, 7, 11, 0, 0, 2719, 2720, 7, 11, 0, 0, 2720, 2721, 7, 2, 0, 0, 2721, 2722, 7, 13, 0, 0, 2722, 2723, 7, 2, 0, 0, 2723, 2724, 7, 16, 0, 0, 2724, 2725, 7, 16, 0, 0, 2725, 378, 1, 0, 0, 0, 2726, 2727, 7, 27, 0, 0, 2727, 2728, 7, 4, 0, 0, 2728, 2729, 7, 6, 0, 0, 2729, 2730, 7, 12, 0, 0, 2730, 2731, 5, 95, 0, 0, 2731, 2732, 7, 9, 0, 0, 2732, 2733, 7, 18, 0, 0, 2733, 2734, 7, 9, 0, 0, 2734, 2735, 7, 7, 0, 0, 2735, 2736, 7, 21, 0, 0, 2736, 2737, 7, 8, 0, 0, 2737, 2738, 7, 19, 0, 0, 2738, 2739, 7, 6, 0, 0, 2739, 2740, 7, 12, 0, 0, 2740, 2741, 5, 95, 0, 0, 2741, 2742, 7, 24, 0, 0, 2742, 2743, 7, 5, 0, 0, 2743, 2744, 7, 2, 0, 0, 2744, 2745, 7, 12, 0, 0, 2745, 380, 1, 0, 0, 0, 2746, 2747, 7, 27, 0, 0, 2747, 2748, 7, 4, 0, 0, 2748, 2749, 7, 6, 0, 0, 2749, 2750, 7, 12, 0, 0, 2750, 2751, 5, 95, 0, 0, 2751, 2752, 7, 9, 0, 0, 2752, 2753, 7, 18, 0, 0, 2753, 2754, 7, 19, 0, 0, 2754, 2755, 7, 4, 0, 0, 2755, 2756, 7, 8, 0, 0, 2756, 2757, 7, 4, 0, 0, 2757, 382, 1, 0, 0, 0, 2758, 2759, 7, 27, 0, 0, 2759, 2760, 7, 4, 0, 0, 2760, 2761, 7, 6, 0, 0, 2761, 2762, 7, 12, 0, 0, 2762, 2763, 5, 95, 0, 0, 2763, 2764, 7, 6, 0, 0, 2764, 2765, 7, 3, 0, 0, 2765, 2766, 7, 27, 0, 0, 2766, 2767, 7, 9, 0, 0, 2767, 2768, 7, 7, 0, 0, 2768, 2769, 7, 8, 0, 0, 2769, 384, 1, 0, 0, 0, 2770, 2771, 7, 27, 0, 0, 2771, 2772, 7, 4, 0, 0, 2772, 2773, 7, 6, 0, 0, 2773, 2774, 7, 12, 0, 0, 2774, 2775, 5, 95, 0, 0, 2775, 2776, 7, 6, 0, 0, 2776, 2777, 7, 3, 0, 0, 2777, 2778, 7, 27, 0, 0, 2778, 2779, 7, 9, 0, 0, 2779, 2780, 7, 7, 0, 0, 2780, 2781, 7, 8, 0, 0, 2781, 2782, 7, 2, 0, 0, 2782, 2783, 7, 16, 0, 0, 2783, 2784, 7, 16, 0, 0, 2784, 386, 1, 0, 0, 0, 2785, 2786, 7, 27, 0, 0, 2786, 2787, 7, 4, 0, 0, 2787, 2788, 7, 6, 0, 0, 2788, 2789, 7, 12, 0, 0, 2789, 2790, 5, 95, 0, 0, 2790, 2791, 7, 26, 0, 0, 2791, 2792, 7, 21, 0, 0, 2792, 2793, 7, 9, 0, 0, 2793, 2794, 7, 11, 0, 0, 2794, 2795, 7, 13, 0, 0, 2795, 388, 1, 0, 0, 0, 2796, 2797, 7, 27, 0, 0, 2797, 2798, 7, 4, 0, 0, 2798, 2799, 7, 6, 0, 0, 2799, 2800, 7, 12, 0, 0, 2800, 2801, 5, 95, 0, 0, 2801, 2802, 7, 20, 0, 0, 2802, 2803, 7, 2, 0, 0, 2803, 2804, 7, 5, 0, 0, 2804, 2805, 7, 21, 0, 0, 2805, 2806, 7, 9, 0, 0, 2806, 390, 1, 0, 0, 0, 2807, 2808, 7, 5, 0, 0, 2808, 2809, 7, 2, 0, 0, 2809, 2810, 7, 16, 0, 0, 2810, 392, 1, 0, 0, 0, 2811, 2812, 7, 5, 0, 0, 2812, 2813, 7, 2, 0, 0, 2813, 2814, 7, 12, 0, 0, 2814, 2815, 7, 16, 0, 0, 2815, 2816, 7, 21, 0, 0, 2816, 2817, 7, 2, 0, 0, 2817, 2818, 7, 16, 0, 0, 2818, 2819, 7, 9, 0, 0, 2819, 394, 1, 0, 0, 0, 2820, 2821, 7, 5, 0, 0, 2821, 2822, 7, 2, 0, 0, 2822, 2823, 7, 11, 0, 0, 2823, 2824, 7, 16, 0, 0, 2824, 2825, 7, 9, 0, 0, 2825, 396, 1, 0, 0, 0, 2826, 2827, 7, 5, 0, 0, 2827, 2828, 7, 2, 0, 0, 2828, 2829, 7, 4, 0, 0, 2829, 2830, 7, 8, 0, 0, 2830, 2831, 5, 95, 0, 0, 2831, 2832, 7, 20, 0, 0, 2832, 2833, 7, 2, 0, 0, 2833, 2834, 7, 5, 0, 0, 2834, 2835, 7, 21, 0, 0, 2835, 2836, 7, 9, 0, 0, 2836, 398, 1, 0, 0, 0, 2837, 2838, 7, 5, 0, 0, 2838, 2839, 7, 2, 0, 0, 2839, 2840, 7, 8, 0, 0, 2840, 2841, 7, 9, 0, 0, 2841, 2842, 7, 11, 0, 0, 2842, 2843, 7, 2, 0, 0, 2843, 2844, 7, 5, 0, 0, 2844, 400, 1, 0, 0, 0, 2845, 2846, 7, 5, 0, 0, 2846, 2847, 7, 9, 0, 0, 2847, 2848, 7, 2, 0, 0, 2848, 2849, 7, 15, 0, 0, 2849, 402, 1, 0, 0, 0, 2850, 2851, 7, 5, 0, 0, 2851, 2852, 7, 9, 0, 0, 2852, 2853, 7, 2, 0, 0, 2853, 2854, 7, 15, 0, 0, 2854, 2855, 7, 19, 0, 0, 2855, 2856, 7, 12, 0, 0, 2856, 2857, 7, 16, 0, 0, 2857, 404, 1, 0, 0, 0, 2858, 2859, 7, 5, 0, 0, 2859, 2860, 7, 9, 0, 0, 2860, 2861, 7, 23, 0, 0, 2861, 2862, 7, 8, 0, 0, 2862, 406, 1, 0, 0, 0, 2863, 2864, 7, 5, 0, 0, 2864, 2865, 7, 19, 0, 0, 2865, 2866, 7, 25, 0, 0, 2866, 2867, 7, 9, 0, 0, 2867, 408, 1, 0, 0, 0, 2868, 2869, 7, 5, 0, 0, 2869, 2870, 7, 19, 0, 0, 2870, 2871, 7, 25, 0, 0, 2871, 2872, 7, 9, 0, 0, 2872, 2873, 5, 95, 0, 0, 2873, 2874, 7, 11, 0, 0, 2874, 2875, 7, 9, 0, 0, 2875, 2876, 7, 16, 0, 0, 2876, 2877, 7, 9, 0, 0, 2877, 2878, 7, 18, 0, 0, 2878, 410, 1, 0, 0, 0, 2879, 2880, 7, 5, 0, 0, 2880, 2881, 7, 19, 0, 0, 2881, 2882, 7, 17, 0, 0, 2882, 2883, 7, 19, 0, 0, 2883, 2884, 7, 8, 0, 0, 2884, 412, 1, 0, 0, 0, 2885, 2886, 7, 5, 0, 0, 2886, 2887, 7, 12, 0, 0, 2887, 414, 1, 0, 0, 0, 2888, 2889, 7, 5, 0, 0, 2889, 2890, 7, 6, 0, 0, 2890, 2891, 7, 7, 0, 0, 2891, 2892, 7, 2, 0, 0, 2892, 2893, 7, 5, 0, 0, 2893, 416, 1, 0, 0, 0, 2894, 2895, 7, 5, 0, 0, 2895, 2896, 7, 6, 0, 0, 2896, 2897, 7, 7, 0, 0, 2897, 2898, 7, 2, 0, 0, 2898, 2899, 7, 5, 0, 0, 2899, 2900, 7, 8, 0, 0, 2900, 2901, 7, 19, 0, 0, 2901, 2902, 7, 17, 0, 0, 2902, 2903, 7, 9, 0, 0, 2903, 418, 1, 0, 0, 0, 2904, 2905, 7, 5, 0, 0, 2905, 2906, 7, 6, 0, 0, 2906, 2907, 7, 7, 0, 0, 2907, 2908, 7, 2, 0, 0, 2908, 2909, 7, 5, 0, 0, 2909, 2910, 7, 8, 0, 0, 2910, 2911, 7, 19, 0, 0, 2911, 2912, 7, 17, 0, 0, 2912, 2913, 7, 9, 0, 0, 2913, 2914, 7, 4, 0, 0, 2914, 2915, 7, 8, 0, 0, 2915, 2916, 7, 2, 0, 0, 2916, 2917, 7, 17, 0, 0, 2917, 2918, 7, 24, 0, 0, 2918, 420, 1, 0, 0, 0, 2919, 2920, 7, 5, 0, 0, 2920, 2921, 7, 6, 0, 0, 2921, 2922, 7, 10, 0, 0, 2922, 2923, 7, 9, 0, 0, 2923, 2924, 7, 11, 0, 0, 2924, 422, 1, 0, 0, 0, 2925, 2926, 7, 17, 0, 0, 2926, 2927, 7, 2, 0, 0, 2927, 2928, 7, 8, 0, 0, 2928, 2929, 7, 7, 0, 0, 2929, 2930, 7, 22, 0, 0, 2930, 424, 1, 0, 0, 0, 2931, 2932, 7, 17, 0, 0, 2932, 2933, 7, 2, 0, 0, 2933, 2934, 7, 8, 0, 0, 2934, 2935, 7, 7, 0, 0, 2935, 2936, 7, 22, 0, 0, 2936, 2937, 7, 9, 0, 0, 2937, 2938, 7, 4, 0, 0, 2938, 426, 1, 0, 0, 0, 2939, 2940, 7, 17, 0, 0, 2940, 2941, 7, 2, 0, 0, 2941, 2942, 7, 8, 0, 0, 2942, 2943, 7, 7, 0, 0, 2943, 2944, 7, 22, 0, 0, 2944, 2945, 5, 95, 0, 0, 2945, 2946, 7, 12, 0, 0, 2946, 2947, 7, 21, 0, 0, 2947, 2948, 7, 17, 0, 0, 2948, 2949, 7, 3, 0, 0, 2949, 2950, 7, 9, 0, 0, 2950, 2951, 7, 11, 0, 0, 2951, 428, 1, 0, 0, 0, 2952, 2953, 7, 17, 0, 0, 2953, 2954, 7, 2, 0, 0, 2954, 2955, 7, 8, 0, 0, 2955, 2956, 7, 7, 0, 0, 2956, 2957, 7, 22, 0, 0, 2957, 2958, 5, 95, 0, 0, 2958, 2959, 7, 11, 0, 0, 2959, 2960, 7, 9, 0, 0, 2960, 2961, 7, 7, 0, 0, 2961, 2962, 7, 6, 0, 0, 2962, 2963, 7, 16, 0, 0, 2963, 2964, 7, 12, 0, 0, 2964, 2965, 7, 19, 0, 0, 2965, 2966, 7, 14, 0, 0, 2966, 2967, 7, 9, 0, 0, 2967, 430, 1, 0, 0, 0, 2968, 2969, 7, 17, 0, 0, 2969, 2970, 7, 2, 0, 0, 2970, 2971, 7, 18, 0, 0, 2971, 432, 1, 0, 0, 0, 2972, 2973, 7, 17, 0, 0, 2973, 2974, 7, 9, 0, 0, 2974, 2975, 7, 2, 0, 0, 2975, 2976, 7, 4, 0, 0, 2976, 2977, 7, 21, 0, 0, 2977, 2978, 7, 11, 0, 0, 2978, 2979, 7, 9, 0, 0, 2979, 2980, 7, 4, 0, 0, 2980, 434, 1, 0, 0, 0, 2981, 2982, 7, 17, 0, 0, 2982, 2983, 7, 9, 0, 0, 2983, 2984, 7, 17, 0, 0, 2984, 2985, 7, 3, 0, 0, 2985, 2986, 7, 9, 0, 0, 2986, 2987, 7, 11, 0, 0, 2987, 436, 1, 0, 0, 0, 2988, 2989, 7, 17, 0, 0, 2989, 2990, 7, 9, 0, 0, 2990, 2991, 7, 11, 0, 0, 2991, 2992, 7, 16, 0, 0, 2992, 2993, 7, 9, 0, 0, 2993, 438, 1, 0, 0, 0, 2994, 2995, 7, 17, 0, 0, 2995, 2996, 7, 9, 0, 0, 2996, 2997, 7, 8, 0, 0, 2997, 2998, 7, 2, 0, 0, 2998, 2999, 7, 15, 0, 0, 2999, 3000, 7, 2, 0, 0, 3000, 3001, 7, 8, 0, 0, 3001, 3002, 7, 2, 0, 0, 3002, 440, 1, 0, 0, 0, 3003, 3004, 7, 17, 0, 0, 3004, 3005, 7, 9, 0, 0, 3005, 3006, 7, 8, 0, 0, 3006, 3007, 7, 22, 0, 0, 3007, 3008, 7, 6, 0, 0, 3008, 3009, 7, 15, 0, 0, 3009, 442, 1, 0, 0, 0, 3010, 3011, 7, 17, 0, 0, 3011, 3012, 7, 19, 0, 0, 3012, 3013, 7, 12, 0, 0, 3013, 444, 1, 0, 0, 0, 3014, 3015, 7, 17, 0, 0, 3015, 3016, 7, 19, 0, 0, 3016, 3017, 7, 12, 0, 0, 3017, 3018, 7, 21, 0, 0, 3018, 3019, 7, 4, 0, 0, 3019, 446, 1, 0, 0, 0, 3020, 3021, 7, 17, 0, 0, 3021, 3022, 7, 19, 0, 0, 3022, 3023, 7, 12, 0, 0, 3023, 3024, 7, 21, 0, 0, 3024, 3025, 7, 8, 0, 0, 3025, 3026, 7, 9, 0, 0, 3026, 448, 1, 0, 0, 0, 3027, 3028, 7, 17, 0, 0, 3028, 3029, 7, 6, 0, 0, 3029, 3030, 7, 15, 0, 0, 3030, 450, 1, 0, 0, 0, 3031, 3032, 7, 17, 0, 0, 3032, 3033, 7, 6, 0, 0, 3033, 3034, 7, 15, 0, 0, 3034, 3035, 7, 19, 0, 0, 3035, 3036, 7, 23, 0, 0, 3036, 3037, 7, 19, 0, 0, 3037, 3038, 7, 9, 0, 0, 3038, 3039, 7, 4, 0, 0, 3039, 452, 1, 0, 0, 0, 3040, 3041, 7, 17, 0, 0, 3041, 3042, 7, 6, 0, 0, 3042, 3043, 7, 15, 0, 0, 3043, 3044, 7, 19, 0, 0, 3044, 3045, 7, 23, 0, 0, 3045, 3046, 7, 13, 0, 0, 3046, 454, 1, 0, 0, 0, 3047, 3048, 7, 17, 0, 0, 3048, 3049, 7, 6, 0, 0, 3049, 3050, 7, 15, 0, 0, 3050, 3051, 7, 21, 0, 0, 3051, 3052, 7, 5, 0, 0, 3052, 3053, 7, 9, 0, 0, 3053, 456, 1, 0, 0, 0, 3054, 3055, 7, 17, 0, 0, 3055, 3056, 7, 6, 0, 0, 3056, 3057, 7, 15, 0, 0, 3057, 3058, 7, 21, 0, 0, 3058, 3059, 7, 5, 0, 0, 3059, 3060, 7, 9, 0, 0, 3060, 3061, 7, 4, 0, 0, 3061, 458, 1, 0, 0, 0, 3062, 3063, 7, 17, 0, 0, 3063, 3064, 7, 6, 0, 0, 3064, 3065, 7, 12, 0, 0, 3065, 3066, 7, 15, 0, 0, 3066, 3067, 7, 2, 0, 0, 3067, 3068, 7, 13, 0, 0, 3068, 460, 1, 0, 0, 0, 3069, 3070, 7, 17, 0, 0, 3070, 3071, 7, 6, 0, 0, 3071, 3072, 7, 12, 0, 0, 3072, 3073, 7, 8, 0, 0, 3073, 3074, 7, 22, 0, 0, 3074, 462, 1, 0, 0, 0, 3075, 3076, 7, 17, 0, 0, 3076, 3077, 7, 6, 0, 0, 3077, 3078, 7, 11, 0, 0, 3078, 3079, 7, 9, 0, 0, 3079, 464, 1, 0, 0, 0, 3080, 3081, 7, 17, 0, 0, 3081, 3082, 7, 21, 0, 0, 3082, 3083, 7, 5, 0, 0, 3083, 3084, 7, 8, 0, 0, 3084, 3085, 7, 19, 0, 0, 3085, 3086, 7, 4, 0, 0, 3086, 3087, 7, 9, 0, 0, 3087, 3088, 7, 8, 0, 0, 3088, 466, 1, 0, 0, 0, 3089, 3090, 7, 12, 0, 0, 3090, 3091, 7, 2, 0, 0, 3091, 3092, 7, 8, 0, 0, 3092, 3093, 7, 19, 0, 0, 3093, 3094, 7, 6, 0, 0, 3094, 3095, 7, 12, 0, 0, 3095, 3096, 7, 2, 0, 0, 3096, 3097, 7, 5, 0, 0, 3097, 468, 1, 0, 0, 0, 3098, 3099, 7, 12, 0, 0, 3099, 3100, 7, 2, 0, 0, 3100, 3101, 7, 8, 0, 0, 3101, 3102, 7, 21, 0, 0, 3102, 3103, 7, 11, 0, 0, 3103, 3104, 7, 2, 0, 0, 3104, 3105, 7, 5, 0, 0, 3105, 470, 1, 0, 0, 0, 3106, 3107, 7, 12, 0, 0, 3107, 3108, 7, 7, 0, 0, 3108, 3109, 7, 22, 0, 0, 3109, 3110, 7, 2, 0, 0, 3110, 3111, 7, 11, 0, 0, 3111, 472, 1, 0, 0, 0, 3112, 3113, 7, 12, 0, 0, 3113, 3114, 7, 7, 0, 0, 3114, 3115, 7, 5, 0, 0, 3115, 3116, 7, 6, 0, 0, 3116, 3117, 7, 3, 0, 0, 3117, 474, 1, 0, 0, 0, 3118, 3119, 7, 12, 0, 0, 3119, 3120, 7, 9, 0, 0, 3120, 3121, 7, 10, 0, 0, 3121, 476, 1, 0, 0, 0, 3122, 3123, 7, 12, 0, 0, 3123, 3124, 7, 9, 0, 0, 3124, 3125, 7, 18, 0, 0, 3125, 3126, 7, 8, 0, 0, 3126, 478, 1, 0, 0, 0, 3127, 3128, 7, 12, 0, 0, 3128, 3129, 7, 6, 0, 0, 3129, 480, 1, 0, 0, 0, 3130, 3131, 7, 12, 0, 0, 3131, 3132, 7, 6, 0, 0, 3132, 3133, 7, 12, 0, 0, 3133, 3134, 7, 9, 0, 0, 3134, 482, 1, 0, 0, 0, 3135, 3136, 7, 12, 0, 0, 3136, 3137, 7, 6, 0, 0, 3137, 3138, 7, 11, 0, 0, 3138, 3139, 7, 17, 0, 0, 3139, 3140, 7, 2, 0, 0, 3140, 3141, 7, 5, 0, 0, 3141, 3142, 7, 19, 0, 0, 3142, 3143, 7, 14, 0, 0, 3143, 3144, 7, 9, 0, 0, 3144, 484, 1, 0, 0, 0, 3145, 3146, 7, 12, 0, 0, 3146, 3147, 7, 6, 0, 0, 3147, 3148, 7, 8, 0, 0, 3148, 486, 1, 0, 0, 0, 3149, 3150, 7, 12, 0, 0, 3150, 3151, 7, 8, 0, 0, 3151, 3152, 7, 22, 0, 0, 3152, 3153, 5, 95, 0, 0, 3153, 3154, 7, 20, 0, 0, 3154, 3155, 7, 2, 0, 0, 3155, 3156, 7, 5, 0, 0, 3156, 3157, 7, 21, 0, 0, 3157, 3158, 7, 9, 0, 0, 3158, 488, 1, 0, 0, 0, 3159, 3160, 7, 12, 0, 0, 3160, 3161, 7, 8, 0, 0, 3161, 3162, 7, 19, 0, 0, 3162, 3163, 7, 5, 0, 0, 3163, 3164, 7, 9, 0, 0, 3164, 490, 1, 0, 0, 0, 3165, 3166, 7, 12, 0, 0, 3166, 3167, 7, 21, 0, 0, 3167, 3168, 7, 5, 0, 0, 3168, 3169, 7, 5, 0, 0, 3169, 492, 1, 0, 0, 0, 3170, 3171, 7, 12, 0, 0, 3171, 3172, 7, 21, 0, 0, 3172, 3173, 7, 5, 0, 0, 3173, 3174, 7, 5, 0, 0, 3174, 3175, 7, 19, 0, 0, 3175, 3176, 7, 23, 0, 0, 3176, 494, 1, 0, 0, 0, 3177, 3178, 7, 12, 0, 0, 3178, 3179, 7, 21, 0, 0, 3179, 3180, 7, 17, 0, 0, 3180, 3181, 7, 9, 0, 0, 3181, 3182, 7, 11, 0, 0, 3182, 3183, 7, 19, 0, 0, 3183, 3184, 7, 7, 0, 0, 3184, 496, 1, 0, 0, 0, 3185, 3186, 7, 6, 0, 0, 3186, 3187, 7, 7, 0, 0, 3187, 3188, 7, 7, 0, 0, 3188, 3189, 7, 21, 0, 0, 3189, 3190, 7, 11, 0, 0, 3190, 3191, 7, 11, 0, 0, 3191, 3192, 7, 9, 0, 0, 3192, 3193, 7, 12, 0, 0, 3193, 3194, 7, 7, 0, 0, 3194, 3195, 7, 9, 0, 0, 3195, 3196, 7, 4, 0, 0, 3196, 3197, 5, 95, 0, 0, 3197, 3198, 7, 11, 0, 0, 3198, 3199, 7, 9, 0, 0, 3199, 3200, 7, 16, 0, 0, 3200, 3201, 7, 9, 0, 0, 3201, 3202, 7, 18, 0, 0, 3202, 498, 1, 0, 0, 0, 3203, 3204, 7, 6, 0, 0, 3204, 3205, 7, 7, 0, 0, 3205, 3206, 7, 8, 0, 0, 3206, 3207, 7, 9, 0, 0, 3207, 3208, 7, 8, 0, 0, 3208, 3209, 5, 95, 0, 0, 3209, 3210, 7, 5, 0, 0, 3210, 3211, 7, 9, 0, 0, 3211, 3212, 7, 12, 0, 0, 3212, 3213, 7, 16, 0, 0, 3213, 3214, 7, 8, 0, 0, 3214, 3215, 7, 22, 0, 0, 3215, 500, 1, 0, 0, 0, 3216, 3217, 7, 6, 0, 0, 3217, 3218, 7, 23, 0, 0, 3218, 502, 1, 0, 0, 0, 3219, 3220, 7, 6, 0, 0, 3220, 3221, 7, 23, 0, 0, 3221, 3222, 7, 23, 0, 0, 3222, 3223, 7, 4, 0, 0, 3223, 3224, 7, 9, 0, 0, 3224, 3225, 7, 8, 0, 0, 3225, 504, 1, 0, 0, 0, 3226, 3227, 7, 6, 0, 0, 3227, 3228, 7, 5, 0, 0, 3228, 3229, 7, 15, 0, 0, 3229, 506, 1, 0, 0, 0, 3230, 3231, 7, 6, 0, 0, 3231, 3232, 7, 17, 0, 0, 3232, 3233, 7, 19, 0, 0, 3233, 3234, 7, 8, 0, 0, 3234, 508, 1, 0, 0, 0, 3235, 3236, 7, 6, 0, 0, 3236, 3237, 7, 12, 0, 0, 3237, 510, 1, 0, 0, 0, 3238, 3239, 7, 6, 0, 0, 3239, 3240, 7, 12, 0, 0, 3240, 3241, 7, 9, 0, 0, 3241, 512, 1, 0, 0, 0, 3242, 3243, 7, 6, 0, 0, 3243, 3244, 7, 12, 0, 0, 3244, 3245, 7, 5, 0, 0, 3245, 3246, 7, 13, 0, 0, 3246, 514, 1, 0, 0, 0, 3247, 3248, 7, 6, 0, 0, 3248, 3249, 7, 24, 0, 0, 3249, 3250, 7, 9, 0, 0, 3250, 3251, 7, 12, 0, 0, 3251, 516, 1, 0, 0, 0, 3252, 3253, 7, 6, 0, 0, 3253, 3254, 7, 11, 0, 0, 3254, 518, 1, 0, 0, 0, 3255, 3256, 7, 6, 0, 0, 3256, 3257, 7, 11, 0, 0, 3257, 3258, 7, 15, 0, 0, 3258, 3259, 7, 9, 0, 0, 3259, 3260, 7, 11, 0, 0, 3260, 520, 1, 0, 0, 0, 3261, 3262, 7, 6, 0, 0, 3262, 3263, 7, 11, 0, 0, 3263, 3264, 7, 15, 0, 0, 3264, 3265, 7, 19, 0, 0, 3265, 3266, 7, 12, 0, 0, 3266, 3267, 7, 2, 0, 0, 3267, 3268, 7, 5, 0, 0, 3268, 522, 1, 0, 0, 0, 3269, 3270, 7, 6, 0, 0, 3270, 3271, 7, 21, 0, 0, 3271, 3272, 7, 8, 0, 0, 3272, 524, 1, 0, 0, 0, 3273, 3274, 7, 6, 0, 0, 3274, 3275, 7, 21, 0, 0, 3275, 3276, 7, 8, 0, 0, 3276, 3277, 7, 9, 0, 0, 3277, 3278, 7, 11, 0, 0, 3278, 526, 1, 0, 0, 0, 3279, 3280, 7, 6, 0, 0, 3280, 3281, 7, 20, 0, 0, 3281, 3282, 7, 9, 0, 0, 3282, 3283, 7, 11, 0, 0, 3283, 528, 1, 0, 0, 0, 3284, 3285, 7, 6, 0, 0, 3285, 3286, 7, 20, 0, 0, 3286, 3287, 7, 9, 0, 0, 3287, 3288, 7, 11, 0, 0, 3288, 3289, 7, 5, 0, 0, 3289, 3290, 7, 2, 0, 0, 3290, 3291, 7, 24, 0, 0, 3291, 3292, 7, 4, 0, 0, 3292, 530, 1, 0, 0, 0, 3293, 3294, 7, 6, 0, 0, 3294, 3295, 7, 20, 0, 0, 3295, 3296, 7, 9, 0, 0, 3296, 3297, 7, 11, 0, 0, 3297, 3298, 7, 5, 0, 0, 3298, 3299, 7, 2, 0, 0, 3299, 3300, 7, 13, 0, 0, 3300, 532, 1, 0, 0, 0, 3301, 3302, 7, 6, 0, 0, 3302, 3303, 7, 20, 0, 0, 3303, 3304, 7, 9, 0, 0, 3304, 3305, 7, 11, 0, 0, 3305, 3306, 7, 10, 0, 0, 3306, 3307, 7, 11, 0, 0, 3307, 3308, 7, 19, 0, 0, 3308, 3309, 7, 8, 0, 0, 3309, 3310, 7, 9, 0, 0, 3310, 534, 1, 0, 0, 0, 3311, 3312, 7, 6, 0, 0, 3312, 3313, 7, 20, 0, 0, 3313, 3314, 7, 9, 0, 0, 3314, 3315, 7, 11, 0, 0, 3315, 3316, 7, 10, 0, 0, 3316, 3317, 7, 11, 0, 0, 3317, 3318, 7, 19, 0, 0, 3318, 3319, 7, 8, 0, 0, 3319, 3320, 7, 19, 0, 0, 3320, 3321, 7, 12, 0, 0, 3321, 3322, 7, 16, 0, 0, 3322, 536, 1, 0, 0, 0, 3323, 3324, 7, 24, 0, 0, 3324, 3325, 7, 2, 0, 0, 3325, 3326, 7, 11, 0, 0, 3326, 3327, 7, 2, 0, 0, 3327, 3328, 7, 17, 0, 0, 3328, 3329, 7, 9, 0, 0, 3329, 3330, 7, 8, 0, 0, 3330, 3331, 7, 9, 0, 0, 3331, 3332, 7, 11, 0, 0, 3332, 538, 1, 0, 0, 0, 3333, 3334, 7, 24, 0, 0, 3334, 3335, 7, 2, 0, 0, 3335, 3336, 7, 11, 0, 0, 3336, 3337, 7, 8, 0, 0, 3337, 3338, 7, 19, 0, 0, 3338, 3339, 7, 8, 0, 0, 3339, 3340, 7, 19, 0, 0, 3340, 3341, 7, 6, 0, 0, 3341, 3342, 7, 12, 0, 0, 3342, 540, 1, 0, 0, 0, 3343, 3344, 7, 24, 0, 0, 3344, 3345, 7, 2, 0, 0, 3345, 3346, 7, 11, 0, 0, 3346, 3347, 7, 8, 0, 0, 3347, 3348, 7, 19, 0, 0, 3348, 3349, 7, 8, 0, 0, 3349, 3350, 7, 19, 0, 0, 3350, 3351, 7, 6, 0, 0, 3351, 3352, 7, 12, 0, 0, 3352, 3353, 7, 9, 0, 0, 3353, 3354, 7, 15, 0, 0, 3354, 542, 1, 0, 0, 0, 3355, 3356, 7, 24, 0, 0, 3356, 3357, 7, 2, 0, 0, 3357, 3358, 7, 11, 0, 0, 3358, 3359, 7, 8, 0, 0, 3359, 3360, 7, 19, 0, 0, 3360, 3361, 7, 8, 0, 0, 3361, 3362, 7, 19, 0, 0, 3362, 3363, 7, 6, 0, 0, 3363, 3364, 7, 12, 0, 0, 3364, 3365, 7, 4, 0, 0, 3365, 544, 1, 0, 0, 0, 3366, 3367, 7, 24, 0, 0, 3367, 3368, 7, 2, 0, 0, 3368, 3369, 7, 8, 0, 0, 3369, 3370, 7, 8, 0, 0, 3370, 3371, 7, 9, 0, 0, 3371, 3372, 7, 11, 0, 0, 3372, 3373, 7, 12, 0, 0, 3373, 546, 1, 0, 0, 0, 3374, 3375, 7, 24, 0, 0, 3375, 3376, 7, 9, 0, 0, 3376, 3377, 7, 11, 0, 0, 3377, 548, 1, 0, 0, 0, 3378, 3379, 7, 24, 0, 0, 3379, 3380, 7, 9, 0, 0, 3380, 3381, 7, 11, 0, 0, 3381, 3382, 7, 7, 0, 0, 3382, 3383, 7, 9, 0, 0, 3383, 3384, 7, 12, 0, 0, 3384, 3385, 7, 8, 0, 0, 3385, 550, 1, 0, 0, 0, 3386, 3387, 7, 24, 0, 0, 3387, 3388, 7, 9, 0, 0, 3388, 3389, 7, 11, 0, 0, 3389, 3390, 7, 7, 0, 0, 3390, 3391, 7, 9, 0, 0, 3391, 3392, 7, 12, 0, 0, 3392, 3393, 7, 8, 0, 0, 3393, 3394, 7, 19, 0, 0, 3394, 3395, 7, 5, 0, 0, 3395, 3396, 7, 9, 0, 0, 3396, 3397, 5, 95, 0, 0, 3397, 3398, 7, 7, 0, 0, 3398, 3399, 7, 6, 0, 0, 3399, 3400, 7, 12, 0, 0, 3400, 3401, 7, 8, 0, 0, 3401, 552, 1, 0, 0, 0, 3402, 3403, 7, 24, 0, 0, 3403, 3404, 7, 9, 0, 0, 3404, 3405, 7, 11, 0, 0, 3405, 3406, 7, 7, 0, 0, 3406, 3407, 7, 9, 0, 0, 3407, 3408, 7, 12, 0, 0, 3408, 3409, 7, 8, 0, 0, 3409, 3410, 7, 19, 0, 0, 3410, 3411, 7, 5, 0, 0, 3411, 3412, 7, 9, 0, 0, 3412, 3413, 5, 95, 0, 0, 3413, 3414, 7, 15, 0, 0, 3414, 3415, 7, 19, 0, 0, 3415, 3416, 7, 4, 0, 0, 3416, 3417, 7, 7, 0, 0, 3417, 554, 1, 0, 0, 0, 3418, 3419, 7, 24, 0, 0, 3419, 3420, 7, 9, 0, 0, 3420, 3421, 7, 11, 0, 0, 3421, 3422, 7, 7, 0, 0, 3422, 3423, 7, 9, 0, 0, 3423, 3424, 7, 12, 0, 0, 3424, 3425, 7, 8, 0, 0, 3425, 3426, 5, 95, 0, 0, 3426, 3427, 7, 11, 0, 0, 3427, 3428, 7, 2, 0, 0, 3428, 3429, 7, 12, 0, 0, 3429, 3430, 7, 25, 0, 0, 3430, 556, 1, 0, 0, 0, 3431, 3432, 7, 24, 0, 0, 3432, 3433, 7, 9, 0, 0, 3433, 3434, 7, 11, 0, 0, 3434, 3435, 7, 19, 0, 0, 3435, 3436, 7, 6, 0, 0, 3436, 3437, 7, 15, 0, 0, 3437, 558, 1, 0, 0, 0, 3438, 3439, 7, 24, 0, 0, 3439, 3440, 7, 9, 0, 0, 3440, 3441, 7, 11, 0, 0, 3441, 3442, 7, 17, 0, 0, 3442, 3443, 7, 21, 0, 0, 3443, 3444, 7, 8, 0, 0, 3444, 3445, 7, 9, 0, 0, 3445, 560, 1, 0, 0, 0, 3446, 3447, 7, 11, 0, 0, 3447, 3448, 7, 9, 0, 0, 3448, 3449, 7, 8, 0, 0, 3449, 3450, 7, 21, 0, 0, 3450, 3451, 7, 11, 0, 0, 3451, 3452, 7, 12, 0, 0, 3452, 3453, 7, 19, 0, 0, 3453, 3454, 7, 12, 0, 0, 3454, 3455, 7, 16, 0, 0, 3455, 562, 1, 0, 0, 0, 3456, 3457, 7, 24, 0, 0, 3457, 3458, 7, 19, 0, 0, 3458, 3459, 7, 20, 0, 0, 3459, 3460, 7, 6, 0, 0, 3460, 3461, 7, 8, 0, 0, 3461, 564, 1, 0, 0, 0, 3462, 3463, 7, 24, 0, 0, 3463, 3464, 7, 6, 0, 0, 3464, 3465, 7, 11, 0, 0, 3465, 3466, 7, 8, 0, 0, 3466, 3467, 7, 19, 0, 0, 3467, 3468, 7, 6, 0, 0, 3468, 3469, 7, 12, 0, 0, 3469, 566, 1, 0, 0, 0, 3470, 3471, 7, 24, 0, 0, 3471, 3472, 7, 6, 0, 0, 3472, 3473, 7, 4, 0, 0, 3473, 3474, 7, 19, 0, 0, 3474, 3475, 7, 8, 0, 0, 3475, 3476, 7, 19, 0, 0, 3476, 3477, 7, 6, 0, 0, 3477, 3478, 7, 12, 0, 0, 3478, 568, 1, 0, 0, 0, 3479, 3480, 7, 24, 0, 0, 3480, 3481, 7, 6, 0, 0, 3481, 3482, 7, 4, 0, 0, 3482, 3483, 7, 19, 0, 0, 3483, 3484, 7, 8, 0, 0, 3484, 3485, 7, 19, 0, 0, 3485, 3486, 7, 6, 0, 0, 3486, 3487, 7, 12, 0, 0, 3487, 3488, 5, 95, 0, 0, 3488, 3489, 7, 11, 0, 0, 3489, 3490, 7, 9, 0, 0, 3490, 3491, 7, 16, 0, 0, 3491, 3492, 7, 9, 0, 0, 3492, 3493, 7, 18, 0, 0, 3493, 570, 1, 0, 0, 0, 3494, 3495, 7, 24, 0, 0, 3495, 3496, 7, 6, 0, 0, 3496, 3497, 7, 10, 0, 0, 3497, 3498, 7, 9, 0, 0, 3498, 3499, 7, 11, 0, 0, 3499, 572, 1, 0, 0, 0, 3500, 3501, 7, 24, 0, 0, 3501, 3502, 7, 11, 0, 0, 3502, 3503, 7, 9, 0, 0, 3503, 3504, 7, 7, 0, 0, 3504, 3505, 7, 9, 0, 0, 3505, 3506, 7, 15, 0, 0, 3506, 3507, 7, 9, 0, 0, 3507, 3508, 7, 4, 0, 0, 3508, 574, 1, 0, 0, 0, 3509, 3510, 7, 24, 0, 0, 3510, 3511, 7, 11, 0, 0, 3511, 3512, 7, 9, 0, 0, 3512, 3513, 7, 7, 0, 0, 3513, 3514, 7, 19, 0, 0, 3514, 3515, 7, 4, 0, 0, 3515, 3516, 7, 19, 0, 0, 3516, 3517, 7, 6, 0, 0, 3517, 3518, 7, 12, 0, 0, 3518, 576, 1, 0, 0, 0, 3519, 3520, 7, 24, 0, 0, 3520, 3521, 7, 11, 0, 0, 3521, 3522, 7, 9, 0, 0, 3522, 3523, 7, 24, 0, 0, 3523, 3524, 7, 2, 0, 0, 3524, 3525, 7, 11, 0, 0, 3525, 3526, 7, 9, 0, 0, 3526, 578, 1, 0, 0, 0, 3527, 3528, 7, 24, 0, 0, 3528, 3529, 7, 11, 0, 0, 3529, 3530, 7, 9, 0, 0, 3530, 3531, 7, 20, 0, 0, 3531, 580, 1, 0, 0, 0, 3532, 3533, 7, 24, 0, 0, 3533, 3534, 7, 11, 0, 0, 3534, 3535, 7, 19, 0, 0, 3535, 3536, 7, 17, 0, 0, 3536, 3537, 7, 2, 0, 0, 3537, 3538, 7, 11, 0, 0, 3538, 3539, 7, 13, 0, 0, 3539, 582, 1, 0, 0, 0, 3540, 3541, 7, 24, 0, 0, 3541, 3542, 7, 11, 0, 0, 3542, 3543, 7, 6, 0, 0, 3543, 3544, 7, 7, 0, 0, 3544, 3545, 7, 9, 0, 0, 3545, 3546, 7, 15, 0, 0, 3546, 3547, 7, 21, 0, 0, 3547, 3548, 7, 11, 0, 0, 3548, 3549, 7, 9, 0, 0, 3549, 584, 1, 0, 0, 0, 3550, 3551, 7, 26, 0, 0, 3551, 3552, 7, 21, 0, 0, 3552, 3553, 7, 2, 0, 0, 3553, 3554, 7, 5, 0, 0, 3554, 3555, 7, 19, 0, 0, 3555, 3556, 7, 23, 0, 0, 3556, 3557, 7, 13, 0, 0, 3557, 586, 1, 0, 0, 0, 3558, 3559, 7, 26, 0, 0, 3559, 3560, 7, 21, 0, 0, 3560, 3561, 7, 2, 0, 0, 3561, 3562, 7, 11, 0, 0, 3562, 3563, 7, 8, 0, 0, 3563, 3564, 7, 9, 0, 0, 3564, 3565, 7, 11, 0, 0, 3565, 3566, 7, 4, 0, 0, 3566, 588, 1, 0, 0, 0, 3567, 3568, 7, 11, 0, 0, 3568, 3569, 7, 2, 0, 0, 3569, 3570, 7, 12, 0, 0, 3570, 3571, 7, 16, 0, 0, 3571, 3572, 7, 9, 0, 0, 3572, 590, 1, 0, 0, 0, 3573, 3574, 7, 11, 0, 0, 3574, 3575, 7, 2, 0, 0, 3575, 3576, 7, 12, 0, 0, 3576, 3577, 7, 25, 0, 0, 3577, 592, 1, 0, 0, 0, 3578, 3579, 7, 11, 0, 0, 3579, 3580, 7, 2, 0, 0, 3580, 3581, 7, 10, 0, 0, 3581, 594, 1, 0, 0, 0, 3582, 3583, 7, 11, 0, 0, 3583, 3584, 7, 9, 0, 0, 3584, 3585, 7, 2, 0, 0, 3585, 3586, 7, 15, 0, 0, 3586, 3587, 7, 4, 0, 0, 3587, 596, 1, 0, 0, 0, 3588, 3589, 7, 11, 0, 0, 3589, 3590, 7, 9, 0, 0, 3590, 3591, 7, 2, 0, 0, 3591, 3592, 7, 5, 0, 0, 3592, 598, 1, 0, 0, 0, 3593, 3594, 7, 11, 0, 0, 3594, 3595, 7, 9, 0, 0, 3595, 3596, 7, 7, 0, 0, 3596, 3597, 7, 21, 0, 0, 3597, 3598, 7, 11, 0, 0, 3598, 3599, 7, 4, 0, 0, 3599, 3600, 7, 19, 0, 0, 3600, 3601, 7, 20, 0, 0, 3601, 3602, 7, 9, 0, 0, 3602, 600, 1, 0, 0, 0, 3603, 3604, 7, 11, 0, 0, 3604, 3605, 7, 9, 0, 0, 3605, 3606, 7, 23, 0, 0, 3606, 602, 1, 0, 0, 0, 3607, 3608, 7, 11, 0, 0, 3608, 3609, 7, 9, 0, 0, 3609, 3610, 7, 23, 0, 0, 3610, 3611, 7, 9, 0, 0, 3611, 3612, 7, 11, 0, 0, 3612, 3613, 7, 9, 0, 0, 3613, 3614, 7, 12, 0, 0, 3614, 3615, 7, 7, 0, 0, 3615, 3616, 7, 9, 0, 0, 3616, 3617, 7, 4, 0, 0, 3617, 604, 1, 0, 0, 0, 3618, 3619, 7, 11, 0, 0, 3619, 3620, 7, 9, 0, 0, 3620, 3621, 7, 23, 0, 0, 3621, 3622, 7, 9, 0, 0, 3622, 3623, 7, 11, 0, 0, 3623, 3624, 7, 9, 0, 0, 3624, 3625, 7, 12, 0, 0, 3625, 3626, 7, 7, 0, 0, 3626, 3627, 7, 19, 0, 0, 3627, 3628, 7, 12, 0, 0, 3628, 3629, 7, 16, 0, 0, 3629, 606, 1, 0, 0, 0, 3630, 3631, 7, 11, 0, 0, 3631, 3632, 7, 9, 0, 0, 3632, 3633, 7, 16, 0, 0, 3633, 3634, 7, 11, 0, 0, 3634, 3635, 5, 95, 0, 0, 3635, 3636, 7, 2, 0, 0, 3636, 3637, 7, 20, 0, 0, 3637, 3638, 7, 16, 0, 0, 3638, 3639, 7, 18, 0, 0, 3639, 608, 1, 0, 0, 0, 3640, 3641, 7, 11, 0, 0, 3641, 3642, 7, 9, 0, 0, 3642, 3643, 7, 16, 0, 0, 3643, 3644, 7, 11, 0, 0, 3644, 3645, 5, 95, 0, 0, 3645, 3646, 7, 2, 0, 0, 3646, 3647, 7, 20, 0, 0, 3647, 3648, 7, 16, 0, 0, 3648, 3649, 7, 13, 0, 0, 3649, 610, 1, 0, 0, 0, 3650, 3651, 7, 11, 0, 0, 3651, 3652, 7, 9, 0, 0, 3652, 3653, 7, 16, 0, 0, 3653, 3654, 7, 11, 0, 0, 3654, 3655, 5, 95, 0, 0, 3655, 3656, 7, 7, 0, 0, 3656, 3657, 7, 6, 0, 0, 3657, 3658, 7, 21, 0, 0, 3658, 3659, 7, 12, 0, 0, 3659, 3660, 7, 8, 0, 0, 3660, 612, 1, 0, 0, 0, 3661, 3662, 7, 11, 0, 0, 3662, 3663, 7, 9, 0, 0, 3663, 3664, 7, 16, 0, 0, 3664, 3665, 7, 11, 0, 0, 3665, 3666, 5, 95, 0, 0, 3666, 3667, 7, 19, 0, 0, 3667, 3668, 7, 12, 0, 0, 3668, 3669, 7, 8, 0, 0, 3669, 3670, 7, 9, 0, 0, 3670, 3671, 7, 11, 0, 0, 3671, 3672, 7, 7, 0, 0, 3672, 3673, 7, 9, 0, 0, 3673, 3674, 7, 24, 0, 0, 3674, 3675, 7, 8, 0, 0, 3675, 614, 1, 0, 0, 0, 3676, 3677, 7, 11, 0, 0, 3677, 3678, 7, 9, 0, 0, 3678, 3679, 7, 16, 0, 0, 3679, 3680, 7, 11, 0, 0, 3680, 3681, 5, 95, 0, 0, 3681, 3682, 7, 11, 0, 0, 3682, 3683, 5, 50, 0, 0, 3683, 616, 1, 0, 0, 0, 3684, 3685, 7, 11, 0, 0, 3685, 3686, 7, 9, 0, 0, 3686, 3687, 7, 16, 0, 0, 3687, 3688, 7, 11, 0, 0, 3688, 3689, 5, 95, 0, 0, 3689, 3690, 7, 4, 0, 0, 3690, 3691, 7, 5, 0, 0, 3691, 3692, 7, 6, 0, 0, 3692, 3693, 7, 24, 0, 0, 3693, 3694, 7, 9, 0, 0, 3694, 618, 1, 0, 0, 0, 3695, 3696, 7, 11, 0, 0, 3696, 3697, 7, 9, 0, 0, 3697, 3698, 7, 16, 0, 0, 3698, 3699, 7, 11, 0, 0, 3699, 3700, 5, 95, 0, 0, 3700, 3701, 7, 4, 0, 0, 3701, 3702, 7, 18, 0, 0, 3702, 3703, 7, 18, 0, 0, 3703, 620, 1, 0, 0, 0, 3704, 3705, 7, 11, 0, 0, 3705, 3706, 7, 9, 0, 0, 3706, 3707, 7, 16, 0, 0, 3707, 3708, 7, 11, 0, 0, 3708, 3709, 5, 95, 0, 0, 3709, 3710, 7, 4, 0, 0, 3710, 3711, 7, 18, 0, 0, 3711, 3712, 7, 13, 0, 0, 3712, 622, 1, 0, 0, 0, 3713, 3714, 7, 11, 0, 0, 3714, 3715, 7, 9, 0, 0, 3715, 3716, 7, 16, 0, 0, 3716, 3717, 7, 11, 0, 0, 3717, 3718, 5, 95, 0, 0, 3718, 3719, 7, 4, 0, 0, 3719, 3720, 7, 13, 0, 0, 3720, 3721, 7, 13, 0, 0, 3721, 624, 1, 0, 0, 0, 3722, 3723, 7, 11, 0, 0, 3723, 3724, 7, 9, 0, 0, 3724, 3725, 7, 5, 0, 0, 3725, 3726, 7, 9, 0, 0, 3726, 3727, 7, 2, 0, 0, 3727, 3728, 7, 4, 0, 0, 3728, 3729, 7, 9, 0, 0, 3729, 626, 1, 0, 0, 0, 3730, 3731, 7, 11, 0, 0, 3731, 3732, 7, 9, 0, 0, 3732, 3733, 7, 12, 0, 0, 3733, 3734, 7, 2, 0, 0, 3734, 3735, 7, 17, 0, 0, 3735, 3736, 7, 9, 0, 0, 3736, 628, 1, 0, 0, 0, 3737, 3738, 7, 11, 0, 0, 3738, 3739, 7, 9, 0, 0, 3739, 3740, 7, 4, 0, 0, 3740, 3741, 7, 9, 0, 0, 3741, 3742, 7, 8, 0, 0, 3742, 630, 1, 0, 0, 0, 3743, 3744, 7, 11, 0, 0, 3744, 3745, 7, 9, 0, 0, 3745, 3746, 7, 4, 0, 0, 3746, 3747, 7, 21, 0, 0, 3747, 3748, 7, 5, 0, 0, 3748, 3749, 7, 8, 0, 0, 3749, 632, 1, 0, 0, 0, 3750, 3751, 7, 11, 0, 0, 3751, 3752, 7, 9, 0, 0, 3752, 3753, 7, 8, 0, 0, 3753, 3754, 7, 21, 0, 0, 3754, 3755, 7, 11, 0, 0, 3755, 3756, 7, 12, 0, 0, 3756, 634, 1, 0, 0, 0, 3757, 3758, 7, 11, 0, 0, 3758, 3759, 7, 9, 0, 0, 3759, 3760, 7, 8, 0, 0, 3760, 3761, 7, 21, 0, 0, 3761, 3762, 7, 11, 0, 0, 3762, 3763, 7, 12, 0, 0, 3763, 3764, 7, 4, 0, 0, 3764, 636, 1, 0, 0, 0, 3765, 3766, 7, 11, 0, 0, 3766, 3767, 7, 9, 0, 0, 3767, 3768, 7, 20, 0, 0, 3768, 3769, 7, 6, 0, 0, 3769, 3770, 7, 25, 0, 0, 3770, 3771, 7, 9, 0, 0, 3771, 638, 1, 0, 0, 0, 3772, 3773, 7, 11, 0, 0, 3773, 3774, 7, 19, 0, 0, 3774, 3775, 7, 16, 0, 0, 3775, 3776, 7, 22, 0, 0, 3776, 3777, 7, 8, 0, 0, 3777, 640, 1, 0, 0, 0, 3778, 3779, 7, 11, 0, 0, 3779, 3780, 7, 5, 0, 0, 3780, 3781, 7, 19, 0, 0, 3781, 3782, 7, 25, 0, 0, 3782, 3783, 7, 9, 0, 0, 3783, 642, 1, 0, 0, 0, 3784, 3785, 7, 11, 0, 0, 3785, 3786, 7, 6, 0, 0, 3786, 3787, 7, 5, 0, 0, 3787, 3788, 7, 5, 0, 0, 3788, 3789, 7, 3, 0, 0, 3789, 3790, 7, 2, 0, 0, 3790, 3791, 7, 7, 0, 0, 3791, 3792, 7, 25, 0, 0, 3792, 644, 1, 0, 0, 0, 3793, 3794, 7, 11, 0, 0, 3794, 3795, 7, 6, 0, 0, 3795, 3796, 7, 5, 0, 0, 3796, 3797, 7, 5, 0, 0, 3797, 3798, 7, 21, 0, 0, 3798, 3799, 7, 24, 0, 0, 3799, 646, 1, 0, 0, 0, 3800, 3801, 7, 11, 0, 0, 3801, 3802, 7, 6, 0, 0, 3802, 3803, 7, 10, 0, 0, 3803, 648, 1, 0, 0, 0, 3804, 3805, 7, 11, 0, 0, 3805, 3806, 7, 6, 0, 0, 3806, 3807, 7, 10, 0, 0, 3807, 3808, 7, 4, 0, 0, 3808, 650, 1, 0, 0, 0, 3809, 3810, 7, 11, 0, 0, 3810, 3811, 7, 6, 0, 0, 3811, 3812, 7, 10, 0, 0, 3812, 3813, 5, 95, 0, 0, 3813, 3814, 7, 12, 0, 0, 3814, 3815, 7, 21, 0, 0, 3815, 3816, 7, 17, 0, 0, 3816, 3817, 7, 3, 0, 0, 3817, 3818, 7, 9, 0, 0, 3818, 3819, 7, 11, 0, 0, 3819, 652, 1, 0, 0, 0, 3820, 3821, 7, 11, 0, 0, 3821, 3822, 7, 21, 0, 0, 3822, 3823, 7, 12, 0, 0, 3823, 3824, 7, 12, 0, 0, 3824, 3825, 7, 19, 0, 0, 3825, 3826, 7, 12, 0, 0, 3826, 3827, 7, 16, 0, 0, 3827, 654, 1, 0, 0, 0, 3828, 3829, 7, 4, 0, 0, 3829, 3830, 7, 2, 0, 0, 3830, 3831, 7, 23, 0, 0, 3831, 3832, 7, 9, 0, 0, 3832, 3833, 5, 95, 0, 0, 3833, 3834, 7, 7, 0, 0, 3834, 3835, 7, 2, 0, 0, 3835, 3836, 7, 4, 0, 0, 3836, 3837, 7, 8, 0, 0, 3837, 656, 1, 0, 0, 0, 3838, 3839, 7, 4, 0, 0, 3839, 3840, 7, 2, 0, 0, 3840, 3841, 7, 23, 0, 0, 3841, 3842, 7, 9, 0, 0, 3842, 3843, 5, 95, 0, 0, 3843, 3844, 7, 6, 0, 0, 3844, 3845, 7, 23, 0, 0, 3845, 3846, 7, 23, 0, 0, 3846, 3847, 7, 4, 0, 0, 3847, 3848, 7, 9, 0, 0, 3848, 3849, 7, 8, 0, 0, 3849, 658, 1, 0, 0, 0, 3850, 3851, 7, 4, 0, 0, 3851, 3852, 7, 2, 0, 0, 3852, 3853, 7, 23, 0, 0, 3853, 3854, 7, 9, 0, 0, 3854, 3855, 5, 95, 0, 0, 3855, 3856, 7, 6, 0, 0, 3856, 3857, 7, 11, 0, 0, 3857, 3858, 7, 15, 0, 0, 3858, 3859, 7, 19, 0, 0, 3859, 3860, 7, 12, 0, 0, 3860, 3861, 7, 2, 0, 0, 3861, 3862, 7, 5, 0, 0, 3862, 660, 1, 0, 0, 0, 3863, 3864, 7, 4, 0, 0, 3864, 3865, 7, 2, 0, 0, 3865, 3866, 7, 8, 0, 0, 3866, 3867, 7, 21, 0, 0, 3867, 3868, 7, 11, 0, 0, 3868, 3869, 7, 15, 0, 0, 3869, 3870, 7, 2, 0, 0, 3870, 3871, 7, 13, 0, 0, 3871, 662, 1, 0, 0, 0, 3872, 3873, 7, 4, 0, 0, 3873, 3874, 7, 2, 0, 0, 3874, 3875, 7, 20, 0, 0, 3875, 3876, 7, 9, 0, 0, 3876, 3877, 7, 24, 0, 0, 3877, 3878, 7, 6, 0, 0, 3878, 3879, 7, 19, 0, 0, 3879, 3880, 7, 12, 0, 0, 3880, 3881, 7, 8, 0, 0, 3881, 664, 1, 0, 0, 0, 3882, 3883, 7, 4, 0, 0, 3883, 3884, 7, 7, 0, 0, 3884, 3885, 7, 2, 0, 0, 3885, 3886, 7, 5, 0, 0, 3886, 3887, 7, 2, 0, 0, 3887, 666, 1, 0, 0, 0, 3888, 3889, 7, 4, 0, 0, 3889, 3890, 7, 7, 0, 0, 3890, 3891, 7, 6, 0, 0, 3891, 3892, 7, 24, 0, 0, 3892, 3893, 7, 9, 0, 0, 3893, 668, 1, 0, 0, 0, 3894, 3895, 7, 4, 0, 0, 3895, 3896, 7, 7, 0, 0, 3896, 3897, 7, 11, 0, 0, 3897, 3898, 7, 6, 0, 0, 3898, 3899, 7, 5, 0, 0, 3899, 3900, 7, 5, 0, 0, 3900, 670, 1, 0, 0, 0, 3901, 3902, 7, 4, 0, 0, 3902, 3903, 7, 9, 0, 0, 3903, 3904, 7, 2, 0, 0, 3904, 3905, 7, 11, 0, 0, 3905, 3906, 7, 7, 0, 0, 3906, 3907, 7, 22, 0, 0, 3907, 672, 1, 0, 0, 0, 3908, 3909, 7, 4, 0, 0, 3909, 3910, 7, 9, 0, 0, 3910, 3911, 7, 7, 0, 0, 3911, 3912, 7, 6, 0, 0, 3912, 3913, 7, 12, 0, 0, 3913, 3914, 7, 15, 0, 0, 3914, 674, 1, 0, 0, 0, 3915, 3916, 7, 4, 0, 0, 3916, 3917, 7, 9, 0, 0, 3917, 3918, 7, 9, 0, 0, 3918, 3919, 7, 25, 0, 0, 3919, 676, 1, 0, 0, 0, 3920, 3921, 7, 4, 0, 0, 3921, 3922, 7, 9, 0, 0, 3922, 3923, 7, 5, 0, 0, 3923, 3924, 7, 9, 0, 0, 3924, 3925, 7, 7, 0, 0, 3925, 3926, 7, 8, 0, 0, 3926, 678, 1, 0, 0, 0, 3927, 3928, 7, 4, 0, 0, 3928, 3929, 7, 9, 0, 0, 3929, 3930, 7, 12, 0, 0, 3930, 3931, 7, 4, 0, 0, 3931, 3932, 7, 19, 0, 0, 3932, 3933, 7, 8, 0, 0, 3933, 3934, 7, 19, 0, 0, 3934, 3935, 7, 20, 0, 0, 3935, 3936, 7, 9, 0, 0, 3936, 680, 1, 0, 0, 0, 3937, 3938, 7, 4, 0, 0, 3938, 3939, 7, 9, 0, 0, 3939, 3940, 7, 24, 0, 0, 3940, 3941, 7, 2, 0, 0, 3941, 3942, 7, 11, 0, 0, 3942, 3943, 7, 2, 0, 0, 3943, 3944, 7, 8, 0, 0, 3944, 3945, 7, 6, 0, 0, 3945, 3946, 7, 11, 0, 0, 3946, 682, 1, 0, 0, 0, 3947, 3948, 7, 4, 0, 0, 3948, 3949, 7, 9, 0, 0, 3949, 3950, 7, 4, 0, 0, 3950, 3951, 7, 4, 0, 0, 3951, 3952, 7, 19, 0, 0, 3952, 3953, 7, 6, 0, 0, 3953, 3954, 7, 12, 0, 0, 3954, 3955, 5, 95, 0, 0, 3955, 3956, 7, 21, 0, 0, 3956, 3957, 7, 4, 0, 0, 3957, 3958, 7, 9, 0, 0, 3958, 3959, 7, 11, 0, 0, 3959, 684, 1, 0, 0, 0, 3960, 3961, 7, 4, 0, 0, 3961, 3962, 7, 9, 0, 0, 3962, 3963, 7, 8, 0, 0, 3963, 686, 1, 0, 0, 0, 3964, 3965, 7, 4, 0, 0, 3965, 3966, 7, 22, 0, 0, 3966, 3967, 7, 6, 0, 0, 3967, 3968, 7, 10, 0, 0, 3968, 688, 1, 0, 0, 0, 3969, 3970, 7, 4, 0, 0, 3970, 3971, 7, 19, 0, 0, 3971, 3972, 7, 17, 0, 0, 3972, 3973, 7, 19, 0, 0, 3973, 3974, 7, 5, 0, 0, 3974, 3975, 7, 2, 0, 0, 3975, 3976, 7, 11, 0, 0, 3976, 690, 1, 0, 0, 0, 3977, 3978, 7, 4, 0, 0, 3978, 3979, 7, 25, 0, 0, 3979, 3980, 7, 19, 0, 0, 3980, 3981, 7, 24, 0, 0, 3981, 692, 1, 0, 0, 0, 3982, 3983, 7, 4, 0, 0, 3983, 3984, 7, 17, 0, 0, 3984, 3985, 7, 2, 0, 0, 3985, 3986, 7, 5, 0, 0, 3986, 3987, 7, 5, 0, 0, 3987, 3988, 7, 19, 0, 0, 3988, 3989, 7, 12, 0, 0, 3989, 3990, 7, 8, 0, 0, 3990, 694, 1, 0, 0, 0, 3991, 3992, 7, 4, 0, 0, 3992, 3993, 7, 6, 0, 0, 3993, 3994, 7, 17, 0, 0, 3994, 3995, 7, 9, 0, 0, 3995, 696, 1, 0, 0, 0, 3996, 3997, 7, 4, 0, 0, 3997, 3998, 7, 24, 0, 0, 3998, 3999, 7, 9, 0, 0, 3999, 4000, 7, 7, 0, 0, 4000, 4001, 7, 19, 0, 0, 4001, 4002, 7, 23, 0, 0, 4002, 4003, 7, 19, 0, 0, 4003, 4004, 7, 7, 0, 0, 4004, 698, 1, 0, 0, 0, 4005, 4006, 7, 4, 0, 0, 4006, 4007, 7, 24, 0, 0, 4007, 4008, 7, 9, 0, 0, 4008, 4009, 7, 7, 0, 0, 4009, 4010, 7, 19, 0, 0, 4010, 4011, 7, 23, 0, 0, 4011, 4012, 7, 19, 0, 0, 4012, 4013, 7, 7, 0, 0, 4013, 4014, 7, 8, 0, 0, 4014, 4015, 7, 13, 0, 0, 4015, 4016, 7, 24, 0, 0, 4016, 4017, 7, 9, 0, 0, 4017, 700, 1, 0, 0, 0, 4018, 4019, 7, 4, 0, 0, 4019, 4020, 7, 26, 0, 0, 4020, 4021, 7, 5, 0, 0, 4021, 702, 1, 0, 0, 0, 4022, 4023, 7, 4, 0, 0, 4023, 4024, 7, 26, 0, 0, 4024, 4025, 7, 5, 0, 0, 4025, 4026, 7, 9, 0, 0, 4026, 4027, 7, 18, 0, 0, 4027, 4028, 7, 7, 0, 0, 4028, 4029, 7, 9, 0, 0, 4029, 4030, 7, 24, 0, 0, 4030, 4031, 7, 8, 0, 0, 4031, 4032, 7, 19, 0, 0, 4032, 4033, 7, 6, 0, 0, 4033, 4034, 7, 12, 0, 0, 4034, 704, 1, 0, 0, 0, 4035, 4036, 7, 4, 0, 0, 4036, 4037, 7, 26, 0, 0, 4037, 4038, 7, 5, 0, 0, 4038, 4039, 7, 4, 0, 0, 4039, 4040, 7, 8, 0, 0, 4040, 4041, 7, 2, 0, 0, 4041, 4042, 7, 8, 0, 0, 4042, 4043, 7, 9, 0, 0, 4043, 706, 1, 0, 0, 0, 4044, 4045, 7, 4, 0, 0, 4045, 4046, 7, 26, 0, 0, 4046, 4047, 7, 5, 0, 0, 4047, 4048, 7, 10, 0, 0, 4048, 4049, 7, 2, 0, 0, 4049, 4050, 7, 11, 0, 0, 4050, 4051, 7, 12, 0, 0, 4051, 4052, 7, 19, 0, 0, 4052, 4053, 7, 12, 0, 0, 4053, 4054, 7, 16, 0, 0, 4054, 708, 1, 0, 0, 0, 4055, 4056, 7, 4, 0, 0, 4056, 4057, 7, 26, 0, 0, 4057, 4058, 7, 11, 0, 0, 4058, 4059, 7, 8, 0, 0, 4059, 710, 1, 0, 0, 0, 4060, 4061, 7, 4, 0, 0, 4061, 4062, 7, 8, 0, 0, 4062, 4063, 7, 2, 0, 0, 4063, 4064, 7, 11, 0, 0, 4064, 4065, 7, 8, 0, 0, 4065, 712, 1, 0, 0, 0, 4066, 4067, 7, 4, 0, 0, 4067, 4068, 7, 8, 0, 0, 4068, 4069, 7, 2, 0, 0, 4069, 4070, 7, 8, 0, 0, 4070, 4071, 7, 9, 0, 0, 4071, 4072, 7, 17, 0, 0, 4072, 4073, 7, 9, 0, 0, 4073, 4074, 7, 12, 0, 0, 4074, 4075, 7, 8, 0, 0, 4075, 714, 1, 0, 0, 0, 4076, 4077, 7, 4, 0, 0, 4077, 4078, 7, 8, 0, 0, 4078, 4079, 7, 2, 0, 0, 4079, 4080, 7, 8, 0, 0, 4080, 4081, 7, 19, 0, 0, 4081, 4082, 7, 7, 0, 0, 4082, 716, 1, 0, 0, 0, 4083, 4084, 7, 4, 0, 0, 4084, 4085, 7, 8, 0, 0, 4085, 4086, 7, 2, 0, 0, 4086, 4087, 7, 8, 0, 0, 4087, 4088, 7, 19, 0, 0, 4088, 4089, 7, 4, 0, 0, 4089, 4090, 7, 8, 0, 0, 4090, 4091, 7, 19, 0, 0, 4091, 4092, 7, 7, 0, 0, 4092, 4093, 7, 4, 0, 0, 4093, 718, 1, 0, 0, 0, 4094, 4095, 7, 4, 0, 0, 4095, 4096, 7, 8, 0, 0, 4096, 4097, 7, 15, 0, 0, 4097, 4098, 7, 15, 0, 0, 4098, 4099, 7, 9, 0, 0, 4099, 4100, 7, 20, 0, 0, 4100, 4101, 5, 95, 0, 0, 4101, 4102, 7, 24, 0, 0, 4102, 4103, 7, 6, 0, 0, 4103, 4104, 7, 24, 0, 0, 4104, 720, 1, 0, 0, 0, 4105, 4106, 7, 4, 0, 0, 4106, 4107, 7, 8, 0, 0, 4107, 4108, 7, 15, 0, 0, 4108, 4109, 7, 15, 0, 0, 4109, 4110, 7, 9, 0, 0, 4110, 4111, 7, 20, 0, 0, 4111, 4112, 5, 95, 0, 0, 4112, 4113, 7, 4, 0, 0, 4113, 4114, 7, 2, 0, 0, 4114, 4115, 7, 17, 0, 0, 4115, 4116, 7, 24, 0, 0, 4116, 722, 1, 0, 0, 0, 4117, 4118, 7, 4, 0, 0, 4118, 4119, 7, 8, 0, 0, 4119, 4120, 7, 11, 0, 0, 4120, 4121, 7, 9, 0, 0, 4121, 4122, 7, 2, 0, 0, 4122, 4123, 7, 17, 0, 0, 4123, 724, 1, 0, 0, 0, 4124, 4125, 7, 4, 0, 0, 4125, 4126, 7, 8, 0, 0, 4126, 4127, 7, 11, 0, 0, 4127, 4128, 7, 19, 0, 0, 4128, 4129, 7, 12, 0, 0, 4129, 4130, 7, 16, 0, 0, 4130, 726, 1, 0, 0, 0, 4131, 4132, 7, 4, 0, 0, 4132, 4133, 7, 8, 0, 0, 4133, 4134, 7, 11, 0, 0, 4134, 4135, 7, 19, 0, 0, 4135, 4136, 7, 12, 0, 0, 4136, 4137, 7, 16, 0, 0, 4137, 4138, 5, 95, 0, 0, 4138, 4139, 7, 2, 0, 0, 4139, 4140, 7, 16, 0, 0, 4140, 4141, 7, 16, 0, 0, 4141, 728, 1, 0, 0, 0, 4142, 4143, 7, 4, 0, 0, 4143, 4144, 7, 21, 0, 0, 4144, 4145, 7, 3, 0, 0, 4145, 4146, 7, 17, 0, 0, 4146, 4147, 7, 21, 0, 0, 4147, 4148, 7, 5, 0, 0, 4148, 4149, 7, 8, 0, 0, 4149, 4150, 7, 19, 0, 0, 4150, 4151, 7, 4, 0, 0, 4151, 4152, 7, 9, 0, 0, 4152, 4153, 7, 8, 0, 0, 4153, 730, 1, 0, 0, 0, 4154, 4155, 7, 4, 0, 0, 4155, 4156, 7, 21, 0, 0, 4156, 4157, 7, 3, 0, 0, 4157, 4158, 7, 4, 0, 0, 4158, 4159, 7, 9, 0, 0, 4159, 4160, 7, 8, 0, 0, 4160, 732, 1, 0, 0, 0, 4161, 4162, 7, 4, 0, 0, 4162, 4163, 7, 21, 0, 0, 4163, 4164, 7, 3, 0, 0, 4164, 4165, 7, 4, 0, 0, 4165, 4166, 7, 8, 0, 0, 4166, 4167, 7, 11, 0, 0, 4167, 4168, 7, 19, 0, 0, 4168, 4169, 7, 12, 0, 0, 4169, 4170, 7, 16, 0, 0, 4170, 734, 1, 0, 0, 0, 4171, 4172, 7, 4, 0, 0, 4172, 4173, 7, 21, 0, 0, 4173, 4174, 7, 3, 0, 0, 4174, 4175, 7, 4, 0, 0, 4175, 4176, 7, 8, 0, 0, 4176, 4177, 7, 11, 0, 0, 4177, 4178, 7, 19, 0, 0, 4178, 4179, 7, 12, 0, 0, 4179, 4180, 7, 16, 0, 0, 4180, 4181, 5, 95, 0, 0, 4181, 4182, 7, 11, 0, 0, 4182, 4183, 7, 9, 0, 0, 4183, 4184, 7, 16, 0, 0, 4184, 4185, 7, 9, 0, 0, 4185, 4186, 7, 18, 0, 0, 4186, 736, 1, 0, 0, 0, 4187, 4188, 7, 4, 0, 0, 4188, 4189, 7, 21, 0, 0, 4189, 4190, 7, 7, 0, 0, 4190, 4191, 7, 7, 0, 0, 4191, 4192, 7, 9, 0, 0, 4192, 4193, 7, 9, 0, 0, 4193, 4194, 7, 15, 0, 0, 4194, 4195, 7, 4, 0, 0, 4195, 738, 1, 0, 0, 0, 4196, 4197, 7, 4, 0, 0, 4197, 4198, 7, 21, 0, 0, 4198, 4199, 7, 17, 0, 0, 4199, 740, 1, 0, 0, 0, 4200, 4201, 7, 4, 0, 0, 4201, 4202, 7, 21, 0, 0, 4202, 4203, 7, 12, 0, 0, 4203, 4204, 7, 15, 0, 0, 4204, 4205, 7, 2, 0, 0, 4205, 4206, 7, 13, 0, 0, 4206, 742, 1, 0, 0, 0, 4207, 4208, 7, 4, 0, 0, 4208, 4209, 7, 13, 0, 0, 4209, 4210, 7, 17, 0, 0, 4210, 4211, 7, 17, 0, 0, 4211, 4212, 7, 9, 0, 0, 4212, 4213, 7, 8, 0, 0, 4213, 4214, 7, 11, 0, 0, 4214, 4215, 7, 19, 0, 0, 4215, 4216, 7, 7, 0, 0, 4216, 744, 1, 0, 0, 0, 4217, 4218, 7, 4, 0, 0, 4218, 4219, 7, 13, 0, 0, 4219, 4220, 7, 4, 0, 0, 4220, 4221, 7, 8, 0, 0, 4221, 4222, 7, 9, 0, 0, 4222, 4223, 7, 17, 0, 0, 4223, 746, 1, 0, 0, 0, 4224, 4225, 7, 4, 0, 0, 4225, 4226, 7, 13, 0, 0, 4226, 4227, 7, 4, 0, 0, 4227, 4228, 7, 8, 0, 0, 4228, 4229, 7, 9, 0, 0, 4229, 4230, 7, 17, 0, 0, 4230, 4231, 5, 95, 0, 0, 4231, 4232, 7, 8, 0, 0, 4232, 4233, 7, 19, 0, 0, 4233, 4234, 7, 17, 0, 0, 4234, 4235, 7, 9, 0, 0, 4235, 748, 1, 0, 0, 0, 4236, 4237, 7, 4, 0, 0, 4237, 4238, 7, 13, 0, 0, 4238, 4239, 7, 4, 0, 0, 4239, 4240, 7, 8, 0, 0, 4240, 4241, 7, 9, 0, 0, 4241, 4242, 7, 17, 0, 0, 4242, 4243, 5, 95, 0, 0, 4243, 4244, 7, 21, 0, 0, 4244, 4245, 7, 4, 0, 0, 4245, 4246, 7, 9, 0, 0, 4246, 4247, 7, 11, 0, 0, 4247, 750, 1, 0, 0, 0, 4248, 4249, 7, 8, 0, 0, 4249, 4250, 7, 2, 0, 0, 4250, 4251, 7, 3, 0, 0, 4251, 4252, 7, 5, 0, 0, 4252, 4253, 7, 9, 0, 0, 4253, 752, 1, 0, 0, 0, 4254, 4255, 7, 8, 0, 0, 4255, 4256, 7, 2, 0, 0, 4256, 4257, 7, 3, 0, 0, 4257, 4258, 7, 5, 0, 0, 4258, 4259, 7, 9, 0, 0, 4259, 4260, 7, 4, 0, 0, 4260, 754, 1, 0, 0, 0, 4261, 4262, 7, 8, 0, 0, 4262, 4263, 7, 2, 0, 0, 4263, 4264, 7, 3, 0, 0, 4264, 4265, 7, 5, 0, 0, 4265, 4266, 7, 9, 0, 0, 4266, 4267, 7, 4, 0, 0, 4267, 4268, 7, 2, 0, 0, 4268, 4269, 7, 17, 0, 0, 4269, 4270, 7, 24, 0, 0, 4270, 4271, 7, 5, 0, 0, 4271, 4272, 7, 9, 0, 0, 4272, 756, 1, 0, 0, 0, 4273, 4274, 7, 8, 0, 0, 4274, 4275, 7, 22, 0, 0, 4275, 4276, 7, 9, 0, 0, 4276, 4277, 7, 12, 0, 0, 4277, 758, 1, 0, 0, 0, 4278, 4279, 7, 8, 0, 0, 4279, 4280, 7, 22, 0, 0, 4280, 4281, 7, 21, 0, 0, 4281, 4282, 7, 11, 0, 0, 4282, 4283, 7, 4, 0, 0, 4283, 4284, 7, 15, 0, 0, 4284, 4285, 7, 2, 0, 0, 4285, 4286, 7, 13, 0, 0, 4286, 760, 1, 0, 0, 0, 4287, 4288, 7, 8, 0, 0, 4288, 4289, 7, 19, 0, 0, 4289, 4290, 7, 17, 0, 0, 4290, 4291, 7, 9, 0, 0, 4291, 762, 1, 0, 0, 0, 4292, 4293, 7, 8, 0, 0, 4293, 4294, 7, 19, 0, 0, 4294, 4295, 7, 17, 0, 0, 4295, 4296, 7, 9, 0, 0, 4296, 4297, 7, 4, 0, 0, 4297, 4298, 7, 8, 0, 0, 4298, 4299, 7, 2, 0, 0, 4299, 4300, 7, 17, 0, 0, 4300, 4301, 7, 24, 0, 0, 4301, 764, 1, 0, 0, 0, 4302, 4303, 7, 8, 0, 0, 4303, 4304, 7, 19, 0, 0, 4304, 4305, 7, 17, 0, 0, 4305, 4306, 7, 9, 0, 0, 4306, 4307, 7, 4, 0, 0, 4307, 4308, 7, 8, 0, 0, 4308, 4309, 7, 2, 0, 0, 4309, 4310, 7, 17, 0, 0, 4310, 4311, 7, 24, 0, 0, 4311, 4312, 5, 95, 0, 0, 4312, 4313, 7, 15, 0, 0, 4313, 4314, 7, 19, 0, 0, 4314, 4315, 7, 23, 0, 0, 4315, 4316, 7, 23, 0, 0, 4316, 766, 1, 0, 0, 0, 4317, 4318, 7, 8, 0, 0, 4318, 4319, 7, 19, 0, 0, 4319, 4320, 7, 17, 0, 0, 4320, 4321, 7, 9, 0, 0, 4321, 4322, 7, 4, 0, 0, 4322, 4323, 7, 8, 0, 0, 4323, 4324, 7, 2, 0, 0, 4324, 4325, 7, 17, 0, 0, 4325, 4326, 7, 24, 0, 0, 4326, 4327, 5, 95, 0, 0, 4327, 4328, 7, 5, 0, 0, 4328, 4329, 7, 8, 0, 0, 4329, 4330, 7, 14, 0, 0, 4330, 768, 1, 0, 0, 0, 4331, 4332, 7, 8, 0, 0, 4332, 4333, 7, 19, 0, 0, 4333, 4334, 7, 17, 0, 0, 4334, 4335, 7, 9, 0, 0, 4335, 4336, 7, 4, 0, 0, 4336, 4337, 7, 8, 0, 0, 4337, 4338, 7, 2, 0, 0, 4338, 4339, 7, 17, 0, 0, 4339, 4340, 7, 24, 0, 0, 4340, 4341, 5, 95, 0, 0, 4341, 4342, 7, 8, 0, 0, 4342, 4343, 7, 11, 0, 0, 4343, 4344, 7, 21, 0, 0, 4344, 4345, 7, 12, 0, 0, 4345, 4346, 7, 7, 0, 0, 4346, 770, 1, 0, 0, 0, 4347, 4348, 7, 8, 0, 0, 4348, 4349, 7, 19, 0, 0, 4349, 4350, 7, 17, 0, 0, 4350, 4351, 7, 9, 0, 0, 4351, 4352, 7, 14, 0, 0, 4352, 4353, 7, 6, 0, 0, 4353, 4354, 7, 12, 0, 0, 4354, 4355, 7, 9, 0, 0, 4355, 4356, 5, 95, 0, 0, 4356, 4357, 7, 22, 0, 0, 4357, 4358, 7, 6, 0, 0, 4358, 4359, 7, 21, 0, 0, 4359, 4360, 7, 11, 0, 0, 4360, 772, 1, 0, 0, 0, 4361, 4362, 7, 8, 0, 0, 4362, 4363, 7, 19, 0, 0, 4363, 4364, 7, 17, 0, 0, 4364, 4365, 7, 9, 0, 0, 4365, 4366, 7, 14, 0, 0, 4366, 4367, 7, 6, 0, 0, 4367, 4368, 7, 12, 0, 0, 4368, 4369, 7, 9, 0, 0, 4369, 4370, 5, 95, 0, 0, 4370, 4371, 7, 17, 0, 0, 4371, 4372, 7, 19, 0, 0, 4372, 4373, 7, 12, 0, 0, 4373, 4374, 7, 21, 0, 0, 4374, 4375, 7, 8, 0, 0, 4375, 4376, 7, 9, 0, 0, 4376, 774, 1, 0, 0, 0, 4377, 4378, 7, 8, 0, 0, 4378, 4379, 7, 19, 0, 0, 4379, 4380, 7, 17, 0, 0, 4380, 4381, 7, 9, 0, 0, 4381, 4382, 5, 95, 0, 0, 4382, 4383, 7, 15, 0, 0, 4383, 4384, 7, 19, 0, 0, 4384, 4385, 7, 23, 0, 0, 4385, 4386, 7, 23, 0, 0, 4386, 776, 1, 0, 0, 0, 4387, 4388, 7, 8, 0, 0, 4388, 4389, 7, 19, 0, 0, 4389, 4390, 7, 17, 0, 0, 4390, 4391, 7, 9, 0, 0, 4391, 4392, 5, 95, 0, 0, 4392, 4393, 7, 8, 0, 0, 4393, 4394, 7, 11, 0, 0, 4394, 4395, 7, 21, 0, 0, 4395, 4396, 7, 12, 0, 0, 4396, 4397, 7, 7, 0, 0, 4397, 778, 1, 0, 0, 0, 4398, 4399, 7, 8, 0, 0, 4399, 4400, 7, 19, 0, 0, 4400, 4401, 7, 12, 0, 0, 4401, 4402, 7, 13, 0, 0, 4402, 4403, 7, 19, 0, 0, 4403, 4404, 7, 12, 0, 0, 4404, 4405, 7, 8, 0, 0, 4405, 780, 1, 0, 0, 0, 4406, 4407, 7, 8, 0, 0, 4407, 4408, 7, 6, 0, 0, 4408, 782, 1, 0, 0, 0, 4409, 4410, 7, 8, 0, 0, 4410, 4411, 7, 11, 0, 0, 4411, 4412, 7, 2, 0, 0, 4412, 4413, 7, 19, 0, 0, 4413, 4414, 7, 5, 0, 0, 4414, 4415, 7, 19, 0, 0, 4415, 4416, 7, 12, 0, 0, 4416, 4417, 7, 16, 0, 0, 4417, 784, 1, 0, 0, 0, 4418, 4419, 7, 8, 0, 0, 4419, 4420, 7, 11, 0, 0, 4420, 4421, 7, 2, 0, 0, 4421, 4422, 7, 12, 0, 0, 4422, 4423, 7, 4, 0, 0, 4423, 4424, 7, 5, 0, 0, 4424, 4425, 7, 2, 0, 0, 4425, 4426, 7, 8, 0, 0, 4426, 4427, 7, 9, 0, 0, 4427, 786, 1, 0, 0, 0, 4428, 4429, 7, 8, 0, 0, 4429, 4430, 7, 11, 0, 0, 4430, 4431, 7, 2, 0, 0, 4431, 4432, 7, 12, 0, 0, 4432, 4433, 7, 4, 0, 0, 4433, 4434, 7, 5, 0, 0, 4434, 4435, 7, 2, 0, 0, 4435, 4436, 7, 8, 0, 0, 4436, 4437, 7, 9, 0, 0, 4437, 4438, 5, 95, 0, 0, 4438, 4439, 7, 11, 0, 0, 4439, 4440, 7, 9, 0, 0, 4440, 4441, 7, 16, 0, 0, 4441, 4442, 7, 9, 0, 0, 4442, 4443, 7, 18, 0, 0, 4443, 788, 1, 0, 0, 0, 4444, 4445, 7, 8, 0, 0, 4445, 4446, 7, 11, 0, 0, 4446, 4447, 7, 2, 0, 0, 4447, 4448, 7, 12, 0, 0, 4448, 4449, 7, 4, 0, 0, 4449, 4450, 7, 5, 0, 0, 4450, 4451, 7, 2, 0, 0, 4451, 4452, 7, 8, 0, 0, 4452, 4453, 7, 19, 0, 0, 4453, 4454, 7, 6, 0, 0, 4454, 4455, 7, 12, 0, 0, 4455, 790, 1, 0, 0, 0, 4456, 4457, 7, 8, 0, 0, 4457, 4458, 7, 11, 0, 0, 4458, 4459, 7, 9, 0, 0, 4459, 4460, 7, 2, 0, 0, 4460, 4461, 7, 8, 0, 0, 4461, 792, 1, 0, 0, 0, 4462, 4463, 7, 8, 0, 0, 4463, 4464, 7, 11, 0, 0, 4464, 4465, 7, 19, 0, 0, 4465, 4466, 7, 16, 0, 0, 4466, 4467, 7, 16, 0, 0, 4467, 4468, 7, 9, 0, 0, 4468, 4469, 7, 11, 0, 0, 4469, 794, 1, 0, 0, 0, 4470, 4471, 7, 8, 0, 0, 4471, 4472, 7, 11, 0, 0, 4472, 4473, 7, 19, 0, 0, 4473, 4474, 7, 17, 0, 0, 4474, 796, 1, 0, 0, 0, 4475, 4476, 7, 8, 0, 0, 4476, 4477, 7, 11, 0, 0, 4477, 4478, 7, 19, 0, 0, 4478, 4479, 7, 17, 0, 0, 4479, 4480, 5, 95, 0, 0, 4480, 4481, 7, 2, 0, 0, 4481, 4482, 7, 11, 0, 0, 4482, 4483, 7, 11, 0, 0, 4483, 4484, 7, 2, 0, 0, 4484, 4485, 7, 13, 0, 0, 4485, 798, 1, 0, 0, 0, 4486, 4487, 7, 8, 0, 0, 4487, 4488, 7, 11, 0, 0, 4488, 4489, 7, 21, 0, 0, 4489, 4490, 7, 9, 0, 0, 4490, 800, 1, 0, 0, 0, 4491, 4492, 7, 8, 0, 0, 4492, 4493, 7, 11, 0, 0, 4493, 4494, 7, 21, 0, 0, 4494, 4495, 7, 12, 0, 0, 4495, 4496, 7, 7, 0, 0, 4496, 4497, 7, 2, 0, 0, 4497, 4498, 7, 8, 0, 0, 4498, 4499, 7, 9, 0, 0, 4499, 802, 1, 0, 0, 0, 4500, 4501, 7, 8, 0, 0, 4501, 4502, 7, 11, 0, 0, 4502, 4503, 7, 13, 0, 0, 4503, 4504, 5, 95, 0, 0, 4504, 4505, 7, 7, 0, 0, 4505, 4506, 7, 2, 0, 0, 4506, 4507, 7, 4, 0, 0, 4507, 4508, 7, 8, 0, 0, 4508, 804, 1, 0, 0, 0, 4509, 4510, 7, 8, 0, 0, 4510, 4511, 7, 21, 0, 0, 4511, 4512, 7, 9, 0, 0, 4512, 4513, 7, 4, 0, 0, 4513, 4514, 7, 15, 0, 0, 4514, 4515, 7, 2, 0, 0, 4515, 4516, 7, 13, 0, 0, 4516, 806, 1, 0, 0, 0, 4517, 4518, 7, 21, 0, 0, 4518, 4519, 7, 9, 0, 0, 4519, 4520, 7, 4, 0, 0, 4520, 4521, 7, 7, 0, 0, 4521, 4522, 7, 2, 0, 0, 4522, 4523, 7, 24, 0, 0, 4523, 4524, 7, 9, 0, 0, 4524, 808, 1, 0, 0, 0, 4525, 4526, 7, 21, 0, 0, 4526, 4527, 7, 12, 0, 0, 4527, 4528, 7, 3, 0, 0, 4528, 4529, 7, 6, 0, 0, 4529, 4530, 7, 21, 0, 0, 4530, 4531, 7, 12, 0, 0, 4531, 4532, 7, 15, 0, 0, 4532, 4533, 7, 9, 0, 0, 4533, 4534, 7, 15, 0, 0, 4534, 810, 1, 0, 0, 0, 4535, 4536, 7, 21, 0, 0, 4536, 4537, 7, 12, 0, 0, 4537, 4538, 7, 19, 0, 0, 4538, 4539, 7, 6, 0, 0, 4539, 4540, 7, 12, 0, 0, 4540, 812, 1, 0, 0, 0, 4541, 4542, 7, 21, 0, 0, 4542, 4543, 7, 12, 0, 0, 4543, 4544, 7, 19, 0, 0, 4544, 4545, 7, 26, 0, 0, 4545, 4546, 7, 21, 0, 0, 4546, 4547, 7, 9, 0, 0, 4547, 814, 1, 0, 0, 0, 4548, 4549, 7, 21, 0, 0, 4549, 4550, 7, 12, 0, 0, 4550, 4551, 7, 25, 0, 0, 4551, 4552, 7, 12, 0, 0, 4552, 4553, 7, 6, 0, 0, 4553, 4554, 7, 10, 0, 0, 4554, 4555, 7, 12, 0, 0, 4555, 816, 1, 0, 0, 0, 4556, 4557, 7, 21, 0, 0, 4557, 4558, 7, 12, 0, 0, 4558, 4559, 7, 12, 0, 0, 4559, 4560, 7, 9, 0, 0, 4560, 4561, 7, 4, 0, 0, 4561, 4562, 7, 8, 0, 0, 4562, 818, 1, 0, 0, 0, 4563, 4564, 7, 21, 0, 0, 4564, 4565, 7, 12, 0, 0, 4565, 4566, 7, 24, 0, 0, 4566, 4567, 7, 19, 0, 0, 4567, 4568, 7, 20, 0, 0, 4568, 4569, 7, 6, 0, 0, 4569, 4570, 7, 8, 0, 0, 4570, 820, 1, 0, 0, 0, 4571, 4572, 7, 21, 0, 0, 4572, 4573, 7, 24, 0, 0, 4573, 4574, 7, 15, 0, 0, 4574, 4575, 7, 2, 0, 0, 4575, 4576, 7, 8, 0, 0, 4576, 4577, 7, 9, 0, 0, 4577, 822, 1, 0, 0, 0, 4578, 4579, 7, 21, 0, 0, 4579, 4580, 7, 24, 0, 0, 4580, 4581, 7, 24, 0, 0, 4581, 4582, 7, 9, 0, 0, 4582, 4583, 7, 11, 0, 0, 4583, 824, 1, 0, 0, 0, 4584, 4585, 7, 21, 0, 0, 4585, 4586, 7, 24, 0, 0, 4586, 4587, 7, 4, 0, 0, 4587, 4588, 7, 9, 0, 0, 4588, 4589, 7, 11, 0, 0, 4589, 4590, 7, 8, 0, 0, 4590, 826, 1, 0, 0, 0, 4591, 4592, 7, 21, 0, 0, 4592, 4593, 7, 4, 0, 0, 4593, 4594, 7, 9, 0, 0, 4594, 828, 1, 0, 0, 0, 4595, 4596, 7, 21, 0, 0, 4596, 4597, 7, 4, 0, 0, 4597, 4598, 7, 9, 0, 0, 4598, 4599, 7, 11, 0, 0, 4599, 830, 1, 0, 0, 0, 4600, 4601, 7, 21, 0, 0, 4601, 4602, 7, 4, 0, 0, 4602, 4603, 7, 19, 0, 0, 4603, 4604, 7, 12, 0, 0, 4604, 4605, 7, 16, 0, 0, 4605, 832, 1, 0, 0, 0, 4606, 4607, 7, 20, 0, 0, 4607, 4608, 7, 2, 0, 0, 4608, 4609, 7, 5, 0, 0, 4609, 4610, 7, 21, 0, 0, 4610, 4611, 7, 9, 0, 0, 4611, 834, 1, 0, 0, 0, 4612, 4613, 7, 20, 0, 0, 4613, 4614, 7, 2, 0, 0, 4614, 4615, 7, 5, 0, 0, 4615, 4616, 7, 21, 0, 0, 4616, 4617, 7, 9, 0, 0, 4617, 4618, 7, 4, 0, 0, 4618, 836, 1, 0, 0, 0, 4619, 4620, 7, 20, 0, 0, 4620, 4621, 7, 2, 0, 0, 4621, 4622, 7, 5, 0, 0, 4622, 4623, 7, 21, 0, 0, 4623, 4624, 7, 9, 0, 0, 4624, 4625, 5, 95, 0, 0, 4625, 4626, 7, 6, 0, 0, 4626, 4627, 7, 23, 0, 0, 4627, 838, 1, 0, 0, 0, 4628, 4629, 7, 20, 0, 0, 4629, 4630, 7, 2, 0, 0, 4630, 4631, 7, 11, 0, 0, 4631, 4632, 7, 3, 0, 0, 4632, 4633, 7, 19, 0, 0, 4633, 4634, 7, 12, 0, 0, 4634, 4635, 7, 2, 0, 0, 4635, 4636, 7, 11, 0, 0, 4636, 4637, 7, 13, 0, 0, 4637, 840, 1, 0, 0, 0, 4638, 4639, 7, 20, 0, 0, 4639, 4640, 7, 2, 0, 0, 4640, 4641, 7, 11, 0, 0, 4641, 4642, 7, 7, 0, 0, 4642, 4643, 7, 22, 0, 0, 4643, 4644, 7, 2, 0, 0, 4644, 4645, 7, 11, 0, 0, 4645, 842, 1, 0, 0, 0, 4646, 4647, 7, 20, 0, 0, 4647, 4648, 7, 2, 0, 0, 4648, 4649, 7, 11, 0, 0, 4649, 4650, 7, 13, 0, 0, 4650, 4651, 7, 19, 0, 0, 4651, 4652, 7, 12, 0, 0, 4652, 4653, 7, 16, 0, 0, 4653, 844, 1, 0, 0, 0, 4654, 4655, 7, 20, 0, 0, 4655, 4656, 7, 2, 0, 0, 4656, 4657, 7, 11, 0, 0, 4657, 4658, 5, 95, 0, 0, 4658, 4659, 7, 24, 0, 0, 4659, 4660, 7, 6, 0, 0, 4660, 4661, 7, 24, 0, 0, 4661, 846, 1, 0, 0, 0, 4662, 4663, 7, 20, 0, 0, 4663, 4664, 7, 2, 0, 0, 4664, 4665, 7, 11, 0, 0, 4665, 4666, 5, 95, 0, 0, 4666, 4667, 7, 4, 0, 0, 4667, 4668, 7, 2, 0, 0, 4668, 4669, 7, 17, 0, 0, 4669, 4670, 7, 24, 0, 0, 4670, 848, 1, 0, 0, 0, 4671, 4672, 7, 20, 0, 0, 4672, 4673, 7, 9, 0, 0, 4673, 4674, 7, 11, 0, 0, 4674, 4675, 7, 4, 0, 0, 4675, 4676, 7, 19, 0, 0, 4676, 4677, 7, 6, 0, 0, 4677, 4678, 7, 12, 0, 0, 4678, 4679, 7, 19, 0, 0, 4679, 4680, 7, 12, 0, 0, 4680, 4681, 7, 16, 0, 0, 4681, 850, 1, 0, 0, 0, 4682, 4683, 7, 20, 0, 0, 4683, 4684, 7, 19, 0, 0, 4684, 4685, 7, 9, 0, 0, 4685, 4686, 7, 10, 0, 0, 4686, 4687, 7, 4, 0, 0, 4687, 852, 1, 0, 0, 0, 4688, 4689, 7, 20, 0, 0, 4689, 4690, 7, 19, 0, 0, 4690, 4691, 7, 11, 0, 0, 4691, 4692, 7, 8, 0, 0, 4692, 4693, 7, 21, 0, 0, 4693, 4694, 7, 2, 0, 0, 4694, 4695, 7, 5, 0, 0, 4695, 854, 1, 0, 0, 0, 4696, 4697, 7, 10, 0, 0, 4697, 4698, 7, 2, 0, 0, 4698, 4699, 7, 8, 0, 0, 4699, 4700, 7, 9, 0, 0, 4700, 4701, 7, 11, 0, 0, 4701, 4702, 7, 17, 0, 0, 4702, 4703, 7, 2, 0, 0, 4703, 4704, 7, 11, 0, 0, 4704, 4705, 7, 25, 0, 0, 4705, 856, 1, 0, 0, 0, 4706, 4707, 7, 10, 0, 0, 4707, 4708, 7, 2, 0, 0, 4708, 4709, 7, 8, 0, 0, 4709, 4710, 7, 9, 0, 0, 4710, 4711, 7, 11, 0, 0, 4711, 4712, 7, 17, 0, 0, 4712, 4713, 7, 2, 0, 0, 4713, 4714, 7, 11, 0, 0, 4714, 4715, 7, 25, 0, 0, 4715, 4716, 7, 4, 0, 0, 4716, 858, 1, 0, 0, 0, 4717, 4718, 7, 10, 0, 0, 4718, 4719, 7, 9, 0, 0, 4719, 4720, 7, 15, 0, 0, 4720, 4721, 7, 12, 0, 0, 4721, 4722, 7, 9, 0, 0, 4722, 4723, 7, 4, 0, 0, 4723, 4724, 7, 15, 0, 0, 4724, 4725, 7, 2, 0, 0, 4725, 4726, 7, 13, 0, 0, 4726, 860, 1, 0, 0, 0, 4727, 4728, 7, 10, 0, 0, 4728, 4729, 7, 9, 0, 0, 4729, 4730, 7, 9, 0, 0, 4730, 4731, 7, 25, 0, 0, 4731, 4732, 7, 4, 0, 0, 4732, 862, 1, 0, 0, 0, 4733, 4734, 7, 10, 0, 0, 4734, 4735, 7, 22, 0, 0, 4735, 4736, 7, 9, 0, 0, 4736, 4737, 7, 12, 0, 0, 4737, 864, 1, 0, 0, 0, 4738, 4739, 7, 10, 0, 0, 4739, 4740, 7, 22, 0, 0, 4740, 4741, 7, 9, 0, 0, 4741, 4742, 7, 12, 0, 0, 4742, 4743, 7, 9, 0, 0, 4743, 4744, 7, 20, 0, 0, 4744, 4745, 7, 9, 0, 0, 4745, 4746, 7, 11, 0, 0, 4746, 866, 1, 0, 0, 0, 4747, 4748, 7, 10, 0, 0, 4748, 4749, 7, 22, 0, 0, 4749, 4750, 7, 9, 0, 0, 4750, 4751, 7, 11, 0, 0, 4751, 4752, 7, 9, 0, 0, 4752, 868, 1, 0, 0, 0, 4753, 4754, 7, 10, 0, 0, 4754, 4755, 7, 19, 0, 0, 4755, 4756, 7, 15, 0, 0, 4756, 4757, 7, 8, 0, 0, 4757, 4758, 7, 22, 0, 0, 4758, 4759, 5, 95, 0, 0, 4759, 4760, 7, 3, 0, 0, 4760, 4761, 7, 21, 0, 0, 4761, 4762, 7, 7, 0, 0, 4762, 4763, 7, 25, 0, 0, 4763, 4764, 7, 9, 0, 0, 4764, 4765, 7, 8, 0, 0, 4765, 870, 1, 0, 0, 0, 4766, 4767, 7, 10, 0, 0, 4767, 4768, 7, 19, 0, 0, 4768, 4769, 7, 12, 0, 0, 4769, 4770, 7, 15, 0, 0, 4770, 4771, 7, 6, 0, 0, 4771, 4772, 7, 10, 0, 0, 4772, 872, 1, 0, 0, 0, 4773, 4774, 7, 10, 0, 0, 4774, 4775, 7, 19, 0, 0, 4775, 4776, 7, 8, 0, 0, 4776, 4777, 7, 22, 0, 0, 4777, 874, 1, 0, 0, 0, 4778, 4779, 7, 10, 0, 0, 4779, 4780, 7, 19, 0, 0, 4780, 4781, 7, 8, 0, 0, 4781, 4782, 7, 22, 0, 0, 4782, 4783, 7, 19, 0, 0, 4783, 4784, 7, 12, 0, 0, 4784, 876, 1, 0, 0, 0, 4785, 4786, 7, 10, 0, 0, 4786, 4787, 7, 19, 0, 0, 4787, 4788, 7, 8, 0, 0, 4788, 4789, 7, 22, 0, 0, 4789, 4790, 7, 6, 0, 0, 4790, 4791, 7, 21, 0, 0, 4791, 4792, 7, 8, 0, 0, 4792, 878, 1, 0, 0, 0, 4793, 4794, 7, 13, 0, 0, 4794, 4795, 7, 9, 0, 0, 4795, 4796, 7, 2, 0, 0, 4796, 4797, 7, 11, 0, 0, 4797, 880, 1, 0, 0, 0, 4798, 4799, 7, 2, 0, 0, 4799, 4800, 7, 15, 0, 0, 4800, 4801, 7, 15, 0, 0, 4801, 882, 1, 0, 0, 0, 4802, 4803, 7, 2, 0, 0, 4803, 4804, 7, 23, 0, 0, 4804, 4805, 7, 8, 0, 0, 4805, 4806, 7, 9, 0, 0, 4806, 4807, 7, 11, 0, 0, 4807, 884, 1, 0, 0, 0, 4808, 4809, 7, 2, 0, 0, 4809, 4810, 7, 4, 0, 0, 4810, 4811, 7, 7, 0, 0, 4811, 886, 1, 0, 0, 0, 4812, 4813, 7, 7, 0, 0, 4813, 4814, 7, 2, 0, 0, 4814, 4815, 7, 4, 0, 0, 4815, 4816, 7, 7, 0, 0, 4816, 4817, 7, 2, 0, 0, 4817, 4818, 7, 15, 0, 0, 4818, 4819, 7, 9, 0, 0, 4819, 888, 1, 0, 0, 0, 4820, 4821, 7, 7, 0, 0, 4821, 4822, 7, 2, 0, 0, 4822, 4823, 7, 8, 0, 0, 4823, 4824, 7, 2, 0, 0, 4824, 4825, 7, 5, 0, 0, 4825, 4826, 7, 6, 0, 0, 4826, 4827, 7, 16, 0, 0, 4827, 890, 1, 0, 0, 0, 4828, 4829, 7, 7, 0, 0, 4829, 4830, 7, 9, 0, 0, 4830, 4831, 7, 12, 0, 0, 4831, 4832, 7, 8, 0, 0, 4832, 4833, 7, 21, 0, 0, 4833, 4834, 7, 11, 0, 0, 4834, 4835, 7, 13, 0, 0, 4835, 892, 1, 0, 0, 0, 4836, 4837, 7, 7, 0, 0, 4837, 4838, 7, 6, 0, 0, 4838, 4839, 7, 12, 0, 0, 4839, 4840, 7, 23, 0, 0, 4840, 4841, 7, 19, 0, 0, 4841, 4842, 7, 16, 0, 0, 4842, 894, 1, 0, 0, 0, 4843, 4844, 7, 7, 0, 0, 4844, 4845, 7, 6, 0, 0, 4845, 4846, 7, 12, 0, 0, 4846, 4847, 7, 4, 0, 0, 4847, 4848, 7, 8, 0, 0, 4848, 4849, 7, 11, 0, 0, 4849, 4850, 7, 2, 0, 0, 4850, 4851, 7, 19, 0, 0, 4851, 4852, 7, 12, 0, 0, 4852, 4853, 7, 8, 0, 0, 4853, 4854, 7, 4, 0, 0, 4854, 896, 1, 0, 0, 0, 4855, 4856, 7, 7, 0, 0, 4856, 4857, 7, 21, 0, 0, 4857, 4858, 7, 17, 0, 0, 4858, 4859, 7, 21, 0, 0, 4859, 4860, 7, 5, 0, 0, 4860, 4861, 7, 2, 0, 0, 4861, 4862, 7, 8, 0, 0, 4862, 4863, 7, 9, 0, 0, 4863, 898, 1, 0, 0, 0, 4864, 4865, 7, 15, 0, 0, 4865, 4866, 7, 2, 0, 0, 4866, 4867, 7, 8, 0, 0, 4867, 4868, 7, 2, 0, 0, 4868, 900, 1, 0, 0, 0, 4869, 4870, 7, 15, 0, 0, 4870, 4871, 7, 2, 0, 0, 4871, 4872, 7, 8, 0, 0, 4872, 4873, 7, 2, 0, 0, 4873, 4874, 7, 3, 0, 0, 4874, 4875, 7, 2, 0, 0, 4875, 4876, 7, 4, 0, 0, 4876, 4877, 7, 9, 0, 0, 4877, 902, 1, 0, 0, 0, 4878, 4879, 7, 15, 0, 0, 4879, 4880, 7, 2, 0, 0, 4880, 4881, 7, 13, 0, 0, 4881, 4882, 7, 4, 0, 0, 4882, 904, 1, 0, 0, 0, 4883, 4884, 7, 15, 0, 0, 4884, 4885, 7, 9, 0, 0, 4885, 4886, 7, 7, 0, 0, 4886, 4887, 7, 2, 0, 0, 4887, 4888, 7, 15, 0, 0, 4888, 4889, 7, 9, 0, 0, 4889, 906, 1, 0, 0, 0, 4890, 4891, 7, 15, 0, 0, 4891, 4892, 7, 9, 0, 0, 4892, 4893, 7, 4, 0, 0, 4893, 4894, 7, 7, 0, 0, 4894, 908, 1, 0, 0, 0, 4895, 4896, 7, 15, 0, 0, 4896, 4897, 7, 9, 0, 0, 4897, 4898, 7, 4, 0, 0, 4898, 4899, 7, 7, 0, 0, 4899, 4900, 7, 11, 0, 0, 4900, 4901, 7, 19, 0, 0, 4901, 4902, 7, 24, 0, 0, 4902, 4903, 7, 8, 0, 0, 4903, 4904, 7, 6, 0, 0, 4904, 4905, 7, 11, 0, 0, 4905, 910, 1, 0, 0, 0, 4906, 4907, 7, 15, 0, 0, 4907, 4908, 7, 19, 0, 0, 4908, 4909, 7, 20, 0, 0, 4909, 912, 1, 0, 0, 0, 4910, 4911, 7, 9, 0, 0, 4911, 4912, 7, 12, 0, 0, 4912, 4913, 7, 16, 0, 0, 4913, 4914, 7, 19, 0, 0, 4914, 4915, 7, 12, 0, 0, 4915, 4916, 7, 9, 0, 0, 4916, 914, 1, 0, 0, 0, 4917, 4918, 7, 9, 0, 0, 4918, 4919, 7, 24, 0, 0, 4919, 4920, 7, 6, 0, 0, 4920, 4921, 7, 7, 0, 0, 4921, 4922, 7, 22, 0, 0, 4922, 916, 1, 0, 0, 0, 4923, 4924, 7, 9, 0, 0, 4924, 4925, 7, 18, 0, 0, 4925, 4926, 7, 7, 0, 0, 4926, 4927, 7, 5, 0, 0, 4927, 4928, 7, 21, 0, 0, 4928, 4929, 7, 15, 0, 0, 4929, 4930, 7, 19, 0, 0, 4930, 4931, 7, 12, 0, 0, 4931, 4932, 7, 16, 0, 0, 4932, 918, 1, 0, 0, 0, 4933, 4934, 7, 23, 0, 0, 4934, 4935, 7, 19, 0, 0, 4935, 4936, 7, 5, 0, 0, 4936, 4937, 7, 9, 0, 0, 4937, 920, 1, 0, 0, 0, 4938, 4939, 7, 23, 0, 0, 4939, 4940, 7, 19, 0, 0, 4940, 4941, 7, 11, 0, 0, 4941, 4942, 7, 4, 0, 0, 4942, 4943, 7, 8, 0, 0, 4943, 922, 1, 0, 0, 0, 4944, 4945, 7, 16, 0, 0, 4945, 4946, 7, 9, 0, 0, 4946, 4947, 7, 12, 0, 0, 4947, 4948, 7, 9, 0, 0, 4948, 4949, 7, 11, 0, 0, 4949, 4950, 7, 2, 0, 0, 4950, 4951, 7, 8, 0, 0, 4951, 4952, 7, 9, 0, 0, 4952, 4953, 7, 15, 0, 0, 4953, 924, 1, 0, 0, 0, 4954, 4955, 7, 22, 0, 0, 4955, 4956, 7, 6, 0, 0, 4956, 4957, 7, 24, 0, 0, 4957, 926, 1, 0, 0, 0, 4958, 4959, 7, 22, 0, 0, 4959, 4960, 7, 6, 0, 0, 4960, 4961, 7, 21, 0, 0, 4961, 4962, 7, 11, 0, 0, 4962, 4963, 7, 4, 0, 0, 4963, 928, 1, 0, 0, 0, 4964, 4965, 7, 19, 0, 0, 4965, 4966, 7, 16, 0, 0, 4966, 4967, 7, 12, 0, 0, 4967, 4968, 7, 6, 0, 0, 4968, 4969, 7, 11, 0, 0, 4969, 4970, 7, 9, 0, 0, 4970, 930, 1, 0, 0, 0, 4971, 4972, 7, 19, 0, 0, 4972, 4973, 7, 12, 0, 0, 4973, 4974, 7, 7, 0, 0, 4974, 4975, 7, 5, 0, 0, 4975, 4976, 7, 21, 0, 0, 4976, 4977, 7, 15, 0, 0, 4977, 4978, 7, 19, 0, 0, 4978, 4979, 7, 12, 0, 0, 4979, 4980, 7, 16, 0, 0, 4980, 932, 1, 0, 0, 0, 4981, 4982, 7, 27, 0, 0, 4982, 4983, 7, 2, 0, 0, 4983, 4984, 7, 11, 0, 0, 4984, 934, 1, 0, 0, 0, 4985, 4986, 7, 27, 0, 0, 4986, 4987, 7, 2, 0, 0, 4987, 4988, 7, 11, 0, 0, 4988, 4989, 7, 4, 0, 0, 4989, 936, 1, 0, 0, 0, 4990, 4991, 7, 27, 0, 0, 4991, 4992, 7, 2, 0, 0, 4992, 4993, 7, 20, 0, 0, 4993, 4994, 7, 2, 0, 0, 4994, 938, 1, 0, 0, 0, 4995, 4996, 7, 25, 0, 0, 4996, 4997, 7, 9, 0, 0, 4997, 4998, 7, 13, 0, 0, 4998, 940, 1, 0, 0, 0, 4999, 5000, 7, 5, 0, 0, 5000, 5001, 7, 2, 0, 0, 5001, 5002, 7, 4, 0, 0, 5002, 5003, 7, 8, 0, 0, 5003, 942, 1, 0, 0, 0, 5004, 5005, 7, 5, 0, 0, 5005, 5006, 7, 6, 0, 0, 5006, 5007, 7, 2, 0, 0, 5007, 5008, 7, 15, 0, 0, 5008, 944, 1, 0, 0, 0, 5009, 5010, 7, 17, 0, 0, 5010, 5011, 7, 2, 0, 0, 5011, 5012, 7, 24, 0, 0, 5012, 946, 1, 0, 0, 0, 5013, 5014, 7, 17, 0, 0, 5014, 5015, 7, 19, 0, 0, 5015, 5016, 7, 7, 0, 0, 5016, 5017, 7, 11, 0, 0, 5017, 5018, 7, 6, 0, 0, 5018, 5019, 7, 4, 0, 0, 5019, 5020, 7, 9, 0, 0, 5020, 5021, 7, 7, 0, 0, 5021, 5022, 7, 6, 0, 0, 5022, 5023, 7, 12, 0, 0, 5023, 5024, 7, 15, 0, 0, 5024, 948, 1, 0, 0, 0, 5025, 5026, 7, 17, 0, 0, 5026, 5027, 7, 19, 0, 0, 5027, 5028, 7, 5, 0, 0, 5028, 5029, 7, 5, 0, 0, 5029, 5030, 7, 9, 0, 0, 5030, 5031, 7, 12, 0, 0, 5031, 5032, 7, 12, 0, 0, 5032, 5033, 7, 19, 0, 0, 5033, 5034, 7, 21, 0, 0, 5034, 5035, 7, 17, 0, 0, 5035, 950, 1, 0, 0, 0, 5036, 5037, 7, 17, 0, 0, 5037, 5038, 7, 19, 0, 0, 5038, 5039, 7, 5, 0, 0, 5039, 5040, 7, 5, 0, 0, 5040, 5041, 7, 19, 0, 0, 5041, 5042, 7, 4, 0, 0, 5042, 5043, 7, 9, 0, 0, 5043, 5044, 7, 7, 0, 0, 5044, 5045, 7, 6, 0, 0, 5045, 5046, 7, 12, 0, 0, 5046, 5047, 7, 15, 0, 0, 5047, 952, 1, 0, 0, 0, 5048, 5049, 7, 17, 0, 0, 5049, 5050, 7, 19, 0, 0, 5050, 5051, 7, 12, 0, 0, 5051, 5052, 7, 21, 0, 0, 5052, 5053, 7, 8, 0, 0, 5053, 5054, 7, 9, 0, 0, 5054, 5055, 7, 4, 0, 0, 5055, 954, 1, 0, 0, 0, 5056, 5057, 7, 17, 0, 0, 5057, 5058, 7, 6, 0, 0, 5058, 5059, 7, 12, 0, 0, 5059, 5060, 7, 8, 0, 0, 5060, 5061, 7, 22, 0, 0, 5061, 5062, 7, 4, 0, 0, 5062, 956, 1, 0, 0, 0, 5063, 5064, 7, 12, 0, 0, 5064, 5065, 7, 2, 0, 0, 5065, 5066, 7, 12, 0, 0, 5066, 5067, 7, 6, 0, 0, 5067, 5068, 7, 4, 0, 0, 5068, 5069, 7, 9, 0, 0, 5069, 5070, 7, 7, 0, 0, 5070, 5071, 7, 6, 0, 0, 5071, 5072, 7, 12, 0, 0, 5072, 5073, 7, 15, 0, 0, 5073, 958, 1, 0, 0, 0, 5074, 5075, 7, 12, 0, 0, 5075, 5076, 7, 21, 0, 0, 5076, 5077, 7, 5, 0, 0, 5077, 5078, 7, 5, 0, 0, 5078, 5079, 7, 4, 0, 0, 5079, 960, 1, 0, 0, 0, 5080, 5081, 7, 6, 0, 0, 5081, 5082, 7, 24, 0, 0, 5082, 5083, 7, 8, 0, 0, 5083, 5084, 7, 19, 0, 0, 5084, 5085, 7, 6, 0, 0, 5085, 5086, 7, 12, 0, 0, 5086, 5087, 7, 4, 0, 0, 5087, 962, 1, 0, 0, 0, 5088, 5089, 7, 24, 0, 0, 5089, 5090, 7, 2, 0, 0, 5090, 5091, 7, 4, 0, 0, 5091, 5092, 7, 8, 0, 0, 5092, 964, 1, 0, 0, 0, 5093, 5094, 7, 24, 0, 0, 5094, 5095, 7, 5, 0, 0, 5095, 5096, 7, 2, 0, 0, 5096, 5097, 7, 12, 0, 0, 5097, 966, 1, 0, 0, 0, 5098, 5099, 7, 24, 0, 0, 5099, 5100, 7, 11, 0, 0, 5100, 5101, 7, 9, 0, 0, 5101, 5102, 7, 7, 0, 0, 5102, 5103, 7, 9, 0, 0, 5103, 5104, 7, 15, 0, 0, 5104, 5105, 7, 19, 0, 0, 5105, 5106, 7, 12, 0, 0, 5106, 5107, 7, 16, 0, 0, 5107, 968, 1, 0, 0, 0, 5108, 5109, 7, 24, 0, 0, 5109, 5110, 7, 13, 0, 0, 5110, 5111, 7, 8, 0, 0, 5111, 5112, 7, 22, 0, 0, 5112, 5113, 7, 6, 0, 0, 5113, 5114, 7, 12, 0, 0, 5114, 970, 1, 0, 0, 0, 5115, 5116, 7, 24, 0, 0, 5116, 5117, 7, 13, 0, 0, 5117, 5118, 7, 8, 0, 0, 5118, 5119, 7, 22, 0, 0, 5119, 5120, 7, 6, 0, 0, 5120, 5121, 7, 12, 0, 0, 5121, 5122, 5, 95, 0, 0, 5122, 5123, 7, 2, 0, 0, 5123, 5124, 7, 11, 0, 0, 5124, 5125, 7, 7, 0, 0, 5125, 5126, 7, 22, 0, 0, 5126, 5127, 7, 19, 0, 0, 5127, 5128, 7, 20, 0, 0, 5128, 5129, 7, 9, 0, 0, 5129, 5130, 7, 4, 0, 0, 5130, 972, 1, 0, 0, 0, 5131, 5132, 7, 24, 0, 0, 5132, 5133, 7, 13, 0, 0, 5133, 5134, 7, 8, 0, 0, 5134, 5135, 7, 22, 0, 0, 5135, 5136, 7, 6, 0, 0, 5136, 5137, 7, 12, 0, 0, 5137, 5138, 5, 95, 0, 0, 5138, 5139, 7, 15, 0, 0, 5139, 5140, 7, 9, 0, 0, 5140, 5141, 7, 24, 0, 0, 5141, 5142, 7, 9, 0, 0, 5142, 5143, 7, 12, 0, 0, 5143, 5144, 7, 15, 0, 0, 5144, 5145, 7, 9, 0, 0, 5145, 5146, 7, 12, 0, 0, 5146, 5147, 7, 7, 0, 0, 5147, 5148, 7, 19, 0, 0, 5148, 5149, 7, 9, 0, 0, 5149, 5150, 7, 4, 0, 0, 5150, 974, 1, 0, 0, 0, 5151, 5152, 7, 24, 0, 0, 5152, 5153, 7, 13, 0, 0, 5153, 5154, 7, 8, 0, 0, 5154, 5155, 7, 22, 0, 0, 5155, 5156, 7, 6, 0, 0, 5156, 5157, 7, 12, 0, 0, 5157, 5158, 5, 95, 0, 0, 5158, 5159, 7, 23, 0, 0, 5159, 5160, 7, 19, 0, 0, 5160, 5161, 7, 5, 0, 0, 5161, 5162, 7, 9, 0, 0, 5162, 5163, 7, 4, 0, 0, 5163, 976, 1, 0, 0, 0, 5164, 5165, 7, 24, 0, 0, 5165, 5166, 7, 13, 0, 0, 5166, 5167, 7, 8, 0, 0, 5167, 5168, 7, 22, 0, 0, 5168, 5169, 7, 6, 0, 0, 5169, 5170, 7, 12, 0, 0, 5170, 5171, 5, 95, 0, 0, 5171, 5172, 7, 27, 0, 0, 5172, 5173, 7, 2, 0, 0, 5173, 5174, 7, 11, 0, 0, 5174, 978, 1, 0, 0, 0, 5175, 5176, 7, 24, 0, 0, 5176, 5177, 7, 13, 0, 0, 5177, 5178, 7, 8, 0, 0, 5178, 5179, 7, 22, 0, 0, 5179, 5180, 7, 6, 0, 0, 5180, 5181, 7, 12, 0, 0, 5181, 5182, 5, 95, 0, 0, 5182, 5183, 7, 24, 0, 0, 5183, 5184, 7, 2, 0, 0, 5184, 5185, 7, 11, 0, 0, 5185, 5186, 7, 2, 0, 0, 5186, 5187, 7, 17, 0, 0, 5187, 5188, 7, 9, 0, 0, 5188, 5189, 7, 8, 0, 0, 5189, 5190, 7, 9, 0, 0, 5190, 5191, 7, 11, 0, 0, 5191, 980, 1, 0, 0, 0, 5192, 5193, 7, 24, 0, 0, 5193, 5194, 7, 13, 0, 0, 5194, 5195, 7, 8, 0, 0, 5195, 5196, 7, 22, 0, 0, 5196, 5197, 7, 6, 0, 0, 5197, 5198, 7, 12, 0, 0, 5198, 5199, 5, 95, 0, 0, 5199, 5200, 7, 11, 0, 0, 5200, 5201, 7, 9, 0, 0, 5201, 5202, 7, 26, 0, 0, 5202, 5203, 7, 21, 0, 0, 5203, 5204, 7, 19, 0, 0, 5204, 5205, 7, 11, 0, 0, 5205, 5206, 7, 9, 0, 0, 5206, 5207, 7, 17, 0, 0, 5207, 5208, 7, 9, 0, 0, 5208, 5209, 7, 12, 0, 0, 5209, 5210, 7, 8, 0, 0, 5210, 5211, 7, 4, 0, 0, 5211, 982, 1, 0, 0, 0, 5212, 5213, 7, 26, 0, 0, 5213, 5214, 7, 21, 0, 0, 5214, 5215, 7, 2, 0, 0, 5215, 5216, 7, 11, 0, 0, 5216, 5217, 7, 8, 0, 0, 5217, 5218, 7, 9, 0, 0, 5218, 5219, 7, 11, 0, 0, 5219, 984, 1, 0, 0, 0, 5220, 5221, 7, 11, 0, 0, 5221, 5222, 7, 9, 0, 0, 5222, 5223, 7, 17, 0, 0, 5223, 5224, 7, 6, 0, 0, 5224, 5225, 7, 20, 0, 0, 5225, 5226, 7, 9, 0, 0, 5226, 986, 1, 0, 0, 0, 5227, 5228, 7, 11, 0, 0, 5228, 5229, 7, 9, 0, 0, 5229, 5230, 7, 4, 0, 0, 5230, 5231, 7, 8, 0, 0, 5231, 5232, 7, 11, 0, 0, 5232, 5233, 7, 19, 0, 0, 5233, 5234, 7, 7, 0, 0, 5234, 5235, 7, 8, 0, 0, 5235, 988, 1, 0, 0, 0, 5236, 5237, 7, 4, 0, 0, 5237, 5238, 7, 9, 0, 0, 5238, 5239, 7, 7, 0, 0, 5239, 5240, 7, 6, 0, 0, 5240, 5241, 7, 12, 0, 0, 5241, 5242, 7, 15, 0, 0, 5242, 5243, 7, 4, 0, 0, 5243, 990, 1, 0, 0, 0, 5244, 5245, 7, 4, 0, 0, 5245, 5246, 7, 9, 0, 0, 5246, 5247, 7, 4, 0, 0, 5247, 5248, 7, 4, 0, 0, 5248, 5249, 7, 19, 0, 0, 5249, 5250, 7, 6, 0, 0, 5250, 5251, 7, 12, 0, 0, 5251, 992, 1, 0, 0, 0, 5252, 5253, 7, 4, 0, 0, 5253, 5254, 7, 9, 0, 0, 5254, 5255, 7, 8, 0, 0, 5255, 5256, 7, 4, 0, 0, 5256, 994, 1, 0, 0, 0, 5257, 5258, 7, 4, 0, 0, 5258, 5259, 7, 19, 0, 0, 5259, 5260, 7, 14, 0, 0, 5260, 5261, 7, 9, 0, 0, 5261, 996, 1, 0, 0, 0, 5262, 5263, 7, 4, 0, 0, 5263, 5264, 7, 5, 0, 0, 5264, 5265, 7, 19, 0, 0, 5265, 5266, 7, 15, 0, 0, 5266, 5267, 7, 9, 0, 0, 5267, 998, 1, 0, 0, 0, 5268, 5269, 7, 4, 0, 0, 5269, 5270, 7, 8, 0, 0, 5270, 5271, 7, 9, 0, 0, 5271, 5272, 7, 24, 0, 0, 5272, 1000, 1, 0, 0, 0, 5273, 5274, 7, 8, 0, 0, 5274, 5275, 7, 9, 0, 0, 5275, 5276, 7, 17, 0, 0, 5276, 5277, 7, 24, 0, 0, 5277, 5278, 7, 6, 0, 0, 5278, 5279, 7, 11, 0, 0, 5279, 5280, 7, 2, 0, 0, 5280, 5281, 7, 11, 0, 0, 5281, 5282, 7, 13, 0, 0, 5282, 1002, 1, 0, 0, 0, 5283, 5284, 7, 8, 0, 0, 5284, 5285, 7, 19, 0, 0, 5285, 5286, 7, 17, 0, 0, 5286, 5287, 7, 9, 0, 0, 5287, 5288, 7, 7, 0, 0, 5288, 5289, 7, 6, 0, 0, 5289, 5290, 7, 5, 0, 0, 5290, 1004, 1, 0, 0, 0, 5291, 5292, 7, 8, 0, 0, 5292, 5293, 7, 21, 0, 0, 5293, 5294, 7, 17, 0, 0, 5294, 5295, 7, 3, 0, 0, 5295, 5296, 7, 5, 0, 0, 5296, 5297, 7, 9, 0, 0, 5297, 1006, 1, 0, 0, 0, 5298, 5299, 7, 21, 0, 0, 5299, 5300, 7, 12, 0, 0, 5300, 5301, 7, 5, 0, 0, 5301, 5302, 7, 6, 0, 0, 5302, 5303, 7, 2, 0, 0, 5303, 5304, 7, 15, 0, 0, 5304, 1008, 1, 0, 0, 0, 5305, 5306, 7, 20, 0, 0, 5306, 5307, 7, 19, 0, 0, 5307, 5308, 7, 9, 0, 0, 5308, 5309, 7, 10, 0, 0, 5309, 1010, 1, 0, 0, 0, 5310, 5311, 7, 10, 0, 0, 5311, 5312, 7, 9, 0, 0, 5312, 5313, 7, 9, 0, 0, 5313, 5314, 7, 25, 0, 0, 5314, 1012, 1, 0, 0, 0, 5315, 5316, 7, 13, 0, 0, 5316, 5317, 7, 9, 0, 0, 5317, 5318, 7, 2, 0, 0, 5318, 5319, 7, 11, 0, 0, 5319, 5320, 7, 4, 0, 0, 5320, 1014, 1, 0, 0, 0, 5321, 5322, 7, 14, 0, 0, 5322, 5323, 7, 6, 0, 0, 5323, 5324, 7, 12, 0, 0, 5324, 5325, 7, 9, 0, 0, 5325, 1016, 1, 0, 0, 0, 5326, 5327, 5, 61, 0, 0, 5327, 1018, 1, 0, 0, 0, 5328, 5329, 5, 62, 0, 0, 5329, 1020, 1, 0, 0, 0, 5330, 5331, 5, 60, 0, 0, 5331, 1022, 1, 0, 0, 0, 5332, 5333, 5, 33, 0, 0, 5333, 1024, 1, 0, 0, 0, 5334, 5335, 5, 126, 0, 0, 5335, 1026, 1, 0, 0, 0, 5336, 5337, 5, 124, 0, 0, 5337, 1028, 1, 0, 0, 0, 5338, 5339, 5, 38, 0, 0, 5339, 1030, 1, 0, 0, 0, 5340, 5341, 5, 94, 0, 0, 5341, 1032, 1, 0, 0, 0, 5342, 5343, 5, 46, 0, 0, 5343, 1034, 1, 0, 0, 0, 5344, 5345, 5, 91, 0, 0, 5345, 1036, 1, 0, 0, 0, 5346, 5347, 5, 93, 0, 0, 5347, 1038, 1, 0, 0, 0, 5348, 5349, 5, 40, 0, 0, 5349, 1040, 1, 0, 0, 0, 5350, 5351, 5, 41, 0, 0, 5351, 1042, 1, 0, 0, 0, 5352, 5353, 5, 123, 0, 0, 5353, 1044, 1, 0, 0, 0, 5354, 5355, 5, 125, 0, 0, 5355, 1046, 1, 0, 0, 0, 5356, 5357, 5, 44, 0, 0, 5357, 1048, 1, 0, 0, 0, 5358, 5359, 5, 59, 0, 0, 5359, 1050, 1, 0, 0, 0, 5360, 5361, 5, 64, 0, 0, 5361, 1052, 1, 0, 0, 0, 5362, 5363, 5, 39, 0, 0, 5363, 1054, 1, 0, 0, 0, 5364, 5365, 5, 34, 0, 0, 5365, 1056, 1, 0, 0, 0, 5366, 5367, 5, 96, 0, 0, 5367, 1058, 1, 0, 0, 0, 5368, 5369, 5, 58, 0, 0, 5369, 1060, 1, 0, 0, 0, 5370, 5371, 5, 42, 0, 0, 5371, 1062, 1, 0, 0, 0, 5372, 5373, 5, 95, 0, 0, 5373, 1064, 1, 0, 0, 0, 5374, 5375, 5, 45, 0, 0, 5375, 1066, 1, 0, 0, 0, 5376, 5377, 5, 43, 0, 0, 5377, 1068, 1, 0, 0, 0, 5378, 5379, 5, 37, 0, 0, 5379, 1070, 1, 0, 0, 0, 5380, 5381, 5, 124, 0, 0, 5381, 5382, 5, 124, 0, 0, 5382, 1072, 1, 0, 0, 0, 5383, 5384, 5, 45, 0, 0, 5384, 5385, 5, 45, 0, 0, 5385, 1074, 1, 0, 0, 0, 5386, 5387, 5, 47, 0, 0, 5387, 1076, 1, 0, 0, 0, 5388, 5389, 5, 63, 0, 0, 5389, 1078, 1, 0, 0, 0, 5390, 5391, 5, 61, 0, 0, 5391, 5392, 5, 62, 0, 0, 5392, 1080, 1, 0, 0, 0, 5393, 5397, 3, 1101, 550, 0, 5394, 5397, 3, 1103, 551, 0, 5395, 5397, 3, 1107, 553, 0, 5396, 5393, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5396, 5395, 1, 0, 0, 0, 5397, 1082, 1, 0, 0, 0, 5398, 5400, 3, 1097, 548, 0, 5399, 5398, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5399, 1, 0, 0, 0, 5401, 5402, 1, 0, 0, 0, 5402, 1084, 1, 0, 0, 0, 5403, 5405, 3, 1097, 548, 0, 5404, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5409, 1, 0, 0, 0, 5408, 5404, 1, 0, 0, 0, 5408, 5409, 1, 0, 0, 0, 5409, 5410, 1, 0, 0, 0, 5410, 5412, 5, 46, 0, 0, 5411, 5413, 3, 1097, 548, 0, 5412, 5411, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5447, 1, 0, 0, 0, 5416, 5418, 3, 1097, 548, 0, 5417, 5416, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5417, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5422, 5, 46, 0, 0, 5422, 5423, 3, 1093, 546, 0, 5423, 5447, 1, 0, 0, 0, 5424, 5426, 3, 1097, 548, 0, 5425, 5424, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5425, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 5, 46, 0, 0, 5432, 5434, 3, 1097, 548, 0, 5433, 5432, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5433, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5438, 3, 1093, 546, 0, 5438, 5447, 1, 0, 0, 0, 5439, 5441, 3, 1097, 548, 0, 5440, 5439, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5442, 5440, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 3, 1093, 546, 0, 5445, 5447, 1, 0, 0, 0, 5446, 5408, 1, 0, 0, 0, 5446, 5417, 1, 0, 0, 0, 5446, 5429, 1, 0, 0, 0, 5446, 5440, 1, 0, 0, 0, 5447, 1086, 1, 0, 0, 0, 5448, 5449, 3, 1105, 552, 0, 5449, 1088, 1, 0, 0, 0, 5450, 5451, 3, 1095, 547, 0, 5451, 1090, 1, 0, 0, 0, 5452, 5460, 5, 96, 0, 0, 5453, 5454, 5, 92, 0, 0, 5454, 5459, 9, 0, 0, 0, 5455, 5456, 5, 96, 0, 0, 5456, 5459, 5, 96, 0, 0, 5457, 5459, 8, 28, 0, 0, 5458, 5453, 1, 0, 0, 0, 5458, 5455, 1, 0, 0, 0, 5458, 5457, 1, 0, 0, 0, 5459, 5462, 1, 0, 0, 0, 5460, 5458, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 1, 0, 0, 0, 5462, 5460, 1, 0, 0, 0, 5463, 5464, 5, 96, 0, 0, 5464, 1092, 1, 0, 0, 0, 5465, 5467, 7, 9, 0, 0, 5466, 5468, 7, 29, 0, 0, 5467, 5466, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5470, 1, 0, 0, 0, 5469, 5471, 3, 1097, 548, 0, 5470, 5469, 1, 0, 0, 0, 5471, 5472, 1, 0, 0, 0, 5472, 5470, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 1094, 1, 0, 0, 0, 5474, 5476, 7, 30, 0, 0, 5475, 5474, 1, 0, 0, 0, 5476, 5479, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5477, 5475, 1, 0, 0, 0, 5478, 5481, 1, 0, 0, 0, 5479, 5477, 1, 0, 0, 0, 5480, 5482, 7, 31, 0, 0, 5481, 5480, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5483, 5481, 1, 0, 0, 0, 5484, 5488, 1, 0, 0, 0, 5485, 5487, 7, 30, 0, 0, 5486, 5485, 1, 0, 0, 0, 5487, 5490, 1, 0, 0, 0, 5488, 5486, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 1096, 1, 0, 0, 0, 5490, 5488, 1, 0, 0, 0, 5491, 5492, 7, 32, 0, 0, 5492, 1098, 1, 0, 0, 0, 5493, 5494, 7, 33, 0, 0, 5494, 1100, 1, 0, 0, 0, 5495, 5503, 5, 34, 0, 0, 5496, 5497, 5, 92, 0, 0, 5497, 5502, 9, 0, 0, 0, 5498, 5499, 5, 34, 0, 0, 5499, 5502, 5, 34, 0, 0, 5500, 5502, 8, 34, 0, 0, 5501, 5496, 1, 0, 0, 0, 5501, 5498, 1, 0, 0, 0, 5501, 5500, 1, 0, 0, 0, 5502, 5505, 1, 0, 0, 0, 5503, 5501, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5506, 1, 0, 0, 0, 5505, 5503, 1, 0, 0, 0, 5506, 5507, 5, 34, 0, 0, 5507, 1102, 1, 0, 0, 0, 5508, 5516, 5, 39, 0, 0, 5509, 5510, 5, 92, 0, 0, 5510, 5515, 9, 0, 0, 0, 5511, 5512, 5, 39, 0, 0, 5512, 5515, 5, 39, 0, 0, 5513, 5515, 8, 35, 0, 0, 5514, 5509, 1, 0, 0, 0, 5514, 5511, 1, 0, 0, 0, 5514, 5513, 1, 0, 0, 0, 5515, 5518, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5516, 1, 0, 0, 0, 5519, 5520, 5, 39, 0, 0, 5520, 1104, 1, 0, 0, 0, 5521, 5522, 7, 3, 0, 0, 5522, 5524, 5, 39, 0, 0, 5523, 5525, 7, 36, 0, 0, 5524, 5523, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5527, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 5529, 5, 39, 0, 0, 5529, 1106, 1, 0, 0, 0, 5530, 5538, 5, 96, 0, 0, 5531, 5532, 5, 92, 0, 0, 5532, 5537, 9, 0, 0, 0, 5533, 5534, 5, 96, 0, 0, 5534, 5537, 5, 96, 0, 0, 5535, 5537, 8, 28, 0, 0, 5536, 5531, 1, 0, 0, 0, 5536, 5533, 1, 0, 0, 0, 5536, 5535, 1, 0, 0, 0, 5537, 5540, 1, 0, 0, 0, 5538, 5536, 1, 0, 0, 0, 5538, 5539, 1, 0, 0, 0, 5539, 5541, 1, 0, 0, 0, 5540, 5538, 1, 0, 0, 0, 5541, 5542, 5, 96, 0, 0, 5542, 1108, 1, 0, 0, 0, 34, 0, 1119, 1130, 1135, 1139, 1143, 1149, 1153, 1155, 5396, 5401, 5406, 5408, 5414, 5419, 5427, 5429, 5435, 5442, 5446, 5458, 5460, 5467, 5472, 5477, 5483, 5488, 5501, 5503, 5514, 5516, 5526, 5536, 5538, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlLexer.tokens b/src/lib/flink/FlinkSqlLexer.tokens index 48749ead..68212f4e 100644 --- a/src/lib/flink/FlinkSqlLexer.tokens +++ b/src/lib/flink/FlinkSqlLexer.tokens @@ -143,403 +143,406 @@ KW_FILTER=142 KW_FIRST_VALUE=143 KW_FLOAT=144 KW_FLOOR=145 -KW_FOR=146 -KW_FOREIGN=147 -KW_FRAME_ROW=148 -KW_FREE=149 -KW_FRIDAY=150 -KW_FROM=151 -KW_FULL=152 -KW_FUNCTION=153 -KW_FUNCTIONS=154 -KW_FUSION=155 -KW_GET=156 -KW_GLOBAL=157 -KW_GRANT=158 -KW_GROUP=159 -KW_GROUPING=160 -KW_GROUPS=161 -KW_GROUP_CONCAT=162 -KW_HAVING=163 -KW_HOLD=164 -KW_HOUR=165 -KW_IDENTITY=166 -KW_IF=167 -KW_ILIKE=168 -KW_IMPORT=169 -KW_IN=170 -KW_INCLUDE=171 -KW_INDICATOR=172 -KW_INITIAL=173 -KW_INNER=174 -KW_INOUT=175 -KW_INSENSITIVE=176 -KW_INSERT=177 -KW_INT=178 -KW_INTEGER=179 -KW_INTERSECT=180 -KW_INTERSECTION=181 -KW_INTERVAL=182 -KW_INTO=183 -KW_IS=184 -KW_JOIN=185 -KW_JSON=186 -KW_JSON_ARRAY=187 -KW_JSON_ARRAYAGG=188 -KW_JSON_EXECUTION_PLAN=189 -KW_JSON_EXISTS=190 -KW_JSON_OBJECT=191 -KW_JSON_OBJECTAGG=192 -KW_JSON_QUERY=193 -KW_JSON_VALUE=194 -KW_LAG=195 -KW_LANGUAGE=196 -KW_LARGE=197 -KW_LAST_VALUE=198 -KW_LATERAL=199 -KW_LEAD=200 -KW_LEADING=201 -KW_LEFT=202 -KW_LIKE=203 -KW_LIKE_REGEX=204 -KW_LIMIT=205 -KW_LN=206 -KW_LOCAL=207 -KW_LOCALTIME=208 -KW_LOCALTIMESTAMP=209 -KW_LOWER=210 -KW_MATCH=211 -KW_MATCHES=212 -KW_MATCH_NUMBER=213 -KW_MATCH_RECOGNIZE=214 -KW_MAX=215 -KW_MEASURES=216 -KW_MEMBER=217 -KW_MERGE=218 -KW_METADATA=219 -KW_METHOD=220 -KW_MIN=221 -KW_MINUS=222 -KW_MINUTE=223 -KW_MOD=224 -KW_MODIFIES=225 -KW_MODIFY=226 -KW_MODULE=227 -KW_MODULES=228 -KW_MONDAY=229 -KW_MONTH=230 -KW_MORE=231 -KW_MULTISET=232 -KW_NATIONAL=233 -KW_NATURAL=234 -KW_NCHAR=235 -KW_NCLOB=236 -KW_NEW=237 -KW_NEXT=238 -KW_NO=239 -KW_NONE=240 -KW_NORMALIZE=241 -KW_NOT=242 -KW_NTH_VALUE=243 -KW_NTILE=244 -KW_NULL=245 -KW_NULLIF=246 -KW_NUMERIC=247 -KW_OCCURRENCES_REGEX=248 -KW_OCTET_LENGTH=249 -KW_OF=250 -KW_OFFSET=251 -KW_OLD=252 -KW_OMIT=253 -KW_ON=254 -KW_ONE=255 -KW_ONLY=256 -KW_OPEN=257 -KW_OR=258 -KW_ORDER=259 -KW_ORDINAL=260 -KW_OUT=261 -KW_OUTER=262 -KW_OVER=263 -KW_OVERLAPS=264 -KW_OVERLAY=265 -KW_OVERWRITE=266 -KW_OVERWRITING=267 -KW_PARAMETER=268 -KW_PARTITION=269 -KW_PARTITIONED=270 -KW_PARTITIONS=271 -KW_PATTERN=272 -KW_PER=273 -KW_PERCENT=274 -KW_PERCENTILE_CONT=275 -KW_PERCENTILE_DISC=276 -KW_PERCENT_RANK=277 -KW_PERIOD=278 -KW_PERMUTE=279 -KW_PIVOT=280 -KW_PORTION=281 -KW_POSITION=282 -KW_POSITION_REGEX=283 -KW_POWER=284 -KW_PRECEDES=285 -KW_PRECISION=286 -KW_PREPARE=287 -KW_PREV=288 -KW_PRIMARY=289 -KW_PROCEDURE=290 -KW_QUALIFY=291 -KW_QUARTERS=292 -KW_RANGE=293 -KW_RANK=294 -KW_RAW=295 -KW_READS=296 -KW_REAL=297 -KW_RECURSIVE=298 -KW_REF=299 -KW_REFERENCES=300 -KW_REFERENCING=301 -KW_REGR_AVGX=302 -KW_REGR_AVGY=303 -KW_REGR_COUNT=304 -KW_REGR_INTERCEPT=305 -KW_REGR_R2=306 -KW_REGR_SLOPE=307 -KW_REGR_SXX=308 -KW_REGR_SXY=309 -KW_REGR_SYY=310 -KW_RELEASE=311 -KW_RENAME=312 -KW_RESET=313 -KW_RESULT=314 -KW_RETURN=315 -KW_RETURNS=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_ROW_NUMBER=324 -KW_RUNNING=325 -KW_SAFE_CAST=326 -KW_SAFE_OFFSET=327 -KW_SAFE_ORDINAL=328 -KW_SATURDAY=329 -KW_SAVEPOINT=330 -KW_SCALA=331 -KW_SCOPE=332 -KW_SCROLL=333 -KW_SEARCH=334 -KW_SECOND=335 -KW_SEEK=336 -KW_SELECT=337 -KW_SENSITIVE=338 -KW_SEPARATOR=339 -KW_SESSION_USER=340 -KW_SET=341 -KW_SHOW=342 -KW_SIMILAR=343 -KW_SKIP=344 -KW_SMALLINT=345 -KW_SOME=346 -KW_SPECIFIC=347 -KW_SPECIFICTYPE=348 -KW_SQL=349 -KW_SQLEXCEPTION=350 -KW_SQLSTATE=351 -KW_SQLWARNING=352 -KW_SQRT=353 -KW_START=354 -KW_STATEMENT=355 -KW_STATIC=356 -KW_STATISTICS=357 -KW_STDDEV_POP=358 -KW_STDDEV_SAMP=359 -KW_STREAM=360 -KW_STRING=361 -KW_STRING_AGG=362 -KW_SUBMULTISET=363 -KW_SUBSET=364 -KW_SUBSTRING=365 -KW_SUBSTRING_REGEX=366 -KW_SUCCEEDS=367 -KW_SUM=368 -KW_SUNDAY=369 -KW_SYMMETRIC=370 -KW_SYSTEM=371 -KW_SYSTEM_TIME=372 -KW_SYSTEM_USER=373 -KW_TABLE=374 -KW_TABLES=375 -KW_TABLESAMPLE=376 -KW_THEN=377 -KW_THURSDAY=378 -KW_TIME=379 -KW_TIMESTAMP=380 -KW_TIMESTAMP_DIFF=381 -KW_TIMESTAMP_LTZ=382 -KW_TIMESTAMP_TRUNC=383 -KW_TIMEZONE_HOUR=384 -KW_TIMEZONE_MINUTE=385 -KW_TIME_DIFF=386 -KW_TIME_TRUNC=387 -KW_TINYINT=388 -KW_TO=389 -KW_TRAILING=390 -KW_TRANSLATE=391 -KW_TRANSLATE_REGEX=392 -KW_TRANSLATION=393 -KW_TREAT=394 -KW_TRIGGER=395 -KW_TRIM=396 -KW_TRIM_ARRAY=397 -KW_TRUE=398 -KW_TRUNCATE=399 -KW_TRY_CAST=400 -KW_TUESDAY=401 -KW_UESCAPE=402 -KW_UNION=403 -KW_UNIQUE=404 -KW_UNKNOWN=405 -KW_UNNEST=406 -KW_UNPIVOT=407 -KW_UPDATE=408 -KW_UPPER=409 -KW_UPSERT=410 -KW_USE=411 -KW_USER=412 -KW_USING=413 -KW_VALUE=414 -KW_VALUES=415 -KW_VALUE_OF=416 -KW_VARBINARY=417 -KW_VARCHAR=418 -KW_VARYING=419 -KW_VAR_POP=420 -KW_VAR_SAMP=421 -KW_VERSIONING=422 -KW_VIEWS=423 -KW_VIRTUAL=424 -KW_WATERMARK=425 -KW_WATERMARKS=426 -KW_WEDNESDAY=427 -KW_WEEKS=428 -KW_WHEN=429 -KW_WHENEVER=430 -KW_WHERE=431 -KW_WIDTH_BUCKET=432 -KW_WINDOW=433 -KW_WITH=434 -KW_WITHIN=435 -KW_WITHOUT=436 -KW_YEAR=437 -KW_ADD=438 -KW_AFTER=439 -KW_ASC=440 -KW_CASCADE=441 -KW_CATALOG=442 -KW_CENTURY=443 -KW_CONFIG=444 -KW_CONSTRAINTS=445 -KW_CUMULATE=446 -KW_DATA=447 -KW_DATABASE=448 -KW_DAYS=449 -KW_DECADE=450 -KW_DESC=451 -KW_DESCRIPTOR=452 -KW_DIV=453 -KW_ENGINE=454 -KW_EPOCH=455 -KW_EXCLUDING=456 -KW_FILE=457 -KW_FIRST=458 -KW_GENERATED=459 -KW_HOP=460 -KW_HOURS=461 -KW_IGNORE=462 -KW_INCLUDING=463 -KW_JAR=464 -KW_JARS=465 -KW_JAVA=466 -KW_KEY=467 -KW_LAST=468 -KW_LOAD=469 -KW_MAP=470 -KW_MICROSECOND=471 -KW_MILLENNIUM=472 -KW_MILLISECOND=473 -KW_MINUTES=474 -KW_MONTHS=475 -KW_NANOSECOND=476 -KW_NULLS=477 -KW_OPTIONS=478 -KW_PAST=479 -KW_PLAN=480 -KW_PRECEDING=481 -KW_PYTHON=482 -KW_PYTHON_ARCHIVES=483 -KW_PYTHON_DEPENDENCIES=484 -KW_PYTHON_FILES=485 -KW_PYTHON_JAR=486 -KW_PYTHON_PARAMETER=487 -KW_PYTHON_REQUIREMENTS=488 -KW_QUARTER=489 -KW_REMOVE=490 -KW_RESTRICT=491 -KW_SECONDS=492 -KW_SESSION=493 -KW_SETS=494 -KW_SIZE=495 -KW_SLIDE=496 -KW_STEP=497 -KW_TEMPORARY=498 -KW_TIMECOL=499 -KW_TUMBLE=500 -KW_UNLOAD=501 -KW_VIEW=502 -KW_WEEK=503 -KW_YEARS=504 -KW_ZONE=505 -EQUAL_SYMBOL=506 -GREATER_SYMBOL=507 -LESS_SYMBOL=508 -EXCLAMATION_SYMBOL=509 -BIT_NOT_OP=510 -BIT_OR_OP=511 -BIT_AND_OP=512 -BIT_XOR_OP=513 -DOT=514 -LS_BRACKET=515 -RS_BRACKET=516 -LR_BRACKET=517 -RR_BRACKET=518 -LB_BRACKET=519 -RB_BRACKET=520 -COMMA=521 -SEMICOLON=522 -AT_SIGN=523 -SINGLE_QUOTE_SYMB=524 -DOUBLE_QUOTE_SYMB=525 -REVERSE_QUOTE_SYMB=526 -COLON_SYMB=527 -ASTERISK_SIGN=528 -UNDERLINE_SIGN=529 -HYPHEN_SIGN=530 -ADD_SIGN=531 -PERCENT_SIGN=532 -DOUBLE_VERTICAL_SIGN=533 -DOUBLE_HYPHEN_SIGN=534 -SLASH_SIGN=535 -QUESTION_MARK_SIGN=536 -DOUBLE_RIGHT_ARROW=537 -STRING_LITERAL=538 -DIG_LITERAL=539 -REAL_LITERAL=540 -BIT_STRING=541 -ID_LITERAL=542 +KW_FOLLOWING=146 +KW_FOR=147 +KW_FOREIGN=148 +KW_FRAME_ROW=149 +KW_FREE=150 +KW_FRIDAY=151 +KW_FROM=152 +KW_FULL=153 +KW_FUNCTION=154 +KW_FUNCTIONS=155 +KW_FUSION=156 +KW_GET=157 +KW_GLOBAL=158 +KW_GRANT=159 +KW_GROUP=160 +KW_GROUPING=161 +KW_GROUPS=162 +KW_GROUP_CONCAT=163 +KW_HAVING=164 +KW_HOLD=165 +KW_HOUR=166 +KW_IDENTITY=167 +KW_IF=168 +KW_ILIKE=169 +KW_IMPORT=170 +KW_IN=171 +KW_INCLUDE=172 +KW_INDICATOR=173 +KW_INITIAL=174 +KW_INNER=175 +KW_INOUT=176 +KW_INSENSITIVE=177 +KW_INSERT=178 +KW_INT=179 +KW_INTEGER=180 +KW_INTERSECT=181 +KW_INTERSECTION=182 +KW_INTERVAL=183 +KW_INTO=184 +KW_IS=185 +KW_JOIN=186 +KW_JSON=187 +KW_JSON_ARRAY=188 +KW_JSON_ARRAYAGG=189 +KW_JSON_EXECUTION_PLAN=190 +KW_JSON_EXISTS=191 +KW_JSON_OBJECT=192 +KW_JSON_OBJECTAGG=193 +KW_JSON_QUERY=194 +KW_JSON_VALUE=195 +KW_LAG=196 +KW_LANGUAGE=197 +KW_LARGE=198 +KW_LAST_VALUE=199 +KW_LATERAL=200 +KW_LEAD=201 +KW_LEADING=202 +KW_LEFT=203 +KW_LIKE=204 +KW_LIKE_REGEX=205 +KW_LIMIT=206 +KW_LN=207 +KW_LOCAL=208 +KW_LOCALTIME=209 +KW_LOCALTIMESTAMP=210 +KW_LOWER=211 +KW_MATCH=212 +KW_MATCHES=213 +KW_MATCH_NUMBER=214 +KW_MATCH_RECOGNIZE=215 +KW_MAX=216 +KW_MEASURES=217 +KW_MEMBER=218 +KW_MERGE=219 +KW_METADATA=220 +KW_METHOD=221 +KW_MIN=222 +KW_MINUS=223 +KW_MINUTE=224 +KW_MOD=225 +KW_MODIFIES=226 +KW_MODIFY=227 +KW_MODULE=228 +KW_MODULES=229 +KW_MONDAY=230 +KW_MONTH=231 +KW_MORE=232 +KW_MULTISET=233 +KW_NATIONAL=234 +KW_NATURAL=235 +KW_NCHAR=236 +KW_NCLOB=237 +KW_NEW=238 +KW_NEXT=239 +KW_NO=240 +KW_NONE=241 +KW_NORMALIZE=242 +KW_NOT=243 +KW_NTH_VALUE=244 +KW_NTILE=245 +KW_NULL=246 +KW_NULLIF=247 +KW_NUMERIC=248 +KW_OCCURRENCES_REGEX=249 +KW_OCTET_LENGTH=250 +KW_OF=251 +KW_OFFSET=252 +KW_OLD=253 +KW_OMIT=254 +KW_ON=255 +KW_ONE=256 +KW_ONLY=257 +KW_OPEN=258 +KW_OR=259 +KW_ORDER=260 +KW_ORDINAL=261 +KW_OUT=262 +KW_OUTER=263 +KW_OVER=264 +KW_OVERLAPS=265 +KW_OVERLAY=266 +KW_OVERWRITE=267 +KW_OVERWRITING=268 +KW_PARAMETER=269 +KW_PARTITION=270 +KW_PARTITIONED=271 +KW_PARTITIONS=272 +KW_PATTERN=273 +KW_PER=274 +KW_PERCENT=275 +KW_PERCENTILE_CONT=276 +KW_PERCENTILE_DISC=277 +KW_PERCENT_RANK=278 +KW_PERIOD=279 +KW_PERMUTE=280 +KW_RETURNING=281 +KW_PIVOT=282 +KW_PORTION=283 +KW_POSITION=284 +KW_POSITION_REGEX=285 +KW_POWER=286 +KW_PRECEDES=287 +KW_PRECISION=288 +KW_PREPARE=289 +KW_PREV=290 +KW_PRIMARY=291 +KW_PROCEDURE=292 +KW_QUALIFY=293 +KW_QUARTERS=294 +KW_RANGE=295 +KW_RANK=296 +KW_RAW=297 +KW_READS=298 +KW_REAL=299 +KW_RECURSIVE=300 +KW_REF=301 +KW_REFERENCES=302 +KW_REFERENCING=303 +KW_REGR_AVGX=304 +KW_REGR_AVGY=305 +KW_REGR_COUNT=306 +KW_REGR_INTERCEPT=307 +KW_REGR_R2=308 +KW_REGR_SLOPE=309 +KW_REGR_SXX=310 +KW_REGR_SXY=311 +KW_REGR_SYY=312 +KW_RELEASE=313 +KW_RENAME=314 +KW_RESET=315 +KW_RESULT=316 +KW_RETURN=317 +KW_RETURNS=318 +KW_REVOKE=319 +KW_RIGHT=320 +KW_RLIKE=321 +KW_ROLLBACK=322 +KW_ROLLUP=323 +KW_ROW=324 +KW_ROWS=325 +KW_ROW_NUMBER=326 +KW_RUNNING=327 +KW_SAFE_CAST=328 +KW_SAFE_OFFSET=329 +KW_SAFE_ORDINAL=330 +KW_SATURDAY=331 +KW_SAVEPOINT=332 +KW_SCALA=333 +KW_SCOPE=334 +KW_SCROLL=335 +KW_SEARCH=336 +KW_SECOND=337 +KW_SEEK=338 +KW_SELECT=339 +KW_SENSITIVE=340 +KW_SEPARATOR=341 +KW_SESSION_USER=342 +KW_SET=343 +KW_SHOW=344 +KW_SIMILAR=345 +KW_SKIP=346 +KW_SMALLINT=347 +KW_SOME=348 +KW_SPECIFIC=349 +KW_SPECIFICTYPE=350 +KW_SQL=351 +KW_SQLEXCEPTION=352 +KW_SQLSTATE=353 +KW_SQLWARNING=354 +KW_SQRT=355 +KW_START=356 +KW_STATEMENT=357 +KW_STATIC=358 +KW_STATISTICS=359 +KW_STDDEV_POP=360 +KW_STDDEV_SAMP=361 +KW_STREAM=362 +KW_STRING=363 +KW_STRING_AGG=364 +KW_SUBMULTISET=365 +KW_SUBSET=366 +KW_SUBSTRING=367 +KW_SUBSTRING_REGEX=368 +KW_SUCCEEDS=369 +KW_SUM=370 +KW_SUNDAY=371 +KW_SYMMETRIC=372 +KW_SYSTEM=373 +KW_SYSTEM_TIME=374 +KW_SYSTEM_USER=375 +KW_TABLE=376 +KW_TABLES=377 +KW_TABLESAMPLE=378 +KW_THEN=379 +KW_THURSDAY=380 +KW_TIME=381 +KW_TIMESTAMP=382 +KW_TIMESTAMP_DIFF=383 +KW_TIMESTAMP_LTZ=384 +KW_TIMESTAMP_TRUNC=385 +KW_TIMEZONE_HOUR=386 +KW_TIMEZONE_MINUTE=387 +KW_TIME_DIFF=388 +KW_TIME_TRUNC=389 +KW_TINYINT=390 +KW_TO=391 +KW_TRAILING=392 +KW_TRANSLATE=393 +KW_TRANSLATE_REGEX=394 +KW_TRANSLATION=395 +KW_TREAT=396 +KW_TRIGGER=397 +KW_TRIM=398 +KW_TRIM_ARRAY=399 +KW_TRUE=400 +KW_TRUNCATE=401 +KW_TRY_CAST=402 +KW_TUESDAY=403 +KW_UESCAPE=404 +KW_UNBOUNDED=405 +KW_UNION=406 +KW_UNIQUE=407 +KW_UNKNOWN=408 +KW_UNNEST=409 +KW_UNPIVOT=410 +KW_UPDATE=411 +KW_UPPER=412 +KW_UPSERT=413 +KW_USE=414 +KW_USER=415 +KW_USING=416 +KW_VALUE=417 +KW_VALUES=418 +KW_VALUE_OF=419 +KW_VARBINARY=420 +KW_VARCHAR=421 +KW_VARYING=422 +KW_VAR_POP=423 +KW_VAR_SAMP=424 +KW_VERSIONING=425 +KW_VIEWS=426 +KW_VIRTUAL=427 +KW_WATERMARK=428 +KW_WATERMARKS=429 +KW_WEDNESDAY=430 +KW_WEEKS=431 +KW_WHEN=432 +KW_WHENEVER=433 +KW_WHERE=434 +KW_WIDTH_BUCKET=435 +KW_WINDOW=436 +KW_WITH=437 +KW_WITHIN=438 +KW_WITHOUT=439 +KW_YEAR=440 +KW_ADD=441 +KW_AFTER=442 +KW_ASC=443 +KW_CASCADE=444 +KW_CATALOG=445 +KW_CENTURY=446 +KW_CONFIG=447 +KW_CONSTRAINTS=448 +KW_CUMULATE=449 +KW_DATA=450 +KW_DATABASE=451 +KW_DAYS=452 +KW_DECADE=453 +KW_DESC=454 +KW_DESCRIPTOR=455 +KW_DIV=456 +KW_ENGINE=457 +KW_EPOCH=458 +KW_EXCLUDING=459 +KW_FILE=460 +KW_FIRST=461 +KW_GENERATED=462 +KW_HOP=463 +KW_HOURS=464 +KW_IGNORE=465 +KW_INCLUDING=466 +KW_JAR=467 +KW_JARS=468 +KW_JAVA=469 +KW_KEY=470 +KW_LAST=471 +KW_LOAD=472 +KW_MAP=473 +KW_MICROSECOND=474 +KW_MILLENNIUM=475 +KW_MILLISECOND=476 +KW_MINUTES=477 +KW_MONTHS=478 +KW_NANOSECOND=479 +KW_NULLS=480 +KW_OPTIONS=481 +KW_PAST=482 +KW_PLAN=483 +KW_PRECEDING=484 +KW_PYTHON=485 +KW_PYTHON_ARCHIVES=486 +KW_PYTHON_DEPENDENCIES=487 +KW_PYTHON_FILES=488 +KW_PYTHON_JAR=489 +KW_PYTHON_PARAMETER=490 +KW_PYTHON_REQUIREMENTS=491 +KW_QUARTER=492 +KW_REMOVE=493 +KW_RESTRICT=494 +KW_SECONDS=495 +KW_SESSION=496 +KW_SETS=497 +KW_SIZE=498 +KW_SLIDE=499 +KW_STEP=500 +KW_TEMPORARY=501 +KW_TIMECOL=502 +KW_TUMBLE=503 +KW_UNLOAD=504 +KW_VIEW=505 +KW_WEEK=506 +KW_YEARS=507 +KW_ZONE=508 +EQUAL_SYMBOL=509 +GREATER_SYMBOL=510 +LESS_SYMBOL=511 +EXCLAMATION_SYMBOL=512 +BIT_NOT_OP=513 +BIT_OR_OP=514 +BIT_AND_OP=515 +BIT_XOR_OP=516 +DOT=517 +LS_BRACKET=518 +RS_BRACKET=519 +LR_BRACKET=520 +RR_BRACKET=521 +LB_BRACKET=522 +RB_BRACKET=523 +COMMA=524 +SEMICOLON=525 +AT_SIGN=526 +SINGLE_QUOTE_SYMB=527 +DOUBLE_QUOTE_SYMB=528 +REVERSE_QUOTE_SYMB=529 +COLON_SYMB=530 +ASTERISK_SIGN=531 +UNDERLINE_SIGN=532 +HYPHEN_SIGN=533 +ADD_SIGN=534 +PERCENT_SIGN=535 +DOUBLE_VERTICAL_SIGN=536 +DOUBLE_HYPHEN_SIGN=537 +SLASH_SIGN=538 +QUESTION_MARK_SIGN=539 +DOUBLE_RIGHT_ARROW=540 +STRING_LITERAL=541 +DIG_LITERAL=542 +REAL_LITERAL=543 +BIT_STRING=544 +ID_LITERAL=545 'ABS'=4 'ALL'=5 'ALLOCATE'=6 @@ -682,395 +685,398 @@ ID_LITERAL=542 'FIRST_VALUE'=143 'FLOAT'=144 'FLOOR'=145 -'FOR'=146 -'FOREIGN'=147 -'FRAME_ROW'=148 -'FREE'=149 -'FRIDAY'=150 -'FROM'=151 -'FULL'=152 -'FUNCTION'=153 -'FUNCTIONS'=154 -'FUSION'=155 -'GET'=156 -'GLOBAL'=157 -'GRANT'=158 -'GROUP'=159 -'GROUPING'=160 -'GROUPS'=161 -'GROUP_CONCAT'=162 -'HAVING'=163 -'HOLD'=164 -'HOUR'=165 -'IDENTITY'=166 -'IF'=167 -'ILIKE'=168 -'IMPORT'=169 -'IN'=170 -'INCLUDE'=171 -'INDICATOR'=172 -'INITIAL'=173 -'INNER'=174 -'INOUT'=175 -'INSENSITIVE'=176 -'INSERT'=177 -'INT'=178 -'INTEGER'=179 -'INTERSECT'=180 -'INTERSECTION'=181 -'INTERVAL'=182 -'INTO'=183 -'IS'=184 -'JOIN'=185 -'JSON'=186 -'JSON_ARRAY'=187 -'JSON_ARRAYAGG'=188 -'JSON_EXECUTION_PLAN'=189 -'JSON_EXISTS'=190 -'JSON_OBJECT'=191 -'JSON_OBJECTAGG'=192 -'JSON_QUERY'=193 -'JSON_VALUE'=194 -'LAG'=195 -'LANGUAGE'=196 -'LARGE'=197 -'LAST_VALUE'=198 -'LATERAL'=199 -'LEAD'=200 -'LEADING'=201 -'LEFT'=202 -'LIKE'=203 -'LIKE_REGEX'=204 -'LIMIT'=205 -'LN'=206 -'LOCAL'=207 -'LOCALTIME'=208 -'LOCALTIMESTAMP'=209 -'LOWER'=210 -'MATCH'=211 -'MATCHES'=212 -'MATCH_NUMBER'=213 -'MATCH_RECOGNIZE'=214 -'MAX'=215 -'MEASURES'=216 -'MEMBER'=217 -'MERGE'=218 -'METADATA'=219 -'METHOD'=220 -'MIN'=221 -'MINUS'=222 -'MINUTE'=223 -'MOD'=224 -'MODIFIES'=225 -'MODIFY'=226 -'MODULE'=227 -'MODULES'=228 -'MONDAY'=229 -'MONTH'=230 -'MORE'=231 -'MULTISET'=232 -'NATIONAL'=233 -'NATURAL'=234 -'NCHAR'=235 -'NCLOB'=236 -'NEW'=237 -'NEXT'=238 -'NO'=239 -'NONE'=240 -'NORMALIZE'=241 -'NOT'=242 -'NTH_VALUE'=243 -'NTILE'=244 -'NULL'=245 -'NULLIF'=246 -'NUMERIC'=247 -'OCCURRENCES_REGEX'=248 -'OCTET_LENGTH'=249 -'OF'=250 -'OFFSET'=251 -'OLD'=252 -'OMIT'=253 -'ON'=254 -'ONE'=255 -'ONLY'=256 -'OPEN'=257 -'OR'=258 -'ORDER'=259 -'ORDINAL'=260 -'OUT'=261 -'OUTER'=262 -'OVER'=263 -'OVERLAPS'=264 -'OVERLAY'=265 -'OVERWRITE'=266 -'OVERWRITING'=267 -'PARAMETER'=268 -'PARTITION'=269 -'PARTITIONED'=270 -'PARTITIONS'=271 -'PATTERN'=272 -'PER'=273 -'PERCENT'=274 -'PERCENTILE_CONT'=275 -'PERCENTILE_DISC'=276 -'PERCENT_RANK'=277 -'PERIOD'=278 -'PERMUTE'=279 -'PIVOT'=280 -'PORTION'=281 -'POSITION'=282 -'POSITION_REGEX'=283 -'POWER'=284 -'PRECEDES'=285 -'PRECISION'=286 -'PREPARE'=287 -'PREV'=288 -'PRIMARY'=289 -'PROCEDURE'=290 -'QUALIFY'=291 -'QUARTERS'=292 -'RANGE'=293 -'RANK'=294 -'RAW'=295 -'READS'=296 -'REAL'=297 -'RECURSIVE'=298 -'REF'=299 -'REFERENCES'=300 -'REFERENCING'=301 -'REGR_AVGX'=302 -'REGR_AVGY'=303 -'REGR_COUNT'=304 -'REGR_INTERCEPT'=305 -'REGR_R2'=306 -'REGR_SLOPE'=307 -'REGR_SXX'=308 -'REGR_SXY'=309 -'REGR_SYY'=310 -'RELEASE'=311 -'RENAME'=312 -'RESET'=313 -'RESULT'=314 -'RETURN'=315 -'RETURNS'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'ROW_NUMBER'=324 -'RUNNING'=325 -'SAFE_CAST'=326 -'SAFE_OFFSET'=327 -'SAFE_ORDINAL'=328 -'SATURDAY'=329 -'SAVEPOINT'=330 -'SCALA'=331 -'SCOPE'=332 -'SCROLL'=333 -'SEARCH'=334 -'SECOND'=335 -'SEEK'=336 -'SELECT'=337 -'SENSITIVE'=338 -'SEPARATOR'=339 -'SESSION_USER'=340 -'SET'=341 -'SHOW'=342 -'SIMILAR'=343 -'SKIP'=344 -'SMALLINT'=345 -'SOME'=346 -'SPECIFIC'=347 -'SPECIFICTYPE'=348 -'SQL'=349 -'SQLEXCEPTION'=350 -'SQLSTATE'=351 -'SQLWARNING'=352 -'SQRT'=353 -'START'=354 -'STATEMENT'=355 -'STATIC'=356 -'STATISTICS'=357 -'STDDEV_POP'=358 -'STDDEV_SAMP'=359 -'STREAM'=360 -'STRING'=361 -'STRING_AGG'=362 -'SUBMULTISET'=363 -'SUBSET'=364 -'SUBSTRING'=365 -'SUBSTRING_REGEX'=366 -'SUCCEEDS'=367 -'SUM'=368 -'SUNDAY'=369 -'SYMMETRIC'=370 -'SYSTEM'=371 -'SYSTEM_TIME'=372 -'SYSTEM_USER'=373 -'TABLE'=374 -'TABLES'=375 -'TABLESAMPLE'=376 -'THEN'=377 -'THURSDAY'=378 -'TIME'=379 -'TIMESTAMP'=380 -'TIMESTAMP_DIFF'=381 -'TIMESTAMP_LTZ'=382 -'TIMESTAMP_TRUNC'=383 -'TIMEZONE_HOUR'=384 -'TIMEZONE_MINUTE'=385 -'TIME_DIFF'=386 -'TIME_TRUNC'=387 -'TINYINT'=388 -'TO'=389 -'TRAILING'=390 -'TRANSLATE'=391 -'TRANSLATE_REGEX'=392 -'TRANSLATION'=393 -'TREAT'=394 -'TRIGGER'=395 -'TRIM'=396 -'TRIM_ARRAY'=397 -'TRUE'=398 -'TRUNCATE'=399 -'TRY_CAST'=400 -'TUESDAY'=401 -'UESCAPE'=402 -'UNION'=403 -'UNIQUE'=404 -'UNKNOWN'=405 -'UNNEST'=406 -'UNPIVOT'=407 -'UPDATE'=408 -'UPPER'=409 -'UPSERT'=410 -'USE'=411 -'USER'=412 -'USING'=413 -'VALUE'=414 -'VALUES'=415 -'VALUE_OF'=416 -'VARBINARY'=417 -'VARCHAR'=418 -'VARYING'=419 -'VAR_POP'=420 -'VAR_SAMP'=421 -'VERSIONING'=422 -'VIEWS'=423 -'VIRTUAL'=424 -'WATERMARK'=425 -'WATERMARKS'=426 -'WEDNESDAY'=427 -'WEEKS'=428 -'WHEN'=429 -'WHENEVER'=430 -'WHERE'=431 -'WIDTH_BUCKET'=432 -'WINDOW'=433 -'WITH'=434 -'WITHIN'=435 -'WITHOUT'=436 -'YEAR'=437 -'ADD'=438 -'AFTER'=439 -'ASC'=440 -'CASCADE'=441 -'CATALOG'=442 -'CENTURY'=443 -'CONFIG'=444 -'CONSTRAINTS'=445 -'CUMULATE'=446 -'DATA'=447 -'DATABASE'=448 -'DAYS'=449 -'DECADE'=450 -'DESC'=451 -'DESCRIPTOR'=452 -'DIV'=453 -'ENGINE'=454 -'EPOCH'=455 -'EXCLUDING'=456 -'FILE'=457 -'FIRST'=458 -'GENERATED'=459 -'HOP'=460 -'HOURS'=461 -'IGNORE'=462 -'INCLUDING'=463 -'JAR'=464 -'JARS'=465 -'JAVA'=466 -'KEY'=467 -'LAST'=468 -'LOAD'=469 -'MAP'=470 -'MICROSECOND'=471 -'MILLENNIUM'=472 -'MILLISECOND'=473 -'MINUTES'=474 -'MONTHS'=475 -'NANOSECOND'=476 -'NULLS'=477 -'OPTIONS'=478 -'PAST'=479 -'PLAN'=480 -'PRECEDING'=481 -'PYTHON'=482 -'PYTHON_ARCHIVES'=483 -'PYTHON_DEPENDENCIES'=484 -'PYTHON_FILES'=485 -'PYTHON_JAR'=486 -'PYTHON_PARAMETER'=487 -'PYTHON_REQUIREMENTS'=488 -'QUARTER'=489 -'REMOVE'=490 -'RESTRICT'=491 -'SECONDS'=492 -'SESSION'=493 -'SETS'=494 -'SIZE'=495 -'SLIDE'=496 -'STEP'=497 -'TEMPORARY'=498 -'TIMECOL'=499 -'TUMBLE'=500 -'UNLOAD'=501 -'VIEW'=502 -'WEEK'=503 -'YEARS'=504 -'ZONE'=505 -'='=506 -'>'=507 -'<'=508 -'!'=509 -'~'=510 -'|'=511 -'&'=512 -'^'=513 -'.'=514 -'['=515 -']'=516 -'('=517 -')'=518 -'{'=519 -'}'=520 -','=521 -';'=522 -'@'=523 -'\''=524 -'"'=525 -'`'=526 -':'=527 -'*'=528 -'_'=529 -'-'=530 -'+'=531 -'%'=532 -'||'=533 -'--'=534 -'/'=535 -'?'=536 -'=>'=537 +'FOLLOWING'=146 +'FOR'=147 +'FOREIGN'=148 +'FRAME_ROW'=149 +'FREE'=150 +'FRIDAY'=151 +'FROM'=152 +'FULL'=153 +'FUNCTION'=154 +'FUNCTIONS'=155 +'FUSION'=156 +'GET'=157 +'GLOBAL'=158 +'GRANT'=159 +'GROUP'=160 +'GROUPING'=161 +'GROUPS'=162 +'GROUP_CONCAT'=163 +'HAVING'=164 +'HOLD'=165 +'HOUR'=166 +'IDENTITY'=167 +'IF'=168 +'ILIKE'=169 +'IMPORT'=170 +'IN'=171 +'INCLUDE'=172 +'INDICATOR'=173 +'INITIAL'=174 +'INNER'=175 +'INOUT'=176 +'INSENSITIVE'=177 +'INSERT'=178 +'INT'=179 +'INTEGER'=180 +'INTERSECT'=181 +'INTERSECTION'=182 +'INTERVAL'=183 +'INTO'=184 +'IS'=185 +'JOIN'=186 +'JSON'=187 +'JSON_ARRAY'=188 +'JSON_ARRAYAGG'=189 +'JSON_EXECUTION_PLAN'=190 +'JSON_EXISTS'=191 +'JSON_OBJECT'=192 +'JSON_OBJECTAGG'=193 +'JSON_QUERY'=194 +'JSON_VALUE'=195 +'LAG'=196 +'LANGUAGE'=197 +'LARGE'=198 +'LAST_VALUE'=199 +'LATERAL'=200 +'LEAD'=201 +'LEADING'=202 +'LEFT'=203 +'LIKE'=204 +'LIKE_REGEX'=205 +'LIMIT'=206 +'LN'=207 +'LOCAL'=208 +'LOCALTIME'=209 +'LOCALTIMESTAMP'=210 +'LOWER'=211 +'MATCH'=212 +'MATCHES'=213 +'MATCH_NUMBER'=214 +'MATCH_RECOGNIZE'=215 +'MAX'=216 +'MEASURES'=217 +'MEMBER'=218 +'MERGE'=219 +'METADATA'=220 +'METHOD'=221 +'MIN'=222 +'MINUS'=223 +'MINUTE'=224 +'MOD'=225 +'MODIFIES'=226 +'MODIFY'=227 +'MODULE'=228 +'MODULES'=229 +'MONDAY'=230 +'MONTH'=231 +'MORE'=232 +'MULTISET'=233 +'NATIONAL'=234 +'NATURAL'=235 +'NCHAR'=236 +'NCLOB'=237 +'NEW'=238 +'NEXT'=239 +'NO'=240 +'NONE'=241 +'NORMALIZE'=242 +'NOT'=243 +'NTH_VALUE'=244 +'NTILE'=245 +'NULL'=246 +'NULLIF'=247 +'NUMERIC'=248 +'OCCURRENCES_REGEX'=249 +'OCTET_LENGTH'=250 +'OF'=251 +'OFFSET'=252 +'OLD'=253 +'OMIT'=254 +'ON'=255 +'ONE'=256 +'ONLY'=257 +'OPEN'=258 +'OR'=259 +'ORDER'=260 +'ORDINAL'=261 +'OUT'=262 +'OUTER'=263 +'OVER'=264 +'OVERLAPS'=265 +'OVERLAY'=266 +'OVERWRITE'=267 +'OVERWRITING'=268 +'PARAMETER'=269 +'PARTITION'=270 +'PARTITIONED'=271 +'PARTITIONS'=272 +'PATTERN'=273 +'PER'=274 +'PERCENT'=275 +'PERCENTILE_CONT'=276 +'PERCENTILE_DISC'=277 +'PERCENT_RANK'=278 +'PERIOD'=279 +'PERMUTE'=280 +'RETURNING'=281 +'PIVOT'=282 +'PORTION'=283 +'POSITION'=284 +'POSITION_REGEX'=285 +'POWER'=286 +'PRECEDES'=287 +'PRECISION'=288 +'PREPARE'=289 +'PREV'=290 +'PRIMARY'=291 +'PROCEDURE'=292 +'QUALIFY'=293 +'QUARTERS'=294 +'RANGE'=295 +'RANK'=296 +'RAW'=297 +'READS'=298 +'REAL'=299 +'RECURSIVE'=300 +'REF'=301 +'REFERENCES'=302 +'REFERENCING'=303 +'REGR_AVGX'=304 +'REGR_AVGY'=305 +'REGR_COUNT'=306 +'REGR_INTERCEPT'=307 +'REGR_R2'=308 +'REGR_SLOPE'=309 +'REGR_SXX'=310 +'REGR_SXY'=311 +'REGR_SYY'=312 +'RELEASE'=313 +'RENAME'=314 +'RESET'=315 +'RESULT'=316 +'RETURN'=317 +'RETURNS'=318 +'REVOKE'=319 +'RIGHT'=320 +'RLIKE'=321 +'ROLLBACK'=322 +'ROLLUP'=323 +'ROW'=324 +'ROWS'=325 +'ROW_NUMBER'=326 +'RUNNING'=327 +'SAFE_CAST'=328 +'SAFE_OFFSET'=329 +'SAFE_ORDINAL'=330 +'SATURDAY'=331 +'SAVEPOINT'=332 +'SCALA'=333 +'SCOPE'=334 +'SCROLL'=335 +'SEARCH'=336 +'SECOND'=337 +'SEEK'=338 +'SELECT'=339 +'SENSITIVE'=340 +'SEPARATOR'=341 +'SESSION_USER'=342 +'SET'=343 +'SHOW'=344 +'SIMILAR'=345 +'SKIP'=346 +'SMALLINT'=347 +'SOME'=348 +'SPECIFIC'=349 +'SPECIFICTYPE'=350 +'SQL'=351 +'SQLEXCEPTION'=352 +'SQLSTATE'=353 +'SQLWARNING'=354 +'SQRT'=355 +'START'=356 +'STATEMENT'=357 +'STATIC'=358 +'STATISTICS'=359 +'STDDEV_POP'=360 +'STDDEV_SAMP'=361 +'STREAM'=362 +'STRING'=363 +'STRING_AGG'=364 +'SUBMULTISET'=365 +'SUBSET'=366 +'SUBSTRING'=367 +'SUBSTRING_REGEX'=368 +'SUCCEEDS'=369 +'SUM'=370 +'SUNDAY'=371 +'SYMMETRIC'=372 +'SYSTEM'=373 +'SYSTEM_TIME'=374 +'SYSTEM_USER'=375 +'TABLE'=376 +'TABLES'=377 +'TABLESAMPLE'=378 +'THEN'=379 +'THURSDAY'=380 +'TIME'=381 +'TIMESTAMP'=382 +'TIMESTAMP_DIFF'=383 +'TIMESTAMP_LTZ'=384 +'TIMESTAMP_TRUNC'=385 +'TIMEZONE_HOUR'=386 +'TIMEZONE_MINUTE'=387 +'TIME_DIFF'=388 +'TIME_TRUNC'=389 +'TINYINT'=390 +'TO'=391 +'TRAILING'=392 +'TRANSLATE'=393 +'TRANSLATE_REGEX'=394 +'TRANSLATION'=395 +'TREAT'=396 +'TRIGGER'=397 +'TRIM'=398 +'TRIM_ARRAY'=399 +'TRUE'=400 +'TRUNCATE'=401 +'TRY_CAST'=402 +'TUESDAY'=403 +'UESCAPE'=404 +'UNBOUNDED'=405 +'UNION'=406 +'UNIQUE'=407 +'UNKNOWN'=408 +'UNNEST'=409 +'UNPIVOT'=410 +'UPDATE'=411 +'UPPER'=412 +'UPSERT'=413 +'USE'=414 +'USER'=415 +'USING'=416 +'VALUE'=417 +'VALUES'=418 +'VALUE_OF'=419 +'VARBINARY'=420 +'VARCHAR'=421 +'VARYING'=422 +'VAR_POP'=423 +'VAR_SAMP'=424 +'VERSIONING'=425 +'VIEWS'=426 +'VIRTUAL'=427 +'WATERMARK'=428 +'WATERMARKS'=429 +'WEDNESDAY'=430 +'WEEKS'=431 +'WHEN'=432 +'WHENEVER'=433 +'WHERE'=434 +'WIDTH_BUCKET'=435 +'WINDOW'=436 +'WITH'=437 +'WITHIN'=438 +'WITHOUT'=439 +'YEAR'=440 +'ADD'=441 +'AFTER'=442 +'ASC'=443 +'CASCADE'=444 +'CATALOG'=445 +'CENTURY'=446 +'CONFIG'=447 +'CONSTRAINTS'=448 +'CUMULATE'=449 +'DATA'=450 +'DATABASE'=451 +'DAYS'=452 +'DECADE'=453 +'DESC'=454 +'DESCRIPTOR'=455 +'DIV'=456 +'ENGINE'=457 +'EPOCH'=458 +'EXCLUDING'=459 +'FILE'=460 +'FIRST'=461 +'GENERATED'=462 +'HOP'=463 +'HOURS'=464 +'IGNORE'=465 +'INCLUDING'=466 +'JAR'=467 +'JARS'=468 +'JAVA'=469 +'KEY'=470 +'LAST'=471 +'LOAD'=472 +'MAP'=473 +'MICROSECOND'=474 +'MILLENNIUM'=475 +'MILLISECOND'=476 +'MINUTES'=477 +'MONTHS'=478 +'NANOSECOND'=479 +'NULLS'=480 +'OPTIONS'=481 +'PAST'=482 +'PLAN'=483 +'PRECEDING'=484 +'PYTHON'=485 +'PYTHON_ARCHIVES'=486 +'PYTHON_DEPENDENCIES'=487 +'PYTHON_FILES'=488 +'PYTHON_JAR'=489 +'PYTHON_PARAMETER'=490 +'PYTHON_REQUIREMENTS'=491 +'QUARTER'=492 +'REMOVE'=493 +'RESTRICT'=494 +'SECONDS'=495 +'SESSION'=496 +'SETS'=497 +'SIZE'=498 +'SLIDE'=499 +'STEP'=500 +'TEMPORARY'=501 +'TIMECOL'=502 +'TUMBLE'=503 +'UNLOAD'=504 +'VIEW'=505 +'WEEK'=506 +'YEARS'=507 +'ZONE'=508 +'='=509 +'>'=510 +'<'=511 +'!'=512 +'~'=513 +'|'=514 +'&'=515 +'^'=516 +'.'=517 +'['=518 +']'=519 +'('=520 +')'=521 +'{'=522 +'}'=523 +','=524 +';'=525 +'@'=526 +'\''=527 +'"'=528 +'`'=529 +':'=530 +'*'=531 +'_'=532 +'-'=533 +'+'=534 +'%'=535 +'||'=536 +'--'=537 +'/'=538 +'?'=539 +'=>'=540 diff --git a/src/lib/flink/FlinkSqlLexer.ts b/src/lib/flink/FlinkSqlLexer.ts index 3b455190..70886c8c 100644 --- a/src/lib/flink/FlinkSqlLexer.ts +++ b/src/lib/flink/FlinkSqlLexer.ts @@ -152,403 +152,406 @@ export class FlinkSqlLexer extends antlr.Lexer { public static readonly KW_FIRST_VALUE = 143; public static readonly KW_FLOAT = 144; public static readonly KW_FLOOR = 145; - public static readonly KW_FOR = 146; - public static readonly KW_FOREIGN = 147; - public static readonly KW_FRAME_ROW = 148; - public static readonly KW_FREE = 149; - public static readonly KW_FRIDAY = 150; - public static readonly KW_FROM = 151; - public static readonly KW_FULL = 152; - public static readonly KW_FUNCTION = 153; - public static readonly KW_FUNCTIONS = 154; - public static readonly KW_FUSION = 155; - public static readonly KW_GET = 156; - public static readonly KW_GLOBAL = 157; - public static readonly KW_GRANT = 158; - public static readonly KW_GROUP = 159; - public static readonly KW_GROUPING = 160; - public static readonly KW_GROUPS = 161; - public static readonly KW_GROUP_CONCAT = 162; - public static readonly KW_HAVING = 163; - public static readonly KW_HOLD = 164; - public static readonly KW_HOUR = 165; - public static readonly KW_IDENTITY = 166; - public static readonly KW_IF = 167; - public static readonly KW_ILIKE = 168; - public static readonly KW_IMPORT = 169; - public static readonly KW_IN = 170; - public static readonly KW_INCLUDE = 171; - public static readonly KW_INDICATOR = 172; - public static readonly KW_INITIAL = 173; - public static readonly KW_INNER = 174; - public static readonly KW_INOUT = 175; - public static readonly KW_INSENSITIVE = 176; - public static readonly KW_INSERT = 177; - public static readonly KW_INT = 178; - public static readonly KW_INTEGER = 179; - public static readonly KW_INTERSECT = 180; - public static readonly KW_INTERSECTION = 181; - public static readonly KW_INTERVAL = 182; - public static readonly KW_INTO = 183; - public static readonly KW_IS = 184; - public static readonly KW_JOIN = 185; - public static readonly KW_JSON = 186; - public static readonly KW_JSON_ARRAY = 187; - public static readonly KW_JSON_ARRAYAGG = 188; - public static readonly KW_JSON_EXECUTION_PLAN = 189; - public static readonly KW_JSON_EXISTS = 190; - public static readonly KW_JSON_OBJECT = 191; - public static readonly KW_JSON_OBJECTAGG = 192; - public static readonly KW_JSON_QUERY = 193; - public static readonly KW_JSON_VALUE = 194; - public static readonly KW_LAG = 195; - public static readonly KW_LANGUAGE = 196; - public static readonly KW_LARGE = 197; - public static readonly KW_LAST_VALUE = 198; - public static readonly KW_LATERAL = 199; - public static readonly KW_LEAD = 200; - public static readonly KW_LEADING = 201; - public static readonly KW_LEFT = 202; - public static readonly KW_LIKE = 203; - public static readonly KW_LIKE_REGEX = 204; - public static readonly KW_LIMIT = 205; - public static readonly KW_LN = 206; - public static readonly KW_LOCAL = 207; - public static readonly KW_LOCALTIME = 208; - public static readonly KW_LOCALTIMESTAMP = 209; - public static readonly KW_LOWER = 210; - public static readonly KW_MATCH = 211; - public static readonly KW_MATCHES = 212; - public static readonly KW_MATCH_NUMBER = 213; - public static readonly KW_MATCH_RECOGNIZE = 214; - public static readonly KW_MAX = 215; - public static readonly KW_MEASURES = 216; - public static readonly KW_MEMBER = 217; - public static readonly KW_MERGE = 218; - public static readonly KW_METADATA = 219; - public static readonly KW_METHOD = 220; - public static readonly KW_MIN = 221; - public static readonly KW_MINUS = 222; - public static readonly KW_MINUTE = 223; - public static readonly KW_MOD = 224; - public static readonly KW_MODIFIES = 225; - public static readonly KW_MODIFY = 226; - public static readonly KW_MODULE = 227; - public static readonly KW_MODULES = 228; - public static readonly KW_MONDAY = 229; - public static readonly KW_MONTH = 230; - public static readonly KW_MORE = 231; - public static readonly KW_MULTISET = 232; - public static readonly KW_NATIONAL = 233; - public static readonly KW_NATURAL = 234; - public static readonly KW_NCHAR = 235; - public static readonly KW_NCLOB = 236; - public static readonly KW_NEW = 237; - public static readonly KW_NEXT = 238; - public static readonly KW_NO = 239; - public static readonly KW_NONE = 240; - public static readonly KW_NORMALIZE = 241; - public static readonly KW_NOT = 242; - public static readonly KW_NTH_VALUE = 243; - public static readonly KW_NTILE = 244; - public static readonly KW_NULL = 245; - public static readonly KW_NULLIF = 246; - public static readonly KW_NUMERIC = 247; - public static readonly KW_OCCURRENCES_REGEX = 248; - public static readonly KW_OCTET_LENGTH = 249; - public static readonly KW_OF = 250; - public static readonly KW_OFFSET = 251; - public static readonly KW_OLD = 252; - public static readonly KW_OMIT = 253; - public static readonly KW_ON = 254; - public static readonly KW_ONE = 255; - public static readonly KW_ONLY = 256; - public static readonly KW_OPEN = 257; - public static readonly KW_OR = 258; - public static readonly KW_ORDER = 259; - public static readonly KW_ORDINAL = 260; - public static readonly KW_OUT = 261; - public static readonly KW_OUTER = 262; - public static readonly KW_OVER = 263; - public static readonly KW_OVERLAPS = 264; - public static readonly KW_OVERLAY = 265; - public static readonly KW_OVERWRITE = 266; - public static readonly KW_OVERWRITING = 267; - public static readonly KW_PARAMETER = 268; - public static readonly KW_PARTITION = 269; - public static readonly KW_PARTITIONED = 270; - public static readonly KW_PARTITIONS = 271; - public static readonly KW_PATTERN = 272; - public static readonly KW_PER = 273; - public static readonly KW_PERCENT = 274; - public static readonly KW_PERCENTILE_CONT = 275; - public static readonly KW_PERCENTILE_DISC = 276; - public static readonly KW_PERCENT_RANK = 277; - public static readonly KW_PERIOD = 278; - public static readonly KW_PERMUTE = 279; - public static readonly KW_PIVOT = 280; - public static readonly KW_PORTION = 281; - public static readonly KW_POSITION = 282; - public static readonly KW_POSITION_REGEX = 283; - public static readonly KW_POWER = 284; - public static readonly KW_PRECEDES = 285; - public static readonly KW_PRECISION = 286; - public static readonly KW_PREPARE = 287; - public static readonly KW_PREV = 288; - public static readonly KW_PRIMARY = 289; - public static readonly KW_PROCEDURE = 290; - public static readonly KW_QUALIFY = 291; - public static readonly KW_QUARTERS = 292; - public static readonly KW_RANGE = 293; - public static readonly KW_RANK = 294; - public static readonly KW_RAW = 295; - public static readonly KW_READS = 296; - public static readonly KW_REAL = 297; - public static readonly KW_RECURSIVE = 298; - public static readonly KW_REF = 299; - public static readonly KW_REFERENCES = 300; - public static readonly KW_REFERENCING = 301; - public static readonly KW_REGR_AVGX = 302; - public static readonly KW_REGR_AVGY = 303; - public static readonly KW_REGR_COUNT = 304; - public static readonly KW_REGR_INTERCEPT = 305; - public static readonly KW_REGR_R2 = 306; - public static readonly KW_REGR_SLOPE = 307; - public static readonly KW_REGR_SXX = 308; - public static readonly KW_REGR_SXY = 309; - public static readonly KW_REGR_SYY = 310; - public static readonly KW_RELEASE = 311; - public static readonly KW_RENAME = 312; - public static readonly KW_RESET = 313; - public static readonly KW_RESULT = 314; - public static readonly KW_RETURN = 315; - public static readonly KW_RETURNS = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_ROW_NUMBER = 324; - public static readonly KW_RUNNING = 325; - public static readonly KW_SAFE_CAST = 326; - public static readonly KW_SAFE_OFFSET = 327; - public static readonly KW_SAFE_ORDINAL = 328; - public static readonly KW_SATURDAY = 329; - public static readonly KW_SAVEPOINT = 330; - public static readonly KW_SCALA = 331; - public static readonly KW_SCOPE = 332; - public static readonly KW_SCROLL = 333; - public static readonly KW_SEARCH = 334; - public static readonly KW_SECOND = 335; - public static readonly KW_SEEK = 336; - public static readonly KW_SELECT = 337; - public static readonly KW_SENSITIVE = 338; - public static readonly KW_SEPARATOR = 339; - public static readonly KW_SESSION_USER = 340; - public static readonly KW_SET = 341; - public static readonly KW_SHOW = 342; - public static readonly KW_SIMILAR = 343; - public static readonly KW_SKIP = 344; - public static readonly KW_SMALLINT = 345; - public static readonly KW_SOME = 346; - public static readonly KW_SPECIFIC = 347; - public static readonly KW_SPECIFICTYPE = 348; - public static readonly KW_SQL = 349; - public static readonly KW_SQLEXCEPTION = 350; - public static readonly KW_SQLSTATE = 351; - public static readonly KW_SQLWARNING = 352; - public static readonly KW_SQRT = 353; - public static readonly KW_START = 354; - public static readonly KW_STATEMENT = 355; - public static readonly KW_STATIC = 356; - public static readonly KW_STATISTICS = 357; - public static readonly KW_STDDEV_POP = 358; - public static readonly KW_STDDEV_SAMP = 359; - public static readonly KW_STREAM = 360; - public static readonly KW_STRING = 361; - public static readonly KW_STRING_AGG = 362; - public static readonly KW_SUBMULTISET = 363; - public static readonly KW_SUBSET = 364; - public static readonly KW_SUBSTRING = 365; - public static readonly KW_SUBSTRING_REGEX = 366; - public static readonly KW_SUCCEEDS = 367; - public static readonly KW_SUM = 368; - public static readonly KW_SUNDAY = 369; - public static readonly KW_SYMMETRIC = 370; - public static readonly KW_SYSTEM = 371; - public static readonly KW_SYSTEM_TIME = 372; - public static readonly KW_SYSTEM_USER = 373; - public static readonly KW_TABLE = 374; - public static readonly KW_TABLES = 375; - public static readonly KW_TABLESAMPLE = 376; - public static readonly KW_THEN = 377; - public static readonly KW_THURSDAY = 378; - public static readonly KW_TIME = 379; - public static readonly KW_TIMESTAMP = 380; - public static readonly KW_TIMESTAMP_DIFF = 381; - public static readonly KW_TIMESTAMP_LTZ = 382; - public static readonly KW_TIMESTAMP_TRUNC = 383; - public static readonly KW_TIMEZONE_HOUR = 384; - public static readonly KW_TIMEZONE_MINUTE = 385; - public static readonly KW_TIME_DIFF = 386; - public static readonly KW_TIME_TRUNC = 387; - public static readonly KW_TINYINT = 388; - public static readonly KW_TO = 389; - public static readonly KW_TRAILING = 390; - public static readonly KW_TRANSLATE = 391; - public static readonly KW_TRANSLATE_REGEX = 392; - public static readonly KW_TRANSLATION = 393; - public static readonly KW_TREAT = 394; - public static readonly KW_TRIGGER = 395; - public static readonly KW_TRIM = 396; - public static readonly KW_TRIM_ARRAY = 397; - public static readonly KW_TRUE = 398; - public static readonly KW_TRUNCATE = 399; - public static readonly KW_TRY_CAST = 400; - public static readonly KW_TUESDAY = 401; - public static readonly KW_UESCAPE = 402; - public static readonly KW_UNION = 403; - public static readonly KW_UNIQUE = 404; - public static readonly KW_UNKNOWN = 405; - public static readonly KW_UNNEST = 406; - public static readonly KW_UNPIVOT = 407; - public static readonly KW_UPDATE = 408; - public static readonly KW_UPPER = 409; - public static readonly KW_UPSERT = 410; - public static readonly KW_USE = 411; - public static readonly KW_USER = 412; - public static readonly KW_USING = 413; - public static readonly KW_VALUE = 414; - public static readonly KW_VALUES = 415; - public static readonly KW_VALUE_OF = 416; - public static readonly KW_VARBINARY = 417; - public static readonly KW_VARCHAR = 418; - public static readonly KW_VARYING = 419; - public static readonly KW_VAR_POP = 420; - public static readonly KW_VAR_SAMP = 421; - public static readonly KW_VERSIONING = 422; - public static readonly KW_VIEWS = 423; - public static readonly KW_VIRTUAL = 424; - public static readonly KW_WATERMARK = 425; - public static readonly KW_WATERMARKS = 426; - public static readonly KW_WEDNESDAY = 427; - public static readonly KW_WEEKS = 428; - public static readonly KW_WHEN = 429; - public static readonly KW_WHENEVER = 430; - public static readonly KW_WHERE = 431; - public static readonly KW_WIDTH_BUCKET = 432; - public static readonly KW_WINDOW = 433; - public static readonly KW_WITH = 434; - public static readonly KW_WITHIN = 435; - public static readonly KW_WITHOUT = 436; - public static readonly KW_YEAR = 437; - public static readonly KW_ADD = 438; - public static readonly KW_AFTER = 439; - public static readonly KW_ASC = 440; - public static readonly KW_CASCADE = 441; - public static readonly KW_CATALOG = 442; - public static readonly KW_CENTURY = 443; - public static readonly KW_CONFIG = 444; - public static readonly KW_CONSTRAINTS = 445; - public static readonly KW_CUMULATE = 446; - public static readonly KW_DATA = 447; - public static readonly KW_DATABASE = 448; - public static readonly KW_DAYS = 449; - public static readonly KW_DECADE = 450; - public static readonly KW_DESC = 451; - public static readonly KW_DESCRIPTOR = 452; - public static readonly KW_DIV = 453; - public static readonly KW_ENGINE = 454; - public static readonly KW_EPOCH = 455; - public static readonly KW_EXCLUDING = 456; - public static readonly KW_FILE = 457; - public static readonly KW_FIRST = 458; - public static readonly KW_GENERATED = 459; - public static readonly KW_HOP = 460; - public static readonly KW_HOURS = 461; - public static readonly KW_IGNORE = 462; - public static readonly KW_INCLUDING = 463; - public static readonly KW_JAR = 464; - public static readonly KW_JARS = 465; - public static readonly KW_JAVA = 466; - public static readonly KW_KEY = 467; - public static readonly KW_LAST = 468; - public static readonly KW_LOAD = 469; - public static readonly KW_MAP = 470; - public static readonly KW_MICROSECOND = 471; - public static readonly KW_MILLENNIUM = 472; - public static readonly KW_MILLISECOND = 473; - public static readonly KW_MINUTES = 474; - public static readonly KW_MONTHS = 475; - public static readonly KW_NANOSECOND = 476; - public static readonly KW_NULLS = 477; - public static readonly KW_OPTIONS = 478; - public static readonly KW_PAST = 479; - public static readonly KW_PLAN = 480; - public static readonly KW_PRECEDING = 481; - public static readonly KW_PYTHON = 482; - public static readonly KW_PYTHON_ARCHIVES = 483; - public static readonly KW_PYTHON_DEPENDENCIES = 484; - public static readonly KW_PYTHON_FILES = 485; - public static readonly KW_PYTHON_JAR = 486; - public static readonly KW_PYTHON_PARAMETER = 487; - public static readonly KW_PYTHON_REQUIREMENTS = 488; - public static readonly KW_QUARTER = 489; - public static readonly KW_REMOVE = 490; - public static readonly KW_RESTRICT = 491; - public static readonly KW_SECONDS = 492; - public static readonly KW_SESSION = 493; - public static readonly KW_SETS = 494; - public static readonly KW_SIZE = 495; - public static readonly KW_SLIDE = 496; - public static readonly KW_STEP = 497; - public static readonly KW_TEMPORARY = 498; - public static readonly KW_TIMECOL = 499; - public static readonly KW_TUMBLE = 500; - public static readonly KW_UNLOAD = 501; - public static readonly KW_VIEW = 502; - public static readonly KW_WEEK = 503; - public static readonly KW_YEARS = 504; - public static readonly KW_ZONE = 505; - public static readonly EQUAL_SYMBOL = 506; - public static readonly GREATER_SYMBOL = 507; - public static readonly LESS_SYMBOL = 508; - public static readonly EXCLAMATION_SYMBOL = 509; - public static readonly BIT_NOT_OP = 510; - public static readonly BIT_OR_OP = 511; - public static readonly BIT_AND_OP = 512; - public static readonly BIT_XOR_OP = 513; - public static readonly DOT = 514; - public static readonly LS_BRACKET = 515; - public static readonly RS_BRACKET = 516; - public static readonly LR_BRACKET = 517; - public static readonly RR_BRACKET = 518; - public static readonly LB_BRACKET = 519; - public static readonly RB_BRACKET = 520; - public static readonly COMMA = 521; - public static readonly SEMICOLON = 522; - public static readonly AT_SIGN = 523; - public static readonly SINGLE_QUOTE_SYMB = 524; - public static readonly DOUBLE_QUOTE_SYMB = 525; - public static readonly REVERSE_QUOTE_SYMB = 526; - public static readonly COLON_SYMB = 527; - public static readonly ASTERISK_SIGN = 528; - public static readonly UNDERLINE_SIGN = 529; - public static readonly HYPHEN_SIGN = 530; - public static readonly ADD_SIGN = 531; - public static readonly PERCENT_SIGN = 532; - public static readonly DOUBLE_VERTICAL_SIGN = 533; - public static readonly DOUBLE_HYPHEN_SIGN = 534; - public static readonly SLASH_SIGN = 535; - public static readonly QUESTION_MARK_SIGN = 536; - public static readonly DOUBLE_RIGHT_ARROW = 537; - public static readonly STRING_LITERAL = 538; - public static readonly DIG_LITERAL = 539; - public static readonly REAL_LITERAL = 540; - public static readonly BIT_STRING = 541; - public static readonly ID_LITERAL = 542; + public static readonly KW_FOLLOWING = 146; + public static readonly KW_FOR = 147; + public static readonly KW_FOREIGN = 148; + public static readonly KW_FRAME_ROW = 149; + public static readonly KW_FREE = 150; + public static readonly KW_FRIDAY = 151; + public static readonly KW_FROM = 152; + public static readonly KW_FULL = 153; + public static readonly KW_FUNCTION = 154; + public static readonly KW_FUNCTIONS = 155; + public static readonly KW_FUSION = 156; + public static readonly KW_GET = 157; + public static readonly KW_GLOBAL = 158; + public static readonly KW_GRANT = 159; + public static readonly KW_GROUP = 160; + public static readonly KW_GROUPING = 161; + public static readonly KW_GROUPS = 162; + public static readonly KW_GROUP_CONCAT = 163; + public static readonly KW_HAVING = 164; + public static readonly KW_HOLD = 165; + public static readonly KW_HOUR = 166; + public static readonly KW_IDENTITY = 167; + public static readonly KW_IF = 168; + public static readonly KW_ILIKE = 169; + public static readonly KW_IMPORT = 170; + public static readonly KW_IN = 171; + public static readonly KW_INCLUDE = 172; + public static readonly KW_INDICATOR = 173; + public static readonly KW_INITIAL = 174; + public static readonly KW_INNER = 175; + public static readonly KW_INOUT = 176; + public static readonly KW_INSENSITIVE = 177; + public static readonly KW_INSERT = 178; + public static readonly KW_INT = 179; + public static readonly KW_INTEGER = 180; + public static readonly KW_INTERSECT = 181; + public static readonly KW_INTERSECTION = 182; + public static readonly KW_INTERVAL = 183; + public static readonly KW_INTO = 184; + public static readonly KW_IS = 185; + public static readonly KW_JOIN = 186; + public static readonly KW_JSON = 187; + public static readonly KW_JSON_ARRAY = 188; + public static readonly KW_JSON_ARRAYAGG = 189; + public static readonly KW_JSON_EXECUTION_PLAN = 190; + public static readonly KW_JSON_EXISTS = 191; + public static readonly KW_JSON_OBJECT = 192; + public static readonly KW_JSON_OBJECTAGG = 193; + public static readonly KW_JSON_QUERY = 194; + public static readonly KW_JSON_VALUE = 195; + public static readonly KW_LAG = 196; + public static readonly KW_LANGUAGE = 197; + public static readonly KW_LARGE = 198; + public static readonly KW_LAST_VALUE = 199; + public static readonly KW_LATERAL = 200; + public static readonly KW_LEAD = 201; + public static readonly KW_LEADING = 202; + public static readonly KW_LEFT = 203; + public static readonly KW_LIKE = 204; + public static readonly KW_LIKE_REGEX = 205; + public static readonly KW_LIMIT = 206; + public static readonly KW_LN = 207; + public static readonly KW_LOCAL = 208; + public static readonly KW_LOCALTIME = 209; + public static readonly KW_LOCALTIMESTAMP = 210; + public static readonly KW_LOWER = 211; + public static readonly KW_MATCH = 212; + public static readonly KW_MATCHES = 213; + public static readonly KW_MATCH_NUMBER = 214; + public static readonly KW_MATCH_RECOGNIZE = 215; + public static readonly KW_MAX = 216; + public static readonly KW_MEASURES = 217; + public static readonly KW_MEMBER = 218; + public static readonly KW_MERGE = 219; + public static readonly KW_METADATA = 220; + public static readonly KW_METHOD = 221; + public static readonly KW_MIN = 222; + public static readonly KW_MINUS = 223; + public static readonly KW_MINUTE = 224; + public static readonly KW_MOD = 225; + public static readonly KW_MODIFIES = 226; + public static readonly KW_MODIFY = 227; + public static readonly KW_MODULE = 228; + public static readonly KW_MODULES = 229; + public static readonly KW_MONDAY = 230; + public static readonly KW_MONTH = 231; + public static readonly KW_MORE = 232; + public static readonly KW_MULTISET = 233; + public static readonly KW_NATIONAL = 234; + public static readonly KW_NATURAL = 235; + public static readonly KW_NCHAR = 236; + public static readonly KW_NCLOB = 237; + public static readonly KW_NEW = 238; + public static readonly KW_NEXT = 239; + public static readonly KW_NO = 240; + public static readonly KW_NONE = 241; + public static readonly KW_NORMALIZE = 242; + public static readonly KW_NOT = 243; + public static readonly KW_NTH_VALUE = 244; + public static readonly KW_NTILE = 245; + public static readonly KW_NULL = 246; + public static readonly KW_NULLIF = 247; + public static readonly KW_NUMERIC = 248; + public static readonly KW_OCCURRENCES_REGEX = 249; + public static readonly KW_OCTET_LENGTH = 250; + public static readonly KW_OF = 251; + public static readonly KW_OFFSET = 252; + public static readonly KW_OLD = 253; + public static readonly KW_OMIT = 254; + public static readonly KW_ON = 255; + public static readonly KW_ONE = 256; + public static readonly KW_ONLY = 257; + public static readonly KW_OPEN = 258; + public static readonly KW_OR = 259; + public static readonly KW_ORDER = 260; + public static readonly KW_ORDINAL = 261; + public static readonly KW_OUT = 262; + public static readonly KW_OUTER = 263; + public static readonly KW_OVER = 264; + public static readonly KW_OVERLAPS = 265; + public static readonly KW_OVERLAY = 266; + public static readonly KW_OVERWRITE = 267; + public static readonly KW_OVERWRITING = 268; + public static readonly KW_PARAMETER = 269; + public static readonly KW_PARTITION = 270; + public static readonly KW_PARTITIONED = 271; + public static readonly KW_PARTITIONS = 272; + public static readonly KW_PATTERN = 273; + public static readonly KW_PER = 274; + public static readonly KW_PERCENT = 275; + public static readonly KW_PERCENTILE_CONT = 276; + public static readonly KW_PERCENTILE_DISC = 277; + public static readonly KW_PERCENT_RANK = 278; + public static readonly KW_PERIOD = 279; + public static readonly KW_PERMUTE = 280; + public static readonly KW_RETURNING = 281; + public static readonly KW_PIVOT = 282; + public static readonly KW_PORTION = 283; + public static readonly KW_POSITION = 284; + public static readonly KW_POSITION_REGEX = 285; + public static readonly KW_POWER = 286; + public static readonly KW_PRECEDES = 287; + public static readonly KW_PRECISION = 288; + public static readonly KW_PREPARE = 289; + public static readonly KW_PREV = 290; + public static readonly KW_PRIMARY = 291; + public static readonly KW_PROCEDURE = 292; + public static readonly KW_QUALIFY = 293; + public static readonly KW_QUARTERS = 294; + public static readonly KW_RANGE = 295; + public static readonly KW_RANK = 296; + public static readonly KW_RAW = 297; + public static readonly KW_READS = 298; + public static readonly KW_REAL = 299; + public static readonly KW_RECURSIVE = 300; + public static readonly KW_REF = 301; + public static readonly KW_REFERENCES = 302; + public static readonly KW_REFERENCING = 303; + public static readonly KW_REGR_AVGX = 304; + public static readonly KW_REGR_AVGY = 305; + public static readonly KW_REGR_COUNT = 306; + public static readonly KW_REGR_INTERCEPT = 307; + public static readonly KW_REGR_R2 = 308; + public static readonly KW_REGR_SLOPE = 309; + public static readonly KW_REGR_SXX = 310; + public static readonly KW_REGR_SXY = 311; + public static readonly KW_REGR_SYY = 312; + public static readonly KW_RELEASE = 313; + public static readonly KW_RENAME = 314; + public static readonly KW_RESET = 315; + public static readonly KW_RESULT = 316; + public static readonly KW_RETURN = 317; + public static readonly KW_RETURNS = 318; + public static readonly KW_REVOKE = 319; + public static readonly KW_RIGHT = 320; + public static readonly KW_RLIKE = 321; + public static readonly KW_ROLLBACK = 322; + public static readonly KW_ROLLUP = 323; + public static readonly KW_ROW = 324; + public static readonly KW_ROWS = 325; + public static readonly KW_ROW_NUMBER = 326; + public static readonly KW_RUNNING = 327; + public static readonly KW_SAFE_CAST = 328; + public static readonly KW_SAFE_OFFSET = 329; + public static readonly KW_SAFE_ORDINAL = 330; + public static readonly KW_SATURDAY = 331; + public static readonly KW_SAVEPOINT = 332; + public static readonly KW_SCALA = 333; + public static readonly KW_SCOPE = 334; + public static readonly KW_SCROLL = 335; + public static readonly KW_SEARCH = 336; + public static readonly KW_SECOND = 337; + public static readonly KW_SEEK = 338; + public static readonly KW_SELECT = 339; + public static readonly KW_SENSITIVE = 340; + public static readonly KW_SEPARATOR = 341; + public static readonly KW_SESSION_USER = 342; + public static readonly KW_SET = 343; + public static readonly KW_SHOW = 344; + public static readonly KW_SIMILAR = 345; + public static readonly KW_SKIP = 346; + public static readonly KW_SMALLINT = 347; + public static readonly KW_SOME = 348; + public static readonly KW_SPECIFIC = 349; + public static readonly KW_SPECIFICTYPE = 350; + public static readonly KW_SQL = 351; + public static readonly KW_SQLEXCEPTION = 352; + public static readonly KW_SQLSTATE = 353; + public static readonly KW_SQLWARNING = 354; + public static readonly KW_SQRT = 355; + public static readonly KW_START = 356; + public static readonly KW_STATEMENT = 357; + public static readonly KW_STATIC = 358; + public static readonly KW_STATISTICS = 359; + public static readonly KW_STDDEV_POP = 360; + public static readonly KW_STDDEV_SAMP = 361; + public static readonly KW_STREAM = 362; + public static readonly KW_STRING = 363; + public static readonly KW_STRING_AGG = 364; + public static readonly KW_SUBMULTISET = 365; + public static readonly KW_SUBSET = 366; + public static readonly KW_SUBSTRING = 367; + public static readonly KW_SUBSTRING_REGEX = 368; + public static readonly KW_SUCCEEDS = 369; + public static readonly KW_SUM = 370; + public static readonly KW_SUNDAY = 371; + public static readonly KW_SYMMETRIC = 372; + public static readonly KW_SYSTEM = 373; + public static readonly KW_SYSTEM_TIME = 374; + public static readonly KW_SYSTEM_USER = 375; + public static readonly KW_TABLE = 376; + public static readonly KW_TABLES = 377; + public static readonly KW_TABLESAMPLE = 378; + public static readonly KW_THEN = 379; + public static readonly KW_THURSDAY = 380; + public static readonly KW_TIME = 381; + public static readonly KW_TIMESTAMP = 382; + public static readonly KW_TIMESTAMP_DIFF = 383; + public static readonly KW_TIMESTAMP_LTZ = 384; + public static readonly KW_TIMESTAMP_TRUNC = 385; + public static readonly KW_TIMEZONE_HOUR = 386; + public static readonly KW_TIMEZONE_MINUTE = 387; + public static readonly KW_TIME_DIFF = 388; + public static readonly KW_TIME_TRUNC = 389; + public static readonly KW_TINYINT = 390; + public static readonly KW_TO = 391; + public static readonly KW_TRAILING = 392; + public static readonly KW_TRANSLATE = 393; + public static readonly KW_TRANSLATE_REGEX = 394; + public static readonly KW_TRANSLATION = 395; + public static readonly KW_TREAT = 396; + public static readonly KW_TRIGGER = 397; + public static readonly KW_TRIM = 398; + public static readonly KW_TRIM_ARRAY = 399; + public static readonly KW_TRUE = 400; + public static readonly KW_TRUNCATE = 401; + public static readonly KW_TRY_CAST = 402; + public static readonly KW_TUESDAY = 403; + public static readonly KW_UESCAPE = 404; + public static readonly KW_UNBOUNDED = 405; + public static readonly KW_UNION = 406; + public static readonly KW_UNIQUE = 407; + public static readonly KW_UNKNOWN = 408; + public static readonly KW_UNNEST = 409; + public static readonly KW_UNPIVOT = 410; + public static readonly KW_UPDATE = 411; + public static readonly KW_UPPER = 412; + public static readonly KW_UPSERT = 413; + public static readonly KW_USE = 414; + public static readonly KW_USER = 415; + public static readonly KW_USING = 416; + public static readonly KW_VALUE = 417; + public static readonly KW_VALUES = 418; + public static readonly KW_VALUE_OF = 419; + public static readonly KW_VARBINARY = 420; + public static readonly KW_VARCHAR = 421; + public static readonly KW_VARYING = 422; + public static readonly KW_VAR_POP = 423; + public static readonly KW_VAR_SAMP = 424; + public static readonly KW_VERSIONING = 425; + public static readonly KW_VIEWS = 426; + public static readonly KW_VIRTUAL = 427; + public static readonly KW_WATERMARK = 428; + public static readonly KW_WATERMARKS = 429; + public static readonly KW_WEDNESDAY = 430; + public static readonly KW_WEEKS = 431; + public static readonly KW_WHEN = 432; + public static readonly KW_WHENEVER = 433; + public static readonly KW_WHERE = 434; + public static readonly KW_WIDTH_BUCKET = 435; + public static readonly KW_WINDOW = 436; + public static readonly KW_WITH = 437; + public static readonly KW_WITHIN = 438; + public static readonly KW_WITHOUT = 439; + public static readonly KW_YEAR = 440; + public static readonly KW_ADD = 441; + public static readonly KW_AFTER = 442; + public static readonly KW_ASC = 443; + public static readonly KW_CASCADE = 444; + public static readonly KW_CATALOG = 445; + public static readonly KW_CENTURY = 446; + public static readonly KW_CONFIG = 447; + public static readonly KW_CONSTRAINTS = 448; + public static readonly KW_CUMULATE = 449; + public static readonly KW_DATA = 450; + public static readonly KW_DATABASE = 451; + public static readonly KW_DAYS = 452; + public static readonly KW_DECADE = 453; + public static readonly KW_DESC = 454; + public static readonly KW_DESCRIPTOR = 455; + public static readonly KW_DIV = 456; + public static readonly KW_ENGINE = 457; + public static readonly KW_EPOCH = 458; + public static readonly KW_EXCLUDING = 459; + public static readonly KW_FILE = 460; + public static readonly KW_FIRST = 461; + public static readonly KW_GENERATED = 462; + public static readonly KW_HOP = 463; + public static readonly KW_HOURS = 464; + public static readonly KW_IGNORE = 465; + public static readonly KW_INCLUDING = 466; + public static readonly KW_JAR = 467; + public static readonly KW_JARS = 468; + public static readonly KW_JAVA = 469; + public static readonly KW_KEY = 470; + public static readonly KW_LAST = 471; + public static readonly KW_LOAD = 472; + public static readonly KW_MAP = 473; + public static readonly KW_MICROSECOND = 474; + public static readonly KW_MILLENNIUM = 475; + public static readonly KW_MILLISECOND = 476; + public static readonly KW_MINUTES = 477; + public static readonly KW_MONTHS = 478; + public static readonly KW_NANOSECOND = 479; + public static readonly KW_NULLS = 480; + public static readonly KW_OPTIONS = 481; + public static readonly KW_PAST = 482; + public static readonly KW_PLAN = 483; + public static readonly KW_PRECEDING = 484; + public static readonly KW_PYTHON = 485; + public static readonly KW_PYTHON_ARCHIVES = 486; + public static readonly KW_PYTHON_DEPENDENCIES = 487; + public static readonly KW_PYTHON_FILES = 488; + public static readonly KW_PYTHON_JAR = 489; + public static readonly KW_PYTHON_PARAMETER = 490; + public static readonly KW_PYTHON_REQUIREMENTS = 491; + public static readonly KW_QUARTER = 492; + public static readonly KW_REMOVE = 493; + public static readonly KW_RESTRICT = 494; + public static readonly KW_SECONDS = 495; + public static readonly KW_SESSION = 496; + public static readonly KW_SETS = 497; + public static readonly KW_SIZE = 498; + public static readonly KW_SLIDE = 499; + public static readonly KW_STEP = 500; + public static readonly KW_TEMPORARY = 501; + public static readonly KW_TIMECOL = 502; + public static readonly KW_TUMBLE = 503; + public static readonly KW_UNLOAD = 504; + public static readonly KW_VIEW = 505; + public static readonly KW_WEEK = 506; + public static readonly KW_YEARS = 507; + public static readonly KW_ZONE = 508; + public static readonly EQUAL_SYMBOL = 509; + public static readonly GREATER_SYMBOL = 510; + public static readonly LESS_SYMBOL = 511; + public static readonly EXCLAMATION_SYMBOL = 512; + public static readonly BIT_NOT_OP = 513; + public static readonly BIT_OR_OP = 514; + public static readonly BIT_AND_OP = 515; + public static readonly BIT_XOR_OP = 516; + public static readonly DOT = 517; + public static readonly LS_BRACKET = 518; + public static readonly RS_BRACKET = 519; + public static readonly LR_BRACKET = 520; + public static readonly RR_BRACKET = 521; + public static readonly LB_BRACKET = 522; + public static readonly RB_BRACKET = 523; + public static readonly COMMA = 524; + public static readonly SEMICOLON = 525; + public static readonly AT_SIGN = 526; + public static readonly SINGLE_QUOTE_SYMB = 527; + public static readonly DOUBLE_QUOTE_SYMB = 528; + public static readonly REVERSE_QUOTE_SYMB = 529; + public static readonly COLON_SYMB = 530; + public static readonly ASTERISK_SIGN = 531; + public static readonly UNDERLINE_SIGN = 532; + public static readonly HYPHEN_SIGN = 533; + public static readonly ADD_SIGN = 534; + public static readonly PERCENT_SIGN = 535; + public static readonly DOUBLE_VERTICAL_SIGN = 536; + public static readonly DOUBLE_HYPHEN_SIGN = 537; + public static readonly SLASH_SIGN = 538; + public static readonly QUESTION_MARK_SIGN = 539; + public static readonly DOUBLE_RIGHT_ARROW = 540; + public static readonly STRING_LITERAL = 541; + public static readonly DIG_LITERAL = 542; + public static readonly REAL_LITERAL = 543; + public static readonly BIT_STRING = 544; + public static readonly ID_LITERAL = 545; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -582,13 +585,13 @@ export class FlinkSqlLexer extends antlr.Lexer { "'ENFORCED'", "'EQUALS'", "'ESCAPE'", "'ESTIMATED_COST'", "'EVERY'", "'EXCEPT'", "'EXEC'", "'EXECUTE'", "'EXISTS'", "'EXP'", "'EXPLAIN'", "'EXTEND'", "'EXTENDED'", "'EXTERNAL'", "'EXTRACT'", "'FALSE'", - "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOR'", - "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", "'FULL'", - "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", "'GRANT'", - "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", "'HAVING'", - "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", "'IMPORT'", - "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", "'INOUT'", - "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", + "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOLLOWING'", + "'FOR'", "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", + "'GRANT'", "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", + "'HAVING'", "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", + "'IMPORT'", "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", + "'INOUT'", "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERSECTION'", "'INTERVAL'", "'INTO'", "'IS'", "'JOIN'", "'JSON'", "'JSON_ARRAY'", "'JSON_ARRAYAGG'", "'JSON_EXECUTION_PLAN'", "'JSON_EXISTS'", "'JSON_OBJECT'", "'JSON_OBJECTAGG'", "'JSON_QUERY'", "'JSON_VALUE'", @@ -607,8 +610,8 @@ export class FlinkSqlLexer extends antlr.Lexer { "'OVERWRITE'", "'OVERWRITING'", "'PARAMETER'", "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PATTERN'", "'PER'", "'PERCENT'", "'PERCENTILE_CONT'", "'PERCENTILE_DISC'", "'PERCENT_RANK'", "'PERIOD'", "'PERMUTE'", - "'PIVOT'", "'PORTION'", "'POSITION'", "'POSITION_REGEX'", "'POWER'", - "'PRECEDES'", "'PRECISION'", "'PREPARE'", "'PREV'", "'PRIMARY'", + "'RETURNING'", "'PIVOT'", "'PORTION'", "'POSITION'", "'POSITION_REGEX'", + "'POWER'", "'PRECEDES'", "'PRECISION'", "'PREPARE'", "'PREV'", "'PRIMARY'", "'PROCEDURE'", "'QUALIFY'", "'QUARTERS'", "'RANGE'", "'RANK'", "'RAW'", "'READS'", "'REAL'", "'RECURSIVE'", "'REF'", "'REFERENCES'", "'REFERENCING'", "'REGR_AVGX'", "'REGR_AVGY'", "'REGR_COUNT'", "'REGR_INTERCEPT'", @@ -631,28 +634,29 @@ export class FlinkSqlLexer extends antlr.Lexer { "'TIME_TRUNC'", "'TINYINT'", "'TO'", "'TRAILING'", "'TRANSLATE'", "'TRANSLATE_REGEX'", "'TRANSLATION'", "'TREAT'", "'TRIGGER'", "'TRIM'", "'TRIM_ARRAY'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TUESDAY'", - "'UESCAPE'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", "'UNNEST'", "'UNPIVOT'", - "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", "'USER'", "'USING'", - "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", "'VARCHAR'", - "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", "'VIEWS'", - "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", "'WEEKS'", - "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", "'WINDOW'", - "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", "'AFTER'", - "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", "'CONSTRAINTS'", - "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", "'DECADE'", "'DESC'", - "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", "'EXCLUDING'", "'FILE'", - "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", "'IGNORE'", "'INCLUDING'", - "'JAR'", "'JARS'", "'JAVA'", "'KEY'", "'LAST'", "'LOAD'", "'MAP'", - "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", "'MINUTES'", "'MONTHS'", - "'NANOSECOND'", "'NULLS'", "'OPTIONS'", "'PAST'", "'PLAN'", "'PRECEDING'", - "'PYTHON'", "'PYTHON_ARCHIVES'", "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", - "'PYTHON_JAR'", "'PYTHON_PARAMETER'", "'PYTHON_REQUIREMENTS'", "'QUARTER'", - "'REMOVE'", "'RESTRICT'", "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", - "'SLIDE'", "'STEP'", "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", - "'VIEW'", "'WEEK'", "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", - "'}'", "','", "';'", "'@'", "'''", "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" + "'UESCAPE'", "'UNBOUNDED'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", + "'UNNEST'", "'UNPIVOT'", "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", + "'USER'", "'USING'", "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", + "'VARCHAR'", "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", + "'VIEWS'", "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", + "'WEEKS'", "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", + "'WINDOW'", "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", + "'AFTER'", "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", + "'CONSTRAINTS'", "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", + "'DECADE'", "'DESC'", "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", + "'EXCLUDING'", "'FILE'", "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", + "'IGNORE'", "'INCLUDING'", "'JAR'", "'JARS'", "'JAVA'", "'KEY'", + "'LAST'", "'LOAD'", "'MAP'", "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", + "'MINUTES'", "'MONTHS'", "'NANOSECOND'", "'NULLS'", "'OPTIONS'", + "'PAST'", "'PLAN'", "'PRECEDING'", "'PYTHON'", "'PYTHON_ARCHIVES'", + "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", "'PYTHON_JAR'", "'PYTHON_PARAMETER'", + "'PYTHON_REQUIREMENTS'", "'QUARTER'", "'REMOVE'", "'RESTRICT'", + "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", "'SLIDE'", "'STEP'", + "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", "'VIEW'", "'WEEK'", + "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", + "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", "'}'", "','", "';'", + "'@'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", + "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" ]; public static readonly symbolicNames = [ @@ -686,57 +690,59 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", - "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", - "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", - "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", - "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", "KW_REAL", - "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", "KW_REGR_AVGX", - "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", "KW_REGR_R2", - "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", "KW_RELEASE", - "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", "KW_RETURNS", - "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", "KW_SAFE_CAST", - "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", "KW_SAVEPOINT", - "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", "KW_SECOND", "KW_SEEK", - "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", "KW_SESSION_USER", - "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", "KW_SMALLINT", "KW_SOME", - "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", "KW_SQLEXCEPTION", "KW_SQLSTATE", - "KW_SQLWARNING", "KW_SQRT", "KW_START", "KW_STATEMENT", "KW_STATIC", - "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", "KW_STREAM", - "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", "KW_SUBSTRING", - "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", "KW_SYMMETRIC", - "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", "KW_TABLES", - "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", "KW_TIME", "KW_TIMESTAMP", - "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", - "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", - "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", - "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_RETURNING", "KW_PIVOT", + "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", + "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", + "KW_QUALIFY", "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", + "KW_REAL", "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", + "KW_REGR_AVGX", "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", + "KW_REGR_R2", "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", + "KW_RELEASE", "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", + "KW_RETURNS", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", + "KW_ROLLUP", "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", + "KW_SAFE_CAST", "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", + "KW_SAVEPOINT", "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", + "KW_SECOND", "KW_SEEK", "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", + "KW_SESSION_USER", "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", + "KW_SMALLINT", "KW_SOME", "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", + "KW_SQLEXCEPTION", "KW_SQLSTATE", "KW_SQLWARNING", "KW_SQRT", "KW_START", + "KW_STATEMENT", "KW_STATIC", "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", + "KW_STREAM", "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", + "KW_SUBSTRING", "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", + "KW_SYMMETRIC", "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", + "KW_TABLE", "KW_TABLES", "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", + "KW_TIME", "KW_TIMESTAMP", "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", + "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", "KW_TIMEZONE_MINUTE", + "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", + "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", + "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", "KW_TRUNCATE", + "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", @@ -801,57 +807,59 @@ export class FlinkSqlLexer extends antlr.Lexer { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", - "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", - "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", - "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", - "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", "KW_REAL", - "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", "KW_REGR_AVGX", - "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", "KW_REGR_R2", - "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", "KW_RELEASE", - "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", "KW_RETURNS", - "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", "KW_SAFE_CAST", - "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", "KW_SAVEPOINT", - "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", "KW_SECOND", "KW_SEEK", - "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", "KW_SESSION_USER", - "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", "KW_SMALLINT", "KW_SOME", - "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", "KW_SQLEXCEPTION", "KW_SQLSTATE", - "KW_SQLWARNING", "KW_SQRT", "KW_START", "KW_STATEMENT", "KW_STATIC", - "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", "KW_STREAM", - "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", "KW_SUBSTRING", - "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", "KW_SYMMETRIC", - "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", "KW_TABLES", - "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", "KW_TIME", "KW_TIMESTAMP", - "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", - "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", - "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", - "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_RETURNING", "KW_PIVOT", + "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", + "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", + "KW_QUALIFY", "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", + "KW_REAL", "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", + "KW_REGR_AVGX", "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", + "KW_REGR_R2", "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", + "KW_RELEASE", "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", + "KW_RETURNS", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", + "KW_ROLLUP", "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", + "KW_SAFE_CAST", "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", + "KW_SAVEPOINT", "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", + "KW_SECOND", "KW_SEEK", "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", + "KW_SESSION_USER", "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", + "KW_SMALLINT", "KW_SOME", "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", + "KW_SQLEXCEPTION", "KW_SQLSTATE", "KW_SQLWARNING", "KW_SQRT", "KW_START", + "KW_STATEMENT", "KW_STATIC", "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", + "KW_STREAM", "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", + "KW_SUBSTRING", "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", + "KW_SYMMETRIC", "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", + "KW_TABLE", "KW_TABLES", "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", + "KW_TIME", "KW_TIMESTAMP", "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", + "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", "KW_TIMEZONE_MINUTE", + "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", + "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", + "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", "KW_TRUNCATE", + "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", @@ -903,7 +911,7 @@ export class FlinkSqlLexer extends antlr.Lexer { public get modeNames(): string[] { return FlinkSqlLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4,0,542,5507,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,545,5543,6,-1,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, @@ -1000,1975 +1008,1989 @@ export class FlinkSqlLexer extends antlr.Lexer { 7,532,2,533,7,533,2,534,7,534,2,535,7,535,2,536,7,536,2,537,7,537, 2,538,7,538,2,539,7,539,2,540,7,540,2,541,7,541,2,542,7,542,2,543, 7,543,2,544,7,544,2,545,7,545,2,546,7,546,2,547,7,547,2,548,7,548, - 2,549,7,549,2,550,7,550,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,5,1,1112, - 8,1,10,1,12,1,1115,9,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2,1125, - 8,2,1,2,5,2,1128,8,2,10,2,12,2,1131,9,2,1,2,3,2,1134,8,2,1,2,1,2, - 3,2,1138,8,2,1,2,1,2,1,2,1,2,3,2,1144,8,2,1,2,1,2,3,2,1148,8,2,3, - 2,1150,8,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1, - 7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,10,1,10, - 1,10,1,10,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,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, + 2,549,7,549,2,550,7,550,2,551,7,551,2,552,7,552,2,553,7,553,1,0, + 1,0,1,0,1,0,1,1,1,1,1,1,1,1,5,1,1118,8,1,10,1,12,1,1121,9,1,1,1, + 1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2,1131,8,2,1,2,5,2,1134,8,2,10,2,12, + 2,1137,9,2,1,2,3,2,1140,8,2,1,2,1,2,3,2,1144,8,2,1,2,1,2,1,2,1,2, + 3,2,1150,8,2,1,2,1,2,3,2,1154,8,2,3,2,1156,8,2,1,2,1,2,1,3,1,3,1, + 3,1,3,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1, + 6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,11,1,11,1,11,1,11, + 1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13, + 1,13,1,13,1,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,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,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,16,1,16,1,16,1,17, - 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20, - 1,20,1,20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,23,1,23,1,23, - 1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,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,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26, - 1,27,1,27,1,27,1,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,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33, - 1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,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,40,1,40,1,40,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,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,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,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,1,46,1,47,1,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 1,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,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,50,1,50, - 1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57, - 1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59, - 1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, - 1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62, - 1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,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,1,67,1,67,1,67,1,67,1,67, - 1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69, - 1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72, - 1,72,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,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,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,15,1,15,1,15,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17, + 1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, + 1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,21, + 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, + 1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,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,1,25,1,25,1,26, + 1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,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,30, + 1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32, + 1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34, + 1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37, + 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38, + 1,38,1,38,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,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, + 1,42,1,42,1,42,1,42,1,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,1,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,44,1,44,1,45,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,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,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,49,1,49,1,49,1,49,1,49,1,49, + 1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51, + 1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53, + 1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60, + 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64, + 1,64,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65, + 1,65,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,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68, + 1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71, + 1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73, + 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75, + 1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,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,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,1,79,1,79,1,79,1,79,1,79,1,79, - 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83, - 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84, - 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84, + 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,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, + 1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, + 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82, + 1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84, + 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85, 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, 1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,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,86,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89, - 1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91, - 1,91,1,91,1,91,1,91,1,91,1,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,93,1,93,1,93,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94, - 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95, - 1,95,1,95,1,95,1,96,1,96,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,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100, - 1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 1,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108, - 1,108,1,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,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110, - 1,110,1,110,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, - 1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,1,114,1,114, - 1,115,1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,116,1,116,1,116, - 1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,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,122,1,122,1,122, - 1,122,1,122,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,1,123,1,123,1,123,1,123,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,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,127,1,127, - 1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,130, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139, - 1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141, - 1,141,1,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,1,143,1,143,1,143,1,143,1,143,1,143,1,144,1,144, - 1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,146,1,146,1,146, - 1,146,1,146,1,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,148,1,148,1,148,1,148,1,148,1,149,1,149, - 1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,151, - 1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,152,1,152,1,153,1,153,1,153,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,155,1,155,1,155, - 1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157, - 1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162,1,162, - 1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164, - 1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166, - 1,166,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,171,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,1,172,1,173, - 1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177, - 1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,180,1,180,1,180, - 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181, - 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,182,1,182,1,182, - 1,182,1,182,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,185, - 1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187, - 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188, + 1,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, + 1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88, + 1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90, + 1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,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,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93, + 1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95, + 1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,96,1,96,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,98,1,98, + 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99, + 1,99,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102, + 1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105, + 1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,108,1,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,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,1,109,1,110, + 1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,114, + 1,114,1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117, + 1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,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,122,1,122,1,122,1,122,1,122,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,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126, + 1,126,1,126,1,126,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,127,1,127,1,127,1,127,1,127,1,127,1,128, + 1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,133, + 1,133,1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,136,1,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,139,1,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140, + 1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,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,1,143,1,143, + 1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,145, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146, + 1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,149,1,149, + 1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151, + 1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,153,1,153, + 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,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157, + 1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159, + 1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,161,1,161,1,161,1,161,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,1,163, + 1,163,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164, + 1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166,1,166, + 1,166,1,166,1,166,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168, + 1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170, + 1,171,1,171,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,1,172,1,172,1,172,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174,1,175, + 1,175,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,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,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180, + 1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,185, + 1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,187,1,187, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188, 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191, + 1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, 1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, - 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, - 1,194,1,194,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,197,1,197,1,197, - 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,198,1,198,1,198, - 1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,200, - 1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201, + 1,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, + 1,192,1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,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,1,195,1,195,1,195,1,195,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197, + 1,197,1,197,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198, + 1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,200, + 1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201, 1,201,1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203, - 1,203,1,203,1,203,1,203,1,203,1,203,1,204,1,204,1,204,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,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,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, - 1,208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210, - 1,210,1,210,1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,211,1,211, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, + 1,205,1,205,1,205,1,205,1,205,1,205,1,206,1,206,1,206,1,207,1,207, + 1,207,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210, + 1,210,1,210,1,211,1,211,1,211,1,211,1,211,1,211,1,212,1,212,1,212, + 1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,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,216,1,216, - 1,216,1,216,1,216,1,216,1,216,1,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,219,1,219, - 1,219,1,219,1,219,1,219,1,219,1,220,1,220,1,220,1,220,1,221,1,221, - 1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 1,223,1,223,1,223,1,223,1,224,1,224,1,224,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,1,226,1,226, - 1,226,1,226,1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,1,229, - 1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232, - 1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233, - 1,233,1,233,1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235, - 1,235,1,235,1,235,1,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237, - 1,237,1,238,1,238,1,238,1,239,1,239,1,239,1,239,1,239,1,240,1,240, - 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,241,1,241,1,241, - 1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242, - 1,243,1,243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244,1,244, - 1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246, - 1,246,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,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, + 1,214,1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,218, + 1,218,1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219, + 1,219,1,219,1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,221, + 1,221,1,221,1,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,224,1,224,1,224,1,224,1,225,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,226,1,226,1,226,1,226, + 1,226,1,226,1,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,228, + 1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,229,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,231,1,231, + 1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, + 1,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,234, + 1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235, + 1,235,1,235,1,236,1,236,1,236,1,236,1,236,1,236,1,237,1,237,1,237, + 1,237,1,238,1,238,1,238,1,238,1,238,1,239,1,239,1,239,1,240,1,240, + 1,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241,1,241,1,241, + 1,241,1,241,1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,1,243, + 1,243,1,243,1,243,1,243,1,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,1,246,1,246, + 1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248, 1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,248, - 1,248,1,248,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252,1,252,1,253, - 1,253,1,253,1,254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255, - 1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,258,1,258,1,258, - 1,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259, - 1,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1,262, - 1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 1,263,1,263,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,265, - 1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,265,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,267, - 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270, - 1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,271,1,271, - 1,271,1,271,1,271,1,271,1,271,1,271,1,272,1,272,1,272,1,272,1,273, - 1,273,1,273,1,273,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274, - 1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274,1,274, + 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,250,1,250,1,250,1,251, + 1,251,1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252,1,253, + 1,253,1,253,1,253,1,253,1,254,1,254,1,254,1,255,1,255,1,255,1,255, + 1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257,1,257,1,257,1,258, + 1,258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,260,1,260,1,260, + 1,260,1,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,1,262,1,262, + 1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,264,1,264, + 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,265,1,265,1,265,1,265, + 1,265,1,265,1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,1,268,1,268,1,268,1,268,1,268,1,268,1,268, + 1,268,1,268,1,268,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270, + 1,270,1,270,1,270,1,271,1,271,1,271,1,271,1,271,1,271,1,271,1,271, + 1,271,1,271,1,271,1,272,1,272,1,272,1,272,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,1,274, 1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, 1,275,1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276,1,276,1,276, - 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,277,1,277,1,277, - 1,277,1,277,1,277,1,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280, - 1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,281,1,281,1,281, - 1,281,1,281,1,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,1,282,1,282,1,283,1,283,1,283,1,283,1,283, - 1,283,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,285, - 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,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,1,289,1,290,1,290,1,290,1,290, - 1,290,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293,1,293, - 1,293,1,293,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295,1,295, - 1,295,1,296,1,296,1,296,1,296,1,296,1,297,1,297,1,297,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,298,1,298,1,298,1,298,1,299,1,299, + 1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276,1,276, + 1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277,1,277, + 1,277,1,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,279,1,279, + 1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,280, + 1,280,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,281,1,281, + 1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,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,1,284,1,284,1,284,1,285, + 1,285,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287,1,287,1,287,1,287, + 1,287,1,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,290,1,290,1,290,1,290,1,290,1,290,1,290, + 1,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, + 1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,294,1,294,1,294,1,294,1,294, + 1,294,1,295,1,295,1,295,1,295,1,295,1,296,1,296,1,296,1,296,1,297, + 1,297,1,297,1,297,1,297,1,297,1,298,1,298,1,298,1,298,1,298,1,299, 1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,300,1,300, - 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,301, - 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,302,1,302, - 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,303,1,303,1,303, - 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,304,1,304,1,304, - 1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304, - 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,306,1,306, - 1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,307,1,307, - 1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,308,1,308,1,308,1,308, - 1,308,1,308,1,308,1,308,1,308,1,309,1,309,1,309,1,309,1,309,1,309, - 1,309,1,309,1,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, + 1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,303,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304, + 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305,1,305, + 1,305,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306,1,306, + 1,306,1,306,1,306,1,306,1,306,1,307,1,307,1,307,1,307,1,307,1,307, + 1,307,1,307,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308,1,308, + 1,308,1,308,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309,1,309, + 1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,311,1,311, 1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,312,1,312,1,312,1,312, - 1,312,1,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313,1,314,1,314, - 1,314,1,314,1,314,1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315, + 1,312,1,312,1,312,1,312,1,313,1,313,1,313,1,313,1,313,1,313,1,313, + 1,314,1,314,1,314,1,314,1,314,1,314,1,315,1,315,1,315,1,315,1,315, 1,315,1,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,317,1,317, - 1,317,1,317,1,317,1,317,1,318,1,318,1,318,1,318,1,318,1,318,1,319, - 1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320, - 1,320,1,320,1,320,1,320,1,321,1,321,1,321,1,321,1,322,1,322,1,322, - 1,322,1,322,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323,1,323, - 1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,325, - 1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,1,326,1,326, - 1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,326,1,327, - 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, - 1,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,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,330,1,330, - 1,330,1,330,1,330,1,330,1,331,1,331,1,331,1,331,1,331,1,331,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335,1,335, - 1,335,1,335,1,335,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,337, - 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,340, - 1,340,1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,342,1,342,1,342, - 1,342,1,342,1,342,1,342,1,342,1,343,1,343,1,343,1,343,1,343,1,344, - 1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,345,1,345,1,345, - 1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, - 1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347,1,347, - 1,347,1,347,1,348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,349, - 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350,1,350, - 1,350,1,350,1,350,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,351, - 1,351,1,351,1,351,1,351,1,351,1,351,1,352,1,352,1,352,1,352,1,352, - 1,353,1,353,1,353,1,353,1,353,1,353,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,1,355,1,355,1,355,1,355,1,355,1,355, - 1,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356, - 1,356,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357,1,357, - 1,357,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358,1,358, - 1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359,1,359,1,360,1,360, - 1,360,1,360,1,360,1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361, - 1,361,1,361,1,361,1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,362, - 1,362,1,362,1,362,1,362,1,362,1,362,1,363,1,363,1,363,1,363,1,363, - 1,363,1,363,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364, - 1,364,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365,1,365, + 1,317,1,317,1,317,1,317,1,317,1,317,1,318,1,318,1,318,1,318,1,318, + 1,318,1,318,1,319,1,319,1,319,1,319,1,319,1,319,1,320,1,320,1,320, + 1,320,1,320,1,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321, + 1,321,1,322,1,322,1,322,1,322,1,322,1,322,1,322,1,323,1,323,1,323, + 1,323,1,324,1,324,1,324,1,324,1,324,1,325,1,325,1,325,1,325,1,325, + 1,325,1,325,1,325,1,325,1,325,1,325,1,326,1,326,1,326,1,326,1,326, + 1,326,1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328,1,328, + 1,328,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,330,1,330,1,330,1,330,1,330,1,330, + 1,330,1,330,1,330,1,331,1,331,1,331,1,331,1,331,1,331,1,331,1,331, + 1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332,1,333,1,333,1,333, + 1,333,1,333,1,333,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,336,1,336,1,336,1,336,1,336, + 1,336,1,336,1,337,1,337,1,337,1,337,1,337,1,338,1,338,1,338,1,338, + 1,338,1,338,1,338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340, + 1,340,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,342,1,342,1,342,1,342,1,343,1,343,1,343,1,343, + 1,343,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,345,1,345, + 1,345,1,345,1,345,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,347,1,347,1,347,1,347,1,347,1,348,1,348,1,348,1,348,1,348, + 1,348,1,348,1,348,1,348,1,349,1,349,1,349,1,349,1,349,1,349,1,349, + 1,349,1,349,1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,1,351, + 1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, + 1,351,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,352,1,353, + 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,354, + 1,354,1,354,1,354,1,354,1,355,1,355,1,355,1,355,1,355,1,355,1,356, + 1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,357,1,357, + 1,357,1,357,1,357,1,357,1,357,1,358,1,358,1,358,1,358,1,358,1,358, + 1,358,1,358,1,358,1,358,1,358,1,359,1,359,1,359,1,359,1,359,1,359, + 1,359,1,359,1,359,1,359,1,359,1,360,1,360,1,360,1,360,1,360,1,360, + 1,360,1,360,1,360,1,360,1,360,1,360,1,361,1,361,1,361,1,361,1,361, + 1,361,1,361,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,363,1,363, + 1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,363,1,364,1,364, + 1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,364,1,365, 1,365,1,365,1,365,1,365,1,365,1,365,1,366,1,366,1,366,1,366,1,366, - 1,366,1,366,1,366,1,366,1,367,1,367,1,367,1,367,1,368,1,368,1,368, - 1,368,1,368,1,368,1,368,1,369,1,369,1,369,1,369,1,369,1,369,1,369, - 1,369,1,369,1,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372, - 1,372,1,373,1,373,1,373,1,373,1,373,1,373,1,374,1,374,1,374,1,374, - 1,374,1,374,1,374,1,375,1,375,1,375,1,375,1,375,1,375,1,375,1,375, - 1,375,1,375,1,375,1,375,1,376,1,376,1,376,1,376,1,376,1,377,1,377, - 1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,378,1,378,1,378,1,378, - 1,378,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, - 1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380,1,380, - 1,380,1,380,1,380,1,380,1,381,1,381,1,381,1,381,1,381,1,381,1,381, - 1,381,1,381,1,381,1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,382, - 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 1,382,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,384,1,384,1,384, - 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,385,1,385, + 1,366,1,366,1,366,1,366,1,366,1,367,1,367,1,367,1,367,1,367,1,367, + 1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,368, + 1,368,1,368,1,368,1,368,1,368,1,368,1,368,1,368,1,369,1,369,1,369, + 1,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,371,1,371,1,371, + 1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,372,1,372,1,372,1,372, + 1,372,1,372,1,372,1,373,1,373,1,373,1,373,1,373,1,373,1,373,1,373, + 1,373,1,373,1,373,1,373,1,374,1,374,1,374,1,374,1,374,1,374,1,374, + 1,374,1,374,1,374,1,374,1,374,1,375,1,375,1,375,1,375,1,375,1,375, + 1,376,1,376,1,376,1,376,1,376,1,376,1,376,1,377,1,377,1,377,1,377, + 1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377,1,378,1,378,1,378, + 1,378,1,378,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379,1,379, + 1,380,1,380,1,380,1,380,1,380,1,381,1,381,1,381,1,381,1,381,1,381, + 1,381,1,381,1,381,1,381,1,382,1,382,1,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,383,1,383,1,383, + 1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383, + 1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384,1,384, + 1,384,1,384,1,384,1,384,1,384,1,385,1,385,1,385,1,385,1,385,1,385, 1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,387,1,387,1,387, - 1,387,1,387,1,387,1,387,1,387,1,388,1,388,1,388,1,389,1,389,1,389, - 1,389,1,389,1,389,1,389,1,389,1,389,1,390,1,390,1,390,1,390,1,390, - 1,390,1,390,1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391, - 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,393,1,393,1,393,1,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394, - 1,394,1,394,1,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,1,396,1,396,1,396,1,396,1,397,1,397,1,397, - 1,397,1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,400,1,400, - 1,400,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401,1,401,1,401, - 1,401,1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404,1,404,1,404,1,404, - 1,404,1,404,1,405,1,405,1,405,1,405,1,405,1,405,1,405,1,406,1,406, - 1,406,1,406,1,406,1,406,1,406,1,406,1,407,1,407,1,407,1,407,1,407, - 1,407,1,407,1,408,1,408,1,408,1,408,1,408,1,408,1,409,1,409,1,409, - 1,409,1,409,1,409,1,409,1,410,1,410,1,410,1,410,1,411,1,411,1,411, - 1,411,1,411,1,412,1,412,1,412,1,412,1,412,1,412,1,413,1,413,1,413, - 1,413,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,415, - 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,416,1,416,1,416, - 1,416,1,416,1,416,1,416,1,416,1,416,1,416,1,417,1,417,1,417,1,417, - 1,417,1,417,1,417,1,417,1,418,1,418,1,418,1,418,1,418,1,418,1,418, - 1,418,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,420,1,420, + 1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,1,386,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,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,389,1,390,1,390, + 1,390,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,392, + 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,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,394,1,394,1,394,1,394,1,394,1,394,1,394,1,394, + 1,394,1,394,1,394,1,394,1,395,1,395,1,395,1,395,1,395,1,395,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,397,1,397,1,397,1,397, + 1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, + 1,398,1,399,1,399,1,399,1,399,1,399,1,400,1,400,1,400,1,400,1,400, + 1,400,1,400,1,400,1,400,1,401,1,401,1,401,1,401,1,401,1,401,1,401, + 1,401,1,401,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,403, + 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405,1,405,1,405, + 1,405,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,407,1,407,1,407, + 1,407,1,407,1,407,1,407,1,407,1,408,1,408,1,408,1,408,1,408,1,408, + 1,408,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,409,1,410,1,410, + 1,410,1,410,1,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411,1,411, + 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,413,1,413,1,413,1,413, + 1,414,1,414,1,414,1,414,1,414,1,415,1,415,1,415,1,415,1,415,1,415, + 1,416,1,416,1,416,1,416,1,416,1,416,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418,1,418, + 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,420, 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,421,1,421,1,421,1,421, - 1,421,1,421,1,421,1,421,1,421,1,421,1,421,1,422,1,422,1,422,1,422, - 1,422,1,422,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,424, - 1,424,1,424,1,424,1,424,1,424,1,424,1,424,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,426,1,426, - 1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,426,1,427,1,427,1,427, - 1,427,1,427,1,427,1,428,1,428,1,428,1,428,1,428,1,429,1,429,1,429, - 1,429,1,429,1,429,1,429,1,429,1,429,1,430,1,430,1,430,1,430,1,430, - 1,430,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431,1,431, - 1,431,1,431,1,431,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,433, + 1,421,1,421,1,421,1,421,1,422,1,422,1,422,1,422,1,422,1,422,1,422, + 1,422,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,424, + 1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,424,1,425, + 1,425,1,425,1,425,1,425,1,425,1,426,1,426,1,426,1,426,1,426,1,426, + 1,426,1,426,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427, + 1,427,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428, + 1,428,1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,429,1,429, + 1,430,1,430,1,430,1,430,1,430,1,430,1,431,1,431,1,431,1,431,1,431, + 1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,432,1,433,1,433, 1,433,1,433,1,433,1,433,1,434,1,434,1,434,1,434,1,434,1,434,1,434, - 1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,435,1,436,1,436,1,436, - 1,436,1,436,1,437,1,437,1,437,1,437,1,438,1,438,1,438,1,438,1,438, - 1,438,1,439,1,439,1,439,1,439,1,440,1,440,1,440,1,440,1,440,1,440, - 1,440,1,440,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,442, - 1,442,1,442,1,442,1,442,1,442,1,442,1,442,1,443,1,443,1,443,1,443, - 1,443,1,443,1,443,1,444,1,444,1,444,1,444,1,444,1,444,1,444,1,444, - 1,444,1,444,1,444,1,444,1,445,1,445,1,445,1,445,1,445,1,445,1,445, - 1,445,1,445,1,446,1,446,1,446,1,446,1,446,1,447,1,447,1,447,1,447, - 1,447,1,447,1,447,1,447,1,447,1,448,1,448,1,448,1,448,1,448,1,449, - 1,449,1,449,1,449,1,449,1,449,1,449,1,450,1,450,1,450,1,450,1,450, - 1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451,1,451, - 1,452,1,452,1,452,1,452,1,453,1,453,1,453,1,453,1,453,1,453,1,453, - 1,454,1,454,1,454,1,454,1,454,1,454,1,455,1,455,1,455,1,455,1,455, - 1,455,1,455,1,455,1,455,1,455,1,456,1,456,1,456,1,456,1,456,1,457, - 1,457,1,457,1,457,1,457,1,457,1,458,1,458,1,458,1,458,1,458,1,458, - 1,458,1,458,1,458,1,458,1,459,1,459,1,459,1,459,1,460,1,460,1,460, - 1,460,1,460,1,460,1,461,1,461,1,461,1,461,1,461,1,461,1,461,1,462, - 1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,462,1,463,1,463, - 1,463,1,463,1,464,1,464,1,464,1,464,1,464,1,465,1,465,1,465,1,465, + 1,434,1,434,1,434,1,434,1,434,1,434,1,435,1,435,1,435,1,435,1,435, + 1,435,1,435,1,436,1,436,1,436,1,436,1,436,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,438,1,438,1,438,1,438,1,438,1,438,1,438,1,438, + 1,439,1,439,1,439,1,439,1,439,1,440,1,440,1,440,1,440,1,441,1,441, + 1,441,1,441,1,441,1,441,1,442,1,442,1,442,1,442,1,443,1,443,1,443, + 1,443,1,443,1,443,1,443,1,443,1,444,1,444,1,444,1,444,1,444,1,444, + 1,444,1,444,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,446, + 1,446,1,446,1,446,1,446,1,446,1,446,1,447,1,447,1,447,1,447,1,447, + 1,447,1,447,1,447,1,447,1,447,1,447,1,447,1,448,1,448,1,448,1,448, + 1,448,1,448,1,448,1,448,1,448,1,449,1,449,1,449,1,449,1,449,1,450, + 1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,450,1,451,1,451,1,451, + 1,451,1,451,1,452,1,452,1,452,1,452,1,452,1,452,1,452,1,453,1,453, + 1,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,455,1,455,1,455,1,455,1,456,1,456,1,456,1,456, + 1,456,1,456,1,456,1,457,1,457,1,457,1,457,1,457,1,457,1,458,1,458, + 1,458,1,458,1,458,1,458,1,458,1,458,1,458,1,458,1,459,1,459,1,459, + 1,459,1,459,1,460,1,460,1,460,1,460,1,460,1,460,1,461,1,461,1,461, + 1,461,1,461,1,461,1,461,1,461,1,461,1,461,1,462,1,462,1,462,1,462, + 1,463,1,463,1,463,1,463,1,463,1,463,1,464,1,464,1,464,1,464,1,464, + 1,464,1,464,1,465,1,465,1,465,1,465,1,465,1,465,1,465,1,465,1,465, 1,465,1,466,1,466,1,466,1,466,1,467,1,467,1,467,1,467,1,467,1,468, 1,468,1,468,1,468,1,468,1,469,1,469,1,469,1,469,1,470,1,470,1,470, - 1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,470,1,471,1,471, - 1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,471,1,472,1,472, - 1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,472,1,473, - 1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,474,1,474,1,474,1,474, - 1,474,1,474,1,474,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475, - 1,475,1,475,1,475,1,476,1,476,1,476,1,476,1,476,1,476,1,477,1,477, + 1,470,1,470,1,471,1,471,1,471,1,471,1,471,1,472,1,472,1,472,1,472, + 1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473,1,473, + 1,473,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474,1,474, + 1,474,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475,1,475, + 1,475,1,475,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,477, 1,477,1,477,1,477,1,477,1,477,1,477,1,478,1,478,1,478,1,478,1,478, - 1,479,1,479,1,479,1,479,1,479,1,480,1,480,1,480,1,480,1,480,1,480, - 1,480,1,480,1,480,1,480,1,481,1,481,1,481,1,481,1,481,1,481,1,481, - 1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482,1,482, - 1,482,1,482,1,482,1,482,1,482,1,483,1,483,1,483,1,483,1,483,1,483, - 1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,483, - 1,483,1,483,1,483,1,484,1,484,1,484,1,484,1,484,1,484,1,484,1,484, - 1,484,1,484,1,484,1,484,1,484,1,485,1,485,1,485,1,485,1,485,1,485, - 1,485,1,485,1,485,1,485,1,485,1,486,1,486,1,486,1,486,1,486,1,486, + 1,478,1,478,1,478,1,478,1,478,1,478,1,479,1,479,1,479,1,479,1,479, + 1,479,1,480,1,480,1,480,1,480,1,480,1,480,1,480,1,480,1,481,1,481, + 1,481,1,481,1,481,1,482,1,482,1,482,1,482,1,482,1,483,1,483,1,483, + 1,483,1,483,1,483,1,483,1,483,1,483,1,483,1,484,1,484,1,484,1,484, + 1,484,1,484,1,484,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485, + 1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,485,1,486,1,486,1,486, 1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486,1,486, - 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487, - 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,488,1,488, - 1,488,1,488,1,488,1,488,1,488,1,488,1,489,1,489,1,489,1,489,1,489, - 1,489,1,489,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490, - 1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,492,1,492,1,492, - 1,492,1,492,1,492,1,492,1,492,1,493,1,493,1,493,1,493,1,493,1,494, - 1,494,1,494,1,494,1,494,1,495,1,495,1,495,1,495,1,495,1,495,1,496, - 1,496,1,496,1,496,1,496,1,497,1,497,1,497,1,497,1,497,1,497,1,497, - 1,497,1,497,1,497,1,498,1,498,1,498,1,498,1,498,1,498,1,498,1,498, - 1,499,1,499,1,499,1,499,1,499,1,499,1,499,1,500,1,500,1,500,1,500, - 1,500,1,500,1,500,1,501,1,501,1,501,1,501,1,501,1,502,1,502,1,502, - 1,502,1,502,1,503,1,503,1,503,1,503,1,503,1,503,1,504,1,504,1,504, - 1,504,1,504,1,505,1,505,1,506,1,506,1,507,1,507,1,508,1,508,1,509, - 1,509,1,510,1,510,1,511,1,511,1,512,1,512,1,513,1,513,1,514,1,514, - 1,515,1,515,1,516,1,516,1,517,1,517,1,518,1,518,1,519,1,519,1,520, - 1,520,1,521,1,521,1,522,1,522,1,523,1,523,1,524,1,524,1,525,1,525, - 1,526,1,526,1,527,1,527,1,528,1,528,1,529,1,529,1,530,1,530,1,531, - 1,531,1,532,1,532,1,532,1,533,1,533,1,533,1,534,1,534,1,535,1,535, - 1,536,1,536,1,536,1,537,1,537,1,537,3,537,5361,8,537,1,538,4,538, - 5364,8,538,11,538,12,538,5365,1,539,4,539,5369,8,539,11,539,12,539, - 5370,3,539,5373,8,539,1,539,1,539,4,539,5377,8,539,11,539,12,539, - 5378,1,539,4,539,5382,8,539,11,539,12,539,5383,1,539,1,539,1,539, - 1,539,4,539,5390,8,539,11,539,12,539,5391,3,539,5394,8,539,1,539, - 1,539,4,539,5398,8,539,11,539,12,539,5399,1,539,1,539,1,539,4,539, - 5405,8,539,11,539,12,539,5406,1,539,1,539,3,539,5411,8,539,1,540, - 1,540,1,541,1,541,1,542,1,542,1,542,1,542,1,542,1,542,5,542,5423, - 8,542,10,542,12,542,5426,9,542,1,542,1,542,1,543,1,543,3,543,5432, - 8,543,1,543,4,543,5435,8,543,11,543,12,543,5436,1,544,5,544,5440, - 8,544,10,544,12,544,5443,9,544,1,544,4,544,5446,8,544,11,544,12, - 544,5447,1,544,5,544,5451,8,544,10,544,12,544,5454,9,544,1,545,1, - 545,1,546,1,546,1,547,1,547,1,547,1,547,1,547,1,547,5,547,5466,8, - 547,10,547,12,547,5469,9,547,1,547,1,547,1,548,1,548,1,548,1,548, - 1,548,1,548,5,548,5479,8,548,10,548,12,548,5482,9,548,1,548,1,548, - 1,549,1,549,1,549,4,549,5489,8,549,11,549,12,549,5490,1,549,1,549, - 1,550,1,550,1,550,1,550,1,550,1,550,5,550,5501,8,550,10,550,12,550, - 5504,9,550,1,550,1,550,3,1113,5441,5447,0,551,1,1,3,2,5,3,7,4,9, - 5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16, - 33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27, - 55,28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38, - 77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49, - 99,50,101,51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117, - 59,119,60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68, - 137,69,139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155, - 78,157,79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87, - 175,88,177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193, - 97,195,98,197,99,199,100,201,101,203,102,205,103,207,104,209,105, - 211,106,213,107,215,108,217,109,219,110,221,111,223,112,225,113, - 227,114,229,115,231,116,233,117,235,118,237,119,239,120,241,121, - 243,122,245,123,247,124,249,125,251,126,253,127,255,128,257,129, - 259,130,261,131,263,132,265,133,267,134,269,135,271,136,273,137, - 275,138,277,139,279,140,281,141,283,142,285,143,287,144,289,145, - 291,146,293,147,295,148,297,149,299,150,301,151,303,152,305,153, - 307,154,309,155,311,156,313,157,315,158,317,159,319,160,321,161, - 323,162,325,163,327,164,329,165,331,166,333,167,335,168,337,169, - 339,170,341,171,343,172,345,173,347,174,349,175,351,176,353,177, - 355,178,357,179,359,180,361,181,363,182,365,183,367,184,369,185, - 371,186,373,187,375,188,377,189,379,190,381,191,383,192,385,193, - 387,194,389,195,391,196,393,197,395,198,397,199,399,200,401,201, - 403,202,405,203,407,204,409,205,411,206,413,207,415,208,417,209, - 419,210,421,211,423,212,425,213,427,214,429,215,431,216,433,217, - 435,218,437,219,439,220,441,221,443,222,445,223,447,224,449,225, - 451,226,453,227,455,228,457,229,459,230,461,231,463,232,465,233, - 467,234,469,235,471,236,473,237,475,238,477,239,479,240,481,241, - 483,242,485,243,487,244,489,245,491,246,493,247,495,248,497,249, - 499,250,501,251,503,252,505,253,507,254,509,255,511,256,513,257, - 515,258,517,259,519,260,521,261,523,262,525,263,527,264,529,265, - 531,266,533,267,535,268,537,269,539,270,541,271,543,272,545,273, - 547,274,549,275,551,276,553,277,555,278,557,279,559,280,561,281, - 563,282,565,283,567,284,569,285,571,286,573,287,575,288,577,289, - 579,290,581,291,583,292,585,293,587,294,589,295,591,296,593,297, - 595,298,597,299,599,300,601,301,603,302,605,303,607,304,609,305, - 611,306,613,307,615,308,617,309,619,310,621,311,623,312,625,313, - 627,314,629,315,631,316,633,317,635,318,637,319,639,320,641,321, - 643,322,645,323,647,324,649,325,651,326,653,327,655,328,657,329, - 659,330,661,331,663,332,665,333,667,334,669,335,671,336,673,337, - 675,338,677,339,679,340,681,341,683,342,685,343,687,344,689,345, - 691,346,693,347,695,348,697,349,699,350,701,351,703,352,705,353, - 707,354,709,355,711,356,713,357,715,358,717,359,719,360,721,361, - 723,362,725,363,727,364,729,365,731,366,733,367,735,368,737,369, - 739,370,741,371,743,372,745,373,747,374,749,375,751,376,753,377, - 755,378,757,379,759,380,761,381,763,382,765,383,767,384,769,385, - 771,386,773,387,775,388,777,389,779,390,781,391,783,392,785,393, - 787,394,789,395,791,396,793,397,795,398,797,399,799,400,801,401, - 803,402,805,403,807,404,809,405,811,406,813,407,815,408,817,409, - 819,410,821,411,823,412,825,413,827,414,829,415,831,416,833,417, - 835,418,837,419,839,420,841,421,843,422,845,423,847,424,849,425, - 851,426,853,427,855,428,857,429,859,430,861,431,863,432,865,433, - 867,434,869,435,871,436,873,437,875,438,877,439,879,440,881,441, - 883,442,885,443,887,444,889,445,891,446,893,447,895,448,897,449, - 899,450,901,451,903,452,905,453,907,454,909,455,911,456,913,457, - 915,458,917,459,919,460,921,461,923,462,925,463,927,464,929,465, - 931,466,933,467,935,468,937,469,939,470,941,471,943,472,945,473, - 947,474,949,475,951,476,953,477,955,478,957,479,959,480,961,481, - 963,482,965,483,967,484,969,485,971,486,973,487,975,488,977,489, - 979,490,981,491,983,492,985,493,987,494,989,495,991,496,993,497, - 995,498,997,499,999,500,1001,501,1003,502,1005,503,1007,504,1009, - 505,1011,506,1013,507,1015,508,1017,509,1019,510,1021,511,1023,512, - 1025,513,1027,514,1029,515,1031,516,1033,517,1035,518,1037,519,1039, - 520,1041,521,1043,522,1045,523,1047,524,1049,525,1051,526,1053,527, - 1055,528,1057,529,1059,530,1061,531,1063,532,1065,533,1067,534,1069, - 535,1071,536,1073,537,1075,538,1077,539,1079,540,1081,541,1083,542, - 1085,0,1087,0,1089,0,1091,0,1093,0,1095,0,1097,0,1099,0,1101,0,1, - 0,37,3,0,9,10,13,13,32,32,2,0,10,10,13,13,2,0,65,65,97,97,2,0,66, - 66,98,98,2,0,83,83,115,115,2,0,76,76,108,108,2,0,79,79,111,111,2, - 0,67,67,99,99,2,0,84,84,116,116,2,0,69,69,101,101,2,0,87,87,119, - 119,2,0,82,82,114,114,2,0,78,78,110,110,2,0,89,89,121,121,2,0,90, - 90,122,122,2,0,68,68,100,100,2,0,71,71,103,103,2,0,77,77,109,109, - 2,0,88,88,120,120,2,0,73,73,105,105,2,0,86,86,118,118,2,0,85,85, - 117,117,2,0,72,72,104,104,2,0,70,70,102,102,2,0,80,80,112,112,2, - 0,75,75,107,107,2,0,81,81,113,113,2,0,74,74,106,106,2,0,92,92,96, - 96,2,0,43,43,45,45,4,0,48,57,65,90,95,95,97,122,3,0,65,90,95,95, - 97,122,1,0,48,57,2,0,65,90,97,122,2,0,34,34,92,92,2,0,39,39,92,92, - 1,0,48,49,5537,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0, - 9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0, - 19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0, - 29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0, - 39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0, - 49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0, - 59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0, - 69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0, - 79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0, - 89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0, - 99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0, - 0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117, - 1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0, - 0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1, - 0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0, - 145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0, - 0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163, - 1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0, - 0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1, - 0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0, - 191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0, - 0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209, - 1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0, - 0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1, - 0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0, - 237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0, - 0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255, - 1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0, - 0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1, - 0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0, - 283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0, - 0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301, - 1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0, - 0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1, - 0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0, - 329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0, - 0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347, - 1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0, - 0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0,0,365,1, - 0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1,0,0,0,0, - 375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0, - 0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393, - 1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401,1,0,0,0, - 0,403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0,0,411,1, - 0,0,0,0,413,1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1,0,0,0,0, - 421,1,0,0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427,1,0,0,0,0,429,1,0, - 0,0,0,431,1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0,0,437,1,0,0,0,0,439, - 1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0,445,1,0,0,0,0,447,1,0,0,0, - 0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455,1,0,0,0,0,457,1, - 0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1,0,0,0,0, - 467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0, - 0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485, - 1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0, - 0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1, - 0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0, - 513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0, - 0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0,0,0,0,531, - 1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0,0,539,1,0,0,0, - 0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1,0,0,0,0,549,1, - 0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0,557,1,0,0,0,0, - 559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0,0,0,0,567,1,0, - 0,0,0,569,1,0,0,0,0,571,1,0,0,0,0,573,1,0,0,0,0,575,1,0,0,0,0,577, - 1,0,0,0,0,579,1,0,0,0,0,581,1,0,0,0,0,583,1,0,0,0,0,585,1,0,0,0, - 0,587,1,0,0,0,0,589,1,0,0,0,0,591,1,0,0,0,0,593,1,0,0,0,0,595,1, - 0,0,0,0,597,1,0,0,0,0,599,1,0,0,0,0,601,1,0,0,0,0,603,1,0,0,0,0, - 605,1,0,0,0,0,607,1,0,0,0,0,609,1,0,0,0,0,611,1,0,0,0,0,613,1,0, - 0,0,0,615,1,0,0,0,0,617,1,0,0,0,0,619,1,0,0,0,0,621,1,0,0,0,0,623, - 1,0,0,0,0,625,1,0,0,0,0,627,1,0,0,0,0,629,1,0,0,0,0,631,1,0,0,0, - 0,633,1,0,0,0,0,635,1,0,0,0,0,637,1,0,0,0,0,639,1,0,0,0,0,641,1, - 0,0,0,0,643,1,0,0,0,0,645,1,0,0,0,0,647,1,0,0,0,0,649,1,0,0,0,0, - 651,1,0,0,0,0,653,1,0,0,0,0,655,1,0,0,0,0,657,1,0,0,0,0,659,1,0, - 0,0,0,661,1,0,0,0,0,663,1,0,0,0,0,665,1,0,0,0,0,667,1,0,0,0,0,669, - 1,0,0,0,0,671,1,0,0,0,0,673,1,0,0,0,0,675,1,0,0,0,0,677,1,0,0,0, - 0,679,1,0,0,0,0,681,1,0,0,0,0,683,1,0,0,0,0,685,1,0,0,0,0,687,1, - 0,0,0,0,689,1,0,0,0,0,691,1,0,0,0,0,693,1,0,0,0,0,695,1,0,0,0,0, - 697,1,0,0,0,0,699,1,0,0,0,0,701,1,0,0,0,0,703,1,0,0,0,0,705,1,0, - 0,0,0,707,1,0,0,0,0,709,1,0,0,0,0,711,1,0,0,0,0,713,1,0,0,0,0,715, - 1,0,0,0,0,717,1,0,0,0,0,719,1,0,0,0,0,721,1,0,0,0,0,723,1,0,0,0, - 0,725,1,0,0,0,0,727,1,0,0,0,0,729,1,0,0,0,0,731,1,0,0,0,0,733,1, - 0,0,0,0,735,1,0,0,0,0,737,1,0,0,0,0,739,1,0,0,0,0,741,1,0,0,0,0, - 743,1,0,0,0,0,745,1,0,0,0,0,747,1,0,0,0,0,749,1,0,0,0,0,751,1,0, - 0,0,0,753,1,0,0,0,0,755,1,0,0,0,0,757,1,0,0,0,0,759,1,0,0,0,0,761, - 1,0,0,0,0,763,1,0,0,0,0,765,1,0,0,0,0,767,1,0,0,0,0,769,1,0,0,0, - 0,771,1,0,0,0,0,773,1,0,0,0,0,775,1,0,0,0,0,777,1,0,0,0,0,779,1, - 0,0,0,0,781,1,0,0,0,0,783,1,0,0,0,0,785,1,0,0,0,0,787,1,0,0,0,0, - 789,1,0,0,0,0,791,1,0,0,0,0,793,1,0,0,0,0,795,1,0,0,0,0,797,1,0, - 0,0,0,799,1,0,0,0,0,801,1,0,0,0,0,803,1,0,0,0,0,805,1,0,0,0,0,807, - 1,0,0,0,0,809,1,0,0,0,0,811,1,0,0,0,0,813,1,0,0,0,0,815,1,0,0,0, - 0,817,1,0,0,0,0,819,1,0,0,0,0,821,1,0,0,0,0,823,1,0,0,0,0,825,1, - 0,0,0,0,827,1,0,0,0,0,829,1,0,0,0,0,831,1,0,0,0,0,833,1,0,0,0,0, - 835,1,0,0,0,0,837,1,0,0,0,0,839,1,0,0,0,0,841,1,0,0,0,0,843,1,0, - 0,0,0,845,1,0,0,0,0,847,1,0,0,0,0,849,1,0,0,0,0,851,1,0,0,0,0,853, - 1,0,0,0,0,855,1,0,0,0,0,857,1,0,0,0,0,859,1,0,0,0,0,861,1,0,0,0, - 0,863,1,0,0,0,0,865,1,0,0,0,0,867,1,0,0,0,0,869,1,0,0,0,0,871,1, - 0,0,0,0,873,1,0,0,0,0,875,1,0,0,0,0,877,1,0,0,0,0,879,1,0,0,0,0, - 881,1,0,0,0,0,883,1,0,0,0,0,885,1,0,0,0,0,887,1,0,0,0,0,889,1,0, - 0,0,0,891,1,0,0,0,0,893,1,0,0,0,0,895,1,0,0,0,0,897,1,0,0,0,0,899, - 1,0,0,0,0,901,1,0,0,0,0,903,1,0,0,0,0,905,1,0,0,0,0,907,1,0,0,0, - 0,909,1,0,0,0,0,911,1,0,0,0,0,913,1,0,0,0,0,915,1,0,0,0,0,917,1, - 0,0,0,0,919,1,0,0,0,0,921,1,0,0,0,0,923,1,0,0,0,0,925,1,0,0,0,0, - 927,1,0,0,0,0,929,1,0,0,0,0,931,1,0,0,0,0,933,1,0,0,0,0,935,1,0, - 0,0,0,937,1,0,0,0,0,939,1,0,0,0,0,941,1,0,0,0,0,943,1,0,0,0,0,945, - 1,0,0,0,0,947,1,0,0,0,0,949,1,0,0,0,0,951,1,0,0,0,0,953,1,0,0,0, - 0,955,1,0,0,0,0,957,1,0,0,0,0,959,1,0,0,0,0,961,1,0,0,0,0,963,1, - 0,0,0,0,965,1,0,0,0,0,967,1,0,0,0,0,969,1,0,0,0,0,971,1,0,0,0,0, - 973,1,0,0,0,0,975,1,0,0,0,0,977,1,0,0,0,0,979,1,0,0,0,0,981,1,0, - 0,0,0,983,1,0,0,0,0,985,1,0,0,0,0,987,1,0,0,0,0,989,1,0,0,0,0,991, - 1,0,0,0,0,993,1,0,0,0,0,995,1,0,0,0,0,997,1,0,0,0,0,999,1,0,0,0, - 0,1001,1,0,0,0,0,1003,1,0,0,0,0,1005,1,0,0,0,0,1007,1,0,0,0,0,1009, - 1,0,0,0,0,1011,1,0,0,0,0,1013,1,0,0,0,0,1015,1,0,0,0,0,1017,1,0, - 0,0,0,1019,1,0,0,0,0,1021,1,0,0,0,0,1023,1,0,0,0,0,1025,1,0,0,0, - 0,1027,1,0,0,0,0,1029,1,0,0,0,0,1031,1,0,0,0,0,1033,1,0,0,0,0,1035, - 1,0,0,0,0,1037,1,0,0,0,0,1039,1,0,0,0,0,1041,1,0,0,0,0,1043,1,0, - 0,0,0,1045,1,0,0,0,0,1047,1,0,0,0,0,1049,1,0,0,0,0,1051,1,0,0,0, - 0,1053,1,0,0,0,0,1055,1,0,0,0,0,1057,1,0,0,0,0,1059,1,0,0,0,0,1061, - 1,0,0,0,0,1063,1,0,0,0,0,1065,1,0,0,0,0,1067,1,0,0,0,0,1069,1,0, - 0,0,0,1071,1,0,0,0,0,1073,1,0,0,0,0,1075,1,0,0,0,0,1077,1,0,0,0, - 0,1079,1,0,0,0,0,1081,1,0,0,0,0,1083,1,0,0,0,1,1103,1,0,0,0,3,1107, - 1,0,0,0,5,1149,1,0,0,0,7,1153,1,0,0,0,9,1157,1,0,0,0,11,1161,1,0, - 0,0,13,1170,1,0,0,0,15,1176,1,0,0,0,17,1182,1,0,0,0,19,1190,1,0, - 0,0,21,1194,1,0,0,0,23,1198,1,0,0,0,25,1202,1,0,0,0,27,1208,1,0, - 0,0,29,1218,1,0,0,0,31,1235,1,0,0,0,33,1257,1,0,0,0,35,1260,1,0, - 0,0,37,1271,1,0,0,0,39,1282,1,0,0,0,41,1285,1,0,0,0,43,1292,1,0, - 0,0,45,1306,1,0,0,0,47,1310,1,0,0,0,49,1316,1,0,0,0,51,1328,1,0, - 0,0,53,1344,1,0,0,0,55,1352,1,0,0,0,57,1359,1,0,0,0,59,1366,1,0, - 0,0,61,1370,1,0,0,0,63,1375,1,0,0,0,65,1383,1,0,0,0,67,1388,1,0, - 0,0,69,1391,1,0,0,0,71,1397,1,0,0,0,73,1402,1,0,0,0,75,1409,1,0, - 0,0,77,1421,1,0,0,0,79,1430,1,0,0,0,81,1435,1,0,0,0,83,1440,1,0, - 0,0,85,1449,1,0,0,0,87,1454,1,0,0,0,89,1462,1,0,0,0,91,1477,1,0, - 0,0,93,1482,1,0,0,0,95,1492,1,0,0,0,97,1509,1,0,0,0,99,1521,1,0, - 0,0,101,1527,1,0,0,0,103,1538,1,0,0,0,105,1543,1,0,0,0,107,1549, - 1,0,0,0,109,1558,1,0,0,0,111,1566,1,0,0,0,113,1574,1,0,0,0,115,1581, - 1,0,0,0,117,1589,1,0,0,0,119,1597,1,0,0,0,121,1604,1,0,0,0,123,1612, - 1,0,0,0,125,1622,1,0,0,0,127,1630,1,0,0,0,129,1641,1,0,0,0,131,1650, - 1,0,0,0,133,1658,1,0,0,0,135,1663,1,0,0,0,137,1677,1,0,0,0,139,1683, - 1,0,0,0,141,1693,1,0,0,0,143,1704,1,0,0,0,145,1711,1,0,0,0,147,1717, - 1,0,0,0,149,1722,1,0,0,0,151,1732,1,0,0,0,153,1740,1,0,0,0,155,1756, - 1,0,0,0,157,1769,1,0,0,0,159,1801,1,0,0,0,161,1814,1,0,0,0,163,1827, - 1,0,0,0,165,1839,1,0,0,0,167,1854,1,0,0,0,169,1867,1,0,0,0,171,1885, - 1,0,0,0,173,1918,1,0,0,0,175,1931,1,0,0,0,177,1938,1,0,0,0,179,1944, - 1,0,0,0,181,1954,1,0,0,0,183,1959,1,0,0,0,185,1968,1,0,0,0,187,1982, - 1,0,0,0,189,1997,1,0,0,0,191,2007,1,0,0,0,193,2018,1,0,0,0,195,2022, - 1,0,0,0,197,2032,1,0,0,0,199,2042,1,0,0,0,201,2053,1,0,0,0,203,2057, - 1,0,0,0,205,2065,1,0,0,0,207,2073,1,0,0,0,209,2081,1,0,0,0,211,2088, - 1,0,0,0,213,2095,1,0,0,0,215,2106,1,0,0,0,217,2112,1,0,0,0,219,2121, - 1,0,0,0,221,2135,1,0,0,0,223,2144,1,0,0,0,225,2155,1,0,0,0,227,2164, - 1,0,0,0,229,2168,1,0,0,0,231,2175,1,0,0,0,233,2180,1,0,0,0,235,2188, - 1,0,0,0,237,2193,1,0,0,0,239,2201,1,0,0,0,241,2206,1,0,0,0,243,2212, - 1,0,0,0,245,2216,1,0,0,0,247,2226,1,0,0,0,249,2240,1,0,0,0,251,2249, - 1,0,0,0,253,2256,1,0,0,0,255,2263,1,0,0,0,257,2278,1,0,0,0,259,2284, - 1,0,0,0,261,2291,1,0,0,0,263,2296,1,0,0,0,265,2304,1,0,0,0,267,2311, - 1,0,0,0,269,2315,1,0,0,0,271,2323,1,0,0,0,273,2330,1,0,0,0,275,2339, - 1,0,0,0,277,2348,1,0,0,0,279,2356,1,0,0,0,281,2362,1,0,0,0,283,2368, - 1,0,0,0,285,2375,1,0,0,0,287,2387,1,0,0,0,289,2393,1,0,0,0,291,2399, - 1,0,0,0,293,2403,1,0,0,0,295,2411,1,0,0,0,297,2421,1,0,0,0,299,2426, - 1,0,0,0,301,2433,1,0,0,0,303,2438,1,0,0,0,305,2443,1,0,0,0,307,2452, - 1,0,0,0,309,2462,1,0,0,0,311,2469,1,0,0,0,313,2473,1,0,0,0,315,2480, - 1,0,0,0,317,2486,1,0,0,0,319,2492,1,0,0,0,321,2501,1,0,0,0,323,2508, - 1,0,0,0,325,2521,1,0,0,0,327,2528,1,0,0,0,329,2533,1,0,0,0,331,2538, - 1,0,0,0,333,2547,1,0,0,0,335,2550,1,0,0,0,337,2556,1,0,0,0,339,2563, - 1,0,0,0,341,2566,1,0,0,0,343,2574,1,0,0,0,345,2584,1,0,0,0,347,2592, - 1,0,0,0,349,2598,1,0,0,0,351,2604,1,0,0,0,353,2616,1,0,0,0,355,2623, - 1,0,0,0,357,2627,1,0,0,0,359,2635,1,0,0,0,361,2645,1,0,0,0,363,2658, - 1,0,0,0,365,2667,1,0,0,0,367,2672,1,0,0,0,369,2675,1,0,0,0,371,2680, - 1,0,0,0,373,2685,1,0,0,0,375,2696,1,0,0,0,377,2710,1,0,0,0,379,2730, - 1,0,0,0,381,2742,1,0,0,0,383,2754,1,0,0,0,385,2769,1,0,0,0,387,2780, - 1,0,0,0,389,2791,1,0,0,0,391,2795,1,0,0,0,393,2804,1,0,0,0,395,2810, - 1,0,0,0,397,2821,1,0,0,0,399,2829,1,0,0,0,401,2834,1,0,0,0,403,2842, - 1,0,0,0,405,2847,1,0,0,0,407,2852,1,0,0,0,409,2863,1,0,0,0,411,2869, - 1,0,0,0,413,2872,1,0,0,0,415,2878,1,0,0,0,417,2888,1,0,0,0,419,2903, - 1,0,0,0,421,2909,1,0,0,0,423,2915,1,0,0,0,425,2923,1,0,0,0,427,2936, - 1,0,0,0,429,2952,1,0,0,0,431,2956,1,0,0,0,433,2965,1,0,0,0,435,2972, - 1,0,0,0,437,2978,1,0,0,0,439,2987,1,0,0,0,441,2994,1,0,0,0,443,2998, - 1,0,0,0,445,3004,1,0,0,0,447,3011,1,0,0,0,449,3015,1,0,0,0,451,3024, - 1,0,0,0,453,3031,1,0,0,0,455,3038,1,0,0,0,457,3046,1,0,0,0,459,3053, - 1,0,0,0,461,3059,1,0,0,0,463,3064,1,0,0,0,465,3073,1,0,0,0,467,3082, - 1,0,0,0,469,3090,1,0,0,0,471,3096,1,0,0,0,473,3102,1,0,0,0,475,3106, - 1,0,0,0,477,3111,1,0,0,0,479,3114,1,0,0,0,481,3119,1,0,0,0,483,3129, - 1,0,0,0,485,3133,1,0,0,0,487,3143,1,0,0,0,489,3149,1,0,0,0,491,3154, - 1,0,0,0,493,3161,1,0,0,0,495,3169,1,0,0,0,497,3187,1,0,0,0,499,3200, - 1,0,0,0,501,3203,1,0,0,0,503,3210,1,0,0,0,505,3214,1,0,0,0,507,3219, - 1,0,0,0,509,3222,1,0,0,0,511,3226,1,0,0,0,513,3231,1,0,0,0,515,3236, - 1,0,0,0,517,3239,1,0,0,0,519,3245,1,0,0,0,521,3253,1,0,0,0,523,3257, - 1,0,0,0,525,3263,1,0,0,0,527,3268,1,0,0,0,529,3277,1,0,0,0,531,3285, - 1,0,0,0,533,3295,1,0,0,0,535,3307,1,0,0,0,537,3317,1,0,0,0,539,3327, - 1,0,0,0,541,3339,1,0,0,0,543,3350,1,0,0,0,545,3358,1,0,0,0,547,3362, - 1,0,0,0,549,3370,1,0,0,0,551,3386,1,0,0,0,553,3402,1,0,0,0,555,3415, - 1,0,0,0,557,3422,1,0,0,0,559,3430,1,0,0,0,561,3436,1,0,0,0,563,3444, - 1,0,0,0,565,3453,1,0,0,0,567,3468,1,0,0,0,569,3474,1,0,0,0,571,3483, - 1,0,0,0,573,3493,1,0,0,0,575,3501,1,0,0,0,577,3506,1,0,0,0,579,3514, - 1,0,0,0,581,3524,1,0,0,0,583,3532,1,0,0,0,585,3541,1,0,0,0,587,3547, - 1,0,0,0,589,3552,1,0,0,0,591,3556,1,0,0,0,593,3562,1,0,0,0,595,3567, - 1,0,0,0,597,3577,1,0,0,0,599,3581,1,0,0,0,601,3592,1,0,0,0,603,3604, - 1,0,0,0,605,3614,1,0,0,0,607,3624,1,0,0,0,609,3635,1,0,0,0,611,3650, - 1,0,0,0,613,3658,1,0,0,0,615,3669,1,0,0,0,617,3678,1,0,0,0,619,3687, - 1,0,0,0,621,3696,1,0,0,0,623,3704,1,0,0,0,625,3711,1,0,0,0,627,3717, - 1,0,0,0,629,3724,1,0,0,0,631,3731,1,0,0,0,633,3739,1,0,0,0,635,3746, - 1,0,0,0,637,3752,1,0,0,0,639,3758,1,0,0,0,641,3767,1,0,0,0,643,3774, - 1,0,0,0,645,3778,1,0,0,0,647,3783,1,0,0,0,649,3794,1,0,0,0,651,3802, - 1,0,0,0,653,3812,1,0,0,0,655,3824,1,0,0,0,657,3837,1,0,0,0,659,3846, - 1,0,0,0,661,3856,1,0,0,0,663,3862,1,0,0,0,665,3868,1,0,0,0,667,3875, - 1,0,0,0,669,3882,1,0,0,0,671,3889,1,0,0,0,673,3894,1,0,0,0,675,3901, - 1,0,0,0,677,3911,1,0,0,0,679,3921,1,0,0,0,681,3934,1,0,0,0,683,3938, - 1,0,0,0,685,3943,1,0,0,0,687,3951,1,0,0,0,689,3956,1,0,0,0,691,3965, - 1,0,0,0,693,3970,1,0,0,0,695,3979,1,0,0,0,697,3992,1,0,0,0,699,3996, - 1,0,0,0,701,4009,1,0,0,0,703,4018,1,0,0,0,705,4029,1,0,0,0,707,4034, - 1,0,0,0,709,4040,1,0,0,0,711,4050,1,0,0,0,713,4057,1,0,0,0,715,4068, - 1,0,0,0,717,4079,1,0,0,0,719,4091,1,0,0,0,721,4098,1,0,0,0,723,4105, - 1,0,0,0,725,4116,1,0,0,0,727,4128,1,0,0,0,729,4135,1,0,0,0,731,4145, - 1,0,0,0,733,4161,1,0,0,0,735,4170,1,0,0,0,737,4174,1,0,0,0,739,4181, - 1,0,0,0,741,4191,1,0,0,0,743,4198,1,0,0,0,745,4210,1,0,0,0,747,4222, - 1,0,0,0,749,4228,1,0,0,0,751,4235,1,0,0,0,753,4247,1,0,0,0,755,4252, - 1,0,0,0,757,4261,1,0,0,0,759,4266,1,0,0,0,761,4276,1,0,0,0,763,4291, - 1,0,0,0,765,4305,1,0,0,0,767,4321,1,0,0,0,769,4335,1,0,0,0,771,4351, - 1,0,0,0,773,4361,1,0,0,0,775,4372,1,0,0,0,777,4380,1,0,0,0,779,4383, - 1,0,0,0,781,4392,1,0,0,0,783,4402,1,0,0,0,785,4418,1,0,0,0,787,4430, - 1,0,0,0,789,4436,1,0,0,0,791,4444,1,0,0,0,793,4449,1,0,0,0,795,4460, - 1,0,0,0,797,4465,1,0,0,0,799,4474,1,0,0,0,801,4483,1,0,0,0,803,4491, - 1,0,0,0,805,4499,1,0,0,0,807,4505,1,0,0,0,809,4512,1,0,0,0,811,4520, - 1,0,0,0,813,4527,1,0,0,0,815,4535,1,0,0,0,817,4542,1,0,0,0,819,4548, - 1,0,0,0,821,4555,1,0,0,0,823,4559,1,0,0,0,825,4564,1,0,0,0,827,4570, - 1,0,0,0,829,4576,1,0,0,0,831,4583,1,0,0,0,833,4592,1,0,0,0,835,4602, - 1,0,0,0,837,4610,1,0,0,0,839,4618,1,0,0,0,841,4626,1,0,0,0,843,4635, - 1,0,0,0,845,4646,1,0,0,0,847,4652,1,0,0,0,849,4660,1,0,0,0,851,4670, - 1,0,0,0,853,4681,1,0,0,0,855,4691,1,0,0,0,857,4697,1,0,0,0,859,4702, - 1,0,0,0,861,4711,1,0,0,0,863,4717,1,0,0,0,865,4730,1,0,0,0,867,4737, - 1,0,0,0,869,4742,1,0,0,0,871,4749,1,0,0,0,873,4757,1,0,0,0,875,4762, - 1,0,0,0,877,4766,1,0,0,0,879,4772,1,0,0,0,881,4776,1,0,0,0,883,4784, - 1,0,0,0,885,4792,1,0,0,0,887,4800,1,0,0,0,889,4807,1,0,0,0,891,4819, - 1,0,0,0,893,4828,1,0,0,0,895,4833,1,0,0,0,897,4842,1,0,0,0,899,4847, - 1,0,0,0,901,4854,1,0,0,0,903,4859,1,0,0,0,905,4870,1,0,0,0,907,4874, - 1,0,0,0,909,4881,1,0,0,0,911,4887,1,0,0,0,913,4897,1,0,0,0,915,4902, - 1,0,0,0,917,4908,1,0,0,0,919,4918,1,0,0,0,921,4922,1,0,0,0,923,4928, - 1,0,0,0,925,4935,1,0,0,0,927,4945,1,0,0,0,929,4949,1,0,0,0,931,4954, - 1,0,0,0,933,4959,1,0,0,0,935,4963,1,0,0,0,937,4968,1,0,0,0,939,4973, - 1,0,0,0,941,4977,1,0,0,0,943,4989,1,0,0,0,945,5000,1,0,0,0,947,5012, - 1,0,0,0,949,5020,1,0,0,0,951,5027,1,0,0,0,953,5038,1,0,0,0,955,5044, - 1,0,0,0,957,5052,1,0,0,0,959,5057,1,0,0,0,961,5062,1,0,0,0,963,5072, - 1,0,0,0,965,5079,1,0,0,0,967,5095,1,0,0,0,969,5115,1,0,0,0,971,5128, - 1,0,0,0,973,5139,1,0,0,0,975,5156,1,0,0,0,977,5176,1,0,0,0,979,5184, - 1,0,0,0,981,5191,1,0,0,0,983,5200,1,0,0,0,985,5208,1,0,0,0,987,5216, - 1,0,0,0,989,5221,1,0,0,0,991,5226,1,0,0,0,993,5232,1,0,0,0,995,5237, - 1,0,0,0,997,5247,1,0,0,0,999,5255,1,0,0,0,1001,5262,1,0,0,0,1003, - 5269,1,0,0,0,1005,5274,1,0,0,0,1007,5279,1,0,0,0,1009,5285,1,0,0, - 0,1011,5290,1,0,0,0,1013,5292,1,0,0,0,1015,5294,1,0,0,0,1017,5296, - 1,0,0,0,1019,5298,1,0,0,0,1021,5300,1,0,0,0,1023,5302,1,0,0,0,1025, - 5304,1,0,0,0,1027,5306,1,0,0,0,1029,5308,1,0,0,0,1031,5310,1,0,0, - 0,1033,5312,1,0,0,0,1035,5314,1,0,0,0,1037,5316,1,0,0,0,1039,5318, - 1,0,0,0,1041,5320,1,0,0,0,1043,5322,1,0,0,0,1045,5324,1,0,0,0,1047, - 5326,1,0,0,0,1049,5328,1,0,0,0,1051,5330,1,0,0,0,1053,5332,1,0,0, - 0,1055,5334,1,0,0,0,1057,5336,1,0,0,0,1059,5338,1,0,0,0,1061,5340, - 1,0,0,0,1063,5342,1,0,0,0,1065,5344,1,0,0,0,1067,5347,1,0,0,0,1069, - 5350,1,0,0,0,1071,5352,1,0,0,0,1073,5354,1,0,0,0,1075,5360,1,0,0, - 0,1077,5363,1,0,0,0,1079,5410,1,0,0,0,1081,5412,1,0,0,0,1083,5414, - 1,0,0,0,1085,5416,1,0,0,0,1087,5429,1,0,0,0,1089,5441,1,0,0,0,1091, - 5455,1,0,0,0,1093,5457,1,0,0,0,1095,5459,1,0,0,0,1097,5472,1,0,0, - 0,1099,5485,1,0,0,0,1101,5494,1,0,0,0,1103,1104,7,0,0,0,1104,1105, - 1,0,0,0,1105,1106,6,0,0,0,1106,2,1,0,0,0,1107,1108,5,47,0,0,1108, - 1109,5,42,0,0,1109,1113,1,0,0,0,1110,1112,9,0,0,0,1111,1110,1,0, - 0,0,1112,1115,1,0,0,0,1113,1114,1,0,0,0,1113,1111,1,0,0,0,1114,1116, - 1,0,0,0,1115,1113,1,0,0,0,1116,1117,5,42,0,0,1117,1118,5,47,0,0, - 1118,1119,1,0,0,0,1119,1120,6,1,0,0,1120,4,1,0,0,0,1121,1122,5,45, - 0,0,1122,1125,5,45,0,0,1123,1125,5,35,0,0,1124,1121,1,0,0,0,1124, - 1123,1,0,0,0,1125,1129,1,0,0,0,1126,1128,8,1,0,0,1127,1126,1,0,0, - 0,1128,1131,1,0,0,0,1129,1127,1,0,0,0,1129,1130,1,0,0,0,1130,1137, - 1,0,0,0,1131,1129,1,0,0,0,1132,1134,5,13,0,0,1133,1132,1,0,0,0,1133, - 1134,1,0,0,0,1134,1135,1,0,0,0,1135,1138,5,10,0,0,1136,1138,5,0, - 0,1,1137,1133,1,0,0,0,1137,1136,1,0,0,0,1138,1150,1,0,0,0,1139,1140, - 5,45,0,0,1140,1141,5,45,0,0,1141,1147,1,0,0,0,1142,1144,5,13,0,0, - 1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1145,1,0,0,0,1145,1148, - 5,10,0,0,1146,1148,5,0,0,1,1147,1143,1,0,0,0,1147,1146,1,0,0,0,1148, - 1150,1,0,0,0,1149,1124,1,0,0,0,1149,1139,1,0,0,0,1150,1151,1,0,0, - 0,1151,1152,6,2,0,0,1152,6,1,0,0,0,1153,1154,7,2,0,0,1154,1155,7, - 3,0,0,1155,1156,7,4,0,0,1156,8,1,0,0,0,1157,1158,7,2,0,0,1158,1159, - 7,5,0,0,1159,1160,7,5,0,0,1160,10,1,0,0,0,1161,1162,7,2,0,0,1162, - 1163,7,5,0,0,1163,1164,7,5,0,0,1164,1165,7,6,0,0,1165,1166,7,7,0, - 0,1166,1167,7,2,0,0,1167,1168,7,8,0,0,1168,1169,7,9,0,0,1169,12, - 1,0,0,0,1170,1171,7,2,0,0,1171,1172,7,5,0,0,1172,1173,7,5,0,0,1173, - 1174,7,6,0,0,1174,1175,7,10,0,0,1175,14,1,0,0,0,1176,1177,7,2,0, - 0,1177,1178,7,5,0,0,1178,1179,7,8,0,0,1179,1180,7,9,0,0,1180,1181, - 7,11,0,0,1181,16,1,0,0,0,1182,1183,7,2,0,0,1183,1184,7,12,0,0,1184, - 1185,7,2,0,0,1185,1186,7,5,0,0,1186,1187,7,13,0,0,1187,1188,7,14, - 0,0,1188,1189,7,9,0,0,1189,18,1,0,0,0,1190,1191,7,2,0,0,1191,1192, - 7,12,0,0,1192,1193,7,15,0,0,1193,20,1,0,0,0,1194,1195,7,2,0,0,1195, - 1196,7,12,0,0,1196,1197,7,13,0,0,1197,22,1,0,0,0,1198,1199,7,2,0, - 0,1199,1200,7,11,0,0,1200,1201,7,9,0,0,1201,24,1,0,0,0,1202,1203, - 7,2,0,0,1203,1204,7,11,0,0,1204,1205,7,11,0,0,1205,1206,7,2,0,0, - 1206,1207,7,13,0,0,1207,26,1,0,0,0,1208,1209,7,2,0,0,1209,1210,7, - 11,0,0,1210,1211,7,11,0,0,1211,1212,7,2,0,0,1212,1213,7,13,0,0,1213, - 1214,5,95,0,0,1214,1215,7,2,0,0,1215,1216,7,16,0,0,1216,1217,7,16, - 0,0,1217,28,1,0,0,0,1218,1219,7,2,0,0,1219,1220,7,11,0,0,1220,1221, - 7,11,0,0,1221,1222,7,2,0,0,1222,1223,7,13,0,0,1223,1224,5,95,0,0, - 1224,1225,7,7,0,0,1225,1226,7,6,0,0,1226,1227,7,12,0,0,1227,1228, - 7,7,0,0,1228,1229,7,2,0,0,1229,1230,7,8,0,0,1230,1231,5,95,0,0,1231, - 1232,7,2,0,0,1232,1233,7,16,0,0,1233,1234,7,16,0,0,1234,30,1,0,0, - 0,1235,1236,7,2,0,0,1236,1237,7,11,0,0,1237,1238,7,11,0,0,1238,1239, - 7,2,0,0,1239,1240,7,13,0,0,1240,1241,5,95,0,0,1241,1242,7,17,0,0, - 1242,1243,7,2,0,0,1243,1244,7,18,0,0,1244,1245,5,95,0,0,1245,1246, - 7,7,0,0,1246,1247,7,2,0,0,1247,1248,7,11,0,0,1248,1249,7,15,0,0, - 1249,1250,7,19,0,0,1250,1251,7,12,0,0,1251,1252,7,2,0,0,1252,1253, - 7,5,0,0,1253,1254,7,19,0,0,1254,1255,7,8,0,0,1255,1256,7,13,0,0, - 1256,32,1,0,0,0,1257,1258,7,2,0,0,1258,1259,7,4,0,0,1259,34,1,0, - 0,0,1260,1261,7,2,0,0,1261,1262,7,4,0,0,1262,1263,7,9,0,0,1263,1264, - 7,12,0,0,1264,1265,7,4,0,0,1265,1266,7,19,0,0,1266,1267,7,8,0,0, - 1267,1268,7,19,0,0,1268,1269,7,20,0,0,1269,1270,7,9,0,0,1270,36, - 1,0,0,0,1271,1272,7,2,0,0,1272,1273,7,4,0,0,1273,1274,7,13,0,0,1274, - 1275,7,17,0,0,1275,1276,7,17,0,0,1276,1277,7,9,0,0,1277,1278,7,8, - 0,0,1278,1279,7,11,0,0,1279,1280,7,19,0,0,1280,1281,7,7,0,0,1281, - 38,1,0,0,0,1282,1283,7,2,0,0,1283,1284,7,8,0,0,1284,40,1,0,0,0,1285, - 1286,7,2,0,0,1286,1287,7,8,0,0,1287,1288,7,6,0,0,1288,1289,7,17, - 0,0,1289,1290,7,19,0,0,1290,1291,7,7,0,0,1291,42,1,0,0,0,1292,1293, - 7,2,0,0,1293,1294,7,21,0,0,1294,1295,7,8,0,0,1295,1296,7,22,0,0, - 1296,1297,7,6,0,0,1297,1298,7,11,0,0,1298,1299,7,19,0,0,1299,1300, - 7,14,0,0,1300,1301,7,2,0,0,1301,1302,7,8,0,0,1302,1303,7,19,0,0, - 1303,1304,7,6,0,0,1304,1305,7,12,0,0,1305,44,1,0,0,0,1306,1307,7, - 2,0,0,1307,1308,7,20,0,0,1308,1309,7,16,0,0,1309,46,1,0,0,0,1310, - 1311,7,3,0,0,1311,1312,7,9,0,0,1312,1313,7,16,0,0,1313,1314,7,19, - 0,0,1314,1315,7,12,0,0,1315,48,1,0,0,0,1316,1317,7,3,0,0,1317,1318, - 7,9,0,0,1318,1319,7,16,0,0,1319,1320,7,19,0,0,1320,1321,7,12,0,0, - 1321,1322,5,95,0,0,1322,1323,7,23,0,0,1323,1324,7,11,0,0,1324,1325, - 7,2,0,0,1325,1326,7,17,0,0,1326,1327,7,9,0,0,1327,50,1,0,0,0,1328, - 1329,7,3,0,0,1329,1330,7,9,0,0,1330,1331,7,16,0,0,1331,1332,7,19, - 0,0,1332,1333,7,12,0,0,1333,1334,5,95,0,0,1334,1335,7,24,0,0,1335, - 1336,7,2,0,0,1336,1337,7,11,0,0,1337,1338,7,8,0,0,1338,1339,7,19, - 0,0,1339,1340,7,8,0,0,1340,1341,7,19,0,0,1341,1342,7,6,0,0,1342, - 1343,7,12,0,0,1343,52,1,0,0,0,1344,1345,7,3,0,0,1345,1346,7,9,0, - 0,1346,1347,7,8,0,0,1347,1348,7,10,0,0,1348,1349,7,9,0,0,1349,1350, - 7,9,0,0,1350,1351,7,12,0,0,1351,54,1,0,0,0,1352,1353,7,3,0,0,1353, - 1354,7,19,0,0,1354,1355,7,16,0,0,1355,1356,7,19,0,0,1356,1357,7, - 12,0,0,1357,1358,7,8,0,0,1358,56,1,0,0,0,1359,1360,7,3,0,0,1360, - 1361,7,19,0,0,1361,1362,7,12,0,0,1362,1363,7,2,0,0,1363,1364,7,11, - 0,0,1364,1365,7,13,0,0,1365,58,1,0,0,0,1366,1367,7,3,0,0,1367,1368, - 7,19,0,0,1368,1369,7,8,0,0,1369,60,1,0,0,0,1370,1371,7,3,0,0,1371, - 1372,7,5,0,0,1372,1373,7,6,0,0,1373,1374,7,3,0,0,1374,62,1,0,0,0, - 1375,1376,7,3,0,0,1376,1377,7,6,0,0,1377,1378,7,6,0,0,1378,1379, - 7,5,0,0,1379,1380,7,9,0,0,1380,1381,7,2,0,0,1381,1382,7,12,0,0,1382, - 64,1,0,0,0,1383,1384,7,3,0,0,1384,1385,7,6,0,0,1385,1386,7,8,0,0, - 1386,1387,7,22,0,0,1387,66,1,0,0,0,1388,1389,7,3,0,0,1389,1390,7, - 13,0,0,1390,68,1,0,0,0,1391,1392,7,3,0,0,1392,1393,7,13,0,0,1393, - 1394,7,8,0,0,1394,1395,7,9,0,0,1395,1396,7,4,0,0,1396,70,1,0,0,0, - 1397,1398,7,7,0,0,1398,1399,7,2,0,0,1399,1400,7,5,0,0,1400,1401, - 7,5,0,0,1401,72,1,0,0,0,1402,1403,7,7,0,0,1403,1404,7,2,0,0,1404, - 1405,7,5,0,0,1405,1406,7,5,0,0,1406,1407,7,9,0,0,1407,1408,7,15, - 0,0,1408,74,1,0,0,0,1409,1410,7,7,0,0,1410,1411,7,2,0,0,1411,1412, - 7,11,0,0,1412,1413,7,15,0,0,1413,1414,7,19,0,0,1414,1415,7,12,0, - 0,1415,1416,7,2,0,0,1416,1417,7,5,0,0,1417,1418,7,19,0,0,1418,1419, - 7,8,0,0,1419,1420,7,13,0,0,1420,76,1,0,0,0,1421,1422,7,7,0,0,1422, - 1423,7,2,0,0,1423,1424,7,4,0,0,1424,1425,7,7,0,0,1425,1426,7,2,0, - 0,1426,1427,7,15,0,0,1427,1428,7,9,0,0,1428,1429,7,15,0,0,1429,78, - 1,0,0,0,1430,1431,7,7,0,0,1431,1432,7,2,0,0,1432,1433,7,4,0,0,1433, - 1434,7,9,0,0,1434,80,1,0,0,0,1435,1436,7,7,0,0,1436,1437,7,2,0,0, - 1437,1438,7,4,0,0,1438,1439,7,8,0,0,1439,82,1,0,0,0,1440,1441,7, - 7,0,0,1441,1442,7,2,0,0,1442,1443,7,8,0,0,1443,1444,7,2,0,0,1444, - 1445,7,5,0,0,1445,1446,7,6,0,0,1446,1447,7,16,0,0,1447,1448,7,4, - 0,0,1448,84,1,0,0,0,1449,1450,7,7,0,0,1450,1451,7,9,0,0,1451,1452, - 7,19,0,0,1452,1453,7,5,0,0,1453,86,1,0,0,0,1454,1455,7,7,0,0,1455, - 1456,7,9,0,0,1456,1457,7,19,0,0,1457,1458,7,5,0,0,1458,1459,7,19, - 0,0,1459,1460,7,12,0,0,1460,1461,7,16,0,0,1461,88,1,0,0,0,1462,1463, - 7,7,0,0,1463,1464,7,22,0,0,1464,1465,7,2,0,0,1465,1466,7,12,0,0, - 1466,1467,7,16,0,0,1467,1468,7,9,0,0,1468,1469,7,5,0,0,1469,1470, - 7,6,0,0,1470,1471,7,16,0,0,1471,1472,5,95,0,0,1472,1473,7,17,0,0, - 1473,1474,7,6,0,0,1474,1475,7,15,0,0,1475,1476,7,9,0,0,1476,90,1, - 0,0,0,1477,1478,7,7,0,0,1478,1479,7,22,0,0,1479,1480,7,2,0,0,1480, - 1481,7,11,0,0,1481,92,1,0,0,0,1482,1483,7,7,0,0,1483,1484,7,22,0, - 0,1484,1485,7,2,0,0,1485,1486,7,11,0,0,1486,1487,7,2,0,0,1487,1488, - 7,7,0,0,1488,1489,7,8,0,0,1489,1490,7,9,0,0,1490,1491,7,11,0,0,1491, - 94,1,0,0,0,1492,1493,7,7,0,0,1493,1494,7,22,0,0,1494,1495,7,2,0, - 0,1495,1496,7,11,0,0,1496,1497,7,2,0,0,1497,1498,7,7,0,0,1498,1499, - 7,8,0,0,1499,1500,7,9,0,0,1500,1501,7,11,0,0,1501,1502,5,95,0,0, - 1502,1503,7,5,0,0,1503,1504,7,9,0,0,1504,1505,7,12,0,0,1505,1506, - 7,16,0,0,1506,1507,7,8,0,0,1507,1508,7,22,0,0,1508,96,1,0,0,0,1509, - 1510,7,7,0,0,1510,1511,7,22,0,0,1511,1512,7,2,0,0,1512,1513,7,11, - 0,0,1513,1514,5,95,0,0,1514,1515,7,5,0,0,1515,1516,7,9,0,0,1516, - 1517,7,12,0,0,1517,1518,7,16,0,0,1518,1519,7,8,0,0,1519,1520,7,22, - 0,0,1520,98,1,0,0,0,1521,1522,7,7,0,0,1522,1523,7,22,0,0,1523,1524, - 7,9,0,0,1524,1525,7,7,0,0,1525,1526,7,25,0,0,1526,100,1,0,0,0,1527, - 1528,7,7,0,0,1528,1529,7,5,0,0,1529,1530,7,2,0,0,1530,1531,7,4,0, - 0,1531,1532,7,4,0,0,1532,1533,7,19,0,0,1533,1534,7,23,0,0,1534,1535, - 7,19,0,0,1535,1536,7,9,0,0,1536,1537,7,11,0,0,1537,102,1,0,0,0,1538, - 1539,7,7,0,0,1539,1540,7,5,0,0,1540,1541,7,6,0,0,1541,1542,7,3,0, - 0,1542,104,1,0,0,0,1543,1544,7,7,0,0,1544,1545,7,5,0,0,1545,1546, - 7,6,0,0,1546,1547,7,4,0,0,1547,1548,7,9,0,0,1548,106,1,0,0,0,1549, - 1550,7,7,0,0,1550,1551,7,6,0,0,1551,1552,7,2,0,0,1552,1553,7,5,0, - 0,1553,1554,7,9,0,0,1554,1555,7,4,0,0,1555,1556,7,7,0,0,1556,1557, - 7,9,0,0,1557,108,1,0,0,0,1558,1559,7,7,0,0,1559,1560,7,6,0,0,1560, - 1561,7,5,0,0,1561,1562,7,5,0,0,1562,1563,7,2,0,0,1563,1564,7,8,0, - 0,1564,1565,7,9,0,0,1565,110,1,0,0,0,1566,1567,7,7,0,0,1567,1568, - 7,6,0,0,1568,1569,7,5,0,0,1569,1570,7,5,0,0,1570,1571,7,9,0,0,1571, - 1572,7,7,0,0,1572,1573,7,8,0,0,1573,112,1,0,0,0,1574,1575,7,7,0, - 0,1575,1576,7,6,0,0,1576,1577,7,5,0,0,1577,1578,7,21,0,0,1578,1579, - 7,17,0,0,1579,1580,7,12,0,0,1580,114,1,0,0,0,1581,1582,7,7,0,0,1582, - 1583,7,6,0,0,1583,1584,7,5,0,0,1584,1585,7,21,0,0,1585,1586,7,17, - 0,0,1586,1587,7,12,0,0,1587,1588,7,4,0,0,1588,116,1,0,0,0,1589,1590, - 7,7,0,0,1590,1591,7,6,0,0,1591,1592,7,17,0,0,1592,1593,7,17,0,0, - 1593,1594,7,9,0,0,1594,1595,7,12,0,0,1595,1596,7,8,0,0,1596,118, - 1,0,0,0,1597,1598,7,7,0,0,1598,1599,7,6,0,0,1599,1600,7,17,0,0,1600, - 1601,7,17,0,0,1601,1602,7,19,0,0,1602,1603,7,8,0,0,1603,120,1,0, - 0,0,1604,1605,7,7,0,0,1605,1606,7,6,0,0,1606,1607,7,17,0,0,1607, - 1608,7,24,0,0,1608,1609,7,21,0,0,1609,1610,7,8,0,0,1610,1611,7,9, - 0,0,1611,122,1,0,0,0,1612,1613,7,7,0,0,1613,1614,7,6,0,0,1614,1615, - 7,12,0,0,1615,1616,7,15,0,0,1616,1617,7,19,0,0,1617,1618,7,8,0,0, - 1618,1619,7,19,0,0,1619,1620,7,6,0,0,1620,1621,7,12,0,0,1621,124, - 1,0,0,0,1622,1623,7,7,0,0,1623,1624,7,6,0,0,1624,1625,7,12,0,0,1625, - 1626,7,12,0,0,1626,1627,7,9,0,0,1627,1628,7,7,0,0,1628,1629,7,8, - 0,0,1629,126,1,0,0,0,1630,1631,7,7,0,0,1631,1632,7,6,0,0,1632,1633, - 7,12,0,0,1633,1634,7,4,0,0,1634,1635,7,8,0,0,1635,1636,7,11,0,0, - 1636,1637,7,2,0,0,1637,1638,7,19,0,0,1638,1639,7,12,0,0,1639,1640, - 7,8,0,0,1640,128,1,0,0,0,1641,1642,7,7,0,0,1642,1643,7,6,0,0,1643, - 1644,7,12,0,0,1644,1645,7,8,0,0,1645,1646,7,2,0,0,1646,1647,7,19, - 0,0,1647,1648,7,12,0,0,1648,1649,7,4,0,0,1649,130,1,0,0,0,1650,1651, - 7,7,0,0,1651,1652,7,6,0,0,1652,1653,7,12,0,0,1653,1654,7,20,0,0, - 1654,1655,7,9,0,0,1655,1656,7,11,0,0,1656,1657,7,8,0,0,1657,132, - 1,0,0,0,1658,1659,7,7,0,0,1659,1660,7,6,0,0,1660,1661,7,11,0,0,1661, - 1662,7,11,0,0,1662,134,1,0,0,0,1663,1664,7,7,0,0,1664,1665,7,6,0, - 0,1665,1666,7,11,0,0,1666,1667,7,11,0,0,1667,1668,7,9,0,0,1668,1669, - 7,4,0,0,1669,1670,7,24,0,0,1670,1671,7,6,0,0,1671,1672,7,12,0,0, - 1672,1673,7,15,0,0,1673,1674,7,19,0,0,1674,1675,7,12,0,0,1675,1676, - 7,16,0,0,1676,136,1,0,0,0,1677,1678,7,7,0,0,1678,1679,7,6,0,0,1679, - 1680,7,21,0,0,1680,1681,7,12,0,0,1681,1682,7,8,0,0,1682,138,1,0, - 0,0,1683,1684,7,7,0,0,1684,1685,7,6,0,0,1685,1686,7,20,0,0,1686, - 1687,7,2,0,0,1687,1688,7,11,0,0,1688,1689,5,95,0,0,1689,1690,7,24, - 0,0,1690,1691,7,6,0,0,1691,1692,7,24,0,0,1692,140,1,0,0,0,1693,1694, - 7,7,0,0,1694,1695,7,6,0,0,1695,1696,7,20,0,0,1696,1697,7,2,0,0,1697, - 1698,7,11,0,0,1698,1699,5,95,0,0,1699,1700,7,4,0,0,1700,1701,7,2, - 0,0,1701,1702,7,17,0,0,1702,1703,7,24,0,0,1703,142,1,0,0,0,1704, - 1705,7,7,0,0,1705,1706,7,11,0,0,1706,1707,7,9,0,0,1707,1708,7,2, - 0,0,1708,1709,7,8,0,0,1709,1710,7,9,0,0,1710,144,1,0,0,0,1711,1712, - 7,7,0,0,1712,1713,7,11,0,0,1713,1714,7,6,0,0,1714,1715,7,4,0,0,1715, - 1716,7,4,0,0,1716,146,1,0,0,0,1717,1718,7,7,0,0,1718,1719,7,21,0, - 0,1719,1720,7,3,0,0,1720,1721,7,9,0,0,1721,148,1,0,0,0,1722,1723, - 7,7,0,0,1723,1724,7,21,0,0,1724,1725,7,17,0,0,1725,1726,7,9,0,0, - 1726,1727,5,95,0,0,1727,1728,7,15,0,0,1728,1729,7,19,0,0,1729,1730, - 7,4,0,0,1730,1731,7,8,0,0,1731,150,1,0,0,0,1732,1733,7,7,0,0,1733, - 1734,7,21,0,0,1734,1735,7,11,0,0,1735,1736,7,11,0,0,1736,1737,7, - 9,0,0,1737,1738,7,12,0,0,1738,1739,7,8,0,0,1739,152,1,0,0,0,1740, - 1741,7,7,0,0,1741,1742,7,21,0,0,1742,1743,7,11,0,0,1743,1744,7,11, - 0,0,1744,1745,7,9,0,0,1745,1746,7,12,0,0,1746,1747,7,8,0,0,1747, - 1748,5,95,0,0,1748,1749,7,7,0,0,1749,1750,7,2,0,0,1750,1751,7,8, - 0,0,1751,1752,7,2,0,0,1752,1753,7,5,0,0,1753,1754,7,6,0,0,1754,1755, - 7,16,0,0,1755,154,1,0,0,0,1756,1757,7,7,0,0,1757,1758,7,21,0,0,1758, - 1759,7,11,0,0,1759,1760,7,11,0,0,1760,1761,7,9,0,0,1761,1762,7,12, - 0,0,1762,1763,7,8,0,0,1763,1764,5,95,0,0,1764,1765,7,15,0,0,1765, - 1766,7,2,0,0,1766,1767,7,8,0,0,1767,1768,7,9,0,0,1768,156,1,0,0, - 0,1769,1770,7,7,0,0,1770,1771,7,21,0,0,1771,1772,7,11,0,0,1772,1773, - 7,11,0,0,1773,1774,7,9,0,0,1774,1775,7,12,0,0,1775,1776,7,8,0,0, - 1776,1777,5,95,0,0,1777,1778,7,15,0,0,1778,1779,7,9,0,0,1779,1780, - 7,23,0,0,1780,1781,7,2,0,0,1781,1782,7,21,0,0,1782,1783,7,5,0,0, - 1783,1784,7,8,0,0,1784,1785,5,95,0,0,1785,1786,7,8,0,0,1786,1787, - 7,11,0,0,1787,1788,7,2,0,0,1788,1789,7,12,0,0,1789,1790,7,4,0,0, - 1790,1791,7,23,0,0,1791,1792,7,6,0,0,1792,1793,7,11,0,0,1793,1794, - 7,17,0,0,1794,1795,5,95,0,0,1795,1796,7,16,0,0,1796,1797,7,11,0, - 0,1797,1798,7,6,0,0,1798,1799,7,21,0,0,1799,1800,7,24,0,0,1800,158, - 1,0,0,0,1801,1802,7,7,0,0,1802,1803,7,21,0,0,1803,1804,7,11,0,0, - 1804,1805,7,11,0,0,1805,1806,7,9,0,0,1806,1807,7,12,0,0,1807,1808, - 7,8,0,0,1808,1809,5,95,0,0,1809,1810,7,24,0,0,1810,1811,7,2,0,0, - 1811,1812,7,8,0,0,1812,1813,7,22,0,0,1813,160,1,0,0,0,1814,1815, - 7,7,0,0,1815,1816,7,21,0,0,1816,1817,7,11,0,0,1817,1818,7,11,0,0, - 1818,1819,7,9,0,0,1819,1820,7,12,0,0,1820,1821,7,8,0,0,1821,1822, - 5,95,0,0,1822,1823,7,11,0,0,1823,1824,7,6,0,0,1824,1825,7,5,0,0, - 1825,1826,7,9,0,0,1826,162,1,0,0,0,1827,1828,7,7,0,0,1828,1829,7, - 21,0,0,1829,1830,7,11,0,0,1830,1831,7,11,0,0,1831,1832,7,9,0,0,1832, - 1833,7,12,0,0,1833,1834,7,8,0,0,1834,1835,5,95,0,0,1835,1836,7,11, - 0,0,1836,1837,7,6,0,0,1837,1838,7,10,0,0,1838,164,1,0,0,0,1839,1840, - 7,7,0,0,1840,1841,7,21,0,0,1841,1842,7,11,0,0,1842,1843,7,11,0,0, - 1843,1844,7,9,0,0,1844,1845,7,12,0,0,1845,1846,7,8,0,0,1846,1847, - 5,95,0,0,1847,1848,7,4,0,0,1848,1849,7,7,0,0,1849,1850,7,22,0,0, - 1850,1851,7,9,0,0,1851,1852,7,17,0,0,1852,1853,7,2,0,0,1853,166, - 1,0,0,0,1854,1855,7,7,0,0,1855,1856,7,21,0,0,1856,1857,7,11,0,0, - 1857,1858,7,11,0,0,1858,1859,7,9,0,0,1859,1860,7,12,0,0,1860,1861, - 7,8,0,0,1861,1862,5,95,0,0,1862,1863,7,8,0,0,1863,1864,7,19,0,0, - 1864,1865,7,17,0,0,1865,1866,7,9,0,0,1866,168,1,0,0,0,1867,1868, - 7,7,0,0,1868,1869,7,21,0,0,1869,1870,7,11,0,0,1870,1871,7,11,0,0, - 1871,1872,7,9,0,0,1872,1873,7,12,0,0,1873,1874,7,8,0,0,1874,1875, - 5,95,0,0,1875,1876,7,8,0,0,1876,1877,7,19,0,0,1877,1878,7,17,0,0, - 1878,1879,7,9,0,0,1879,1880,7,4,0,0,1880,1881,7,8,0,0,1881,1882, - 7,2,0,0,1882,1883,7,17,0,0,1883,1884,7,24,0,0,1884,170,1,0,0,0,1885, - 1886,7,7,0,0,1886,1887,7,21,0,0,1887,1888,7,11,0,0,1888,1889,7,11, - 0,0,1889,1890,7,9,0,0,1890,1891,7,12,0,0,1891,1892,7,8,0,0,1892, - 1893,5,95,0,0,1893,1894,7,8,0,0,1894,1895,7,11,0,0,1895,1896,7,2, - 0,0,1896,1897,7,12,0,0,1897,1898,7,4,0,0,1898,1899,7,23,0,0,1899, - 1900,7,6,0,0,1900,1901,7,11,0,0,1901,1902,7,17,0,0,1902,1903,5,95, - 0,0,1903,1904,7,16,0,0,1904,1905,7,11,0,0,1905,1906,7,6,0,0,1906, - 1907,7,21,0,0,1907,1908,7,24,0,0,1908,1909,5,95,0,0,1909,1910,7, - 23,0,0,1910,1911,7,6,0,0,1911,1912,7,11,0,0,1912,1913,5,95,0,0,1913, - 1914,7,8,0,0,1914,1915,7,13,0,0,1915,1916,7,24,0,0,1916,1917,7,9, - 0,0,1917,172,1,0,0,0,1918,1919,7,7,0,0,1919,1920,7,21,0,0,1920,1921, - 7,11,0,0,1921,1922,7,11,0,0,1922,1923,7,9,0,0,1923,1924,7,12,0,0, - 1924,1925,7,8,0,0,1925,1926,5,95,0,0,1926,1927,7,21,0,0,1927,1928, - 7,4,0,0,1928,1929,7,9,0,0,1929,1930,7,11,0,0,1930,174,1,0,0,0,1931, - 1932,7,7,0,0,1932,1933,7,21,0,0,1933,1934,7,11,0,0,1934,1935,7,4, - 0,0,1935,1936,7,6,0,0,1936,1937,7,11,0,0,1937,176,1,0,0,0,1938,1939, - 7,7,0,0,1939,1940,7,13,0,0,1940,1941,7,7,0,0,1941,1942,7,5,0,0,1942, - 1943,7,9,0,0,1943,178,1,0,0,0,1944,1945,7,15,0,0,1945,1946,7,2,0, - 0,1946,1947,7,8,0,0,1947,1948,7,2,0,0,1948,1949,7,3,0,0,1949,1950, - 7,2,0,0,1950,1951,7,4,0,0,1951,1952,7,9,0,0,1952,1953,7,4,0,0,1953, - 180,1,0,0,0,1954,1955,7,15,0,0,1955,1956,7,2,0,0,1956,1957,7,8,0, - 0,1957,1958,7,9,0,0,1958,182,1,0,0,0,1959,1960,7,15,0,0,1960,1961, - 7,2,0,0,1961,1962,7,8,0,0,1962,1963,7,9,0,0,1963,1964,7,8,0,0,1964, - 1965,7,19,0,0,1965,1966,7,17,0,0,1966,1967,7,9,0,0,1967,184,1,0, - 0,0,1968,1969,7,15,0,0,1969,1970,7,2,0,0,1970,1971,7,8,0,0,1971, - 1972,7,9,0,0,1972,1973,7,8,0,0,1973,1974,7,19,0,0,1974,1975,7,17, - 0,0,1975,1976,7,9,0,0,1976,1977,5,95,0,0,1977,1978,7,15,0,0,1978, - 1979,7,19,0,0,1979,1980,7,23,0,0,1980,1981,7,23,0,0,1981,186,1,0, - 0,0,1982,1983,7,15,0,0,1983,1984,7,2,0,0,1984,1985,7,8,0,0,1985, - 1986,7,9,0,0,1986,1987,7,8,0,0,1987,1988,7,19,0,0,1988,1989,7,17, - 0,0,1989,1990,7,9,0,0,1990,1991,5,95,0,0,1991,1992,7,8,0,0,1992, - 1993,7,11,0,0,1993,1994,7,21,0,0,1994,1995,7,12,0,0,1995,1996,7, - 7,0,0,1996,188,1,0,0,0,1997,1998,7,15,0,0,1998,1999,7,2,0,0,1999, - 2000,7,8,0,0,2000,2001,7,9,0,0,2001,2002,5,95,0,0,2002,2003,7,15, - 0,0,2003,2004,7,19,0,0,2004,2005,7,23,0,0,2005,2006,7,23,0,0,2006, - 190,1,0,0,0,2007,2008,7,15,0,0,2008,2009,7,2,0,0,2009,2010,7,8,0, - 0,2010,2011,7,9,0,0,2011,2012,5,95,0,0,2012,2013,7,8,0,0,2013,2014, - 7,11,0,0,2014,2015,7,21,0,0,2015,2016,7,12,0,0,2016,2017,7,7,0,0, - 2017,192,1,0,0,0,2018,2019,7,15,0,0,2019,2020,7,2,0,0,2020,2021, - 7,13,0,0,2021,194,1,0,0,0,2022,2023,7,15,0,0,2023,2024,7,2,0,0,2024, - 2025,7,13,0,0,2025,2026,7,6,0,0,2026,2027,7,23,0,0,2027,2028,7,10, - 0,0,2028,2029,7,9,0,0,2029,2030,7,9,0,0,2030,2031,7,25,0,0,2031, - 196,1,0,0,0,2032,2033,7,15,0,0,2033,2034,7,2,0,0,2034,2035,7,13, - 0,0,2035,2036,7,6,0,0,2036,2037,7,23,0,0,2037,2038,7,13,0,0,2038, - 2039,7,9,0,0,2039,2040,7,2,0,0,2040,2041,7,11,0,0,2041,198,1,0,0, - 0,2042,2043,7,15,0,0,2043,2044,7,9,0,0,2044,2045,7,2,0,0,2045,2046, - 7,5,0,0,2046,2047,7,5,0,0,2047,2048,7,6,0,0,2048,2049,7,7,0,0,2049, - 2050,7,2,0,0,2050,2051,7,8,0,0,2051,2052,7,9,0,0,2052,200,1,0,0, - 0,2053,2054,7,15,0,0,2054,2055,7,9,0,0,2055,2056,7,7,0,0,2056,202, - 1,0,0,0,2057,2058,7,15,0,0,2058,2059,7,9,0,0,2059,2060,7,7,0,0,2060, - 2061,7,19,0,0,2061,2062,7,17,0,0,2062,2063,7,2,0,0,2063,2064,7,5, - 0,0,2064,204,1,0,0,0,2065,2066,7,15,0,0,2066,2067,7,9,0,0,2067,2068, - 7,7,0,0,2068,2069,7,5,0,0,2069,2070,7,2,0,0,2070,2071,7,11,0,0,2071, - 2072,7,9,0,0,2072,206,1,0,0,0,2073,2074,7,15,0,0,2074,2075,7,9,0, - 0,2075,2076,7,23,0,0,2076,2077,7,2,0,0,2077,2078,7,21,0,0,2078,2079, - 7,5,0,0,2079,2080,7,8,0,0,2080,208,1,0,0,0,2081,2082,7,15,0,0,2082, - 2083,7,9,0,0,2083,2084,7,23,0,0,2084,2085,7,19,0,0,2085,2086,7,12, - 0,0,2086,2087,7,9,0,0,2087,210,1,0,0,0,2088,2089,7,15,0,0,2089,2090, - 7,9,0,0,2090,2091,7,5,0,0,2091,2092,7,9,0,0,2092,2093,7,8,0,0,2093, - 2094,7,9,0,0,2094,212,1,0,0,0,2095,2096,7,15,0,0,2096,2097,7,9,0, - 0,2097,2098,7,12,0,0,2098,2099,7,4,0,0,2099,2100,7,9,0,0,2100,2101, - 5,95,0,0,2101,2102,7,11,0,0,2102,2103,7,2,0,0,2103,2104,7,12,0,0, - 2104,2105,7,25,0,0,2105,214,1,0,0,0,2106,2107,7,15,0,0,2107,2108, - 7,9,0,0,2108,2109,7,11,0,0,2109,2110,7,9,0,0,2110,2111,7,23,0,0, - 2111,216,1,0,0,0,2112,2113,7,15,0,0,2113,2114,7,9,0,0,2114,2115, - 7,4,0,0,2115,2116,7,7,0,0,2116,2117,7,11,0,0,2117,2118,7,19,0,0, - 2118,2119,7,3,0,0,2119,2120,7,9,0,0,2120,218,1,0,0,0,2121,2122,7, - 15,0,0,2122,2123,7,9,0,0,2123,2124,7,8,0,0,2124,2125,7,9,0,0,2125, - 2126,7,11,0,0,2126,2127,7,17,0,0,2127,2128,7,19,0,0,2128,2129,7, - 12,0,0,2129,2130,7,19,0,0,2130,2131,7,4,0,0,2131,2132,7,8,0,0,2132, - 2133,7,19,0,0,2133,2134,7,7,0,0,2134,220,1,0,0,0,2135,2136,7,15, - 0,0,2136,2137,7,19,0,0,2137,2138,7,4,0,0,2138,2139,7,2,0,0,2139, - 2140,7,5,0,0,2140,2141,7,5,0,0,2141,2142,7,6,0,0,2142,2143,7,10, - 0,0,2143,222,1,0,0,0,2144,2145,7,15,0,0,2145,2146,7,19,0,0,2146, - 2147,7,4,0,0,2147,2148,7,7,0,0,2148,2149,7,6,0,0,2149,2150,7,12, - 0,0,2150,2151,7,12,0,0,2151,2152,7,9,0,0,2152,2153,7,7,0,0,2153, - 2154,7,8,0,0,2154,224,1,0,0,0,2155,2156,7,15,0,0,2156,2157,7,19, - 0,0,2157,2158,7,4,0,0,2158,2159,7,8,0,0,2159,2160,7,19,0,0,2160, - 2161,7,12,0,0,2161,2162,7,7,0,0,2162,2163,7,8,0,0,2163,226,1,0,0, - 0,2164,2165,7,15,0,0,2165,2166,7,6,0,0,2166,2167,7,8,0,0,2167,228, - 1,0,0,0,2168,2169,7,15,0,0,2169,2170,7,6,0,0,2170,2171,7,21,0,0, - 2171,2172,7,3,0,0,2172,2173,7,5,0,0,2173,2174,7,9,0,0,2174,230,1, - 0,0,0,2175,2176,7,15,0,0,2176,2177,7,11,0,0,2177,2178,7,6,0,0,2178, - 2179,7,24,0,0,2179,232,1,0,0,0,2180,2181,7,15,0,0,2181,2182,7,13, - 0,0,2182,2183,7,12,0,0,2183,2184,7,2,0,0,2184,2185,7,17,0,0,2185, - 2186,7,19,0,0,2186,2187,7,7,0,0,2187,234,1,0,0,0,2188,2189,7,9,0, - 0,2189,2190,7,2,0,0,2190,2191,7,7,0,0,2191,2192,7,22,0,0,2192,236, - 1,0,0,0,2193,2194,7,9,0,0,2194,2195,7,5,0,0,2195,2196,7,9,0,0,2196, - 2197,7,17,0,0,2197,2198,7,9,0,0,2198,2199,7,12,0,0,2199,2200,7,8, - 0,0,2200,238,1,0,0,0,2201,2202,7,9,0,0,2202,2203,7,5,0,0,2203,2204, - 7,4,0,0,2204,2205,7,9,0,0,2205,240,1,0,0,0,2206,2207,7,9,0,0,2207, - 2208,7,17,0,0,2208,2209,7,24,0,0,2209,2210,7,8,0,0,2210,2211,7,13, - 0,0,2211,242,1,0,0,0,2212,2213,7,9,0,0,2213,2214,7,12,0,0,2214,2215, - 7,15,0,0,2215,244,1,0,0,0,2216,2217,7,9,0,0,2217,2218,7,12,0,0,2218, - 2219,7,15,0,0,2219,2220,5,95,0,0,2220,2221,7,23,0,0,2221,2222,7, - 11,0,0,2222,2223,7,2,0,0,2223,2224,7,17,0,0,2224,2225,7,9,0,0,2225, - 246,1,0,0,0,2226,2227,7,9,0,0,2227,2228,7,12,0,0,2228,2229,7,15, - 0,0,2229,2230,5,95,0,0,2230,2231,7,24,0,0,2231,2232,7,2,0,0,2232, - 2233,7,11,0,0,2233,2234,7,8,0,0,2234,2235,7,19,0,0,2235,2236,7,8, - 0,0,2236,2237,7,19,0,0,2237,2238,7,6,0,0,2238,2239,7,12,0,0,2239, - 248,1,0,0,0,2240,2241,7,9,0,0,2241,2242,7,12,0,0,2242,2243,7,23, - 0,0,2243,2244,7,6,0,0,2244,2245,7,11,0,0,2245,2246,7,7,0,0,2246, - 2247,7,9,0,0,2247,2248,7,15,0,0,2248,250,1,0,0,0,2249,2250,7,9,0, - 0,2250,2251,7,26,0,0,2251,2252,7,21,0,0,2252,2253,7,2,0,0,2253,2254, - 7,5,0,0,2254,2255,7,4,0,0,2255,252,1,0,0,0,2256,2257,7,9,0,0,2257, - 2258,7,4,0,0,2258,2259,7,7,0,0,2259,2260,7,2,0,0,2260,2261,7,24, - 0,0,2261,2262,7,9,0,0,2262,254,1,0,0,0,2263,2264,7,9,0,0,2264,2265, - 7,4,0,0,2265,2266,7,8,0,0,2266,2267,7,19,0,0,2267,2268,7,17,0,0, - 2268,2269,7,2,0,0,2269,2270,7,8,0,0,2270,2271,7,9,0,0,2271,2272, - 7,15,0,0,2272,2273,5,95,0,0,2273,2274,7,7,0,0,2274,2275,7,6,0,0, - 2275,2276,7,4,0,0,2276,2277,7,8,0,0,2277,256,1,0,0,0,2278,2279,7, - 9,0,0,2279,2280,7,20,0,0,2280,2281,7,9,0,0,2281,2282,7,11,0,0,2282, - 2283,7,13,0,0,2283,258,1,0,0,0,2284,2285,7,9,0,0,2285,2286,7,18, - 0,0,2286,2287,7,7,0,0,2287,2288,7,9,0,0,2288,2289,7,24,0,0,2289, - 2290,7,8,0,0,2290,260,1,0,0,0,2291,2292,7,9,0,0,2292,2293,7,18,0, - 0,2293,2294,7,9,0,0,2294,2295,7,7,0,0,2295,262,1,0,0,0,2296,2297, - 7,9,0,0,2297,2298,7,18,0,0,2298,2299,7,9,0,0,2299,2300,7,7,0,0,2300, - 2301,7,21,0,0,2301,2302,7,8,0,0,2302,2303,7,9,0,0,2303,264,1,0,0, - 0,2304,2305,7,9,0,0,2305,2306,7,18,0,0,2306,2307,7,19,0,0,2307,2308, - 7,4,0,0,2308,2309,7,8,0,0,2309,2310,7,4,0,0,2310,266,1,0,0,0,2311, - 2312,7,9,0,0,2312,2313,7,18,0,0,2313,2314,7,24,0,0,2314,268,1,0, - 0,0,2315,2316,7,9,0,0,2316,2317,7,18,0,0,2317,2318,7,24,0,0,2318, - 2319,7,5,0,0,2319,2320,7,2,0,0,2320,2321,7,19,0,0,2321,2322,7,12, - 0,0,2322,270,1,0,0,0,2323,2324,7,9,0,0,2324,2325,7,18,0,0,2325,2326, - 7,8,0,0,2326,2327,7,9,0,0,2327,2328,7,12,0,0,2328,2329,7,15,0,0, - 2329,272,1,0,0,0,2330,2331,7,9,0,0,2331,2332,7,18,0,0,2332,2333, - 7,8,0,0,2333,2334,7,9,0,0,2334,2335,7,12,0,0,2335,2336,7,15,0,0, - 2336,2337,7,9,0,0,2337,2338,7,15,0,0,2338,274,1,0,0,0,2339,2340, - 7,9,0,0,2340,2341,7,18,0,0,2341,2342,7,8,0,0,2342,2343,7,9,0,0,2343, - 2344,7,11,0,0,2344,2345,7,12,0,0,2345,2346,7,2,0,0,2346,2347,7,5, - 0,0,2347,276,1,0,0,0,2348,2349,7,9,0,0,2349,2350,7,18,0,0,2350,2351, - 7,8,0,0,2351,2352,7,11,0,0,2352,2353,7,2,0,0,2353,2354,7,7,0,0,2354, - 2355,7,8,0,0,2355,278,1,0,0,0,2356,2357,7,23,0,0,2357,2358,7,2,0, - 0,2358,2359,7,5,0,0,2359,2360,7,4,0,0,2360,2361,7,9,0,0,2361,280, - 1,0,0,0,2362,2363,7,23,0,0,2363,2364,7,9,0,0,2364,2365,7,8,0,0,2365, - 2366,7,7,0,0,2366,2367,7,22,0,0,2367,282,1,0,0,0,2368,2369,7,23, - 0,0,2369,2370,7,19,0,0,2370,2371,7,5,0,0,2371,2372,7,8,0,0,2372, - 2373,7,9,0,0,2373,2374,7,11,0,0,2374,284,1,0,0,0,2375,2376,7,23, - 0,0,2376,2377,7,19,0,0,2377,2378,7,11,0,0,2378,2379,7,4,0,0,2379, - 2380,7,8,0,0,2380,2381,5,95,0,0,2381,2382,7,20,0,0,2382,2383,7,2, - 0,0,2383,2384,7,5,0,0,2384,2385,7,21,0,0,2385,2386,7,9,0,0,2386, - 286,1,0,0,0,2387,2388,7,23,0,0,2388,2389,7,5,0,0,2389,2390,7,6,0, - 0,2390,2391,7,2,0,0,2391,2392,7,8,0,0,2392,288,1,0,0,0,2393,2394, - 7,23,0,0,2394,2395,7,5,0,0,2395,2396,7,6,0,0,2396,2397,7,6,0,0,2397, - 2398,7,11,0,0,2398,290,1,0,0,0,2399,2400,7,23,0,0,2400,2401,7,6, - 0,0,2401,2402,7,11,0,0,2402,292,1,0,0,0,2403,2404,7,23,0,0,2404, - 2405,7,6,0,0,2405,2406,7,11,0,0,2406,2407,7,9,0,0,2407,2408,7,19, - 0,0,2408,2409,7,16,0,0,2409,2410,7,12,0,0,2410,294,1,0,0,0,2411, - 2412,7,23,0,0,2412,2413,7,11,0,0,2413,2414,7,2,0,0,2414,2415,7,17, - 0,0,2415,2416,7,9,0,0,2416,2417,5,95,0,0,2417,2418,7,11,0,0,2418, - 2419,7,6,0,0,2419,2420,7,10,0,0,2420,296,1,0,0,0,2421,2422,7,23, - 0,0,2422,2423,7,11,0,0,2423,2424,7,9,0,0,2424,2425,7,9,0,0,2425, - 298,1,0,0,0,2426,2427,7,23,0,0,2427,2428,7,11,0,0,2428,2429,7,19, - 0,0,2429,2430,7,15,0,0,2430,2431,7,2,0,0,2431,2432,7,13,0,0,2432, - 300,1,0,0,0,2433,2434,7,23,0,0,2434,2435,7,11,0,0,2435,2436,7,6, - 0,0,2436,2437,7,17,0,0,2437,302,1,0,0,0,2438,2439,7,23,0,0,2439, - 2440,7,21,0,0,2440,2441,7,5,0,0,2441,2442,7,5,0,0,2442,304,1,0,0, - 0,2443,2444,7,23,0,0,2444,2445,7,21,0,0,2445,2446,7,12,0,0,2446, - 2447,7,7,0,0,2447,2448,7,8,0,0,2448,2449,7,19,0,0,2449,2450,7,6, - 0,0,2450,2451,7,12,0,0,2451,306,1,0,0,0,2452,2453,7,23,0,0,2453, - 2454,7,21,0,0,2454,2455,7,12,0,0,2455,2456,7,7,0,0,2456,2457,7,8, - 0,0,2457,2458,7,19,0,0,2458,2459,7,6,0,0,2459,2460,7,12,0,0,2460, - 2461,7,4,0,0,2461,308,1,0,0,0,2462,2463,7,23,0,0,2463,2464,7,21, - 0,0,2464,2465,7,4,0,0,2465,2466,7,19,0,0,2466,2467,7,6,0,0,2467, - 2468,7,12,0,0,2468,310,1,0,0,0,2469,2470,7,16,0,0,2470,2471,7,9, - 0,0,2471,2472,7,8,0,0,2472,312,1,0,0,0,2473,2474,7,16,0,0,2474,2475, - 7,5,0,0,2475,2476,7,6,0,0,2476,2477,7,3,0,0,2477,2478,7,2,0,0,2478, - 2479,7,5,0,0,2479,314,1,0,0,0,2480,2481,7,16,0,0,2481,2482,7,11, - 0,0,2482,2483,7,2,0,0,2483,2484,7,12,0,0,2484,2485,7,8,0,0,2485, - 316,1,0,0,0,2486,2487,7,16,0,0,2487,2488,7,11,0,0,2488,2489,7,6, - 0,0,2489,2490,7,21,0,0,2490,2491,7,24,0,0,2491,318,1,0,0,0,2492, - 2493,7,16,0,0,2493,2494,7,11,0,0,2494,2495,7,6,0,0,2495,2496,7,21, - 0,0,2496,2497,7,24,0,0,2497,2498,7,19,0,0,2498,2499,7,12,0,0,2499, - 2500,7,16,0,0,2500,320,1,0,0,0,2501,2502,7,16,0,0,2502,2503,7,11, - 0,0,2503,2504,7,6,0,0,2504,2505,7,21,0,0,2505,2506,7,24,0,0,2506, - 2507,7,4,0,0,2507,322,1,0,0,0,2508,2509,7,16,0,0,2509,2510,7,11, - 0,0,2510,2511,7,6,0,0,2511,2512,7,21,0,0,2512,2513,7,24,0,0,2513, - 2514,5,95,0,0,2514,2515,7,7,0,0,2515,2516,7,6,0,0,2516,2517,7,12, - 0,0,2517,2518,7,7,0,0,2518,2519,7,2,0,0,2519,2520,7,8,0,0,2520,324, - 1,0,0,0,2521,2522,7,22,0,0,2522,2523,7,2,0,0,2523,2524,7,20,0,0, - 2524,2525,7,19,0,0,2525,2526,7,12,0,0,2526,2527,7,16,0,0,2527,326, - 1,0,0,0,2528,2529,7,22,0,0,2529,2530,7,6,0,0,2530,2531,7,5,0,0,2531, - 2532,7,15,0,0,2532,328,1,0,0,0,2533,2534,7,22,0,0,2534,2535,7,6, - 0,0,2535,2536,7,21,0,0,2536,2537,7,11,0,0,2537,330,1,0,0,0,2538, - 2539,7,19,0,0,2539,2540,7,15,0,0,2540,2541,7,9,0,0,2541,2542,7,12, - 0,0,2542,2543,7,8,0,0,2543,2544,7,19,0,0,2544,2545,7,8,0,0,2545, - 2546,7,13,0,0,2546,332,1,0,0,0,2547,2548,7,19,0,0,2548,2549,7,23, - 0,0,2549,334,1,0,0,0,2550,2551,7,19,0,0,2551,2552,7,5,0,0,2552,2553, - 7,19,0,0,2553,2554,7,25,0,0,2554,2555,7,9,0,0,2555,336,1,0,0,0,2556, - 2557,7,19,0,0,2557,2558,7,17,0,0,2558,2559,7,24,0,0,2559,2560,7, - 6,0,0,2560,2561,7,11,0,0,2561,2562,7,8,0,0,2562,338,1,0,0,0,2563, - 2564,7,19,0,0,2564,2565,7,12,0,0,2565,340,1,0,0,0,2566,2567,7,19, - 0,0,2567,2568,7,12,0,0,2568,2569,7,7,0,0,2569,2570,7,5,0,0,2570, - 2571,7,21,0,0,2571,2572,7,15,0,0,2572,2573,7,9,0,0,2573,342,1,0, - 0,0,2574,2575,7,19,0,0,2575,2576,7,12,0,0,2576,2577,7,15,0,0,2577, - 2578,7,19,0,0,2578,2579,7,7,0,0,2579,2580,7,2,0,0,2580,2581,7,8, - 0,0,2581,2582,7,6,0,0,2582,2583,7,11,0,0,2583,344,1,0,0,0,2584,2585, - 7,19,0,0,2585,2586,7,12,0,0,2586,2587,7,19,0,0,2587,2588,7,8,0,0, - 2588,2589,7,19,0,0,2589,2590,7,2,0,0,2590,2591,7,5,0,0,2591,346, - 1,0,0,0,2592,2593,7,19,0,0,2593,2594,7,12,0,0,2594,2595,7,12,0,0, - 2595,2596,7,9,0,0,2596,2597,7,11,0,0,2597,348,1,0,0,0,2598,2599, - 7,19,0,0,2599,2600,7,12,0,0,2600,2601,7,6,0,0,2601,2602,7,21,0,0, - 2602,2603,7,8,0,0,2603,350,1,0,0,0,2604,2605,7,19,0,0,2605,2606, - 7,12,0,0,2606,2607,7,4,0,0,2607,2608,7,9,0,0,2608,2609,7,12,0,0, - 2609,2610,7,4,0,0,2610,2611,7,19,0,0,2611,2612,7,8,0,0,2612,2613, - 7,19,0,0,2613,2614,7,20,0,0,2614,2615,7,9,0,0,2615,352,1,0,0,0,2616, - 2617,7,19,0,0,2617,2618,7,12,0,0,2618,2619,7,4,0,0,2619,2620,7,9, - 0,0,2620,2621,7,11,0,0,2621,2622,7,8,0,0,2622,354,1,0,0,0,2623,2624, - 7,19,0,0,2624,2625,7,12,0,0,2625,2626,7,8,0,0,2626,356,1,0,0,0,2627, - 2628,7,19,0,0,2628,2629,7,12,0,0,2629,2630,7,8,0,0,2630,2631,7,9, - 0,0,2631,2632,7,16,0,0,2632,2633,7,9,0,0,2633,2634,7,11,0,0,2634, - 358,1,0,0,0,2635,2636,7,19,0,0,2636,2637,7,12,0,0,2637,2638,7,8, - 0,0,2638,2639,7,9,0,0,2639,2640,7,11,0,0,2640,2641,7,4,0,0,2641, - 2642,7,9,0,0,2642,2643,7,7,0,0,2643,2644,7,8,0,0,2644,360,1,0,0, - 0,2645,2646,7,19,0,0,2646,2647,7,12,0,0,2647,2648,7,8,0,0,2648,2649, - 7,9,0,0,2649,2650,7,11,0,0,2650,2651,7,4,0,0,2651,2652,7,9,0,0,2652, - 2653,7,7,0,0,2653,2654,7,8,0,0,2654,2655,7,19,0,0,2655,2656,7,6, - 0,0,2656,2657,7,12,0,0,2657,362,1,0,0,0,2658,2659,7,19,0,0,2659, - 2660,7,12,0,0,2660,2661,7,8,0,0,2661,2662,7,9,0,0,2662,2663,7,11, - 0,0,2663,2664,7,20,0,0,2664,2665,7,2,0,0,2665,2666,7,5,0,0,2666, - 364,1,0,0,0,2667,2668,7,19,0,0,2668,2669,7,12,0,0,2669,2670,7,8, - 0,0,2670,2671,7,6,0,0,2671,366,1,0,0,0,2672,2673,7,19,0,0,2673,2674, - 7,4,0,0,2674,368,1,0,0,0,2675,2676,7,27,0,0,2676,2677,7,6,0,0,2677, - 2678,7,19,0,0,2678,2679,7,12,0,0,2679,370,1,0,0,0,2680,2681,7,27, - 0,0,2681,2682,7,4,0,0,2682,2683,7,6,0,0,2683,2684,7,12,0,0,2684, - 372,1,0,0,0,2685,2686,7,27,0,0,2686,2687,7,4,0,0,2687,2688,7,6,0, - 0,2688,2689,7,12,0,0,2689,2690,5,95,0,0,2690,2691,7,2,0,0,2691,2692, - 7,11,0,0,2692,2693,7,11,0,0,2693,2694,7,2,0,0,2694,2695,7,13,0,0, - 2695,374,1,0,0,0,2696,2697,7,27,0,0,2697,2698,7,4,0,0,2698,2699, - 7,6,0,0,2699,2700,7,12,0,0,2700,2701,5,95,0,0,2701,2702,7,2,0,0, - 2702,2703,7,11,0,0,2703,2704,7,11,0,0,2704,2705,7,2,0,0,2705,2706, - 7,13,0,0,2706,2707,7,2,0,0,2707,2708,7,16,0,0,2708,2709,7,16,0,0, - 2709,376,1,0,0,0,2710,2711,7,27,0,0,2711,2712,7,4,0,0,2712,2713, - 7,6,0,0,2713,2714,7,12,0,0,2714,2715,5,95,0,0,2715,2716,7,9,0,0, - 2716,2717,7,18,0,0,2717,2718,7,9,0,0,2718,2719,7,7,0,0,2719,2720, - 7,21,0,0,2720,2721,7,8,0,0,2721,2722,7,19,0,0,2722,2723,7,6,0,0, - 2723,2724,7,12,0,0,2724,2725,5,95,0,0,2725,2726,7,24,0,0,2726,2727, - 7,5,0,0,2727,2728,7,2,0,0,2728,2729,7,12,0,0,2729,378,1,0,0,0,2730, - 2731,7,27,0,0,2731,2732,7,4,0,0,2732,2733,7,6,0,0,2733,2734,7,12, - 0,0,2734,2735,5,95,0,0,2735,2736,7,9,0,0,2736,2737,7,18,0,0,2737, - 2738,7,19,0,0,2738,2739,7,4,0,0,2739,2740,7,8,0,0,2740,2741,7,4, - 0,0,2741,380,1,0,0,0,2742,2743,7,27,0,0,2743,2744,7,4,0,0,2744,2745, - 7,6,0,0,2745,2746,7,12,0,0,2746,2747,5,95,0,0,2747,2748,7,6,0,0, - 2748,2749,7,3,0,0,2749,2750,7,27,0,0,2750,2751,7,9,0,0,2751,2752, - 7,7,0,0,2752,2753,7,8,0,0,2753,382,1,0,0,0,2754,2755,7,27,0,0,2755, - 2756,7,4,0,0,2756,2757,7,6,0,0,2757,2758,7,12,0,0,2758,2759,5,95, - 0,0,2759,2760,7,6,0,0,2760,2761,7,3,0,0,2761,2762,7,27,0,0,2762, - 2763,7,9,0,0,2763,2764,7,7,0,0,2764,2765,7,8,0,0,2765,2766,7,2,0, - 0,2766,2767,7,16,0,0,2767,2768,7,16,0,0,2768,384,1,0,0,0,2769,2770, - 7,27,0,0,2770,2771,7,4,0,0,2771,2772,7,6,0,0,2772,2773,7,12,0,0, - 2773,2774,5,95,0,0,2774,2775,7,26,0,0,2775,2776,7,21,0,0,2776,2777, - 7,9,0,0,2777,2778,7,11,0,0,2778,2779,7,13,0,0,2779,386,1,0,0,0,2780, - 2781,7,27,0,0,2781,2782,7,4,0,0,2782,2783,7,6,0,0,2783,2784,7,12, - 0,0,2784,2785,5,95,0,0,2785,2786,7,20,0,0,2786,2787,7,2,0,0,2787, - 2788,7,5,0,0,2788,2789,7,21,0,0,2789,2790,7,9,0,0,2790,388,1,0,0, - 0,2791,2792,7,5,0,0,2792,2793,7,2,0,0,2793,2794,7,16,0,0,2794,390, - 1,0,0,0,2795,2796,7,5,0,0,2796,2797,7,2,0,0,2797,2798,7,12,0,0,2798, - 2799,7,16,0,0,2799,2800,7,21,0,0,2800,2801,7,2,0,0,2801,2802,7,16, - 0,0,2802,2803,7,9,0,0,2803,392,1,0,0,0,2804,2805,7,5,0,0,2805,2806, - 7,2,0,0,2806,2807,7,11,0,0,2807,2808,7,16,0,0,2808,2809,7,9,0,0, - 2809,394,1,0,0,0,2810,2811,7,5,0,0,2811,2812,7,2,0,0,2812,2813,7, - 4,0,0,2813,2814,7,8,0,0,2814,2815,5,95,0,0,2815,2816,7,20,0,0,2816, - 2817,7,2,0,0,2817,2818,7,5,0,0,2818,2819,7,21,0,0,2819,2820,7,9, - 0,0,2820,396,1,0,0,0,2821,2822,7,5,0,0,2822,2823,7,2,0,0,2823,2824, - 7,8,0,0,2824,2825,7,9,0,0,2825,2826,7,11,0,0,2826,2827,7,2,0,0,2827, - 2828,7,5,0,0,2828,398,1,0,0,0,2829,2830,7,5,0,0,2830,2831,7,9,0, - 0,2831,2832,7,2,0,0,2832,2833,7,15,0,0,2833,400,1,0,0,0,2834,2835, - 7,5,0,0,2835,2836,7,9,0,0,2836,2837,7,2,0,0,2837,2838,7,15,0,0,2838, - 2839,7,19,0,0,2839,2840,7,12,0,0,2840,2841,7,16,0,0,2841,402,1,0, - 0,0,2842,2843,7,5,0,0,2843,2844,7,9,0,0,2844,2845,7,23,0,0,2845, - 2846,7,8,0,0,2846,404,1,0,0,0,2847,2848,7,5,0,0,2848,2849,7,19,0, - 0,2849,2850,7,25,0,0,2850,2851,7,9,0,0,2851,406,1,0,0,0,2852,2853, - 7,5,0,0,2853,2854,7,19,0,0,2854,2855,7,25,0,0,2855,2856,7,9,0,0, - 2856,2857,5,95,0,0,2857,2858,7,11,0,0,2858,2859,7,9,0,0,2859,2860, - 7,16,0,0,2860,2861,7,9,0,0,2861,2862,7,18,0,0,2862,408,1,0,0,0,2863, - 2864,7,5,0,0,2864,2865,7,19,0,0,2865,2866,7,17,0,0,2866,2867,7,19, - 0,0,2867,2868,7,8,0,0,2868,410,1,0,0,0,2869,2870,7,5,0,0,2870,2871, - 7,12,0,0,2871,412,1,0,0,0,2872,2873,7,5,0,0,2873,2874,7,6,0,0,2874, - 2875,7,7,0,0,2875,2876,7,2,0,0,2876,2877,7,5,0,0,2877,414,1,0,0, - 0,2878,2879,7,5,0,0,2879,2880,7,6,0,0,2880,2881,7,7,0,0,2881,2882, - 7,2,0,0,2882,2883,7,5,0,0,2883,2884,7,8,0,0,2884,2885,7,19,0,0,2885, - 2886,7,17,0,0,2886,2887,7,9,0,0,2887,416,1,0,0,0,2888,2889,7,5,0, - 0,2889,2890,7,6,0,0,2890,2891,7,7,0,0,2891,2892,7,2,0,0,2892,2893, - 7,5,0,0,2893,2894,7,8,0,0,2894,2895,7,19,0,0,2895,2896,7,17,0,0, - 2896,2897,7,9,0,0,2897,2898,7,4,0,0,2898,2899,7,8,0,0,2899,2900, - 7,2,0,0,2900,2901,7,17,0,0,2901,2902,7,24,0,0,2902,418,1,0,0,0,2903, - 2904,7,5,0,0,2904,2905,7,6,0,0,2905,2906,7,10,0,0,2906,2907,7,9, - 0,0,2907,2908,7,11,0,0,2908,420,1,0,0,0,2909,2910,7,17,0,0,2910, - 2911,7,2,0,0,2911,2912,7,8,0,0,2912,2913,7,7,0,0,2913,2914,7,22, - 0,0,2914,422,1,0,0,0,2915,2916,7,17,0,0,2916,2917,7,2,0,0,2917,2918, - 7,8,0,0,2918,2919,7,7,0,0,2919,2920,7,22,0,0,2920,2921,7,9,0,0,2921, - 2922,7,4,0,0,2922,424,1,0,0,0,2923,2924,7,17,0,0,2924,2925,7,2,0, - 0,2925,2926,7,8,0,0,2926,2927,7,7,0,0,2927,2928,7,22,0,0,2928,2929, - 5,95,0,0,2929,2930,7,12,0,0,2930,2931,7,21,0,0,2931,2932,7,17,0, - 0,2932,2933,7,3,0,0,2933,2934,7,9,0,0,2934,2935,7,11,0,0,2935,426, - 1,0,0,0,2936,2937,7,17,0,0,2937,2938,7,2,0,0,2938,2939,7,8,0,0,2939, - 2940,7,7,0,0,2940,2941,7,22,0,0,2941,2942,5,95,0,0,2942,2943,7,11, - 0,0,2943,2944,7,9,0,0,2944,2945,7,7,0,0,2945,2946,7,6,0,0,2946,2947, - 7,16,0,0,2947,2948,7,12,0,0,2948,2949,7,19,0,0,2949,2950,7,14,0, - 0,2950,2951,7,9,0,0,2951,428,1,0,0,0,2952,2953,7,17,0,0,2953,2954, - 7,2,0,0,2954,2955,7,18,0,0,2955,430,1,0,0,0,2956,2957,7,17,0,0,2957, - 2958,7,9,0,0,2958,2959,7,2,0,0,2959,2960,7,4,0,0,2960,2961,7,21, - 0,0,2961,2962,7,11,0,0,2962,2963,7,9,0,0,2963,2964,7,4,0,0,2964, - 432,1,0,0,0,2965,2966,7,17,0,0,2966,2967,7,9,0,0,2967,2968,7,17, - 0,0,2968,2969,7,3,0,0,2969,2970,7,9,0,0,2970,2971,7,11,0,0,2971, - 434,1,0,0,0,2972,2973,7,17,0,0,2973,2974,7,9,0,0,2974,2975,7,11, - 0,0,2975,2976,7,16,0,0,2976,2977,7,9,0,0,2977,436,1,0,0,0,2978,2979, - 7,17,0,0,2979,2980,7,9,0,0,2980,2981,7,8,0,0,2981,2982,7,2,0,0,2982, - 2983,7,15,0,0,2983,2984,7,2,0,0,2984,2985,7,8,0,0,2985,2986,7,2, - 0,0,2986,438,1,0,0,0,2987,2988,7,17,0,0,2988,2989,7,9,0,0,2989,2990, - 7,8,0,0,2990,2991,7,22,0,0,2991,2992,7,6,0,0,2992,2993,7,15,0,0, - 2993,440,1,0,0,0,2994,2995,7,17,0,0,2995,2996,7,19,0,0,2996,2997, - 7,12,0,0,2997,442,1,0,0,0,2998,2999,7,17,0,0,2999,3000,7,19,0,0, - 3000,3001,7,12,0,0,3001,3002,7,21,0,0,3002,3003,7,4,0,0,3003,444, - 1,0,0,0,3004,3005,7,17,0,0,3005,3006,7,19,0,0,3006,3007,7,12,0,0, - 3007,3008,7,21,0,0,3008,3009,7,8,0,0,3009,3010,7,9,0,0,3010,446, - 1,0,0,0,3011,3012,7,17,0,0,3012,3013,7,6,0,0,3013,3014,7,15,0,0, - 3014,448,1,0,0,0,3015,3016,7,17,0,0,3016,3017,7,6,0,0,3017,3018, - 7,15,0,0,3018,3019,7,19,0,0,3019,3020,7,23,0,0,3020,3021,7,19,0, - 0,3021,3022,7,9,0,0,3022,3023,7,4,0,0,3023,450,1,0,0,0,3024,3025, - 7,17,0,0,3025,3026,7,6,0,0,3026,3027,7,15,0,0,3027,3028,7,19,0,0, - 3028,3029,7,23,0,0,3029,3030,7,13,0,0,3030,452,1,0,0,0,3031,3032, - 7,17,0,0,3032,3033,7,6,0,0,3033,3034,7,15,0,0,3034,3035,7,21,0,0, - 3035,3036,7,5,0,0,3036,3037,7,9,0,0,3037,454,1,0,0,0,3038,3039,7, - 17,0,0,3039,3040,7,6,0,0,3040,3041,7,15,0,0,3041,3042,7,21,0,0,3042, - 3043,7,5,0,0,3043,3044,7,9,0,0,3044,3045,7,4,0,0,3045,456,1,0,0, - 0,3046,3047,7,17,0,0,3047,3048,7,6,0,0,3048,3049,7,12,0,0,3049,3050, - 7,15,0,0,3050,3051,7,2,0,0,3051,3052,7,13,0,0,3052,458,1,0,0,0,3053, - 3054,7,17,0,0,3054,3055,7,6,0,0,3055,3056,7,12,0,0,3056,3057,7,8, - 0,0,3057,3058,7,22,0,0,3058,460,1,0,0,0,3059,3060,7,17,0,0,3060, - 3061,7,6,0,0,3061,3062,7,11,0,0,3062,3063,7,9,0,0,3063,462,1,0,0, - 0,3064,3065,7,17,0,0,3065,3066,7,21,0,0,3066,3067,7,5,0,0,3067,3068, - 7,8,0,0,3068,3069,7,19,0,0,3069,3070,7,4,0,0,3070,3071,7,9,0,0,3071, - 3072,7,8,0,0,3072,464,1,0,0,0,3073,3074,7,12,0,0,3074,3075,7,2,0, - 0,3075,3076,7,8,0,0,3076,3077,7,19,0,0,3077,3078,7,6,0,0,3078,3079, - 7,12,0,0,3079,3080,7,2,0,0,3080,3081,7,5,0,0,3081,466,1,0,0,0,3082, - 3083,7,12,0,0,3083,3084,7,2,0,0,3084,3085,7,8,0,0,3085,3086,7,21, - 0,0,3086,3087,7,11,0,0,3087,3088,7,2,0,0,3088,3089,7,5,0,0,3089, - 468,1,0,0,0,3090,3091,7,12,0,0,3091,3092,7,7,0,0,3092,3093,7,22, - 0,0,3093,3094,7,2,0,0,3094,3095,7,11,0,0,3095,470,1,0,0,0,3096,3097, - 7,12,0,0,3097,3098,7,7,0,0,3098,3099,7,5,0,0,3099,3100,7,6,0,0,3100, - 3101,7,3,0,0,3101,472,1,0,0,0,3102,3103,7,12,0,0,3103,3104,7,9,0, - 0,3104,3105,7,10,0,0,3105,474,1,0,0,0,3106,3107,7,12,0,0,3107,3108, - 7,9,0,0,3108,3109,7,18,0,0,3109,3110,7,8,0,0,3110,476,1,0,0,0,3111, - 3112,7,12,0,0,3112,3113,7,6,0,0,3113,478,1,0,0,0,3114,3115,7,12, - 0,0,3115,3116,7,6,0,0,3116,3117,7,12,0,0,3117,3118,7,9,0,0,3118, - 480,1,0,0,0,3119,3120,7,12,0,0,3120,3121,7,6,0,0,3121,3122,7,11, - 0,0,3122,3123,7,17,0,0,3123,3124,7,2,0,0,3124,3125,7,5,0,0,3125, - 3126,7,19,0,0,3126,3127,7,14,0,0,3127,3128,7,9,0,0,3128,482,1,0, - 0,0,3129,3130,7,12,0,0,3130,3131,7,6,0,0,3131,3132,7,8,0,0,3132, - 484,1,0,0,0,3133,3134,7,12,0,0,3134,3135,7,8,0,0,3135,3136,7,22, - 0,0,3136,3137,5,95,0,0,3137,3138,7,20,0,0,3138,3139,7,2,0,0,3139, - 3140,7,5,0,0,3140,3141,7,21,0,0,3141,3142,7,9,0,0,3142,486,1,0,0, - 0,3143,3144,7,12,0,0,3144,3145,7,8,0,0,3145,3146,7,19,0,0,3146,3147, - 7,5,0,0,3147,3148,7,9,0,0,3148,488,1,0,0,0,3149,3150,7,12,0,0,3150, - 3151,7,21,0,0,3151,3152,7,5,0,0,3152,3153,7,5,0,0,3153,490,1,0,0, - 0,3154,3155,7,12,0,0,3155,3156,7,21,0,0,3156,3157,7,5,0,0,3157,3158, - 7,5,0,0,3158,3159,7,19,0,0,3159,3160,7,23,0,0,3160,492,1,0,0,0,3161, - 3162,7,12,0,0,3162,3163,7,21,0,0,3163,3164,7,17,0,0,3164,3165,7, - 9,0,0,3165,3166,7,11,0,0,3166,3167,7,19,0,0,3167,3168,7,7,0,0,3168, - 494,1,0,0,0,3169,3170,7,6,0,0,3170,3171,7,7,0,0,3171,3172,7,7,0, - 0,3172,3173,7,21,0,0,3173,3174,7,11,0,0,3174,3175,7,11,0,0,3175, - 3176,7,9,0,0,3176,3177,7,12,0,0,3177,3178,7,7,0,0,3178,3179,7,9, - 0,0,3179,3180,7,4,0,0,3180,3181,5,95,0,0,3181,3182,7,11,0,0,3182, - 3183,7,9,0,0,3183,3184,7,16,0,0,3184,3185,7,9,0,0,3185,3186,7,18, - 0,0,3186,496,1,0,0,0,3187,3188,7,6,0,0,3188,3189,7,7,0,0,3189,3190, - 7,8,0,0,3190,3191,7,9,0,0,3191,3192,7,8,0,0,3192,3193,5,95,0,0,3193, - 3194,7,5,0,0,3194,3195,7,9,0,0,3195,3196,7,12,0,0,3196,3197,7,16, - 0,0,3197,3198,7,8,0,0,3198,3199,7,22,0,0,3199,498,1,0,0,0,3200,3201, - 7,6,0,0,3201,3202,7,23,0,0,3202,500,1,0,0,0,3203,3204,7,6,0,0,3204, - 3205,7,23,0,0,3205,3206,7,23,0,0,3206,3207,7,4,0,0,3207,3208,7,9, - 0,0,3208,3209,7,8,0,0,3209,502,1,0,0,0,3210,3211,7,6,0,0,3211,3212, - 7,5,0,0,3212,3213,7,15,0,0,3213,504,1,0,0,0,3214,3215,7,6,0,0,3215, - 3216,7,17,0,0,3216,3217,7,19,0,0,3217,3218,7,8,0,0,3218,506,1,0, - 0,0,3219,3220,7,6,0,0,3220,3221,7,12,0,0,3221,508,1,0,0,0,3222,3223, - 7,6,0,0,3223,3224,7,12,0,0,3224,3225,7,9,0,0,3225,510,1,0,0,0,3226, - 3227,7,6,0,0,3227,3228,7,12,0,0,3228,3229,7,5,0,0,3229,3230,7,13, - 0,0,3230,512,1,0,0,0,3231,3232,7,6,0,0,3232,3233,7,24,0,0,3233,3234, - 7,9,0,0,3234,3235,7,12,0,0,3235,514,1,0,0,0,3236,3237,7,6,0,0,3237, - 3238,7,11,0,0,3238,516,1,0,0,0,3239,3240,7,6,0,0,3240,3241,7,11, - 0,0,3241,3242,7,15,0,0,3242,3243,7,9,0,0,3243,3244,7,11,0,0,3244, - 518,1,0,0,0,3245,3246,7,6,0,0,3246,3247,7,11,0,0,3247,3248,7,15, - 0,0,3248,3249,7,19,0,0,3249,3250,7,12,0,0,3250,3251,7,2,0,0,3251, - 3252,7,5,0,0,3252,520,1,0,0,0,3253,3254,7,6,0,0,3254,3255,7,21,0, - 0,3255,3256,7,8,0,0,3256,522,1,0,0,0,3257,3258,7,6,0,0,3258,3259, - 7,21,0,0,3259,3260,7,8,0,0,3260,3261,7,9,0,0,3261,3262,7,11,0,0, - 3262,524,1,0,0,0,3263,3264,7,6,0,0,3264,3265,7,20,0,0,3265,3266, - 7,9,0,0,3266,3267,7,11,0,0,3267,526,1,0,0,0,3268,3269,7,6,0,0,3269, - 3270,7,20,0,0,3270,3271,7,9,0,0,3271,3272,7,11,0,0,3272,3273,7,5, - 0,0,3273,3274,7,2,0,0,3274,3275,7,24,0,0,3275,3276,7,4,0,0,3276, - 528,1,0,0,0,3277,3278,7,6,0,0,3278,3279,7,20,0,0,3279,3280,7,9,0, - 0,3280,3281,7,11,0,0,3281,3282,7,5,0,0,3282,3283,7,2,0,0,3283,3284, - 7,13,0,0,3284,530,1,0,0,0,3285,3286,7,6,0,0,3286,3287,7,20,0,0,3287, - 3288,7,9,0,0,3288,3289,7,11,0,0,3289,3290,7,10,0,0,3290,3291,7,11, - 0,0,3291,3292,7,19,0,0,3292,3293,7,8,0,0,3293,3294,7,9,0,0,3294, - 532,1,0,0,0,3295,3296,7,6,0,0,3296,3297,7,20,0,0,3297,3298,7,9,0, - 0,3298,3299,7,11,0,0,3299,3300,7,10,0,0,3300,3301,7,11,0,0,3301, - 3302,7,19,0,0,3302,3303,7,8,0,0,3303,3304,7,19,0,0,3304,3305,7,12, - 0,0,3305,3306,7,16,0,0,3306,534,1,0,0,0,3307,3308,7,24,0,0,3308, - 3309,7,2,0,0,3309,3310,7,11,0,0,3310,3311,7,2,0,0,3311,3312,7,17, - 0,0,3312,3313,7,9,0,0,3313,3314,7,8,0,0,3314,3315,7,9,0,0,3315,3316, - 7,11,0,0,3316,536,1,0,0,0,3317,3318,7,24,0,0,3318,3319,7,2,0,0,3319, - 3320,7,11,0,0,3320,3321,7,8,0,0,3321,3322,7,19,0,0,3322,3323,7,8, - 0,0,3323,3324,7,19,0,0,3324,3325,7,6,0,0,3325,3326,7,12,0,0,3326, - 538,1,0,0,0,3327,3328,7,24,0,0,3328,3329,7,2,0,0,3329,3330,7,11, - 0,0,3330,3331,7,8,0,0,3331,3332,7,19,0,0,3332,3333,7,8,0,0,3333, - 3334,7,19,0,0,3334,3335,7,6,0,0,3335,3336,7,12,0,0,3336,3337,7,9, - 0,0,3337,3338,7,15,0,0,3338,540,1,0,0,0,3339,3340,7,24,0,0,3340, - 3341,7,2,0,0,3341,3342,7,11,0,0,3342,3343,7,8,0,0,3343,3344,7,19, - 0,0,3344,3345,7,8,0,0,3345,3346,7,19,0,0,3346,3347,7,6,0,0,3347, - 3348,7,12,0,0,3348,3349,7,4,0,0,3349,542,1,0,0,0,3350,3351,7,24, - 0,0,3351,3352,7,2,0,0,3352,3353,7,8,0,0,3353,3354,7,8,0,0,3354,3355, - 7,9,0,0,3355,3356,7,11,0,0,3356,3357,7,12,0,0,3357,544,1,0,0,0,3358, - 3359,7,24,0,0,3359,3360,7,9,0,0,3360,3361,7,11,0,0,3361,546,1,0, - 0,0,3362,3363,7,24,0,0,3363,3364,7,9,0,0,3364,3365,7,11,0,0,3365, - 3366,7,7,0,0,3366,3367,7,9,0,0,3367,3368,7,12,0,0,3368,3369,7,8, - 0,0,3369,548,1,0,0,0,3370,3371,7,24,0,0,3371,3372,7,9,0,0,3372,3373, - 7,11,0,0,3373,3374,7,7,0,0,3374,3375,7,9,0,0,3375,3376,7,12,0,0, - 3376,3377,7,8,0,0,3377,3378,7,19,0,0,3378,3379,7,5,0,0,3379,3380, - 7,9,0,0,3380,3381,5,95,0,0,3381,3382,7,7,0,0,3382,3383,7,6,0,0,3383, - 3384,7,12,0,0,3384,3385,7,8,0,0,3385,550,1,0,0,0,3386,3387,7,24, - 0,0,3387,3388,7,9,0,0,3388,3389,7,11,0,0,3389,3390,7,7,0,0,3390, - 3391,7,9,0,0,3391,3392,7,12,0,0,3392,3393,7,8,0,0,3393,3394,7,19, - 0,0,3394,3395,7,5,0,0,3395,3396,7,9,0,0,3396,3397,5,95,0,0,3397, - 3398,7,15,0,0,3398,3399,7,19,0,0,3399,3400,7,4,0,0,3400,3401,7,7, - 0,0,3401,552,1,0,0,0,3402,3403,7,24,0,0,3403,3404,7,9,0,0,3404,3405, - 7,11,0,0,3405,3406,7,7,0,0,3406,3407,7,9,0,0,3407,3408,7,12,0,0, - 3408,3409,7,8,0,0,3409,3410,5,95,0,0,3410,3411,7,11,0,0,3411,3412, - 7,2,0,0,3412,3413,7,12,0,0,3413,3414,7,25,0,0,3414,554,1,0,0,0,3415, - 3416,7,24,0,0,3416,3417,7,9,0,0,3417,3418,7,11,0,0,3418,3419,7,19, - 0,0,3419,3420,7,6,0,0,3420,3421,7,15,0,0,3421,556,1,0,0,0,3422,3423, - 7,24,0,0,3423,3424,7,9,0,0,3424,3425,7,11,0,0,3425,3426,7,17,0,0, - 3426,3427,7,21,0,0,3427,3428,7,8,0,0,3428,3429,7,9,0,0,3429,558, - 1,0,0,0,3430,3431,7,24,0,0,3431,3432,7,19,0,0,3432,3433,7,20,0,0, - 3433,3434,7,6,0,0,3434,3435,7,8,0,0,3435,560,1,0,0,0,3436,3437,7, - 24,0,0,3437,3438,7,6,0,0,3438,3439,7,11,0,0,3439,3440,7,8,0,0,3440, - 3441,7,19,0,0,3441,3442,7,6,0,0,3442,3443,7,12,0,0,3443,562,1,0, - 0,0,3444,3445,7,24,0,0,3445,3446,7,6,0,0,3446,3447,7,4,0,0,3447, - 3448,7,19,0,0,3448,3449,7,8,0,0,3449,3450,7,19,0,0,3450,3451,7,6, - 0,0,3451,3452,7,12,0,0,3452,564,1,0,0,0,3453,3454,7,24,0,0,3454, - 3455,7,6,0,0,3455,3456,7,4,0,0,3456,3457,7,19,0,0,3457,3458,7,8, - 0,0,3458,3459,7,19,0,0,3459,3460,7,6,0,0,3460,3461,7,12,0,0,3461, - 3462,5,95,0,0,3462,3463,7,11,0,0,3463,3464,7,9,0,0,3464,3465,7,16, - 0,0,3465,3466,7,9,0,0,3466,3467,7,18,0,0,3467,566,1,0,0,0,3468,3469, - 7,24,0,0,3469,3470,7,6,0,0,3470,3471,7,10,0,0,3471,3472,7,9,0,0, - 3472,3473,7,11,0,0,3473,568,1,0,0,0,3474,3475,7,24,0,0,3475,3476, - 7,11,0,0,3476,3477,7,9,0,0,3477,3478,7,7,0,0,3478,3479,7,9,0,0,3479, - 3480,7,15,0,0,3480,3481,7,9,0,0,3481,3482,7,4,0,0,3482,570,1,0,0, - 0,3483,3484,7,24,0,0,3484,3485,7,11,0,0,3485,3486,7,9,0,0,3486,3487, - 7,7,0,0,3487,3488,7,19,0,0,3488,3489,7,4,0,0,3489,3490,7,19,0,0, - 3490,3491,7,6,0,0,3491,3492,7,12,0,0,3492,572,1,0,0,0,3493,3494, - 7,24,0,0,3494,3495,7,11,0,0,3495,3496,7,9,0,0,3496,3497,7,24,0,0, - 3497,3498,7,2,0,0,3498,3499,7,11,0,0,3499,3500,7,9,0,0,3500,574, - 1,0,0,0,3501,3502,7,24,0,0,3502,3503,7,11,0,0,3503,3504,7,9,0,0, - 3504,3505,7,20,0,0,3505,576,1,0,0,0,3506,3507,7,24,0,0,3507,3508, - 7,11,0,0,3508,3509,7,19,0,0,3509,3510,7,17,0,0,3510,3511,7,2,0,0, - 3511,3512,7,11,0,0,3512,3513,7,13,0,0,3513,578,1,0,0,0,3514,3515, - 7,24,0,0,3515,3516,7,11,0,0,3516,3517,7,6,0,0,3517,3518,7,7,0,0, - 3518,3519,7,9,0,0,3519,3520,7,15,0,0,3520,3521,7,21,0,0,3521,3522, - 7,11,0,0,3522,3523,7,9,0,0,3523,580,1,0,0,0,3524,3525,7,26,0,0,3525, - 3526,7,21,0,0,3526,3527,7,2,0,0,3527,3528,7,5,0,0,3528,3529,7,19, - 0,0,3529,3530,7,23,0,0,3530,3531,7,13,0,0,3531,582,1,0,0,0,3532, - 3533,7,26,0,0,3533,3534,7,21,0,0,3534,3535,7,2,0,0,3535,3536,7,11, - 0,0,3536,3537,7,8,0,0,3537,3538,7,9,0,0,3538,3539,7,11,0,0,3539, - 3540,7,4,0,0,3540,584,1,0,0,0,3541,3542,7,11,0,0,3542,3543,7,2,0, - 0,3543,3544,7,12,0,0,3544,3545,7,16,0,0,3545,3546,7,9,0,0,3546,586, - 1,0,0,0,3547,3548,7,11,0,0,3548,3549,7,2,0,0,3549,3550,7,12,0,0, - 3550,3551,7,25,0,0,3551,588,1,0,0,0,3552,3553,7,11,0,0,3553,3554, - 7,2,0,0,3554,3555,7,10,0,0,3555,590,1,0,0,0,3556,3557,7,11,0,0,3557, - 3558,7,9,0,0,3558,3559,7,2,0,0,3559,3560,7,15,0,0,3560,3561,7,4, - 0,0,3561,592,1,0,0,0,3562,3563,7,11,0,0,3563,3564,7,9,0,0,3564,3565, - 7,2,0,0,3565,3566,7,5,0,0,3566,594,1,0,0,0,3567,3568,7,11,0,0,3568, - 3569,7,9,0,0,3569,3570,7,7,0,0,3570,3571,7,21,0,0,3571,3572,7,11, - 0,0,3572,3573,7,4,0,0,3573,3574,7,19,0,0,3574,3575,7,20,0,0,3575, - 3576,7,9,0,0,3576,596,1,0,0,0,3577,3578,7,11,0,0,3578,3579,7,9,0, - 0,3579,3580,7,23,0,0,3580,598,1,0,0,0,3581,3582,7,11,0,0,3582,3583, - 7,9,0,0,3583,3584,7,23,0,0,3584,3585,7,9,0,0,3585,3586,7,11,0,0, - 3586,3587,7,9,0,0,3587,3588,7,12,0,0,3588,3589,7,7,0,0,3589,3590, - 7,9,0,0,3590,3591,7,4,0,0,3591,600,1,0,0,0,3592,3593,7,11,0,0,3593, - 3594,7,9,0,0,3594,3595,7,23,0,0,3595,3596,7,9,0,0,3596,3597,7,11, - 0,0,3597,3598,7,9,0,0,3598,3599,7,12,0,0,3599,3600,7,7,0,0,3600, - 3601,7,19,0,0,3601,3602,7,12,0,0,3602,3603,7,16,0,0,3603,602,1,0, - 0,0,3604,3605,7,11,0,0,3605,3606,7,9,0,0,3606,3607,7,16,0,0,3607, - 3608,7,11,0,0,3608,3609,5,95,0,0,3609,3610,7,2,0,0,3610,3611,7,20, - 0,0,3611,3612,7,16,0,0,3612,3613,7,18,0,0,3613,604,1,0,0,0,3614, - 3615,7,11,0,0,3615,3616,7,9,0,0,3616,3617,7,16,0,0,3617,3618,7,11, - 0,0,3618,3619,5,95,0,0,3619,3620,7,2,0,0,3620,3621,7,20,0,0,3621, - 3622,7,16,0,0,3622,3623,7,13,0,0,3623,606,1,0,0,0,3624,3625,7,11, - 0,0,3625,3626,7,9,0,0,3626,3627,7,16,0,0,3627,3628,7,11,0,0,3628, - 3629,5,95,0,0,3629,3630,7,7,0,0,3630,3631,7,6,0,0,3631,3632,7,21, - 0,0,3632,3633,7,12,0,0,3633,3634,7,8,0,0,3634,608,1,0,0,0,3635,3636, - 7,11,0,0,3636,3637,7,9,0,0,3637,3638,7,16,0,0,3638,3639,7,11,0,0, - 3639,3640,5,95,0,0,3640,3641,7,19,0,0,3641,3642,7,12,0,0,3642,3643, - 7,8,0,0,3643,3644,7,9,0,0,3644,3645,7,11,0,0,3645,3646,7,7,0,0,3646, - 3647,7,9,0,0,3647,3648,7,24,0,0,3648,3649,7,8,0,0,3649,610,1,0,0, - 0,3650,3651,7,11,0,0,3651,3652,7,9,0,0,3652,3653,7,16,0,0,3653,3654, - 7,11,0,0,3654,3655,5,95,0,0,3655,3656,7,11,0,0,3656,3657,5,50,0, - 0,3657,612,1,0,0,0,3658,3659,7,11,0,0,3659,3660,7,9,0,0,3660,3661, - 7,16,0,0,3661,3662,7,11,0,0,3662,3663,5,95,0,0,3663,3664,7,4,0,0, - 3664,3665,7,5,0,0,3665,3666,7,6,0,0,3666,3667,7,24,0,0,3667,3668, - 7,9,0,0,3668,614,1,0,0,0,3669,3670,7,11,0,0,3670,3671,7,9,0,0,3671, - 3672,7,16,0,0,3672,3673,7,11,0,0,3673,3674,5,95,0,0,3674,3675,7, - 4,0,0,3675,3676,7,18,0,0,3676,3677,7,18,0,0,3677,616,1,0,0,0,3678, - 3679,7,11,0,0,3679,3680,7,9,0,0,3680,3681,7,16,0,0,3681,3682,7,11, - 0,0,3682,3683,5,95,0,0,3683,3684,7,4,0,0,3684,3685,7,18,0,0,3685, - 3686,7,13,0,0,3686,618,1,0,0,0,3687,3688,7,11,0,0,3688,3689,7,9, - 0,0,3689,3690,7,16,0,0,3690,3691,7,11,0,0,3691,3692,5,95,0,0,3692, - 3693,7,4,0,0,3693,3694,7,13,0,0,3694,3695,7,13,0,0,3695,620,1,0, - 0,0,3696,3697,7,11,0,0,3697,3698,7,9,0,0,3698,3699,7,5,0,0,3699, - 3700,7,9,0,0,3700,3701,7,2,0,0,3701,3702,7,4,0,0,3702,3703,7,9,0, - 0,3703,622,1,0,0,0,3704,3705,7,11,0,0,3705,3706,7,9,0,0,3706,3707, - 7,12,0,0,3707,3708,7,2,0,0,3708,3709,7,17,0,0,3709,3710,7,9,0,0, - 3710,624,1,0,0,0,3711,3712,7,11,0,0,3712,3713,7,9,0,0,3713,3714, - 7,4,0,0,3714,3715,7,9,0,0,3715,3716,7,8,0,0,3716,626,1,0,0,0,3717, - 3718,7,11,0,0,3718,3719,7,9,0,0,3719,3720,7,4,0,0,3720,3721,7,21, - 0,0,3721,3722,7,5,0,0,3722,3723,7,8,0,0,3723,628,1,0,0,0,3724,3725, - 7,11,0,0,3725,3726,7,9,0,0,3726,3727,7,8,0,0,3727,3728,7,21,0,0, - 3728,3729,7,11,0,0,3729,3730,7,12,0,0,3730,630,1,0,0,0,3731,3732, - 7,11,0,0,3732,3733,7,9,0,0,3733,3734,7,8,0,0,3734,3735,7,21,0,0, - 3735,3736,7,11,0,0,3736,3737,7,12,0,0,3737,3738,7,4,0,0,3738,632, - 1,0,0,0,3739,3740,7,11,0,0,3740,3741,7,9,0,0,3741,3742,7,20,0,0, - 3742,3743,7,6,0,0,3743,3744,7,25,0,0,3744,3745,7,9,0,0,3745,634, - 1,0,0,0,3746,3747,7,11,0,0,3747,3748,7,19,0,0,3748,3749,7,16,0,0, - 3749,3750,7,22,0,0,3750,3751,7,8,0,0,3751,636,1,0,0,0,3752,3753, - 7,11,0,0,3753,3754,7,5,0,0,3754,3755,7,19,0,0,3755,3756,7,25,0,0, - 3756,3757,7,9,0,0,3757,638,1,0,0,0,3758,3759,7,11,0,0,3759,3760, - 7,6,0,0,3760,3761,7,5,0,0,3761,3762,7,5,0,0,3762,3763,7,3,0,0,3763, - 3764,7,2,0,0,3764,3765,7,7,0,0,3765,3766,7,25,0,0,3766,640,1,0,0, - 0,3767,3768,7,11,0,0,3768,3769,7,6,0,0,3769,3770,7,5,0,0,3770,3771, - 7,5,0,0,3771,3772,7,21,0,0,3772,3773,7,24,0,0,3773,642,1,0,0,0,3774, - 3775,7,11,0,0,3775,3776,7,6,0,0,3776,3777,7,10,0,0,3777,644,1,0, - 0,0,3778,3779,7,11,0,0,3779,3780,7,6,0,0,3780,3781,7,10,0,0,3781, - 3782,7,4,0,0,3782,646,1,0,0,0,3783,3784,7,11,0,0,3784,3785,7,6,0, - 0,3785,3786,7,10,0,0,3786,3787,5,95,0,0,3787,3788,7,12,0,0,3788, - 3789,7,21,0,0,3789,3790,7,17,0,0,3790,3791,7,3,0,0,3791,3792,7,9, - 0,0,3792,3793,7,11,0,0,3793,648,1,0,0,0,3794,3795,7,11,0,0,3795, - 3796,7,21,0,0,3796,3797,7,12,0,0,3797,3798,7,12,0,0,3798,3799,7, - 19,0,0,3799,3800,7,12,0,0,3800,3801,7,16,0,0,3801,650,1,0,0,0,3802, - 3803,7,4,0,0,3803,3804,7,2,0,0,3804,3805,7,23,0,0,3805,3806,7,9, - 0,0,3806,3807,5,95,0,0,3807,3808,7,7,0,0,3808,3809,7,2,0,0,3809, - 3810,7,4,0,0,3810,3811,7,8,0,0,3811,652,1,0,0,0,3812,3813,7,4,0, - 0,3813,3814,7,2,0,0,3814,3815,7,23,0,0,3815,3816,7,9,0,0,3816,3817, - 5,95,0,0,3817,3818,7,6,0,0,3818,3819,7,23,0,0,3819,3820,7,23,0,0, - 3820,3821,7,4,0,0,3821,3822,7,9,0,0,3822,3823,7,8,0,0,3823,654,1, - 0,0,0,3824,3825,7,4,0,0,3825,3826,7,2,0,0,3826,3827,7,23,0,0,3827, - 3828,7,9,0,0,3828,3829,5,95,0,0,3829,3830,7,6,0,0,3830,3831,7,11, - 0,0,3831,3832,7,15,0,0,3832,3833,7,19,0,0,3833,3834,7,12,0,0,3834, - 3835,7,2,0,0,3835,3836,7,5,0,0,3836,656,1,0,0,0,3837,3838,7,4,0, - 0,3838,3839,7,2,0,0,3839,3840,7,8,0,0,3840,3841,7,21,0,0,3841,3842, - 7,11,0,0,3842,3843,7,15,0,0,3843,3844,7,2,0,0,3844,3845,7,13,0,0, - 3845,658,1,0,0,0,3846,3847,7,4,0,0,3847,3848,7,2,0,0,3848,3849,7, - 20,0,0,3849,3850,7,9,0,0,3850,3851,7,24,0,0,3851,3852,7,6,0,0,3852, - 3853,7,19,0,0,3853,3854,7,12,0,0,3854,3855,7,8,0,0,3855,660,1,0, - 0,0,3856,3857,7,4,0,0,3857,3858,7,7,0,0,3858,3859,7,2,0,0,3859,3860, - 7,5,0,0,3860,3861,7,2,0,0,3861,662,1,0,0,0,3862,3863,7,4,0,0,3863, - 3864,7,7,0,0,3864,3865,7,6,0,0,3865,3866,7,24,0,0,3866,3867,7,9, - 0,0,3867,664,1,0,0,0,3868,3869,7,4,0,0,3869,3870,7,7,0,0,3870,3871, - 7,11,0,0,3871,3872,7,6,0,0,3872,3873,7,5,0,0,3873,3874,7,5,0,0,3874, - 666,1,0,0,0,3875,3876,7,4,0,0,3876,3877,7,9,0,0,3877,3878,7,2,0, - 0,3878,3879,7,11,0,0,3879,3880,7,7,0,0,3880,3881,7,22,0,0,3881,668, - 1,0,0,0,3882,3883,7,4,0,0,3883,3884,7,9,0,0,3884,3885,7,7,0,0,3885, - 3886,7,6,0,0,3886,3887,7,12,0,0,3887,3888,7,15,0,0,3888,670,1,0, - 0,0,3889,3890,7,4,0,0,3890,3891,7,9,0,0,3891,3892,7,9,0,0,3892,3893, - 7,25,0,0,3893,672,1,0,0,0,3894,3895,7,4,0,0,3895,3896,7,9,0,0,3896, - 3897,7,5,0,0,3897,3898,7,9,0,0,3898,3899,7,7,0,0,3899,3900,7,8,0, - 0,3900,674,1,0,0,0,3901,3902,7,4,0,0,3902,3903,7,9,0,0,3903,3904, - 7,12,0,0,3904,3905,7,4,0,0,3905,3906,7,19,0,0,3906,3907,7,8,0,0, - 3907,3908,7,19,0,0,3908,3909,7,20,0,0,3909,3910,7,9,0,0,3910,676, - 1,0,0,0,3911,3912,7,4,0,0,3912,3913,7,9,0,0,3913,3914,7,24,0,0,3914, - 3915,7,2,0,0,3915,3916,7,11,0,0,3916,3917,7,2,0,0,3917,3918,7,8, - 0,0,3918,3919,7,6,0,0,3919,3920,7,11,0,0,3920,678,1,0,0,0,3921,3922, - 7,4,0,0,3922,3923,7,9,0,0,3923,3924,7,4,0,0,3924,3925,7,4,0,0,3925, - 3926,7,19,0,0,3926,3927,7,6,0,0,3927,3928,7,12,0,0,3928,3929,5,95, - 0,0,3929,3930,7,21,0,0,3930,3931,7,4,0,0,3931,3932,7,9,0,0,3932, - 3933,7,11,0,0,3933,680,1,0,0,0,3934,3935,7,4,0,0,3935,3936,7,9,0, - 0,3936,3937,7,8,0,0,3937,682,1,0,0,0,3938,3939,7,4,0,0,3939,3940, - 7,22,0,0,3940,3941,7,6,0,0,3941,3942,7,10,0,0,3942,684,1,0,0,0,3943, - 3944,7,4,0,0,3944,3945,7,19,0,0,3945,3946,7,17,0,0,3946,3947,7,19, - 0,0,3947,3948,7,5,0,0,3948,3949,7,2,0,0,3949,3950,7,11,0,0,3950, - 686,1,0,0,0,3951,3952,7,4,0,0,3952,3953,7,25,0,0,3953,3954,7,19, - 0,0,3954,3955,7,24,0,0,3955,688,1,0,0,0,3956,3957,7,4,0,0,3957,3958, - 7,17,0,0,3958,3959,7,2,0,0,3959,3960,7,5,0,0,3960,3961,7,5,0,0,3961, - 3962,7,19,0,0,3962,3963,7,12,0,0,3963,3964,7,8,0,0,3964,690,1,0, - 0,0,3965,3966,7,4,0,0,3966,3967,7,6,0,0,3967,3968,7,17,0,0,3968, - 3969,7,9,0,0,3969,692,1,0,0,0,3970,3971,7,4,0,0,3971,3972,7,24,0, - 0,3972,3973,7,9,0,0,3973,3974,7,7,0,0,3974,3975,7,19,0,0,3975,3976, - 7,23,0,0,3976,3977,7,19,0,0,3977,3978,7,7,0,0,3978,694,1,0,0,0,3979, - 3980,7,4,0,0,3980,3981,7,24,0,0,3981,3982,7,9,0,0,3982,3983,7,7, - 0,0,3983,3984,7,19,0,0,3984,3985,7,23,0,0,3985,3986,7,19,0,0,3986, - 3987,7,7,0,0,3987,3988,7,8,0,0,3988,3989,7,13,0,0,3989,3990,7,24, - 0,0,3990,3991,7,9,0,0,3991,696,1,0,0,0,3992,3993,7,4,0,0,3993,3994, - 7,26,0,0,3994,3995,7,5,0,0,3995,698,1,0,0,0,3996,3997,7,4,0,0,3997, - 3998,7,26,0,0,3998,3999,7,5,0,0,3999,4000,7,9,0,0,4000,4001,7,18, - 0,0,4001,4002,7,7,0,0,4002,4003,7,9,0,0,4003,4004,7,24,0,0,4004, - 4005,7,8,0,0,4005,4006,7,19,0,0,4006,4007,7,6,0,0,4007,4008,7,12, - 0,0,4008,700,1,0,0,0,4009,4010,7,4,0,0,4010,4011,7,26,0,0,4011,4012, - 7,5,0,0,4012,4013,7,4,0,0,4013,4014,7,8,0,0,4014,4015,7,2,0,0,4015, - 4016,7,8,0,0,4016,4017,7,9,0,0,4017,702,1,0,0,0,4018,4019,7,4,0, - 0,4019,4020,7,26,0,0,4020,4021,7,5,0,0,4021,4022,7,10,0,0,4022,4023, - 7,2,0,0,4023,4024,7,11,0,0,4024,4025,7,12,0,0,4025,4026,7,19,0,0, - 4026,4027,7,12,0,0,4027,4028,7,16,0,0,4028,704,1,0,0,0,4029,4030, - 7,4,0,0,4030,4031,7,26,0,0,4031,4032,7,11,0,0,4032,4033,7,8,0,0, - 4033,706,1,0,0,0,4034,4035,7,4,0,0,4035,4036,7,8,0,0,4036,4037,7, - 2,0,0,4037,4038,7,11,0,0,4038,4039,7,8,0,0,4039,708,1,0,0,0,4040, - 4041,7,4,0,0,4041,4042,7,8,0,0,4042,4043,7,2,0,0,4043,4044,7,8,0, - 0,4044,4045,7,9,0,0,4045,4046,7,17,0,0,4046,4047,7,9,0,0,4047,4048, - 7,12,0,0,4048,4049,7,8,0,0,4049,710,1,0,0,0,4050,4051,7,4,0,0,4051, - 4052,7,8,0,0,4052,4053,7,2,0,0,4053,4054,7,8,0,0,4054,4055,7,19, - 0,0,4055,4056,7,7,0,0,4056,712,1,0,0,0,4057,4058,7,4,0,0,4058,4059, - 7,8,0,0,4059,4060,7,2,0,0,4060,4061,7,8,0,0,4061,4062,7,19,0,0,4062, - 4063,7,4,0,0,4063,4064,7,8,0,0,4064,4065,7,19,0,0,4065,4066,7,7, - 0,0,4066,4067,7,4,0,0,4067,714,1,0,0,0,4068,4069,7,4,0,0,4069,4070, - 7,8,0,0,4070,4071,7,15,0,0,4071,4072,7,15,0,0,4072,4073,7,9,0,0, - 4073,4074,7,20,0,0,4074,4075,5,95,0,0,4075,4076,7,24,0,0,4076,4077, - 7,6,0,0,4077,4078,7,24,0,0,4078,716,1,0,0,0,4079,4080,7,4,0,0,4080, - 4081,7,8,0,0,4081,4082,7,15,0,0,4082,4083,7,15,0,0,4083,4084,7,9, - 0,0,4084,4085,7,20,0,0,4085,4086,5,95,0,0,4086,4087,7,4,0,0,4087, - 4088,7,2,0,0,4088,4089,7,17,0,0,4089,4090,7,24,0,0,4090,718,1,0, - 0,0,4091,4092,7,4,0,0,4092,4093,7,8,0,0,4093,4094,7,11,0,0,4094, - 4095,7,9,0,0,4095,4096,7,2,0,0,4096,4097,7,17,0,0,4097,720,1,0,0, - 0,4098,4099,7,4,0,0,4099,4100,7,8,0,0,4100,4101,7,11,0,0,4101,4102, - 7,19,0,0,4102,4103,7,12,0,0,4103,4104,7,16,0,0,4104,722,1,0,0,0, - 4105,4106,7,4,0,0,4106,4107,7,8,0,0,4107,4108,7,11,0,0,4108,4109, - 7,19,0,0,4109,4110,7,12,0,0,4110,4111,7,16,0,0,4111,4112,5,95,0, - 0,4112,4113,7,2,0,0,4113,4114,7,16,0,0,4114,4115,7,16,0,0,4115,724, - 1,0,0,0,4116,4117,7,4,0,0,4117,4118,7,21,0,0,4118,4119,7,3,0,0,4119, - 4120,7,17,0,0,4120,4121,7,21,0,0,4121,4122,7,5,0,0,4122,4123,7,8, - 0,0,4123,4124,7,19,0,0,4124,4125,7,4,0,0,4125,4126,7,9,0,0,4126, - 4127,7,8,0,0,4127,726,1,0,0,0,4128,4129,7,4,0,0,4129,4130,7,21,0, - 0,4130,4131,7,3,0,0,4131,4132,7,4,0,0,4132,4133,7,9,0,0,4133,4134, - 7,8,0,0,4134,728,1,0,0,0,4135,4136,7,4,0,0,4136,4137,7,21,0,0,4137, - 4138,7,3,0,0,4138,4139,7,4,0,0,4139,4140,7,8,0,0,4140,4141,7,11, - 0,0,4141,4142,7,19,0,0,4142,4143,7,12,0,0,4143,4144,7,16,0,0,4144, - 730,1,0,0,0,4145,4146,7,4,0,0,4146,4147,7,21,0,0,4147,4148,7,3,0, - 0,4148,4149,7,4,0,0,4149,4150,7,8,0,0,4150,4151,7,11,0,0,4151,4152, - 7,19,0,0,4152,4153,7,12,0,0,4153,4154,7,16,0,0,4154,4155,5,95,0, - 0,4155,4156,7,11,0,0,4156,4157,7,9,0,0,4157,4158,7,16,0,0,4158,4159, - 7,9,0,0,4159,4160,7,18,0,0,4160,732,1,0,0,0,4161,4162,7,4,0,0,4162, - 4163,7,21,0,0,4163,4164,7,7,0,0,4164,4165,7,7,0,0,4165,4166,7,9, - 0,0,4166,4167,7,9,0,0,4167,4168,7,15,0,0,4168,4169,7,4,0,0,4169, - 734,1,0,0,0,4170,4171,7,4,0,0,4171,4172,7,21,0,0,4172,4173,7,17, - 0,0,4173,736,1,0,0,0,4174,4175,7,4,0,0,4175,4176,7,21,0,0,4176,4177, - 7,12,0,0,4177,4178,7,15,0,0,4178,4179,7,2,0,0,4179,4180,7,13,0,0, - 4180,738,1,0,0,0,4181,4182,7,4,0,0,4182,4183,7,13,0,0,4183,4184, - 7,17,0,0,4184,4185,7,17,0,0,4185,4186,7,9,0,0,4186,4187,7,8,0,0, - 4187,4188,7,11,0,0,4188,4189,7,19,0,0,4189,4190,7,7,0,0,4190,740, - 1,0,0,0,4191,4192,7,4,0,0,4192,4193,7,13,0,0,4193,4194,7,4,0,0,4194, - 4195,7,8,0,0,4195,4196,7,9,0,0,4196,4197,7,17,0,0,4197,742,1,0,0, - 0,4198,4199,7,4,0,0,4199,4200,7,13,0,0,4200,4201,7,4,0,0,4201,4202, - 7,8,0,0,4202,4203,7,9,0,0,4203,4204,7,17,0,0,4204,4205,5,95,0,0, - 4205,4206,7,8,0,0,4206,4207,7,19,0,0,4207,4208,7,17,0,0,4208,4209, - 7,9,0,0,4209,744,1,0,0,0,4210,4211,7,4,0,0,4211,4212,7,13,0,0,4212, - 4213,7,4,0,0,4213,4214,7,8,0,0,4214,4215,7,9,0,0,4215,4216,7,17, - 0,0,4216,4217,5,95,0,0,4217,4218,7,21,0,0,4218,4219,7,4,0,0,4219, - 4220,7,9,0,0,4220,4221,7,11,0,0,4221,746,1,0,0,0,4222,4223,7,8,0, - 0,4223,4224,7,2,0,0,4224,4225,7,3,0,0,4225,4226,7,5,0,0,4226,4227, - 7,9,0,0,4227,748,1,0,0,0,4228,4229,7,8,0,0,4229,4230,7,2,0,0,4230, - 4231,7,3,0,0,4231,4232,7,5,0,0,4232,4233,7,9,0,0,4233,4234,7,4,0, - 0,4234,750,1,0,0,0,4235,4236,7,8,0,0,4236,4237,7,2,0,0,4237,4238, - 7,3,0,0,4238,4239,7,5,0,0,4239,4240,7,9,0,0,4240,4241,7,4,0,0,4241, - 4242,7,2,0,0,4242,4243,7,17,0,0,4243,4244,7,24,0,0,4244,4245,7,5, - 0,0,4245,4246,7,9,0,0,4246,752,1,0,0,0,4247,4248,7,8,0,0,4248,4249, - 7,22,0,0,4249,4250,7,9,0,0,4250,4251,7,12,0,0,4251,754,1,0,0,0,4252, - 4253,7,8,0,0,4253,4254,7,22,0,0,4254,4255,7,21,0,0,4255,4256,7,11, - 0,0,4256,4257,7,4,0,0,4257,4258,7,15,0,0,4258,4259,7,2,0,0,4259, - 4260,7,13,0,0,4260,756,1,0,0,0,4261,4262,7,8,0,0,4262,4263,7,19, - 0,0,4263,4264,7,17,0,0,4264,4265,7,9,0,0,4265,758,1,0,0,0,4266,4267, - 7,8,0,0,4267,4268,7,19,0,0,4268,4269,7,17,0,0,4269,4270,7,9,0,0, - 4270,4271,7,4,0,0,4271,4272,7,8,0,0,4272,4273,7,2,0,0,4273,4274, - 7,17,0,0,4274,4275,7,24,0,0,4275,760,1,0,0,0,4276,4277,7,8,0,0,4277, - 4278,7,19,0,0,4278,4279,7,17,0,0,4279,4280,7,9,0,0,4280,4281,7,4, - 0,0,4281,4282,7,8,0,0,4282,4283,7,2,0,0,4283,4284,7,17,0,0,4284, - 4285,7,24,0,0,4285,4286,5,95,0,0,4286,4287,7,15,0,0,4287,4288,7, - 19,0,0,4288,4289,7,23,0,0,4289,4290,7,23,0,0,4290,762,1,0,0,0,4291, - 4292,7,8,0,0,4292,4293,7,19,0,0,4293,4294,7,17,0,0,4294,4295,7,9, - 0,0,4295,4296,7,4,0,0,4296,4297,7,8,0,0,4297,4298,7,2,0,0,4298,4299, - 7,17,0,0,4299,4300,7,24,0,0,4300,4301,5,95,0,0,4301,4302,7,5,0,0, - 4302,4303,7,8,0,0,4303,4304,7,14,0,0,4304,764,1,0,0,0,4305,4306, - 7,8,0,0,4306,4307,7,19,0,0,4307,4308,7,17,0,0,4308,4309,7,9,0,0, - 4309,4310,7,4,0,0,4310,4311,7,8,0,0,4311,4312,7,2,0,0,4312,4313, - 7,17,0,0,4313,4314,7,24,0,0,4314,4315,5,95,0,0,4315,4316,7,8,0,0, - 4316,4317,7,11,0,0,4317,4318,7,21,0,0,4318,4319,7,12,0,0,4319,4320, - 7,7,0,0,4320,766,1,0,0,0,4321,4322,7,8,0,0,4322,4323,7,19,0,0,4323, - 4324,7,17,0,0,4324,4325,7,9,0,0,4325,4326,7,14,0,0,4326,4327,7,6, - 0,0,4327,4328,7,12,0,0,4328,4329,7,9,0,0,4329,4330,5,95,0,0,4330, - 4331,7,22,0,0,4331,4332,7,6,0,0,4332,4333,7,21,0,0,4333,4334,7,11, - 0,0,4334,768,1,0,0,0,4335,4336,7,8,0,0,4336,4337,7,19,0,0,4337,4338, - 7,17,0,0,4338,4339,7,9,0,0,4339,4340,7,14,0,0,4340,4341,7,6,0,0, - 4341,4342,7,12,0,0,4342,4343,7,9,0,0,4343,4344,5,95,0,0,4344,4345, - 7,17,0,0,4345,4346,7,19,0,0,4346,4347,7,12,0,0,4347,4348,7,21,0, - 0,4348,4349,7,8,0,0,4349,4350,7,9,0,0,4350,770,1,0,0,0,4351,4352, - 7,8,0,0,4352,4353,7,19,0,0,4353,4354,7,17,0,0,4354,4355,7,9,0,0, - 4355,4356,5,95,0,0,4356,4357,7,15,0,0,4357,4358,7,19,0,0,4358,4359, - 7,23,0,0,4359,4360,7,23,0,0,4360,772,1,0,0,0,4361,4362,7,8,0,0,4362, - 4363,7,19,0,0,4363,4364,7,17,0,0,4364,4365,7,9,0,0,4365,4366,5,95, - 0,0,4366,4367,7,8,0,0,4367,4368,7,11,0,0,4368,4369,7,21,0,0,4369, - 4370,7,12,0,0,4370,4371,7,7,0,0,4371,774,1,0,0,0,4372,4373,7,8,0, - 0,4373,4374,7,19,0,0,4374,4375,7,12,0,0,4375,4376,7,13,0,0,4376, - 4377,7,19,0,0,4377,4378,7,12,0,0,4378,4379,7,8,0,0,4379,776,1,0, - 0,0,4380,4381,7,8,0,0,4381,4382,7,6,0,0,4382,778,1,0,0,0,4383,4384, - 7,8,0,0,4384,4385,7,11,0,0,4385,4386,7,2,0,0,4386,4387,7,19,0,0, - 4387,4388,7,5,0,0,4388,4389,7,19,0,0,4389,4390,7,12,0,0,4390,4391, - 7,16,0,0,4391,780,1,0,0,0,4392,4393,7,8,0,0,4393,4394,7,11,0,0,4394, - 4395,7,2,0,0,4395,4396,7,12,0,0,4396,4397,7,4,0,0,4397,4398,7,5, - 0,0,4398,4399,7,2,0,0,4399,4400,7,8,0,0,4400,4401,7,9,0,0,4401,782, - 1,0,0,0,4402,4403,7,8,0,0,4403,4404,7,11,0,0,4404,4405,7,2,0,0,4405, - 4406,7,12,0,0,4406,4407,7,4,0,0,4407,4408,7,5,0,0,4408,4409,7,2, - 0,0,4409,4410,7,8,0,0,4410,4411,7,9,0,0,4411,4412,5,95,0,0,4412, - 4413,7,11,0,0,4413,4414,7,9,0,0,4414,4415,7,16,0,0,4415,4416,7,9, - 0,0,4416,4417,7,18,0,0,4417,784,1,0,0,0,4418,4419,7,8,0,0,4419,4420, - 7,11,0,0,4420,4421,7,2,0,0,4421,4422,7,12,0,0,4422,4423,7,4,0,0, - 4423,4424,7,5,0,0,4424,4425,7,2,0,0,4425,4426,7,8,0,0,4426,4427, - 7,19,0,0,4427,4428,7,6,0,0,4428,4429,7,12,0,0,4429,786,1,0,0,0,4430, - 4431,7,8,0,0,4431,4432,7,11,0,0,4432,4433,7,9,0,0,4433,4434,7,2, - 0,0,4434,4435,7,8,0,0,4435,788,1,0,0,0,4436,4437,7,8,0,0,4437,4438, - 7,11,0,0,4438,4439,7,19,0,0,4439,4440,7,16,0,0,4440,4441,7,16,0, - 0,4441,4442,7,9,0,0,4442,4443,7,11,0,0,4443,790,1,0,0,0,4444,4445, - 7,8,0,0,4445,4446,7,11,0,0,4446,4447,7,19,0,0,4447,4448,7,17,0,0, - 4448,792,1,0,0,0,4449,4450,7,8,0,0,4450,4451,7,11,0,0,4451,4452, - 7,19,0,0,4452,4453,7,17,0,0,4453,4454,5,95,0,0,4454,4455,7,2,0,0, - 4455,4456,7,11,0,0,4456,4457,7,11,0,0,4457,4458,7,2,0,0,4458,4459, - 7,13,0,0,4459,794,1,0,0,0,4460,4461,7,8,0,0,4461,4462,7,11,0,0,4462, - 4463,7,21,0,0,4463,4464,7,9,0,0,4464,796,1,0,0,0,4465,4466,7,8,0, - 0,4466,4467,7,11,0,0,4467,4468,7,21,0,0,4468,4469,7,12,0,0,4469, - 4470,7,7,0,0,4470,4471,7,2,0,0,4471,4472,7,8,0,0,4472,4473,7,9,0, - 0,4473,798,1,0,0,0,4474,4475,7,8,0,0,4475,4476,7,11,0,0,4476,4477, - 7,13,0,0,4477,4478,5,95,0,0,4478,4479,7,7,0,0,4479,4480,7,2,0,0, - 4480,4481,7,4,0,0,4481,4482,7,8,0,0,4482,800,1,0,0,0,4483,4484,7, - 8,0,0,4484,4485,7,21,0,0,4485,4486,7,9,0,0,4486,4487,7,4,0,0,4487, - 4488,7,15,0,0,4488,4489,7,2,0,0,4489,4490,7,13,0,0,4490,802,1,0, - 0,0,4491,4492,7,21,0,0,4492,4493,7,9,0,0,4493,4494,7,4,0,0,4494, - 4495,7,7,0,0,4495,4496,7,2,0,0,4496,4497,7,24,0,0,4497,4498,7,9, - 0,0,4498,804,1,0,0,0,4499,4500,7,21,0,0,4500,4501,7,12,0,0,4501, - 4502,7,19,0,0,4502,4503,7,6,0,0,4503,4504,7,12,0,0,4504,806,1,0, - 0,0,4505,4506,7,21,0,0,4506,4507,7,12,0,0,4507,4508,7,19,0,0,4508, - 4509,7,26,0,0,4509,4510,7,21,0,0,4510,4511,7,9,0,0,4511,808,1,0, - 0,0,4512,4513,7,21,0,0,4513,4514,7,12,0,0,4514,4515,7,25,0,0,4515, - 4516,7,12,0,0,4516,4517,7,6,0,0,4517,4518,7,10,0,0,4518,4519,7,12, - 0,0,4519,810,1,0,0,0,4520,4521,7,21,0,0,4521,4522,7,12,0,0,4522, - 4523,7,12,0,0,4523,4524,7,9,0,0,4524,4525,7,4,0,0,4525,4526,7,8, - 0,0,4526,812,1,0,0,0,4527,4528,7,21,0,0,4528,4529,7,12,0,0,4529, - 4530,7,24,0,0,4530,4531,7,19,0,0,4531,4532,7,20,0,0,4532,4533,7, - 6,0,0,4533,4534,7,8,0,0,4534,814,1,0,0,0,4535,4536,7,21,0,0,4536, - 4537,7,24,0,0,4537,4538,7,15,0,0,4538,4539,7,2,0,0,4539,4540,7,8, - 0,0,4540,4541,7,9,0,0,4541,816,1,0,0,0,4542,4543,7,21,0,0,4543,4544, - 7,24,0,0,4544,4545,7,24,0,0,4545,4546,7,9,0,0,4546,4547,7,11,0,0, - 4547,818,1,0,0,0,4548,4549,7,21,0,0,4549,4550,7,24,0,0,4550,4551, - 7,4,0,0,4551,4552,7,9,0,0,4552,4553,7,11,0,0,4553,4554,7,8,0,0,4554, - 820,1,0,0,0,4555,4556,7,21,0,0,4556,4557,7,4,0,0,4557,4558,7,9,0, - 0,4558,822,1,0,0,0,4559,4560,7,21,0,0,4560,4561,7,4,0,0,4561,4562, - 7,9,0,0,4562,4563,7,11,0,0,4563,824,1,0,0,0,4564,4565,7,21,0,0,4565, - 4566,7,4,0,0,4566,4567,7,19,0,0,4567,4568,7,12,0,0,4568,4569,7,16, - 0,0,4569,826,1,0,0,0,4570,4571,7,20,0,0,4571,4572,7,2,0,0,4572,4573, - 7,5,0,0,4573,4574,7,21,0,0,4574,4575,7,9,0,0,4575,828,1,0,0,0,4576, - 4577,7,20,0,0,4577,4578,7,2,0,0,4578,4579,7,5,0,0,4579,4580,7,21, - 0,0,4580,4581,7,9,0,0,4581,4582,7,4,0,0,4582,830,1,0,0,0,4583,4584, - 7,20,0,0,4584,4585,7,2,0,0,4585,4586,7,5,0,0,4586,4587,7,21,0,0, - 4587,4588,7,9,0,0,4588,4589,5,95,0,0,4589,4590,7,6,0,0,4590,4591, - 7,23,0,0,4591,832,1,0,0,0,4592,4593,7,20,0,0,4593,4594,7,2,0,0,4594, - 4595,7,11,0,0,4595,4596,7,3,0,0,4596,4597,7,19,0,0,4597,4598,7,12, - 0,0,4598,4599,7,2,0,0,4599,4600,7,11,0,0,4600,4601,7,13,0,0,4601, - 834,1,0,0,0,4602,4603,7,20,0,0,4603,4604,7,2,0,0,4604,4605,7,11, - 0,0,4605,4606,7,7,0,0,4606,4607,7,22,0,0,4607,4608,7,2,0,0,4608, - 4609,7,11,0,0,4609,836,1,0,0,0,4610,4611,7,20,0,0,4611,4612,7,2, - 0,0,4612,4613,7,11,0,0,4613,4614,7,13,0,0,4614,4615,7,19,0,0,4615, - 4616,7,12,0,0,4616,4617,7,16,0,0,4617,838,1,0,0,0,4618,4619,7,20, - 0,0,4619,4620,7,2,0,0,4620,4621,7,11,0,0,4621,4622,5,95,0,0,4622, - 4623,7,24,0,0,4623,4624,7,6,0,0,4624,4625,7,24,0,0,4625,840,1,0, - 0,0,4626,4627,7,20,0,0,4627,4628,7,2,0,0,4628,4629,7,11,0,0,4629, - 4630,5,95,0,0,4630,4631,7,4,0,0,4631,4632,7,2,0,0,4632,4633,7,17, - 0,0,4633,4634,7,24,0,0,4634,842,1,0,0,0,4635,4636,7,20,0,0,4636, - 4637,7,9,0,0,4637,4638,7,11,0,0,4638,4639,7,4,0,0,4639,4640,7,19, - 0,0,4640,4641,7,6,0,0,4641,4642,7,12,0,0,4642,4643,7,19,0,0,4643, - 4644,7,12,0,0,4644,4645,7,16,0,0,4645,844,1,0,0,0,4646,4647,7,20, - 0,0,4647,4648,7,19,0,0,4648,4649,7,9,0,0,4649,4650,7,10,0,0,4650, - 4651,7,4,0,0,4651,846,1,0,0,0,4652,4653,7,20,0,0,4653,4654,7,19, - 0,0,4654,4655,7,11,0,0,4655,4656,7,8,0,0,4656,4657,7,21,0,0,4657, - 4658,7,2,0,0,4658,4659,7,5,0,0,4659,848,1,0,0,0,4660,4661,7,10,0, - 0,4661,4662,7,2,0,0,4662,4663,7,8,0,0,4663,4664,7,9,0,0,4664,4665, - 7,11,0,0,4665,4666,7,17,0,0,4666,4667,7,2,0,0,4667,4668,7,11,0,0, - 4668,4669,7,25,0,0,4669,850,1,0,0,0,4670,4671,7,10,0,0,4671,4672, - 7,2,0,0,4672,4673,7,8,0,0,4673,4674,7,9,0,0,4674,4675,7,11,0,0,4675, - 4676,7,17,0,0,4676,4677,7,2,0,0,4677,4678,7,11,0,0,4678,4679,7,25, - 0,0,4679,4680,7,4,0,0,4680,852,1,0,0,0,4681,4682,7,10,0,0,4682,4683, - 7,9,0,0,4683,4684,7,15,0,0,4684,4685,7,12,0,0,4685,4686,7,9,0,0, - 4686,4687,7,4,0,0,4687,4688,7,15,0,0,4688,4689,7,2,0,0,4689,4690, - 7,13,0,0,4690,854,1,0,0,0,4691,4692,7,10,0,0,4692,4693,7,9,0,0,4693, - 4694,7,9,0,0,4694,4695,7,25,0,0,4695,4696,7,4,0,0,4696,856,1,0,0, - 0,4697,4698,7,10,0,0,4698,4699,7,22,0,0,4699,4700,7,9,0,0,4700,4701, - 7,12,0,0,4701,858,1,0,0,0,4702,4703,7,10,0,0,4703,4704,7,22,0,0, - 4704,4705,7,9,0,0,4705,4706,7,12,0,0,4706,4707,7,9,0,0,4707,4708, - 7,20,0,0,4708,4709,7,9,0,0,4709,4710,7,11,0,0,4710,860,1,0,0,0,4711, - 4712,7,10,0,0,4712,4713,7,22,0,0,4713,4714,7,9,0,0,4714,4715,7,11, - 0,0,4715,4716,7,9,0,0,4716,862,1,0,0,0,4717,4718,7,10,0,0,4718,4719, - 7,19,0,0,4719,4720,7,15,0,0,4720,4721,7,8,0,0,4721,4722,7,22,0,0, - 4722,4723,5,95,0,0,4723,4724,7,3,0,0,4724,4725,7,21,0,0,4725,4726, - 7,7,0,0,4726,4727,7,25,0,0,4727,4728,7,9,0,0,4728,4729,7,8,0,0,4729, - 864,1,0,0,0,4730,4731,7,10,0,0,4731,4732,7,19,0,0,4732,4733,7,12, - 0,0,4733,4734,7,15,0,0,4734,4735,7,6,0,0,4735,4736,7,10,0,0,4736, - 866,1,0,0,0,4737,4738,7,10,0,0,4738,4739,7,19,0,0,4739,4740,7,8, - 0,0,4740,4741,7,22,0,0,4741,868,1,0,0,0,4742,4743,7,10,0,0,4743, - 4744,7,19,0,0,4744,4745,7,8,0,0,4745,4746,7,22,0,0,4746,4747,7,19, - 0,0,4747,4748,7,12,0,0,4748,870,1,0,0,0,4749,4750,7,10,0,0,4750, - 4751,7,19,0,0,4751,4752,7,8,0,0,4752,4753,7,22,0,0,4753,4754,7,6, - 0,0,4754,4755,7,21,0,0,4755,4756,7,8,0,0,4756,872,1,0,0,0,4757,4758, - 7,13,0,0,4758,4759,7,9,0,0,4759,4760,7,2,0,0,4760,4761,7,11,0,0, - 4761,874,1,0,0,0,4762,4763,7,2,0,0,4763,4764,7,15,0,0,4764,4765, - 7,15,0,0,4765,876,1,0,0,0,4766,4767,7,2,0,0,4767,4768,7,23,0,0,4768, - 4769,7,8,0,0,4769,4770,7,9,0,0,4770,4771,7,11,0,0,4771,878,1,0,0, - 0,4772,4773,7,2,0,0,4773,4774,7,4,0,0,4774,4775,7,7,0,0,4775,880, - 1,0,0,0,4776,4777,7,7,0,0,4777,4778,7,2,0,0,4778,4779,7,4,0,0,4779, - 4780,7,7,0,0,4780,4781,7,2,0,0,4781,4782,7,15,0,0,4782,4783,7,9, - 0,0,4783,882,1,0,0,0,4784,4785,7,7,0,0,4785,4786,7,2,0,0,4786,4787, - 7,8,0,0,4787,4788,7,2,0,0,4788,4789,7,5,0,0,4789,4790,7,6,0,0,4790, - 4791,7,16,0,0,4791,884,1,0,0,0,4792,4793,7,7,0,0,4793,4794,7,9,0, - 0,4794,4795,7,12,0,0,4795,4796,7,8,0,0,4796,4797,7,21,0,0,4797,4798, - 7,11,0,0,4798,4799,7,13,0,0,4799,886,1,0,0,0,4800,4801,7,7,0,0,4801, - 4802,7,6,0,0,4802,4803,7,12,0,0,4803,4804,7,23,0,0,4804,4805,7,19, - 0,0,4805,4806,7,16,0,0,4806,888,1,0,0,0,4807,4808,7,7,0,0,4808,4809, - 7,6,0,0,4809,4810,7,12,0,0,4810,4811,7,4,0,0,4811,4812,7,8,0,0,4812, - 4813,7,11,0,0,4813,4814,7,2,0,0,4814,4815,7,19,0,0,4815,4816,7,12, - 0,0,4816,4817,7,8,0,0,4817,4818,7,4,0,0,4818,890,1,0,0,0,4819,4820, - 7,7,0,0,4820,4821,7,21,0,0,4821,4822,7,17,0,0,4822,4823,7,21,0,0, - 4823,4824,7,5,0,0,4824,4825,7,2,0,0,4825,4826,7,8,0,0,4826,4827, - 7,9,0,0,4827,892,1,0,0,0,4828,4829,7,15,0,0,4829,4830,7,2,0,0,4830, - 4831,7,8,0,0,4831,4832,7,2,0,0,4832,894,1,0,0,0,4833,4834,7,15,0, - 0,4834,4835,7,2,0,0,4835,4836,7,8,0,0,4836,4837,7,2,0,0,4837,4838, - 7,3,0,0,4838,4839,7,2,0,0,4839,4840,7,4,0,0,4840,4841,7,9,0,0,4841, - 896,1,0,0,0,4842,4843,7,15,0,0,4843,4844,7,2,0,0,4844,4845,7,13, - 0,0,4845,4846,7,4,0,0,4846,898,1,0,0,0,4847,4848,7,15,0,0,4848,4849, - 7,9,0,0,4849,4850,7,7,0,0,4850,4851,7,2,0,0,4851,4852,7,15,0,0,4852, - 4853,7,9,0,0,4853,900,1,0,0,0,4854,4855,7,15,0,0,4855,4856,7,9,0, - 0,4856,4857,7,4,0,0,4857,4858,7,7,0,0,4858,902,1,0,0,0,4859,4860, - 7,15,0,0,4860,4861,7,9,0,0,4861,4862,7,4,0,0,4862,4863,7,7,0,0,4863, - 4864,7,11,0,0,4864,4865,7,19,0,0,4865,4866,7,24,0,0,4866,4867,7, - 8,0,0,4867,4868,7,6,0,0,4868,4869,7,11,0,0,4869,904,1,0,0,0,4870, - 4871,7,15,0,0,4871,4872,7,19,0,0,4872,4873,7,20,0,0,4873,906,1,0, - 0,0,4874,4875,7,9,0,0,4875,4876,7,12,0,0,4876,4877,7,16,0,0,4877, - 4878,7,19,0,0,4878,4879,7,12,0,0,4879,4880,7,9,0,0,4880,908,1,0, - 0,0,4881,4882,7,9,0,0,4882,4883,7,24,0,0,4883,4884,7,6,0,0,4884, - 4885,7,7,0,0,4885,4886,7,22,0,0,4886,910,1,0,0,0,4887,4888,7,9,0, - 0,4888,4889,7,18,0,0,4889,4890,7,7,0,0,4890,4891,7,5,0,0,4891,4892, - 7,21,0,0,4892,4893,7,15,0,0,4893,4894,7,19,0,0,4894,4895,7,12,0, - 0,4895,4896,7,16,0,0,4896,912,1,0,0,0,4897,4898,7,23,0,0,4898,4899, - 7,19,0,0,4899,4900,7,5,0,0,4900,4901,7,9,0,0,4901,914,1,0,0,0,4902, - 4903,7,23,0,0,4903,4904,7,19,0,0,4904,4905,7,11,0,0,4905,4906,7, - 4,0,0,4906,4907,7,8,0,0,4907,916,1,0,0,0,4908,4909,7,16,0,0,4909, - 4910,7,9,0,0,4910,4911,7,12,0,0,4911,4912,7,9,0,0,4912,4913,7,11, - 0,0,4913,4914,7,2,0,0,4914,4915,7,8,0,0,4915,4916,7,9,0,0,4916,4917, - 7,15,0,0,4917,918,1,0,0,0,4918,4919,7,22,0,0,4919,4920,7,6,0,0,4920, - 4921,7,24,0,0,4921,920,1,0,0,0,4922,4923,7,22,0,0,4923,4924,7,6, - 0,0,4924,4925,7,21,0,0,4925,4926,7,11,0,0,4926,4927,7,4,0,0,4927, - 922,1,0,0,0,4928,4929,7,19,0,0,4929,4930,7,16,0,0,4930,4931,7,12, - 0,0,4931,4932,7,6,0,0,4932,4933,7,11,0,0,4933,4934,7,9,0,0,4934, - 924,1,0,0,0,4935,4936,7,19,0,0,4936,4937,7,12,0,0,4937,4938,7,7, - 0,0,4938,4939,7,5,0,0,4939,4940,7,21,0,0,4940,4941,7,15,0,0,4941, - 4942,7,19,0,0,4942,4943,7,12,0,0,4943,4944,7,16,0,0,4944,926,1,0, - 0,0,4945,4946,7,27,0,0,4946,4947,7,2,0,0,4947,4948,7,11,0,0,4948, - 928,1,0,0,0,4949,4950,7,27,0,0,4950,4951,7,2,0,0,4951,4952,7,11, - 0,0,4952,4953,7,4,0,0,4953,930,1,0,0,0,4954,4955,7,27,0,0,4955,4956, - 7,2,0,0,4956,4957,7,20,0,0,4957,4958,7,2,0,0,4958,932,1,0,0,0,4959, - 4960,7,25,0,0,4960,4961,7,9,0,0,4961,4962,7,13,0,0,4962,934,1,0, - 0,0,4963,4964,7,5,0,0,4964,4965,7,2,0,0,4965,4966,7,4,0,0,4966,4967, - 7,8,0,0,4967,936,1,0,0,0,4968,4969,7,5,0,0,4969,4970,7,6,0,0,4970, - 4971,7,2,0,0,4971,4972,7,15,0,0,4972,938,1,0,0,0,4973,4974,7,17, - 0,0,4974,4975,7,2,0,0,4975,4976,7,24,0,0,4976,940,1,0,0,0,4977,4978, - 7,17,0,0,4978,4979,7,19,0,0,4979,4980,7,7,0,0,4980,4981,7,11,0,0, - 4981,4982,7,6,0,0,4982,4983,7,4,0,0,4983,4984,7,9,0,0,4984,4985, - 7,7,0,0,4985,4986,7,6,0,0,4986,4987,7,12,0,0,4987,4988,7,15,0,0, - 4988,942,1,0,0,0,4989,4990,7,17,0,0,4990,4991,7,19,0,0,4991,4992, - 7,5,0,0,4992,4993,7,5,0,0,4993,4994,7,9,0,0,4994,4995,7,12,0,0,4995, - 4996,7,12,0,0,4996,4997,7,19,0,0,4997,4998,7,21,0,0,4998,4999,7, - 17,0,0,4999,944,1,0,0,0,5000,5001,7,17,0,0,5001,5002,7,19,0,0,5002, - 5003,7,5,0,0,5003,5004,7,5,0,0,5004,5005,7,19,0,0,5005,5006,7,4, - 0,0,5006,5007,7,9,0,0,5007,5008,7,7,0,0,5008,5009,7,6,0,0,5009,5010, - 7,12,0,0,5010,5011,7,15,0,0,5011,946,1,0,0,0,5012,5013,7,17,0,0, - 5013,5014,7,19,0,0,5014,5015,7,12,0,0,5015,5016,7,21,0,0,5016,5017, - 7,8,0,0,5017,5018,7,9,0,0,5018,5019,7,4,0,0,5019,948,1,0,0,0,5020, - 5021,7,17,0,0,5021,5022,7,6,0,0,5022,5023,7,12,0,0,5023,5024,7,8, - 0,0,5024,5025,7,22,0,0,5025,5026,7,4,0,0,5026,950,1,0,0,0,5027,5028, - 7,12,0,0,5028,5029,7,2,0,0,5029,5030,7,12,0,0,5030,5031,7,6,0,0, - 5031,5032,7,4,0,0,5032,5033,7,9,0,0,5033,5034,7,7,0,0,5034,5035, - 7,6,0,0,5035,5036,7,12,0,0,5036,5037,7,15,0,0,5037,952,1,0,0,0,5038, - 5039,7,12,0,0,5039,5040,7,21,0,0,5040,5041,7,5,0,0,5041,5042,7,5, - 0,0,5042,5043,7,4,0,0,5043,954,1,0,0,0,5044,5045,7,6,0,0,5045,5046, - 7,24,0,0,5046,5047,7,8,0,0,5047,5048,7,19,0,0,5048,5049,7,6,0,0, - 5049,5050,7,12,0,0,5050,5051,7,4,0,0,5051,956,1,0,0,0,5052,5053, - 7,24,0,0,5053,5054,7,2,0,0,5054,5055,7,4,0,0,5055,5056,7,8,0,0,5056, - 958,1,0,0,0,5057,5058,7,24,0,0,5058,5059,7,5,0,0,5059,5060,7,2,0, - 0,5060,5061,7,12,0,0,5061,960,1,0,0,0,5062,5063,7,24,0,0,5063,5064, - 7,11,0,0,5064,5065,7,9,0,0,5065,5066,7,7,0,0,5066,5067,7,9,0,0,5067, - 5068,7,15,0,0,5068,5069,7,19,0,0,5069,5070,7,12,0,0,5070,5071,7, - 16,0,0,5071,962,1,0,0,0,5072,5073,7,24,0,0,5073,5074,7,13,0,0,5074, - 5075,7,8,0,0,5075,5076,7,22,0,0,5076,5077,7,6,0,0,5077,5078,7,12, - 0,0,5078,964,1,0,0,0,5079,5080,7,24,0,0,5080,5081,7,13,0,0,5081, - 5082,7,8,0,0,5082,5083,7,22,0,0,5083,5084,7,6,0,0,5084,5085,7,12, - 0,0,5085,5086,5,95,0,0,5086,5087,7,2,0,0,5087,5088,7,11,0,0,5088, - 5089,7,7,0,0,5089,5090,7,22,0,0,5090,5091,7,19,0,0,5091,5092,7,20, - 0,0,5092,5093,7,9,0,0,5093,5094,7,4,0,0,5094,966,1,0,0,0,5095,5096, - 7,24,0,0,5096,5097,7,13,0,0,5097,5098,7,8,0,0,5098,5099,7,22,0,0, - 5099,5100,7,6,0,0,5100,5101,7,12,0,0,5101,5102,5,95,0,0,5102,5103, - 7,15,0,0,5103,5104,7,9,0,0,5104,5105,7,24,0,0,5105,5106,7,9,0,0, - 5106,5107,7,12,0,0,5107,5108,7,15,0,0,5108,5109,7,9,0,0,5109,5110, - 7,12,0,0,5110,5111,7,7,0,0,5111,5112,7,19,0,0,5112,5113,7,9,0,0, - 5113,5114,7,4,0,0,5114,968,1,0,0,0,5115,5116,7,24,0,0,5116,5117, - 7,13,0,0,5117,5118,7,8,0,0,5118,5119,7,22,0,0,5119,5120,7,6,0,0, - 5120,5121,7,12,0,0,5121,5122,5,95,0,0,5122,5123,7,23,0,0,5123,5124, - 7,19,0,0,5124,5125,7,5,0,0,5125,5126,7,9,0,0,5126,5127,7,4,0,0,5127, - 970,1,0,0,0,5128,5129,7,24,0,0,5129,5130,7,13,0,0,5130,5131,7,8, - 0,0,5131,5132,7,22,0,0,5132,5133,7,6,0,0,5133,5134,7,12,0,0,5134, - 5135,5,95,0,0,5135,5136,7,27,0,0,5136,5137,7,2,0,0,5137,5138,7,11, - 0,0,5138,972,1,0,0,0,5139,5140,7,24,0,0,5140,5141,7,13,0,0,5141, - 5142,7,8,0,0,5142,5143,7,22,0,0,5143,5144,7,6,0,0,5144,5145,7,12, - 0,0,5145,5146,5,95,0,0,5146,5147,7,24,0,0,5147,5148,7,2,0,0,5148, - 5149,7,11,0,0,5149,5150,7,2,0,0,5150,5151,7,17,0,0,5151,5152,7,9, - 0,0,5152,5153,7,8,0,0,5153,5154,7,9,0,0,5154,5155,7,11,0,0,5155, - 974,1,0,0,0,5156,5157,7,24,0,0,5157,5158,7,13,0,0,5158,5159,7,8, - 0,0,5159,5160,7,22,0,0,5160,5161,7,6,0,0,5161,5162,7,12,0,0,5162, - 5163,5,95,0,0,5163,5164,7,11,0,0,5164,5165,7,9,0,0,5165,5166,7,26, - 0,0,5166,5167,7,21,0,0,5167,5168,7,19,0,0,5168,5169,7,11,0,0,5169, - 5170,7,9,0,0,5170,5171,7,17,0,0,5171,5172,7,9,0,0,5172,5173,7,12, - 0,0,5173,5174,7,8,0,0,5174,5175,7,4,0,0,5175,976,1,0,0,0,5176,5177, - 7,26,0,0,5177,5178,7,21,0,0,5178,5179,7,2,0,0,5179,5180,7,11,0,0, - 5180,5181,7,8,0,0,5181,5182,7,9,0,0,5182,5183,7,11,0,0,5183,978, - 1,0,0,0,5184,5185,7,11,0,0,5185,5186,7,9,0,0,5186,5187,7,17,0,0, - 5187,5188,7,6,0,0,5188,5189,7,20,0,0,5189,5190,7,9,0,0,5190,980, - 1,0,0,0,5191,5192,7,11,0,0,5192,5193,7,9,0,0,5193,5194,7,4,0,0,5194, - 5195,7,8,0,0,5195,5196,7,11,0,0,5196,5197,7,19,0,0,5197,5198,7,7, - 0,0,5198,5199,7,8,0,0,5199,982,1,0,0,0,5200,5201,7,4,0,0,5201,5202, - 7,9,0,0,5202,5203,7,7,0,0,5203,5204,7,6,0,0,5204,5205,7,12,0,0,5205, - 5206,7,15,0,0,5206,5207,7,4,0,0,5207,984,1,0,0,0,5208,5209,7,4,0, - 0,5209,5210,7,9,0,0,5210,5211,7,4,0,0,5211,5212,7,4,0,0,5212,5213, - 7,19,0,0,5213,5214,7,6,0,0,5214,5215,7,12,0,0,5215,986,1,0,0,0,5216, - 5217,7,4,0,0,5217,5218,7,9,0,0,5218,5219,7,8,0,0,5219,5220,7,4,0, - 0,5220,988,1,0,0,0,5221,5222,7,4,0,0,5222,5223,7,19,0,0,5223,5224, - 7,14,0,0,5224,5225,7,9,0,0,5225,990,1,0,0,0,5226,5227,7,4,0,0,5227, - 5228,7,5,0,0,5228,5229,7,19,0,0,5229,5230,7,15,0,0,5230,5231,7,9, - 0,0,5231,992,1,0,0,0,5232,5233,7,4,0,0,5233,5234,7,8,0,0,5234,5235, - 7,9,0,0,5235,5236,7,24,0,0,5236,994,1,0,0,0,5237,5238,7,8,0,0,5238, - 5239,7,9,0,0,5239,5240,7,17,0,0,5240,5241,7,24,0,0,5241,5242,7,6, - 0,0,5242,5243,7,11,0,0,5243,5244,7,2,0,0,5244,5245,7,11,0,0,5245, - 5246,7,13,0,0,5246,996,1,0,0,0,5247,5248,7,8,0,0,5248,5249,7,19, - 0,0,5249,5250,7,17,0,0,5250,5251,7,9,0,0,5251,5252,7,7,0,0,5252, - 5253,7,6,0,0,5253,5254,7,5,0,0,5254,998,1,0,0,0,5255,5256,7,8,0, - 0,5256,5257,7,21,0,0,5257,5258,7,17,0,0,5258,5259,7,3,0,0,5259,5260, - 7,5,0,0,5260,5261,7,9,0,0,5261,1000,1,0,0,0,5262,5263,7,21,0,0,5263, - 5264,7,12,0,0,5264,5265,7,5,0,0,5265,5266,7,6,0,0,5266,5267,7,2, - 0,0,5267,5268,7,15,0,0,5268,1002,1,0,0,0,5269,5270,7,20,0,0,5270, - 5271,7,19,0,0,5271,5272,7,9,0,0,5272,5273,7,10,0,0,5273,1004,1,0, - 0,0,5274,5275,7,10,0,0,5275,5276,7,9,0,0,5276,5277,7,9,0,0,5277, - 5278,7,25,0,0,5278,1006,1,0,0,0,5279,5280,7,13,0,0,5280,5281,7,9, - 0,0,5281,5282,7,2,0,0,5282,5283,7,11,0,0,5283,5284,7,4,0,0,5284, - 1008,1,0,0,0,5285,5286,7,14,0,0,5286,5287,7,6,0,0,5287,5288,7,12, - 0,0,5288,5289,7,9,0,0,5289,1010,1,0,0,0,5290,5291,5,61,0,0,5291, - 1012,1,0,0,0,5292,5293,5,62,0,0,5293,1014,1,0,0,0,5294,5295,5,60, - 0,0,5295,1016,1,0,0,0,5296,5297,5,33,0,0,5297,1018,1,0,0,0,5298, - 5299,5,126,0,0,5299,1020,1,0,0,0,5300,5301,5,124,0,0,5301,1022,1, - 0,0,0,5302,5303,5,38,0,0,5303,1024,1,0,0,0,5304,5305,5,94,0,0,5305, - 1026,1,0,0,0,5306,5307,5,46,0,0,5307,1028,1,0,0,0,5308,5309,5,91, - 0,0,5309,1030,1,0,0,0,5310,5311,5,93,0,0,5311,1032,1,0,0,0,5312, - 5313,5,40,0,0,5313,1034,1,0,0,0,5314,5315,5,41,0,0,5315,1036,1,0, - 0,0,5316,5317,5,123,0,0,5317,1038,1,0,0,0,5318,5319,5,125,0,0,5319, - 1040,1,0,0,0,5320,5321,5,44,0,0,5321,1042,1,0,0,0,5322,5323,5,59, - 0,0,5323,1044,1,0,0,0,5324,5325,5,64,0,0,5325,1046,1,0,0,0,5326, - 5327,5,39,0,0,5327,1048,1,0,0,0,5328,5329,5,34,0,0,5329,1050,1,0, - 0,0,5330,5331,5,96,0,0,5331,1052,1,0,0,0,5332,5333,5,58,0,0,5333, - 1054,1,0,0,0,5334,5335,5,42,0,0,5335,1056,1,0,0,0,5336,5337,5,95, - 0,0,5337,1058,1,0,0,0,5338,5339,5,45,0,0,5339,1060,1,0,0,0,5340, - 5341,5,43,0,0,5341,1062,1,0,0,0,5342,5343,5,37,0,0,5343,1064,1,0, - 0,0,5344,5345,5,124,0,0,5345,5346,5,124,0,0,5346,1066,1,0,0,0,5347, - 5348,5,45,0,0,5348,5349,5,45,0,0,5349,1068,1,0,0,0,5350,5351,5,47, - 0,0,5351,1070,1,0,0,0,5352,5353,5,63,0,0,5353,1072,1,0,0,0,5354, - 5355,5,61,0,0,5355,5356,5,62,0,0,5356,1074,1,0,0,0,5357,5361,3,1095, - 547,0,5358,5361,3,1097,548,0,5359,5361,3,1101,550,0,5360,5357,1, - 0,0,0,5360,5358,1,0,0,0,5360,5359,1,0,0,0,5361,1076,1,0,0,0,5362, - 5364,3,1091,545,0,5363,5362,1,0,0,0,5364,5365,1,0,0,0,5365,5363, - 1,0,0,0,5365,5366,1,0,0,0,5366,1078,1,0,0,0,5367,5369,3,1091,545, - 0,5368,5367,1,0,0,0,5369,5370,1,0,0,0,5370,5368,1,0,0,0,5370,5371, - 1,0,0,0,5371,5373,1,0,0,0,5372,5368,1,0,0,0,5372,5373,1,0,0,0,5373, - 5374,1,0,0,0,5374,5376,5,46,0,0,5375,5377,3,1091,545,0,5376,5375, - 1,0,0,0,5377,5378,1,0,0,0,5378,5376,1,0,0,0,5378,5379,1,0,0,0,5379, - 5411,1,0,0,0,5380,5382,3,1091,545,0,5381,5380,1,0,0,0,5382,5383, - 1,0,0,0,5383,5381,1,0,0,0,5383,5384,1,0,0,0,5384,5385,1,0,0,0,5385, - 5386,5,46,0,0,5386,5387,3,1087,543,0,5387,5411,1,0,0,0,5388,5390, - 3,1091,545,0,5389,5388,1,0,0,0,5390,5391,1,0,0,0,5391,5389,1,0,0, - 0,5391,5392,1,0,0,0,5392,5394,1,0,0,0,5393,5389,1,0,0,0,5393,5394, - 1,0,0,0,5394,5395,1,0,0,0,5395,5397,5,46,0,0,5396,5398,3,1091,545, - 0,5397,5396,1,0,0,0,5398,5399,1,0,0,0,5399,5397,1,0,0,0,5399,5400, - 1,0,0,0,5400,5401,1,0,0,0,5401,5402,3,1087,543,0,5402,5411,1,0,0, - 0,5403,5405,3,1091,545,0,5404,5403,1,0,0,0,5405,5406,1,0,0,0,5406, - 5404,1,0,0,0,5406,5407,1,0,0,0,5407,5408,1,0,0,0,5408,5409,3,1087, - 543,0,5409,5411,1,0,0,0,5410,5372,1,0,0,0,5410,5381,1,0,0,0,5410, - 5393,1,0,0,0,5410,5404,1,0,0,0,5411,1080,1,0,0,0,5412,5413,3,1099, - 549,0,5413,1082,1,0,0,0,5414,5415,3,1089,544,0,5415,1084,1,0,0,0, - 5416,5424,5,96,0,0,5417,5418,5,92,0,0,5418,5423,9,0,0,0,5419,5420, - 5,96,0,0,5420,5423,5,96,0,0,5421,5423,8,28,0,0,5422,5417,1,0,0,0, - 5422,5419,1,0,0,0,5422,5421,1,0,0,0,5423,5426,1,0,0,0,5424,5422, - 1,0,0,0,5424,5425,1,0,0,0,5425,5427,1,0,0,0,5426,5424,1,0,0,0,5427, - 5428,5,96,0,0,5428,1086,1,0,0,0,5429,5431,7,9,0,0,5430,5432,7,29, - 0,0,5431,5430,1,0,0,0,5431,5432,1,0,0,0,5432,5434,1,0,0,0,5433,5435, - 3,1091,545,0,5434,5433,1,0,0,0,5435,5436,1,0,0,0,5436,5434,1,0,0, - 0,5436,5437,1,0,0,0,5437,1088,1,0,0,0,5438,5440,7,30,0,0,5439,5438, - 1,0,0,0,5440,5443,1,0,0,0,5441,5442,1,0,0,0,5441,5439,1,0,0,0,5442, - 5445,1,0,0,0,5443,5441,1,0,0,0,5444,5446,7,31,0,0,5445,5444,1,0, - 0,0,5446,5447,1,0,0,0,5447,5448,1,0,0,0,5447,5445,1,0,0,0,5448,5452, - 1,0,0,0,5449,5451,7,30,0,0,5450,5449,1,0,0,0,5451,5454,1,0,0,0,5452, - 5450,1,0,0,0,5452,5453,1,0,0,0,5453,1090,1,0,0,0,5454,5452,1,0,0, - 0,5455,5456,7,32,0,0,5456,1092,1,0,0,0,5457,5458,7,33,0,0,5458,1094, - 1,0,0,0,5459,5467,5,34,0,0,5460,5461,5,92,0,0,5461,5466,9,0,0,0, - 5462,5463,5,34,0,0,5463,5466,5,34,0,0,5464,5466,8,34,0,0,5465,5460, - 1,0,0,0,5465,5462,1,0,0,0,5465,5464,1,0,0,0,5466,5469,1,0,0,0,5467, - 5465,1,0,0,0,5467,5468,1,0,0,0,5468,5470,1,0,0,0,5469,5467,1,0,0, - 0,5470,5471,5,34,0,0,5471,1096,1,0,0,0,5472,5480,5,39,0,0,5473,5474, - 5,92,0,0,5474,5479,9,0,0,0,5475,5476,5,39,0,0,5476,5479,5,39,0,0, - 5477,5479,8,35,0,0,5478,5473,1,0,0,0,5478,5475,1,0,0,0,5478,5477, - 1,0,0,0,5479,5482,1,0,0,0,5480,5478,1,0,0,0,5480,5481,1,0,0,0,5481, - 5483,1,0,0,0,5482,5480,1,0,0,0,5483,5484,5,39,0,0,5484,1098,1,0, - 0,0,5485,5486,7,3,0,0,5486,5488,5,39,0,0,5487,5489,7,36,0,0,5488, - 5487,1,0,0,0,5489,5490,1,0,0,0,5490,5488,1,0,0,0,5490,5491,1,0,0, - 0,5491,5492,1,0,0,0,5492,5493,5,39,0,0,5493,1100,1,0,0,0,5494,5502, - 5,96,0,0,5495,5496,5,92,0,0,5496,5501,9,0,0,0,5497,5498,5,96,0,0, - 5498,5501,5,96,0,0,5499,5501,8,28,0,0,5500,5495,1,0,0,0,5500,5497, - 1,0,0,0,5500,5499,1,0,0,0,5501,5504,1,0,0,0,5502,5500,1,0,0,0,5502, - 5503,1,0,0,0,5503,5505,1,0,0,0,5504,5502,1,0,0,0,5505,5506,5,96, - 0,0,5506,1102,1,0,0,0,34,0,1113,1124,1129,1133,1137,1143,1147,1149, - 5360,5365,5370,5372,5378,5383,5391,5393,5399,5406,5410,5422,5424, - 5431,5436,5441,5447,5452,5465,5467,5478,5480,5490,5500,5502,1,0, + 1,486,1,486,1,486,1,486,1,486,1,486,1,487,1,487,1,487,1,487,1,487, + 1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,487,1,488,1,488,1,488, + 1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,488,1,489,1,489,1,489, + 1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489,1,489, + 1,489,1,489,1,489,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490, + 1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490,1,490, + 1,490,1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,491,1,492,1,492, + 1,492,1,492,1,492,1,492,1,492,1,493,1,493,1,493,1,493,1,493,1,493, + 1,493,1,493,1,493,1,494,1,494,1,494,1,494,1,494,1,494,1,494,1,494, + 1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,496,1,496,1,496, + 1,496,1,496,1,497,1,497,1,497,1,497,1,497,1,498,1,498,1,498,1,498, + 1,498,1,498,1,499,1,499,1,499,1,499,1,499,1,500,1,500,1,500,1,500, + 1,500,1,500,1,500,1,500,1,500,1,500,1,501,1,501,1,501,1,501,1,501, + 1,501,1,501,1,501,1,502,1,502,1,502,1,502,1,502,1,502,1,502,1,503, + 1,503,1,503,1,503,1,503,1,503,1,503,1,504,1,504,1,504,1,504,1,504, + 1,505,1,505,1,505,1,505,1,505,1,506,1,506,1,506,1,506,1,506,1,506, + 1,507,1,507,1,507,1,507,1,507,1,508,1,508,1,509,1,509,1,510,1,510, + 1,511,1,511,1,512,1,512,1,513,1,513,1,514,1,514,1,515,1,515,1,516, + 1,516,1,517,1,517,1,518,1,518,1,519,1,519,1,520,1,520,1,521,1,521, + 1,522,1,522,1,523,1,523,1,524,1,524,1,525,1,525,1,526,1,526,1,527, + 1,527,1,528,1,528,1,529,1,529,1,530,1,530,1,531,1,531,1,532,1,532, + 1,533,1,533,1,534,1,534,1,535,1,535,1,535,1,536,1,536,1,536,1,537, + 1,537,1,538,1,538,1,539,1,539,1,539,1,540,1,540,1,540,3,540,5397, + 8,540,1,541,4,541,5400,8,541,11,541,12,541,5401,1,542,4,542,5405, + 8,542,11,542,12,542,5406,3,542,5409,8,542,1,542,1,542,4,542,5413, + 8,542,11,542,12,542,5414,1,542,4,542,5418,8,542,11,542,12,542,5419, + 1,542,1,542,1,542,1,542,4,542,5426,8,542,11,542,12,542,5427,3,542, + 5430,8,542,1,542,1,542,4,542,5434,8,542,11,542,12,542,5435,1,542, + 1,542,1,542,4,542,5441,8,542,11,542,12,542,5442,1,542,1,542,3,542, + 5447,8,542,1,543,1,543,1,544,1,544,1,545,1,545,1,545,1,545,1,545, + 1,545,5,545,5459,8,545,10,545,12,545,5462,9,545,1,545,1,545,1,546, + 1,546,3,546,5468,8,546,1,546,4,546,5471,8,546,11,546,12,546,5472, + 1,547,5,547,5476,8,547,10,547,12,547,5479,9,547,1,547,4,547,5482, + 8,547,11,547,12,547,5483,1,547,5,547,5487,8,547,10,547,12,547,5490, + 9,547,1,548,1,548,1,549,1,549,1,550,1,550,1,550,1,550,1,550,1,550, + 5,550,5502,8,550,10,550,12,550,5505,9,550,1,550,1,550,1,551,1,551, + 1,551,1,551,1,551,1,551,5,551,5515,8,551,10,551,12,551,5518,9,551, + 1,551,1,551,1,552,1,552,1,552,4,552,5525,8,552,11,552,12,552,5526, + 1,552,1,552,1,553,1,553,1,553,1,553,1,553,1,553,5,553,5537,8,553, + 10,553,12,553,5540,9,553,1,553,1,553,3,1119,5477,5483,0,554,1,1, + 3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14, + 29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25, + 51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36, + 73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47, + 95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55,111,56,113, + 57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129,65,131,66, + 133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74,149,75,151, + 76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167,84,169,85, + 171,86,173,87,175,88,177,89,179,90,181,91,183,92,185,93,187,94,189, + 95,191,96,193,97,195,98,197,99,199,100,201,101,203,102,205,103,207, + 104,209,105,211,106,213,107,215,108,217,109,219,110,221,111,223, + 112,225,113,227,114,229,115,231,116,233,117,235,118,237,119,239, + 120,241,121,243,122,245,123,247,124,249,125,251,126,253,127,255, + 128,257,129,259,130,261,131,263,132,265,133,267,134,269,135,271, + 136,273,137,275,138,277,139,279,140,281,141,283,142,285,143,287, + 144,289,145,291,146,293,147,295,148,297,149,299,150,301,151,303, + 152,305,153,307,154,309,155,311,156,313,157,315,158,317,159,319, + 160,321,161,323,162,325,163,327,164,329,165,331,166,333,167,335, + 168,337,169,339,170,341,171,343,172,345,173,347,174,349,175,351, + 176,353,177,355,178,357,179,359,180,361,181,363,182,365,183,367, + 184,369,185,371,186,373,187,375,188,377,189,379,190,381,191,383, + 192,385,193,387,194,389,195,391,196,393,197,395,198,397,199,399, + 200,401,201,403,202,405,203,407,204,409,205,411,206,413,207,415, + 208,417,209,419,210,421,211,423,212,425,213,427,214,429,215,431, + 216,433,217,435,218,437,219,439,220,441,221,443,222,445,223,447, + 224,449,225,451,226,453,227,455,228,457,229,459,230,461,231,463, + 232,465,233,467,234,469,235,471,236,473,237,475,238,477,239,479, + 240,481,241,483,242,485,243,487,244,489,245,491,246,493,247,495, + 248,497,249,499,250,501,251,503,252,505,253,507,254,509,255,511, + 256,513,257,515,258,517,259,519,260,521,261,523,262,525,263,527, + 264,529,265,531,266,533,267,535,268,537,269,539,270,541,271,543, + 272,545,273,547,274,549,275,551,276,553,277,555,278,557,279,559, + 280,561,281,563,282,565,283,567,284,569,285,571,286,573,287,575, + 288,577,289,579,290,581,291,583,292,585,293,587,294,589,295,591, + 296,593,297,595,298,597,299,599,300,601,301,603,302,605,303,607, + 304,609,305,611,306,613,307,615,308,617,309,619,310,621,311,623, + 312,625,313,627,314,629,315,631,316,633,317,635,318,637,319,639, + 320,641,321,643,322,645,323,647,324,649,325,651,326,653,327,655, + 328,657,329,659,330,661,331,663,332,665,333,667,334,669,335,671, + 336,673,337,675,338,677,339,679,340,681,341,683,342,685,343,687, + 344,689,345,691,346,693,347,695,348,697,349,699,350,701,351,703, + 352,705,353,707,354,709,355,711,356,713,357,715,358,717,359,719, + 360,721,361,723,362,725,363,727,364,729,365,731,366,733,367,735, + 368,737,369,739,370,741,371,743,372,745,373,747,374,749,375,751, + 376,753,377,755,378,757,379,759,380,761,381,763,382,765,383,767, + 384,769,385,771,386,773,387,775,388,777,389,779,390,781,391,783, + 392,785,393,787,394,789,395,791,396,793,397,795,398,797,399,799, + 400,801,401,803,402,805,403,807,404,809,405,811,406,813,407,815, + 408,817,409,819,410,821,411,823,412,825,413,827,414,829,415,831, + 416,833,417,835,418,837,419,839,420,841,421,843,422,845,423,847, + 424,849,425,851,426,853,427,855,428,857,429,859,430,861,431,863, + 432,865,433,867,434,869,435,871,436,873,437,875,438,877,439,879, + 440,881,441,883,442,885,443,887,444,889,445,891,446,893,447,895, + 448,897,449,899,450,901,451,903,452,905,453,907,454,909,455,911, + 456,913,457,915,458,917,459,919,460,921,461,923,462,925,463,927, + 464,929,465,931,466,933,467,935,468,937,469,939,470,941,471,943, + 472,945,473,947,474,949,475,951,476,953,477,955,478,957,479,959, + 480,961,481,963,482,965,483,967,484,969,485,971,486,973,487,975, + 488,977,489,979,490,981,491,983,492,985,493,987,494,989,495,991, + 496,993,497,995,498,997,499,999,500,1001,501,1003,502,1005,503,1007, + 504,1009,505,1011,506,1013,507,1015,508,1017,509,1019,510,1021,511, + 1023,512,1025,513,1027,514,1029,515,1031,516,1033,517,1035,518,1037, + 519,1039,520,1041,521,1043,522,1045,523,1047,524,1049,525,1051,526, + 1053,527,1055,528,1057,529,1059,530,1061,531,1063,532,1065,533,1067, + 534,1069,535,1071,536,1073,537,1075,538,1077,539,1079,540,1081,541, + 1083,542,1085,543,1087,544,1089,545,1091,0,1093,0,1095,0,1097,0, + 1099,0,1101,0,1103,0,1105,0,1107,0,1,0,37,3,0,9,10,13,13,32,32,2, + 0,10,10,13,13,2,0,65,65,97,97,2,0,66,66,98,98,2,0,83,83,115,115, + 2,0,76,76,108,108,2,0,79,79,111,111,2,0,67,67,99,99,2,0,84,84,116, + 116,2,0,69,69,101,101,2,0,87,87,119,119,2,0,82,82,114,114,2,0,78, + 78,110,110,2,0,89,89,121,121,2,0,90,90,122,122,2,0,68,68,100,100, + 2,0,71,71,103,103,2,0,77,77,109,109,2,0,88,88,120,120,2,0,73,73, + 105,105,2,0,86,86,118,118,2,0,85,85,117,117,2,0,72,72,104,104,2, + 0,70,70,102,102,2,0,80,80,112,112,2,0,75,75,107,107,2,0,81,81,113, + 113,2,0,74,74,106,106,2,0,92,92,96,96,2,0,43,43,45,45,4,0,48,57, + 65,90,95,95,97,122,3,0,65,90,95,95,97,122,1,0,48,57,2,0,65,90,97, + 122,2,0,34,34,92,92,2,0,39,39,92,92,1,0,48,49,5573,0,1,1,0,0,0,0, + 3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13, + 1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23, + 1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33, + 1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43, + 1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53, + 1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63, + 1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73, + 1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83, + 1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93, + 1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103, + 1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0, + 0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1, + 0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0, + 131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0, + 0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149, + 1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0, + 0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1, + 0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0, + 177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0, + 0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195, + 1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0, + 0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1, + 0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0, + 223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0, + 0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241, + 1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0, + 0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1, + 0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0, + 269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0, + 0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287, + 1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0, + 0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1, + 0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0, + 315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0, + 0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333, + 1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0, + 0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1, + 0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0, + 361,1,0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0, + 0,0,0,371,1,0,0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379, + 1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0, + 0,389,1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1, + 0,0,0,0,399,1,0,0,0,0,401,1,0,0,0,0,403,1,0,0,0,0,405,1,0,0,0,0, + 407,1,0,0,0,0,409,1,0,0,0,0,411,1,0,0,0,0,413,1,0,0,0,0,415,1,0, + 0,0,0,417,1,0,0,0,0,419,1,0,0,0,0,421,1,0,0,0,0,423,1,0,0,0,0,425, + 1,0,0,0,0,427,1,0,0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0, + 0,435,1,0,0,0,0,437,1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1, + 0,0,0,0,445,1,0,0,0,0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0, + 453,1,0,0,0,0,455,1,0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0, + 0,0,0,463,1,0,0,0,0,465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471, + 1,0,0,0,0,473,1,0,0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0, + 0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1, + 0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0, + 499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0, + 0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517, + 1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0, + 0,527,1,0,0,0,0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1, + 0,0,0,0,537,1,0,0,0,0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0, + 545,1,0,0,0,0,547,1,0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0, + 0,0,0,555,1,0,0,0,0,557,1,0,0,0,0,559,1,0,0,0,0,561,1,0,0,0,0,563, + 1,0,0,0,0,565,1,0,0,0,0,567,1,0,0,0,0,569,1,0,0,0,0,571,1,0,0,0, + 0,573,1,0,0,0,0,575,1,0,0,0,0,577,1,0,0,0,0,579,1,0,0,0,0,581,1, + 0,0,0,0,583,1,0,0,0,0,585,1,0,0,0,0,587,1,0,0,0,0,589,1,0,0,0,0, + 591,1,0,0,0,0,593,1,0,0,0,0,595,1,0,0,0,0,597,1,0,0,0,0,599,1,0, + 0,0,0,601,1,0,0,0,0,603,1,0,0,0,0,605,1,0,0,0,0,607,1,0,0,0,0,609, + 1,0,0,0,0,611,1,0,0,0,0,613,1,0,0,0,0,615,1,0,0,0,0,617,1,0,0,0, + 0,619,1,0,0,0,0,621,1,0,0,0,0,623,1,0,0,0,0,625,1,0,0,0,0,627,1, + 0,0,0,0,629,1,0,0,0,0,631,1,0,0,0,0,633,1,0,0,0,0,635,1,0,0,0,0, + 637,1,0,0,0,0,639,1,0,0,0,0,641,1,0,0,0,0,643,1,0,0,0,0,645,1,0, + 0,0,0,647,1,0,0,0,0,649,1,0,0,0,0,651,1,0,0,0,0,653,1,0,0,0,0,655, + 1,0,0,0,0,657,1,0,0,0,0,659,1,0,0,0,0,661,1,0,0,0,0,663,1,0,0,0, + 0,665,1,0,0,0,0,667,1,0,0,0,0,669,1,0,0,0,0,671,1,0,0,0,0,673,1, + 0,0,0,0,675,1,0,0,0,0,677,1,0,0,0,0,679,1,0,0,0,0,681,1,0,0,0,0, + 683,1,0,0,0,0,685,1,0,0,0,0,687,1,0,0,0,0,689,1,0,0,0,0,691,1,0, + 0,0,0,693,1,0,0,0,0,695,1,0,0,0,0,697,1,0,0,0,0,699,1,0,0,0,0,701, + 1,0,0,0,0,703,1,0,0,0,0,705,1,0,0,0,0,707,1,0,0,0,0,709,1,0,0,0, + 0,711,1,0,0,0,0,713,1,0,0,0,0,715,1,0,0,0,0,717,1,0,0,0,0,719,1, + 0,0,0,0,721,1,0,0,0,0,723,1,0,0,0,0,725,1,0,0,0,0,727,1,0,0,0,0, + 729,1,0,0,0,0,731,1,0,0,0,0,733,1,0,0,0,0,735,1,0,0,0,0,737,1,0, + 0,0,0,739,1,0,0,0,0,741,1,0,0,0,0,743,1,0,0,0,0,745,1,0,0,0,0,747, + 1,0,0,0,0,749,1,0,0,0,0,751,1,0,0,0,0,753,1,0,0,0,0,755,1,0,0,0, + 0,757,1,0,0,0,0,759,1,0,0,0,0,761,1,0,0,0,0,763,1,0,0,0,0,765,1, + 0,0,0,0,767,1,0,0,0,0,769,1,0,0,0,0,771,1,0,0,0,0,773,1,0,0,0,0, + 775,1,0,0,0,0,777,1,0,0,0,0,779,1,0,0,0,0,781,1,0,0,0,0,783,1,0, + 0,0,0,785,1,0,0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,0,793, + 1,0,0,0,0,795,1,0,0,0,0,797,1,0,0,0,0,799,1,0,0,0,0,801,1,0,0,0, + 0,803,1,0,0,0,0,805,1,0,0,0,0,807,1,0,0,0,0,809,1,0,0,0,0,811,1, + 0,0,0,0,813,1,0,0,0,0,815,1,0,0,0,0,817,1,0,0,0,0,819,1,0,0,0,0, + 821,1,0,0,0,0,823,1,0,0,0,0,825,1,0,0,0,0,827,1,0,0,0,0,829,1,0, + 0,0,0,831,1,0,0,0,0,833,1,0,0,0,0,835,1,0,0,0,0,837,1,0,0,0,0,839, + 1,0,0,0,0,841,1,0,0,0,0,843,1,0,0,0,0,845,1,0,0,0,0,847,1,0,0,0, + 0,849,1,0,0,0,0,851,1,0,0,0,0,853,1,0,0,0,0,855,1,0,0,0,0,857,1, + 0,0,0,0,859,1,0,0,0,0,861,1,0,0,0,0,863,1,0,0,0,0,865,1,0,0,0,0, + 867,1,0,0,0,0,869,1,0,0,0,0,871,1,0,0,0,0,873,1,0,0,0,0,875,1,0, + 0,0,0,877,1,0,0,0,0,879,1,0,0,0,0,881,1,0,0,0,0,883,1,0,0,0,0,885, + 1,0,0,0,0,887,1,0,0,0,0,889,1,0,0,0,0,891,1,0,0,0,0,893,1,0,0,0, + 0,895,1,0,0,0,0,897,1,0,0,0,0,899,1,0,0,0,0,901,1,0,0,0,0,903,1, + 0,0,0,0,905,1,0,0,0,0,907,1,0,0,0,0,909,1,0,0,0,0,911,1,0,0,0,0, + 913,1,0,0,0,0,915,1,0,0,0,0,917,1,0,0,0,0,919,1,0,0,0,0,921,1,0, + 0,0,0,923,1,0,0,0,0,925,1,0,0,0,0,927,1,0,0,0,0,929,1,0,0,0,0,931, + 1,0,0,0,0,933,1,0,0,0,0,935,1,0,0,0,0,937,1,0,0,0,0,939,1,0,0,0, + 0,941,1,0,0,0,0,943,1,0,0,0,0,945,1,0,0,0,0,947,1,0,0,0,0,949,1, + 0,0,0,0,951,1,0,0,0,0,953,1,0,0,0,0,955,1,0,0,0,0,957,1,0,0,0,0, + 959,1,0,0,0,0,961,1,0,0,0,0,963,1,0,0,0,0,965,1,0,0,0,0,967,1,0, + 0,0,0,969,1,0,0,0,0,971,1,0,0,0,0,973,1,0,0,0,0,975,1,0,0,0,0,977, + 1,0,0,0,0,979,1,0,0,0,0,981,1,0,0,0,0,983,1,0,0,0,0,985,1,0,0,0, + 0,987,1,0,0,0,0,989,1,0,0,0,0,991,1,0,0,0,0,993,1,0,0,0,0,995,1, + 0,0,0,0,997,1,0,0,0,0,999,1,0,0,0,0,1001,1,0,0,0,0,1003,1,0,0,0, + 0,1005,1,0,0,0,0,1007,1,0,0,0,0,1009,1,0,0,0,0,1011,1,0,0,0,0,1013, + 1,0,0,0,0,1015,1,0,0,0,0,1017,1,0,0,0,0,1019,1,0,0,0,0,1021,1,0, + 0,0,0,1023,1,0,0,0,0,1025,1,0,0,0,0,1027,1,0,0,0,0,1029,1,0,0,0, + 0,1031,1,0,0,0,0,1033,1,0,0,0,0,1035,1,0,0,0,0,1037,1,0,0,0,0,1039, + 1,0,0,0,0,1041,1,0,0,0,0,1043,1,0,0,0,0,1045,1,0,0,0,0,1047,1,0, + 0,0,0,1049,1,0,0,0,0,1051,1,0,0,0,0,1053,1,0,0,0,0,1055,1,0,0,0, + 0,1057,1,0,0,0,0,1059,1,0,0,0,0,1061,1,0,0,0,0,1063,1,0,0,0,0,1065, + 1,0,0,0,0,1067,1,0,0,0,0,1069,1,0,0,0,0,1071,1,0,0,0,0,1073,1,0, + 0,0,0,1075,1,0,0,0,0,1077,1,0,0,0,0,1079,1,0,0,0,0,1081,1,0,0,0, + 0,1083,1,0,0,0,0,1085,1,0,0,0,0,1087,1,0,0,0,0,1089,1,0,0,0,1,1109, + 1,0,0,0,3,1113,1,0,0,0,5,1155,1,0,0,0,7,1159,1,0,0,0,9,1163,1,0, + 0,0,11,1167,1,0,0,0,13,1176,1,0,0,0,15,1182,1,0,0,0,17,1188,1,0, + 0,0,19,1196,1,0,0,0,21,1200,1,0,0,0,23,1204,1,0,0,0,25,1208,1,0, + 0,0,27,1214,1,0,0,0,29,1224,1,0,0,0,31,1241,1,0,0,0,33,1263,1,0, + 0,0,35,1266,1,0,0,0,37,1277,1,0,0,0,39,1288,1,0,0,0,41,1291,1,0, + 0,0,43,1298,1,0,0,0,45,1312,1,0,0,0,47,1316,1,0,0,0,49,1322,1,0, + 0,0,51,1334,1,0,0,0,53,1350,1,0,0,0,55,1358,1,0,0,0,57,1365,1,0, + 0,0,59,1372,1,0,0,0,61,1376,1,0,0,0,63,1381,1,0,0,0,65,1389,1,0, + 0,0,67,1394,1,0,0,0,69,1397,1,0,0,0,71,1403,1,0,0,0,73,1408,1,0, + 0,0,75,1415,1,0,0,0,77,1427,1,0,0,0,79,1436,1,0,0,0,81,1441,1,0, + 0,0,83,1446,1,0,0,0,85,1455,1,0,0,0,87,1460,1,0,0,0,89,1468,1,0, + 0,0,91,1483,1,0,0,0,93,1488,1,0,0,0,95,1498,1,0,0,0,97,1515,1,0, + 0,0,99,1527,1,0,0,0,101,1533,1,0,0,0,103,1544,1,0,0,0,105,1549,1, + 0,0,0,107,1555,1,0,0,0,109,1564,1,0,0,0,111,1572,1,0,0,0,113,1580, + 1,0,0,0,115,1587,1,0,0,0,117,1595,1,0,0,0,119,1603,1,0,0,0,121,1610, + 1,0,0,0,123,1618,1,0,0,0,125,1628,1,0,0,0,127,1636,1,0,0,0,129,1647, + 1,0,0,0,131,1656,1,0,0,0,133,1664,1,0,0,0,135,1669,1,0,0,0,137,1683, + 1,0,0,0,139,1689,1,0,0,0,141,1699,1,0,0,0,143,1710,1,0,0,0,145,1717, + 1,0,0,0,147,1723,1,0,0,0,149,1728,1,0,0,0,151,1738,1,0,0,0,153,1746, + 1,0,0,0,155,1762,1,0,0,0,157,1775,1,0,0,0,159,1807,1,0,0,0,161,1820, + 1,0,0,0,163,1833,1,0,0,0,165,1845,1,0,0,0,167,1860,1,0,0,0,169,1873, + 1,0,0,0,171,1891,1,0,0,0,173,1924,1,0,0,0,175,1937,1,0,0,0,177,1944, + 1,0,0,0,179,1950,1,0,0,0,181,1960,1,0,0,0,183,1965,1,0,0,0,185,1974, + 1,0,0,0,187,1988,1,0,0,0,189,2003,1,0,0,0,191,2013,1,0,0,0,193,2024, + 1,0,0,0,195,2028,1,0,0,0,197,2038,1,0,0,0,199,2048,1,0,0,0,201,2059, + 1,0,0,0,203,2063,1,0,0,0,205,2071,1,0,0,0,207,2079,1,0,0,0,209,2087, + 1,0,0,0,211,2094,1,0,0,0,213,2101,1,0,0,0,215,2112,1,0,0,0,217,2118, + 1,0,0,0,219,2127,1,0,0,0,221,2141,1,0,0,0,223,2150,1,0,0,0,225,2161, + 1,0,0,0,227,2170,1,0,0,0,229,2174,1,0,0,0,231,2181,1,0,0,0,233,2186, + 1,0,0,0,235,2194,1,0,0,0,237,2199,1,0,0,0,239,2207,1,0,0,0,241,2212, + 1,0,0,0,243,2218,1,0,0,0,245,2222,1,0,0,0,247,2232,1,0,0,0,249,2246, + 1,0,0,0,251,2255,1,0,0,0,253,2262,1,0,0,0,255,2269,1,0,0,0,257,2284, + 1,0,0,0,259,2290,1,0,0,0,261,2297,1,0,0,0,263,2302,1,0,0,0,265,2310, + 1,0,0,0,267,2317,1,0,0,0,269,2321,1,0,0,0,271,2329,1,0,0,0,273,2336, + 1,0,0,0,275,2345,1,0,0,0,277,2354,1,0,0,0,279,2362,1,0,0,0,281,2368, + 1,0,0,0,283,2374,1,0,0,0,285,2381,1,0,0,0,287,2393,1,0,0,0,289,2399, + 1,0,0,0,291,2405,1,0,0,0,293,2415,1,0,0,0,295,2419,1,0,0,0,297,2427, + 1,0,0,0,299,2437,1,0,0,0,301,2442,1,0,0,0,303,2449,1,0,0,0,305,2454, + 1,0,0,0,307,2459,1,0,0,0,309,2468,1,0,0,0,311,2478,1,0,0,0,313,2485, + 1,0,0,0,315,2489,1,0,0,0,317,2496,1,0,0,0,319,2502,1,0,0,0,321,2508, + 1,0,0,0,323,2517,1,0,0,0,325,2524,1,0,0,0,327,2537,1,0,0,0,329,2544, + 1,0,0,0,331,2549,1,0,0,0,333,2554,1,0,0,0,335,2563,1,0,0,0,337,2566, + 1,0,0,0,339,2572,1,0,0,0,341,2579,1,0,0,0,343,2582,1,0,0,0,345,2590, + 1,0,0,0,347,2600,1,0,0,0,349,2608,1,0,0,0,351,2614,1,0,0,0,353,2620, + 1,0,0,0,355,2632,1,0,0,0,357,2639,1,0,0,0,359,2643,1,0,0,0,361,2651, + 1,0,0,0,363,2661,1,0,0,0,365,2674,1,0,0,0,367,2683,1,0,0,0,369,2688, + 1,0,0,0,371,2691,1,0,0,0,373,2696,1,0,0,0,375,2701,1,0,0,0,377,2712, + 1,0,0,0,379,2726,1,0,0,0,381,2746,1,0,0,0,383,2758,1,0,0,0,385,2770, + 1,0,0,0,387,2785,1,0,0,0,389,2796,1,0,0,0,391,2807,1,0,0,0,393,2811, + 1,0,0,0,395,2820,1,0,0,0,397,2826,1,0,0,0,399,2837,1,0,0,0,401,2845, + 1,0,0,0,403,2850,1,0,0,0,405,2858,1,0,0,0,407,2863,1,0,0,0,409,2868, + 1,0,0,0,411,2879,1,0,0,0,413,2885,1,0,0,0,415,2888,1,0,0,0,417,2894, + 1,0,0,0,419,2904,1,0,0,0,421,2919,1,0,0,0,423,2925,1,0,0,0,425,2931, + 1,0,0,0,427,2939,1,0,0,0,429,2952,1,0,0,0,431,2968,1,0,0,0,433,2972, + 1,0,0,0,435,2981,1,0,0,0,437,2988,1,0,0,0,439,2994,1,0,0,0,441,3003, + 1,0,0,0,443,3010,1,0,0,0,445,3014,1,0,0,0,447,3020,1,0,0,0,449,3027, + 1,0,0,0,451,3031,1,0,0,0,453,3040,1,0,0,0,455,3047,1,0,0,0,457,3054, + 1,0,0,0,459,3062,1,0,0,0,461,3069,1,0,0,0,463,3075,1,0,0,0,465,3080, + 1,0,0,0,467,3089,1,0,0,0,469,3098,1,0,0,0,471,3106,1,0,0,0,473,3112, + 1,0,0,0,475,3118,1,0,0,0,477,3122,1,0,0,0,479,3127,1,0,0,0,481,3130, + 1,0,0,0,483,3135,1,0,0,0,485,3145,1,0,0,0,487,3149,1,0,0,0,489,3159, + 1,0,0,0,491,3165,1,0,0,0,493,3170,1,0,0,0,495,3177,1,0,0,0,497,3185, + 1,0,0,0,499,3203,1,0,0,0,501,3216,1,0,0,0,503,3219,1,0,0,0,505,3226, + 1,0,0,0,507,3230,1,0,0,0,509,3235,1,0,0,0,511,3238,1,0,0,0,513,3242, + 1,0,0,0,515,3247,1,0,0,0,517,3252,1,0,0,0,519,3255,1,0,0,0,521,3261, + 1,0,0,0,523,3269,1,0,0,0,525,3273,1,0,0,0,527,3279,1,0,0,0,529,3284, + 1,0,0,0,531,3293,1,0,0,0,533,3301,1,0,0,0,535,3311,1,0,0,0,537,3323, + 1,0,0,0,539,3333,1,0,0,0,541,3343,1,0,0,0,543,3355,1,0,0,0,545,3366, + 1,0,0,0,547,3374,1,0,0,0,549,3378,1,0,0,0,551,3386,1,0,0,0,553,3402, + 1,0,0,0,555,3418,1,0,0,0,557,3431,1,0,0,0,559,3438,1,0,0,0,561,3446, + 1,0,0,0,563,3456,1,0,0,0,565,3462,1,0,0,0,567,3470,1,0,0,0,569,3479, + 1,0,0,0,571,3494,1,0,0,0,573,3500,1,0,0,0,575,3509,1,0,0,0,577,3519, + 1,0,0,0,579,3527,1,0,0,0,581,3532,1,0,0,0,583,3540,1,0,0,0,585,3550, + 1,0,0,0,587,3558,1,0,0,0,589,3567,1,0,0,0,591,3573,1,0,0,0,593,3578, + 1,0,0,0,595,3582,1,0,0,0,597,3588,1,0,0,0,599,3593,1,0,0,0,601,3603, + 1,0,0,0,603,3607,1,0,0,0,605,3618,1,0,0,0,607,3630,1,0,0,0,609,3640, + 1,0,0,0,611,3650,1,0,0,0,613,3661,1,0,0,0,615,3676,1,0,0,0,617,3684, + 1,0,0,0,619,3695,1,0,0,0,621,3704,1,0,0,0,623,3713,1,0,0,0,625,3722, + 1,0,0,0,627,3730,1,0,0,0,629,3737,1,0,0,0,631,3743,1,0,0,0,633,3750, + 1,0,0,0,635,3757,1,0,0,0,637,3765,1,0,0,0,639,3772,1,0,0,0,641,3778, + 1,0,0,0,643,3784,1,0,0,0,645,3793,1,0,0,0,647,3800,1,0,0,0,649,3804, + 1,0,0,0,651,3809,1,0,0,0,653,3820,1,0,0,0,655,3828,1,0,0,0,657,3838, + 1,0,0,0,659,3850,1,0,0,0,661,3863,1,0,0,0,663,3872,1,0,0,0,665,3882, + 1,0,0,0,667,3888,1,0,0,0,669,3894,1,0,0,0,671,3901,1,0,0,0,673,3908, + 1,0,0,0,675,3915,1,0,0,0,677,3920,1,0,0,0,679,3927,1,0,0,0,681,3937, + 1,0,0,0,683,3947,1,0,0,0,685,3960,1,0,0,0,687,3964,1,0,0,0,689,3969, + 1,0,0,0,691,3977,1,0,0,0,693,3982,1,0,0,0,695,3991,1,0,0,0,697,3996, + 1,0,0,0,699,4005,1,0,0,0,701,4018,1,0,0,0,703,4022,1,0,0,0,705,4035, + 1,0,0,0,707,4044,1,0,0,0,709,4055,1,0,0,0,711,4060,1,0,0,0,713,4066, + 1,0,0,0,715,4076,1,0,0,0,717,4083,1,0,0,0,719,4094,1,0,0,0,721,4105, + 1,0,0,0,723,4117,1,0,0,0,725,4124,1,0,0,0,727,4131,1,0,0,0,729,4142, + 1,0,0,0,731,4154,1,0,0,0,733,4161,1,0,0,0,735,4171,1,0,0,0,737,4187, + 1,0,0,0,739,4196,1,0,0,0,741,4200,1,0,0,0,743,4207,1,0,0,0,745,4217, + 1,0,0,0,747,4224,1,0,0,0,749,4236,1,0,0,0,751,4248,1,0,0,0,753,4254, + 1,0,0,0,755,4261,1,0,0,0,757,4273,1,0,0,0,759,4278,1,0,0,0,761,4287, + 1,0,0,0,763,4292,1,0,0,0,765,4302,1,0,0,0,767,4317,1,0,0,0,769,4331, + 1,0,0,0,771,4347,1,0,0,0,773,4361,1,0,0,0,775,4377,1,0,0,0,777,4387, + 1,0,0,0,779,4398,1,0,0,0,781,4406,1,0,0,0,783,4409,1,0,0,0,785,4418, + 1,0,0,0,787,4428,1,0,0,0,789,4444,1,0,0,0,791,4456,1,0,0,0,793,4462, + 1,0,0,0,795,4470,1,0,0,0,797,4475,1,0,0,0,799,4486,1,0,0,0,801,4491, + 1,0,0,0,803,4500,1,0,0,0,805,4509,1,0,0,0,807,4517,1,0,0,0,809,4525, + 1,0,0,0,811,4535,1,0,0,0,813,4541,1,0,0,0,815,4548,1,0,0,0,817,4556, + 1,0,0,0,819,4563,1,0,0,0,821,4571,1,0,0,0,823,4578,1,0,0,0,825,4584, + 1,0,0,0,827,4591,1,0,0,0,829,4595,1,0,0,0,831,4600,1,0,0,0,833,4606, + 1,0,0,0,835,4612,1,0,0,0,837,4619,1,0,0,0,839,4628,1,0,0,0,841,4638, + 1,0,0,0,843,4646,1,0,0,0,845,4654,1,0,0,0,847,4662,1,0,0,0,849,4671, + 1,0,0,0,851,4682,1,0,0,0,853,4688,1,0,0,0,855,4696,1,0,0,0,857,4706, + 1,0,0,0,859,4717,1,0,0,0,861,4727,1,0,0,0,863,4733,1,0,0,0,865,4738, + 1,0,0,0,867,4747,1,0,0,0,869,4753,1,0,0,0,871,4766,1,0,0,0,873,4773, + 1,0,0,0,875,4778,1,0,0,0,877,4785,1,0,0,0,879,4793,1,0,0,0,881,4798, + 1,0,0,0,883,4802,1,0,0,0,885,4808,1,0,0,0,887,4812,1,0,0,0,889,4820, + 1,0,0,0,891,4828,1,0,0,0,893,4836,1,0,0,0,895,4843,1,0,0,0,897,4855, + 1,0,0,0,899,4864,1,0,0,0,901,4869,1,0,0,0,903,4878,1,0,0,0,905,4883, + 1,0,0,0,907,4890,1,0,0,0,909,4895,1,0,0,0,911,4906,1,0,0,0,913,4910, + 1,0,0,0,915,4917,1,0,0,0,917,4923,1,0,0,0,919,4933,1,0,0,0,921,4938, + 1,0,0,0,923,4944,1,0,0,0,925,4954,1,0,0,0,927,4958,1,0,0,0,929,4964, + 1,0,0,0,931,4971,1,0,0,0,933,4981,1,0,0,0,935,4985,1,0,0,0,937,4990, + 1,0,0,0,939,4995,1,0,0,0,941,4999,1,0,0,0,943,5004,1,0,0,0,945,5009, + 1,0,0,0,947,5013,1,0,0,0,949,5025,1,0,0,0,951,5036,1,0,0,0,953,5048, + 1,0,0,0,955,5056,1,0,0,0,957,5063,1,0,0,0,959,5074,1,0,0,0,961,5080, + 1,0,0,0,963,5088,1,0,0,0,965,5093,1,0,0,0,967,5098,1,0,0,0,969,5108, + 1,0,0,0,971,5115,1,0,0,0,973,5131,1,0,0,0,975,5151,1,0,0,0,977,5164, + 1,0,0,0,979,5175,1,0,0,0,981,5192,1,0,0,0,983,5212,1,0,0,0,985,5220, + 1,0,0,0,987,5227,1,0,0,0,989,5236,1,0,0,0,991,5244,1,0,0,0,993,5252, + 1,0,0,0,995,5257,1,0,0,0,997,5262,1,0,0,0,999,5268,1,0,0,0,1001, + 5273,1,0,0,0,1003,5283,1,0,0,0,1005,5291,1,0,0,0,1007,5298,1,0,0, + 0,1009,5305,1,0,0,0,1011,5310,1,0,0,0,1013,5315,1,0,0,0,1015,5321, + 1,0,0,0,1017,5326,1,0,0,0,1019,5328,1,0,0,0,1021,5330,1,0,0,0,1023, + 5332,1,0,0,0,1025,5334,1,0,0,0,1027,5336,1,0,0,0,1029,5338,1,0,0, + 0,1031,5340,1,0,0,0,1033,5342,1,0,0,0,1035,5344,1,0,0,0,1037,5346, + 1,0,0,0,1039,5348,1,0,0,0,1041,5350,1,0,0,0,1043,5352,1,0,0,0,1045, + 5354,1,0,0,0,1047,5356,1,0,0,0,1049,5358,1,0,0,0,1051,5360,1,0,0, + 0,1053,5362,1,0,0,0,1055,5364,1,0,0,0,1057,5366,1,0,0,0,1059,5368, + 1,0,0,0,1061,5370,1,0,0,0,1063,5372,1,0,0,0,1065,5374,1,0,0,0,1067, + 5376,1,0,0,0,1069,5378,1,0,0,0,1071,5380,1,0,0,0,1073,5383,1,0,0, + 0,1075,5386,1,0,0,0,1077,5388,1,0,0,0,1079,5390,1,0,0,0,1081,5396, + 1,0,0,0,1083,5399,1,0,0,0,1085,5446,1,0,0,0,1087,5448,1,0,0,0,1089, + 5450,1,0,0,0,1091,5452,1,0,0,0,1093,5465,1,0,0,0,1095,5477,1,0,0, + 0,1097,5491,1,0,0,0,1099,5493,1,0,0,0,1101,5495,1,0,0,0,1103,5508, + 1,0,0,0,1105,5521,1,0,0,0,1107,5530,1,0,0,0,1109,1110,7,0,0,0,1110, + 1111,1,0,0,0,1111,1112,6,0,0,0,1112,2,1,0,0,0,1113,1114,5,47,0,0, + 1114,1115,5,42,0,0,1115,1119,1,0,0,0,1116,1118,9,0,0,0,1117,1116, + 1,0,0,0,1118,1121,1,0,0,0,1119,1120,1,0,0,0,1119,1117,1,0,0,0,1120, + 1122,1,0,0,0,1121,1119,1,0,0,0,1122,1123,5,42,0,0,1123,1124,5,47, + 0,0,1124,1125,1,0,0,0,1125,1126,6,1,0,0,1126,4,1,0,0,0,1127,1128, + 5,45,0,0,1128,1131,5,45,0,0,1129,1131,5,35,0,0,1130,1127,1,0,0,0, + 1130,1129,1,0,0,0,1131,1135,1,0,0,0,1132,1134,8,1,0,0,1133,1132, + 1,0,0,0,1134,1137,1,0,0,0,1135,1133,1,0,0,0,1135,1136,1,0,0,0,1136, + 1143,1,0,0,0,1137,1135,1,0,0,0,1138,1140,5,13,0,0,1139,1138,1,0, + 0,0,1139,1140,1,0,0,0,1140,1141,1,0,0,0,1141,1144,5,10,0,0,1142, + 1144,5,0,0,1,1143,1139,1,0,0,0,1143,1142,1,0,0,0,1144,1156,1,0,0, + 0,1145,1146,5,45,0,0,1146,1147,5,45,0,0,1147,1153,1,0,0,0,1148,1150, + 5,13,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1151,1,0,0,0,1151, + 1154,5,10,0,0,1152,1154,5,0,0,1,1153,1149,1,0,0,0,1153,1152,1,0, + 0,0,1154,1156,1,0,0,0,1155,1130,1,0,0,0,1155,1145,1,0,0,0,1156,1157, + 1,0,0,0,1157,1158,6,2,0,0,1158,6,1,0,0,0,1159,1160,7,2,0,0,1160, + 1161,7,3,0,0,1161,1162,7,4,0,0,1162,8,1,0,0,0,1163,1164,7,2,0,0, + 1164,1165,7,5,0,0,1165,1166,7,5,0,0,1166,10,1,0,0,0,1167,1168,7, + 2,0,0,1168,1169,7,5,0,0,1169,1170,7,5,0,0,1170,1171,7,6,0,0,1171, + 1172,7,7,0,0,1172,1173,7,2,0,0,1173,1174,7,8,0,0,1174,1175,7,9,0, + 0,1175,12,1,0,0,0,1176,1177,7,2,0,0,1177,1178,7,5,0,0,1178,1179, + 7,5,0,0,1179,1180,7,6,0,0,1180,1181,7,10,0,0,1181,14,1,0,0,0,1182, + 1183,7,2,0,0,1183,1184,7,5,0,0,1184,1185,7,8,0,0,1185,1186,7,9,0, + 0,1186,1187,7,11,0,0,1187,16,1,0,0,0,1188,1189,7,2,0,0,1189,1190, + 7,12,0,0,1190,1191,7,2,0,0,1191,1192,7,5,0,0,1192,1193,7,13,0,0, + 1193,1194,7,14,0,0,1194,1195,7,9,0,0,1195,18,1,0,0,0,1196,1197,7, + 2,0,0,1197,1198,7,12,0,0,1198,1199,7,15,0,0,1199,20,1,0,0,0,1200, + 1201,7,2,0,0,1201,1202,7,12,0,0,1202,1203,7,13,0,0,1203,22,1,0,0, + 0,1204,1205,7,2,0,0,1205,1206,7,11,0,0,1206,1207,7,9,0,0,1207,24, + 1,0,0,0,1208,1209,7,2,0,0,1209,1210,7,11,0,0,1210,1211,7,11,0,0, + 1211,1212,7,2,0,0,1212,1213,7,13,0,0,1213,26,1,0,0,0,1214,1215,7, + 2,0,0,1215,1216,7,11,0,0,1216,1217,7,11,0,0,1217,1218,7,2,0,0,1218, + 1219,7,13,0,0,1219,1220,5,95,0,0,1220,1221,7,2,0,0,1221,1222,7,16, + 0,0,1222,1223,7,16,0,0,1223,28,1,0,0,0,1224,1225,7,2,0,0,1225,1226, + 7,11,0,0,1226,1227,7,11,0,0,1227,1228,7,2,0,0,1228,1229,7,13,0,0, + 1229,1230,5,95,0,0,1230,1231,7,7,0,0,1231,1232,7,6,0,0,1232,1233, + 7,12,0,0,1233,1234,7,7,0,0,1234,1235,7,2,0,0,1235,1236,7,8,0,0,1236, + 1237,5,95,0,0,1237,1238,7,2,0,0,1238,1239,7,16,0,0,1239,1240,7,16, + 0,0,1240,30,1,0,0,0,1241,1242,7,2,0,0,1242,1243,7,11,0,0,1243,1244, + 7,11,0,0,1244,1245,7,2,0,0,1245,1246,7,13,0,0,1246,1247,5,95,0,0, + 1247,1248,7,17,0,0,1248,1249,7,2,0,0,1249,1250,7,18,0,0,1250,1251, + 5,95,0,0,1251,1252,7,7,0,0,1252,1253,7,2,0,0,1253,1254,7,11,0,0, + 1254,1255,7,15,0,0,1255,1256,7,19,0,0,1256,1257,7,12,0,0,1257,1258, + 7,2,0,0,1258,1259,7,5,0,0,1259,1260,7,19,0,0,1260,1261,7,8,0,0,1261, + 1262,7,13,0,0,1262,32,1,0,0,0,1263,1264,7,2,0,0,1264,1265,7,4,0, + 0,1265,34,1,0,0,0,1266,1267,7,2,0,0,1267,1268,7,4,0,0,1268,1269, + 7,9,0,0,1269,1270,7,12,0,0,1270,1271,7,4,0,0,1271,1272,7,19,0,0, + 1272,1273,7,8,0,0,1273,1274,7,19,0,0,1274,1275,7,20,0,0,1275,1276, + 7,9,0,0,1276,36,1,0,0,0,1277,1278,7,2,0,0,1278,1279,7,4,0,0,1279, + 1280,7,13,0,0,1280,1281,7,17,0,0,1281,1282,7,17,0,0,1282,1283,7, + 9,0,0,1283,1284,7,8,0,0,1284,1285,7,11,0,0,1285,1286,7,19,0,0,1286, + 1287,7,7,0,0,1287,38,1,0,0,0,1288,1289,7,2,0,0,1289,1290,7,8,0,0, + 1290,40,1,0,0,0,1291,1292,7,2,0,0,1292,1293,7,8,0,0,1293,1294,7, + 6,0,0,1294,1295,7,17,0,0,1295,1296,7,19,0,0,1296,1297,7,7,0,0,1297, + 42,1,0,0,0,1298,1299,7,2,0,0,1299,1300,7,21,0,0,1300,1301,7,8,0, + 0,1301,1302,7,22,0,0,1302,1303,7,6,0,0,1303,1304,7,11,0,0,1304,1305, + 7,19,0,0,1305,1306,7,14,0,0,1306,1307,7,2,0,0,1307,1308,7,8,0,0, + 1308,1309,7,19,0,0,1309,1310,7,6,0,0,1310,1311,7,12,0,0,1311,44, + 1,0,0,0,1312,1313,7,2,0,0,1313,1314,7,20,0,0,1314,1315,7,16,0,0, + 1315,46,1,0,0,0,1316,1317,7,3,0,0,1317,1318,7,9,0,0,1318,1319,7, + 16,0,0,1319,1320,7,19,0,0,1320,1321,7,12,0,0,1321,48,1,0,0,0,1322, + 1323,7,3,0,0,1323,1324,7,9,0,0,1324,1325,7,16,0,0,1325,1326,7,19, + 0,0,1326,1327,7,12,0,0,1327,1328,5,95,0,0,1328,1329,7,23,0,0,1329, + 1330,7,11,0,0,1330,1331,7,2,0,0,1331,1332,7,17,0,0,1332,1333,7,9, + 0,0,1333,50,1,0,0,0,1334,1335,7,3,0,0,1335,1336,7,9,0,0,1336,1337, + 7,16,0,0,1337,1338,7,19,0,0,1338,1339,7,12,0,0,1339,1340,5,95,0, + 0,1340,1341,7,24,0,0,1341,1342,7,2,0,0,1342,1343,7,11,0,0,1343,1344, + 7,8,0,0,1344,1345,7,19,0,0,1345,1346,7,8,0,0,1346,1347,7,19,0,0, + 1347,1348,7,6,0,0,1348,1349,7,12,0,0,1349,52,1,0,0,0,1350,1351,7, + 3,0,0,1351,1352,7,9,0,0,1352,1353,7,8,0,0,1353,1354,7,10,0,0,1354, + 1355,7,9,0,0,1355,1356,7,9,0,0,1356,1357,7,12,0,0,1357,54,1,0,0, + 0,1358,1359,7,3,0,0,1359,1360,7,19,0,0,1360,1361,7,16,0,0,1361,1362, + 7,19,0,0,1362,1363,7,12,0,0,1363,1364,7,8,0,0,1364,56,1,0,0,0,1365, + 1366,7,3,0,0,1366,1367,7,19,0,0,1367,1368,7,12,0,0,1368,1369,7,2, + 0,0,1369,1370,7,11,0,0,1370,1371,7,13,0,0,1371,58,1,0,0,0,1372,1373, + 7,3,0,0,1373,1374,7,19,0,0,1374,1375,7,8,0,0,1375,60,1,0,0,0,1376, + 1377,7,3,0,0,1377,1378,7,5,0,0,1378,1379,7,6,0,0,1379,1380,7,3,0, + 0,1380,62,1,0,0,0,1381,1382,7,3,0,0,1382,1383,7,6,0,0,1383,1384, + 7,6,0,0,1384,1385,7,5,0,0,1385,1386,7,9,0,0,1386,1387,7,2,0,0,1387, + 1388,7,12,0,0,1388,64,1,0,0,0,1389,1390,7,3,0,0,1390,1391,7,6,0, + 0,1391,1392,7,8,0,0,1392,1393,7,22,0,0,1393,66,1,0,0,0,1394,1395, + 7,3,0,0,1395,1396,7,13,0,0,1396,68,1,0,0,0,1397,1398,7,3,0,0,1398, + 1399,7,13,0,0,1399,1400,7,8,0,0,1400,1401,7,9,0,0,1401,1402,7,4, + 0,0,1402,70,1,0,0,0,1403,1404,7,7,0,0,1404,1405,7,2,0,0,1405,1406, + 7,5,0,0,1406,1407,7,5,0,0,1407,72,1,0,0,0,1408,1409,7,7,0,0,1409, + 1410,7,2,0,0,1410,1411,7,5,0,0,1411,1412,7,5,0,0,1412,1413,7,9,0, + 0,1413,1414,7,15,0,0,1414,74,1,0,0,0,1415,1416,7,7,0,0,1416,1417, + 7,2,0,0,1417,1418,7,11,0,0,1418,1419,7,15,0,0,1419,1420,7,19,0,0, + 1420,1421,7,12,0,0,1421,1422,7,2,0,0,1422,1423,7,5,0,0,1423,1424, + 7,19,0,0,1424,1425,7,8,0,0,1425,1426,7,13,0,0,1426,76,1,0,0,0,1427, + 1428,7,7,0,0,1428,1429,7,2,0,0,1429,1430,7,4,0,0,1430,1431,7,7,0, + 0,1431,1432,7,2,0,0,1432,1433,7,15,0,0,1433,1434,7,9,0,0,1434,1435, + 7,15,0,0,1435,78,1,0,0,0,1436,1437,7,7,0,0,1437,1438,7,2,0,0,1438, + 1439,7,4,0,0,1439,1440,7,9,0,0,1440,80,1,0,0,0,1441,1442,7,7,0,0, + 1442,1443,7,2,0,0,1443,1444,7,4,0,0,1444,1445,7,8,0,0,1445,82,1, + 0,0,0,1446,1447,7,7,0,0,1447,1448,7,2,0,0,1448,1449,7,8,0,0,1449, + 1450,7,2,0,0,1450,1451,7,5,0,0,1451,1452,7,6,0,0,1452,1453,7,16, + 0,0,1453,1454,7,4,0,0,1454,84,1,0,0,0,1455,1456,7,7,0,0,1456,1457, + 7,9,0,0,1457,1458,7,19,0,0,1458,1459,7,5,0,0,1459,86,1,0,0,0,1460, + 1461,7,7,0,0,1461,1462,7,9,0,0,1462,1463,7,19,0,0,1463,1464,7,5, + 0,0,1464,1465,7,19,0,0,1465,1466,7,12,0,0,1466,1467,7,16,0,0,1467, + 88,1,0,0,0,1468,1469,7,7,0,0,1469,1470,7,22,0,0,1470,1471,7,2,0, + 0,1471,1472,7,12,0,0,1472,1473,7,16,0,0,1473,1474,7,9,0,0,1474,1475, + 7,5,0,0,1475,1476,7,6,0,0,1476,1477,7,16,0,0,1477,1478,5,95,0,0, + 1478,1479,7,17,0,0,1479,1480,7,6,0,0,1480,1481,7,15,0,0,1481,1482, + 7,9,0,0,1482,90,1,0,0,0,1483,1484,7,7,0,0,1484,1485,7,22,0,0,1485, + 1486,7,2,0,0,1486,1487,7,11,0,0,1487,92,1,0,0,0,1488,1489,7,7,0, + 0,1489,1490,7,22,0,0,1490,1491,7,2,0,0,1491,1492,7,11,0,0,1492,1493, + 7,2,0,0,1493,1494,7,7,0,0,1494,1495,7,8,0,0,1495,1496,7,9,0,0,1496, + 1497,7,11,0,0,1497,94,1,0,0,0,1498,1499,7,7,0,0,1499,1500,7,22,0, + 0,1500,1501,7,2,0,0,1501,1502,7,11,0,0,1502,1503,7,2,0,0,1503,1504, + 7,7,0,0,1504,1505,7,8,0,0,1505,1506,7,9,0,0,1506,1507,7,11,0,0,1507, + 1508,5,95,0,0,1508,1509,7,5,0,0,1509,1510,7,9,0,0,1510,1511,7,12, + 0,0,1511,1512,7,16,0,0,1512,1513,7,8,0,0,1513,1514,7,22,0,0,1514, + 96,1,0,0,0,1515,1516,7,7,0,0,1516,1517,7,22,0,0,1517,1518,7,2,0, + 0,1518,1519,7,11,0,0,1519,1520,5,95,0,0,1520,1521,7,5,0,0,1521,1522, + 7,9,0,0,1522,1523,7,12,0,0,1523,1524,7,16,0,0,1524,1525,7,8,0,0, + 1525,1526,7,22,0,0,1526,98,1,0,0,0,1527,1528,7,7,0,0,1528,1529,7, + 22,0,0,1529,1530,7,9,0,0,1530,1531,7,7,0,0,1531,1532,7,25,0,0,1532, + 100,1,0,0,0,1533,1534,7,7,0,0,1534,1535,7,5,0,0,1535,1536,7,2,0, + 0,1536,1537,7,4,0,0,1537,1538,7,4,0,0,1538,1539,7,19,0,0,1539,1540, + 7,23,0,0,1540,1541,7,19,0,0,1541,1542,7,9,0,0,1542,1543,7,11,0,0, + 1543,102,1,0,0,0,1544,1545,7,7,0,0,1545,1546,7,5,0,0,1546,1547,7, + 6,0,0,1547,1548,7,3,0,0,1548,104,1,0,0,0,1549,1550,7,7,0,0,1550, + 1551,7,5,0,0,1551,1552,7,6,0,0,1552,1553,7,4,0,0,1553,1554,7,9,0, + 0,1554,106,1,0,0,0,1555,1556,7,7,0,0,1556,1557,7,6,0,0,1557,1558, + 7,2,0,0,1558,1559,7,5,0,0,1559,1560,7,9,0,0,1560,1561,7,4,0,0,1561, + 1562,7,7,0,0,1562,1563,7,9,0,0,1563,108,1,0,0,0,1564,1565,7,7,0, + 0,1565,1566,7,6,0,0,1566,1567,7,5,0,0,1567,1568,7,5,0,0,1568,1569, + 7,2,0,0,1569,1570,7,8,0,0,1570,1571,7,9,0,0,1571,110,1,0,0,0,1572, + 1573,7,7,0,0,1573,1574,7,6,0,0,1574,1575,7,5,0,0,1575,1576,7,5,0, + 0,1576,1577,7,9,0,0,1577,1578,7,7,0,0,1578,1579,7,8,0,0,1579,112, + 1,0,0,0,1580,1581,7,7,0,0,1581,1582,7,6,0,0,1582,1583,7,5,0,0,1583, + 1584,7,21,0,0,1584,1585,7,17,0,0,1585,1586,7,12,0,0,1586,114,1,0, + 0,0,1587,1588,7,7,0,0,1588,1589,7,6,0,0,1589,1590,7,5,0,0,1590,1591, + 7,21,0,0,1591,1592,7,17,0,0,1592,1593,7,12,0,0,1593,1594,7,4,0,0, + 1594,116,1,0,0,0,1595,1596,7,7,0,0,1596,1597,7,6,0,0,1597,1598,7, + 17,0,0,1598,1599,7,17,0,0,1599,1600,7,9,0,0,1600,1601,7,12,0,0,1601, + 1602,7,8,0,0,1602,118,1,0,0,0,1603,1604,7,7,0,0,1604,1605,7,6,0, + 0,1605,1606,7,17,0,0,1606,1607,7,17,0,0,1607,1608,7,19,0,0,1608, + 1609,7,8,0,0,1609,120,1,0,0,0,1610,1611,7,7,0,0,1611,1612,7,6,0, + 0,1612,1613,7,17,0,0,1613,1614,7,24,0,0,1614,1615,7,21,0,0,1615, + 1616,7,8,0,0,1616,1617,7,9,0,0,1617,122,1,0,0,0,1618,1619,7,7,0, + 0,1619,1620,7,6,0,0,1620,1621,7,12,0,0,1621,1622,7,15,0,0,1622,1623, + 7,19,0,0,1623,1624,7,8,0,0,1624,1625,7,19,0,0,1625,1626,7,6,0,0, + 1626,1627,7,12,0,0,1627,124,1,0,0,0,1628,1629,7,7,0,0,1629,1630, + 7,6,0,0,1630,1631,7,12,0,0,1631,1632,7,12,0,0,1632,1633,7,9,0,0, + 1633,1634,7,7,0,0,1634,1635,7,8,0,0,1635,126,1,0,0,0,1636,1637,7, + 7,0,0,1637,1638,7,6,0,0,1638,1639,7,12,0,0,1639,1640,7,4,0,0,1640, + 1641,7,8,0,0,1641,1642,7,11,0,0,1642,1643,7,2,0,0,1643,1644,7,19, + 0,0,1644,1645,7,12,0,0,1645,1646,7,8,0,0,1646,128,1,0,0,0,1647,1648, + 7,7,0,0,1648,1649,7,6,0,0,1649,1650,7,12,0,0,1650,1651,7,8,0,0,1651, + 1652,7,2,0,0,1652,1653,7,19,0,0,1653,1654,7,12,0,0,1654,1655,7,4, + 0,0,1655,130,1,0,0,0,1656,1657,7,7,0,0,1657,1658,7,6,0,0,1658,1659, + 7,12,0,0,1659,1660,7,20,0,0,1660,1661,7,9,0,0,1661,1662,7,11,0,0, + 1662,1663,7,8,0,0,1663,132,1,0,0,0,1664,1665,7,7,0,0,1665,1666,7, + 6,0,0,1666,1667,7,11,0,0,1667,1668,7,11,0,0,1668,134,1,0,0,0,1669, + 1670,7,7,0,0,1670,1671,7,6,0,0,1671,1672,7,11,0,0,1672,1673,7,11, + 0,0,1673,1674,7,9,0,0,1674,1675,7,4,0,0,1675,1676,7,24,0,0,1676, + 1677,7,6,0,0,1677,1678,7,12,0,0,1678,1679,7,15,0,0,1679,1680,7,19, + 0,0,1680,1681,7,12,0,0,1681,1682,7,16,0,0,1682,136,1,0,0,0,1683, + 1684,7,7,0,0,1684,1685,7,6,0,0,1685,1686,7,21,0,0,1686,1687,7,12, + 0,0,1687,1688,7,8,0,0,1688,138,1,0,0,0,1689,1690,7,7,0,0,1690,1691, + 7,6,0,0,1691,1692,7,20,0,0,1692,1693,7,2,0,0,1693,1694,7,11,0,0, + 1694,1695,5,95,0,0,1695,1696,7,24,0,0,1696,1697,7,6,0,0,1697,1698, + 7,24,0,0,1698,140,1,0,0,0,1699,1700,7,7,0,0,1700,1701,7,6,0,0,1701, + 1702,7,20,0,0,1702,1703,7,2,0,0,1703,1704,7,11,0,0,1704,1705,5,95, + 0,0,1705,1706,7,4,0,0,1706,1707,7,2,0,0,1707,1708,7,17,0,0,1708, + 1709,7,24,0,0,1709,142,1,0,0,0,1710,1711,7,7,0,0,1711,1712,7,11, + 0,0,1712,1713,7,9,0,0,1713,1714,7,2,0,0,1714,1715,7,8,0,0,1715,1716, + 7,9,0,0,1716,144,1,0,0,0,1717,1718,7,7,0,0,1718,1719,7,11,0,0,1719, + 1720,7,6,0,0,1720,1721,7,4,0,0,1721,1722,7,4,0,0,1722,146,1,0,0, + 0,1723,1724,7,7,0,0,1724,1725,7,21,0,0,1725,1726,7,3,0,0,1726,1727, + 7,9,0,0,1727,148,1,0,0,0,1728,1729,7,7,0,0,1729,1730,7,21,0,0,1730, + 1731,7,17,0,0,1731,1732,7,9,0,0,1732,1733,5,95,0,0,1733,1734,7,15, + 0,0,1734,1735,7,19,0,0,1735,1736,7,4,0,0,1736,1737,7,8,0,0,1737, + 150,1,0,0,0,1738,1739,7,7,0,0,1739,1740,7,21,0,0,1740,1741,7,11, + 0,0,1741,1742,7,11,0,0,1742,1743,7,9,0,0,1743,1744,7,12,0,0,1744, + 1745,7,8,0,0,1745,152,1,0,0,0,1746,1747,7,7,0,0,1747,1748,7,21,0, + 0,1748,1749,7,11,0,0,1749,1750,7,11,0,0,1750,1751,7,9,0,0,1751,1752, + 7,12,0,0,1752,1753,7,8,0,0,1753,1754,5,95,0,0,1754,1755,7,7,0,0, + 1755,1756,7,2,0,0,1756,1757,7,8,0,0,1757,1758,7,2,0,0,1758,1759, + 7,5,0,0,1759,1760,7,6,0,0,1760,1761,7,16,0,0,1761,154,1,0,0,0,1762, + 1763,7,7,0,0,1763,1764,7,21,0,0,1764,1765,7,11,0,0,1765,1766,7,11, + 0,0,1766,1767,7,9,0,0,1767,1768,7,12,0,0,1768,1769,7,8,0,0,1769, + 1770,5,95,0,0,1770,1771,7,15,0,0,1771,1772,7,2,0,0,1772,1773,7,8, + 0,0,1773,1774,7,9,0,0,1774,156,1,0,0,0,1775,1776,7,7,0,0,1776,1777, + 7,21,0,0,1777,1778,7,11,0,0,1778,1779,7,11,0,0,1779,1780,7,9,0,0, + 1780,1781,7,12,0,0,1781,1782,7,8,0,0,1782,1783,5,95,0,0,1783,1784, + 7,15,0,0,1784,1785,7,9,0,0,1785,1786,7,23,0,0,1786,1787,7,2,0,0, + 1787,1788,7,21,0,0,1788,1789,7,5,0,0,1789,1790,7,8,0,0,1790,1791, + 5,95,0,0,1791,1792,7,8,0,0,1792,1793,7,11,0,0,1793,1794,7,2,0,0, + 1794,1795,7,12,0,0,1795,1796,7,4,0,0,1796,1797,7,23,0,0,1797,1798, + 7,6,0,0,1798,1799,7,11,0,0,1799,1800,7,17,0,0,1800,1801,5,95,0,0, + 1801,1802,7,16,0,0,1802,1803,7,11,0,0,1803,1804,7,6,0,0,1804,1805, + 7,21,0,0,1805,1806,7,24,0,0,1806,158,1,0,0,0,1807,1808,7,7,0,0,1808, + 1809,7,21,0,0,1809,1810,7,11,0,0,1810,1811,7,11,0,0,1811,1812,7, + 9,0,0,1812,1813,7,12,0,0,1813,1814,7,8,0,0,1814,1815,5,95,0,0,1815, + 1816,7,24,0,0,1816,1817,7,2,0,0,1817,1818,7,8,0,0,1818,1819,7,22, + 0,0,1819,160,1,0,0,0,1820,1821,7,7,0,0,1821,1822,7,21,0,0,1822,1823, + 7,11,0,0,1823,1824,7,11,0,0,1824,1825,7,9,0,0,1825,1826,7,12,0,0, + 1826,1827,7,8,0,0,1827,1828,5,95,0,0,1828,1829,7,11,0,0,1829,1830, + 7,6,0,0,1830,1831,7,5,0,0,1831,1832,7,9,0,0,1832,162,1,0,0,0,1833, + 1834,7,7,0,0,1834,1835,7,21,0,0,1835,1836,7,11,0,0,1836,1837,7,11, + 0,0,1837,1838,7,9,0,0,1838,1839,7,12,0,0,1839,1840,7,8,0,0,1840, + 1841,5,95,0,0,1841,1842,7,11,0,0,1842,1843,7,6,0,0,1843,1844,7,10, + 0,0,1844,164,1,0,0,0,1845,1846,7,7,0,0,1846,1847,7,21,0,0,1847,1848, + 7,11,0,0,1848,1849,7,11,0,0,1849,1850,7,9,0,0,1850,1851,7,12,0,0, + 1851,1852,7,8,0,0,1852,1853,5,95,0,0,1853,1854,7,4,0,0,1854,1855, + 7,7,0,0,1855,1856,7,22,0,0,1856,1857,7,9,0,0,1857,1858,7,17,0,0, + 1858,1859,7,2,0,0,1859,166,1,0,0,0,1860,1861,7,7,0,0,1861,1862,7, + 21,0,0,1862,1863,7,11,0,0,1863,1864,7,11,0,0,1864,1865,7,9,0,0,1865, + 1866,7,12,0,0,1866,1867,7,8,0,0,1867,1868,5,95,0,0,1868,1869,7,8, + 0,0,1869,1870,7,19,0,0,1870,1871,7,17,0,0,1871,1872,7,9,0,0,1872, + 168,1,0,0,0,1873,1874,7,7,0,0,1874,1875,7,21,0,0,1875,1876,7,11, + 0,0,1876,1877,7,11,0,0,1877,1878,7,9,0,0,1878,1879,7,12,0,0,1879, + 1880,7,8,0,0,1880,1881,5,95,0,0,1881,1882,7,8,0,0,1882,1883,7,19, + 0,0,1883,1884,7,17,0,0,1884,1885,7,9,0,0,1885,1886,7,4,0,0,1886, + 1887,7,8,0,0,1887,1888,7,2,0,0,1888,1889,7,17,0,0,1889,1890,7,24, + 0,0,1890,170,1,0,0,0,1891,1892,7,7,0,0,1892,1893,7,21,0,0,1893,1894, + 7,11,0,0,1894,1895,7,11,0,0,1895,1896,7,9,0,0,1896,1897,7,12,0,0, + 1897,1898,7,8,0,0,1898,1899,5,95,0,0,1899,1900,7,8,0,0,1900,1901, + 7,11,0,0,1901,1902,7,2,0,0,1902,1903,7,12,0,0,1903,1904,7,4,0,0, + 1904,1905,7,23,0,0,1905,1906,7,6,0,0,1906,1907,7,11,0,0,1907,1908, + 7,17,0,0,1908,1909,5,95,0,0,1909,1910,7,16,0,0,1910,1911,7,11,0, + 0,1911,1912,7,6,0,0,1912,1913,7,21,0,0,1913,1914,7,24,0,0,1914,1915, + 5,95,0,0,1915,1916,7,23,0,0,1916,1917,7,6,0,0,1917,1918,7,11,0,0, + 1918,1919,5,95,0,0,1919,1920,7,8,0,0,1920,1921,7,13,0,0,1921,1922, + 7,24,0,0,1922,1923,7,9,0,0,1923,172,1,0,0,0,1924,1925,7,7,0,0,1925, + 1926,7,21,0,0,1926,1927,7,11,0,0,1927,1928,7,11,0,0,1928,1929,7, + 9,0,0,1929,1930,7,12,0,0,1930,1931,7,8,0,0,1931,1932,5,95,0,0,1932, + 1933,7,21,0,0,1933,1934,7,4,0,0,1934,1935,7,9,0,0,1935,1936,7,11, + 0,0,1936,174,1,0,0,0,1937,1938,7,7,0,0,1938,1939,7,21,0,0,1939,1940, + 7,11,0,0,1940,1941,7,4,0,0,1941,1942,7,6,0,0,1942,1943,7,11,0,0, + 1943,176,1,0,0,0,1944,1945,7,7,0,0,1945,1946,7,13,0,0,1946,1947, + 7,7,0,0,1947,1948,7,5,0,0,1948,1949,7,9,0,0,1949,178,1,0,0,0,1950, + 1951,7,15,0,0,1951,1952,7,2,0,0,1952,1953,7,8,0,0,1953,1954,7,2, + 0,0,1954,1955,7,3,0,0,1955,1956,7,2,0,0,1956,1957,7,4,0,0,1957,1958, + 7,9,0,0,1958,1959,7,4,0,0,1959,180,1,0,0,0,1960,1961,7,15,0,0,1961, + 1962,7,2,0,0,1962,1963,7,8,0,0,1963,1964,7,9,0,0,1964,182,1,0,0, + 0,1965,1966,7,15,0,0,1966,1967,7,2,0,0,1967,1968,7,8,0,0,1968,1969, + 7,9,0,0,1969,1970,7,8,0,0,1970,1971,7,19,0,0,1971,1972,7,17,0,0, + 1972,1973,7,9,0,0,1973,184,1,0,0,0,1974,1975,7,15,0,0,1975,1976, + 7,2,0,0,1976,1977,7,8,0,0,1977,1978,7,9,0,0,1978,1979,7,8,0,0,1979, + 1980,7,19,0,0,1980,1981,7,17,0,0,1981,1982,7,9,0,0,1982,1983,5,95, + 0,0,1983,1984,7,15,0,0,1984,1985,7,19,0,0,1985,1986,7,23,0,0,1986, + 1987,7,23,0,0,1987,186,1,0,0,0,1988,1989,7,15,0,0,1989,1990,7,2, + 0,0,1990,1991,7,8,0,0,1991,1992,7,9,0,0,1992,1993,7,8,0,0,1993,1994, + 7,19,0,0,1994,1995,7,17,0,0,1995,1996,7,9,0,0,1996,1997,5,95,0,0, + 1997,1998,7,8,0,0,1998,1999,7,11,0,0,1999,2000,7,21,0,0,2000,2001, + 7,12,0,0,2001,2002,7,7,0,0,2002,188,1,0,0,0,2003,2004,7,15,0,0,2004, + 2005,7,2,0,0,2005,2006,7,8,0,0,2006,2007,7,9,0,0,2007,2008,5,95, + 0,0,2008,2009,7,15,0,0,2009,2010,7,19,0,0,2010,2011,7,23,0,0,2011, + 2012,7,23,0,0,2012,190,1,0,0,0,2013,2014,7,15,0,0,2014,2015,7,2, + 0,0,2015,2016,7,8,0,0,2016,2017,7,9,0,0,2017,2018,5,95,0,0,2018, + 2019,7,8,0,0,2019,2020,7,11,0,0,2020,2021,7,21,0,0,2021,2022,7,12, + 0,0,2022,2023,7,7,0,0,2023,192,1,0,0,0,2024,2025,7,15,0,0,2025,2026, + 7,2,0,0,2026,2027,7,13,0,0,2027,194,1,0,0,0,2028,2029,7,15,0,0,2029, + 2030,7,2,0,0,2030,2031,7,13,0,0,2031,2032,7,6,0,0,2032,2033,7,23, + 0,0,2033,2034,7,10,0,0,2034,2035,7,9,0,0,2035,2036,7,9,0,0,2036, + 2037,7,25,0,0,2037,196,1,0,0,0,2038,2039,7,15,0,0,2039,2040,7,2, + 0,0,2040,2041,7,13,0,0,2041,2042,7,6,0,0,2042,2043,7,23,0,0,2043, + 2044,7,13,0,0,2044,2045,7,9,0,0,2045,2046,7,2,0,0,2046,2047,7,11, + 0,0,2047,198,1,0,0,0,2048,2049,7,15,0,0,2049,2050,7,9,0,0,2050,2051, + 7,2,0,0,2051,2052,7,5,0,0,2052,2053,7,5,0,0,2053,2054,7,6,0,0,2054, + 2055,7,7,0,0,2055,2056,7,2,0,0,2056,2057,7,8,0,0,2057,2058,7,9,0, + 0,2058,200,1,0,0,0,2059,2060,7,15,0,0,2060,2061,7,9,0,0,2061,2062, + 7,7,0,0,2062,202,1,0,0,0,2063,2064,7,15,0,0,2064,2065,7,9,0,0,2065, + 2066,7,7,0,0,2066,2067,7,19,0,0,2067,2068,7,17,0,0,2068,2069,7,2, + 0,0,2069,2070,7,5,0,0,2070,204,1,0,0,0,2071,2072,7,15,0,0,2072,2073, + 7,9,0,0,2073,2074,7,7,0,0,2074,2075,7,5,0,0,2075,2076,7,2,0,0,2076, + 2077,7,11,0,0,2077,2078,7,9,0,0,2078,206,1,0,0,0,2079,2080,7,15, + 0,0,2080,2081,7,9,0,0,2081,2082,7,23,0,0,2082,2083,7,2,0,0,2083, + 2084,7,21,0,0,2084,2085,7,5,0,0,2085,2086,7,8,0,0,2086,208,1,0,0, + 0,2087,2088,7,15,0,0,2088,2089,7,9,0,0,2089,2090,7,23,0,0,2090,2091, + 7,19,0,0,2091,2092,7,12,0,0,2092,2093,7,9,0,0,2093,210,1,0,0,0,2094, + 2095,7,15,0,0,2095,2096,7,9,0,0,2096,2097,7,5,0,0,2097,2098,7,9, + 0,0,2098,2099,7,8,0,0,2099,2100,7,9,0,0,2100,212,1,0,0,0,2101,2102, + 7,15,0,0,2102,2103,7,9,0,0,2103,2104,7,12,0,0,2104,2105,7,4,0,0, + 2105,2106,7,9,0,0,2106,2107,5,95,0,0,2107,2108,7,11,0,0,2108,2109, + 7,2,0,0,2109,2110,7,12,0,0,2110,2111,7,25,0,0,2111,214,1,0,0,0,2112, + 2113,7,15,0,0,2113,2114,7,9,0,0,2114,2115,7,11,0,0,2115,2116,7,9, + 0,0,2116,2117,7,23,0,0,2117,216,1,0,0,0,2118,2119,7,15,0,0,2119, + 2120,7,9,0,0,2120,2121,7,4,0,0,2121,2122,7,7,0,0,2122,2123,7,11, + 0,0,2123,2124,7,19,0,0,2124,2125,7,3,0,0,2125,2126,7,9,0,0,2126, + 218,1,0,0,0,2127,2128,7,15,0,0,2128,2129,7,9,0,0,2129,2130,7,8,0, + 0,2130,2131,7,9,0,0,2131,2132,7,11,0,0,2132,2133,7,17,0,0,2133,2134, + 7,19,0,0,2134,2135,7,12,0,0,2135,2136,7,19,0,0,2136,2137,7,4,0,0, + 2137,2138,7,8,0,0,2138,2139,7,19,0,0,2139,2140,7,7,0,0,2140,220, + 1,0,0,0,2141,2142,7,15,0,0,2142,2143,7,19,0,0,2143,2144,7,4,0,0, + 2144,2145,7,2,0,0,2145,2146,7,5,0,0,2146,2147,7,5,0,0,2147,2148, + 7,6,0,0,2148,2149,7,10,0,0,2149,222,1,0,0,0,2150,2151,7,15,0,0,2151, + 2152,7,19,0,0,2152,2153,7,4,0,0,2153,2154,7,7,0,0,2154,2155,7,6, + 0,0,2155,2156,7,12,0,0,2156,2157,7,12,0,0,2157,2158,7,9,0,0,2158, + 2159,7,7,0,0,2159,2160,7,8,0,0,2160,224,1,0,0,0,2161,2162,7,15,0, + 0,2162,2163,7,19,0,0,2163,2164,7,4,0,0,2164,2165,7,8,0,0,2165,2166, + 7,19,0,0,2166,2167,7,12,0,0,2167,2168,7,7,0,0,2168,2169,7,8,0,0, + 2169,226,1,0,0,0,2170,2171,7,15,0,0,2171,2172,7,6,0,0,2172,2173, + 7,8,0,0,2173,228,1,0,0,0,2174,2175,7,15,0,0,2175,2176,7,6,0,0,2176, + 2177,7,21,0,0,2177,2178,7,3,0,0,2178,2179,7,5,0,0,2179,2180,7,9, + 0,0,2180,230,1,0,0,0,2181,2182,7,15,0,0,2182,2183,7,11,0,0,2183, + 2184,7,6,0,0,2184,2185,7,24,0,0,2185,232,1,0,0,0,2186,2187,7,15, + 0,0,2187,2188,7,13,0,0,2188,2189,7,12,0,0,2189,2190,7,2,0,0,2190, + 2191,7,17,0,0,2191,2192,7,19,0,0,2192,2193,7,7,0,0,2193,234,1,0, + 0,0,2194,2195,7,9,0,0,2195,2196,7,2,0,0,2196,2197,7,7,0,0,2197,2198, + 7,22,0,0,2198,236,1,0,0,0,2199,2200,7,9,0,0,2200,2201,7,5,0,0,2201, + 2202,7,9,0,0,2202,2203,7,17,0,0,2203,2204,7,9,0,0,2204,2205,7,12, + 0,0,2205,2206,7,8,0,0,2206,238,1,0,0,0,2207,2208,7,9,0,0,2208,2209, + 7,5,0,0,2209,2210,7,4,0,0,2210,2211,7,9,0,0,2211,240,1,0,0,0,2212, + 2213,7,9,0,0,2213,2214,7,17,0,0,2214,2215,7,24,0,0,2215,2216,7,8, + 0,0,2216,2217,7,13,0,0,2217,242,1,0,0,0,2218,2219,7,9,0,0,2219,2220, + 7,12,0,0,2220,2221,7,15,0,0,2221,244,1,0,0,0,2222,2223,7,9,0,0,2223, + 2224,7,12,0,0,2224,2225,7,15,0,0,2225,2226,5,95,0,0,2226,2227,7, + 23,0,0,2227,2228,7,11,0,0,2228,2229,7,2,0,0,2229,2230,7,17,0,0,2230, + 2231,7,9,0,0,2231,246,1,0,0,0,2232,2233,7,9,0,0,2233,2234,7,12,0, + 0,2234,2235,7,15,0,0,2235,2236,5,95,0,0,2236,2237,7,24,0,0,2237, + 2238,7,2,0,0,2238,2239,7,11,0,0,2239,2240,7,8,0,0,2240,2241,7,19, + 0,0,2241,2242,7,8,0,0,2242,2243,7,19,0,0,2243,2244,7,6,0,0,2244, + 2245,7,12,0,0,2245,248,1,0,0,0,2246,2247,7,9,0,0,2247,2248,7,12, + 0,0,2248,2249,7,23,0,0,2249,2250,7,6,0,0,2250,2251,7,11,0,0,2251, + 2252,7,7,0,0,2252,2253,7,9,0,0,2253,2254,7,15,0,0,2254,250,1,0,0, + 0,2255,2256,7,9,0,0,2256,2257,7,26,0,0,2257,2258,7,21,0,0,2258,2259, + 7,2,0,0,2259,2260,7,5,0,0,2260,2261,7,4,0,0,2261,252,1,0,0,0,2262, + 2263,7,9,0,0,2263,2264,7,4,0,0,2264,2265,7,7,0,0,2265,2266,7,2,0, + 0,2266,2267,7,24,0,0,2267,2268,7,9,0,0,2268,254,1,0,0,0,2269,2270, + 7,9,0,0,2270,2271,7,4,0,0,2271,2272,7,8,0,0,2272,2273,7,19,0,0,2273, + 2274,7,17,0,0,2274,2275,7,2,0,0,2275,2276,7,8,0,0,2276,2277,7,9, + 0,0,2277,2278,7,15,0,0,2278,2279,5,95,0,0,2279,2280,7,7,0,0,2280, + 2281,7,6,0,0,2281,2282,7,4,0,0,2282,2283,7,8,0,0,2283,256,1,0,0, + 0,2284,2285,7,9,0,0,2285,2286,7,20,0,0,2286,2287,7,9,0,0,2287,2288, + 7,11,0,0,2288,2289,7,13,0,0,2289,258,1,0,0,0,2290,2291,7,9,0,0,2291, + 2292,7,18,0,0,2292,2293,7,7,0,0,2293,2294,7,9,0,0,2294,2295,7,24, + 0,0,2295,2296,7,8,0,0,2296,260,1,0,0,0,2297,2298,7,9,0,0,2298,2299, + 7,18,0,0,2299,2300,7,9,0,0,2300,2301,7,7,0,0,2301,262,1,0,0,0,2302, + 2303,7,9,0,0,2303,2304,7,18,0,0,2304,2305,7,9,0,0,2305,2306,7,7, + 0,0,2306,2307,7,21,0,0,2307,2308,7,8,0,0,2308,2309,7,9,0,0,2309, + 264,1,0,0,0,2310,2311,7,9,0,0,2311,2312,7,18,0,0,2312,2313,7,19, + 0,0,2313,2314,7,4,0,0,2314,2315,7,8,0,0,2315,2316,7,4,0,0,2316,266, + 1,0,0,0,2317,2318,7,9,0,0,2318,2319,7,18,0,0,2319,2320,7,24,0,0, + 2320,268,1,0,0,0,2321,2322,7,9,0,0,2322,2323,7,18,0,0,2323,2324, + 7,24,0,0,2324,2325,7,5,0,0,2325,2326,7,2,0,0,2326,2327,7,19,0,0, + 2327,2328,7,12,0,0,2328,270,1,0,0,0,2329,2330,7,9,0,0,2330,2331, + 7,18,0,0,2331,2332,7,8,0,0,2332,2333,7,9,0,0,2333,2334,7,12,0,0, + 2334,2335,7,15,0,0,2335,272,1,0,0,0,2336,2337,7,9,0,0,2337,2338, + 7,18,0,0,2338,2339,7,8,0,0,2339,2340,7,9,0,0,2340,2341,7,12,0,0, + 2341,2342,7,15,0,0,2342,2343,7,9,0,0,2343,2344,7,15,0,0,2344,274, + 1,0,0,0,2345,2346,7,9,0,0,2346,2347,7,18,0,0,2347,2348,7,8,0,0,2348, + 2349,7,9,0,0,2349,2350,7,11,0,0,2350,2351,7,12,0,0,2351,2352,7,2, + 0,0,2352,2353,7,5,0,0,2353,276,1,0,0,0,2354,2355,7,9,0,0,2355,2356, + 7,18,0,0,2356,2357,7,8,0,0,2357,2358,7,11,0,0,2358,2359,7,2,0,0, + 2359,2360,7,7,0,0,2360,2361,7,8,0,0,2361,278,1,0,0,0,2362,2363,7, + 23,0,0,2363,2364,7,2,0,0,2364,2365,7,5,0,0,2365,2366,7,4,0,0,2366, + 2367,7,9,0,0,2367,280,1,0,0,0,2368,2369,7,23,0,0,2369,2370,7,9,0, + 0,2370,2371,7,8,0,0,2371,2372,7,7,0,0,2372,2373,7,22,0,0,2373,282, + 1,0,0,0,2374,2375,7,23,0,0,2375,2376,7,19,0,0,2376,2377,7,5,0,0, + 2377,2378,7,8,0,0,2378,2379,7,9,0,0,2379,2380,7,11,0,0,2380,284, + 1,0,0,0,2381,2382,7,23,0,0,2382,2383,7,19,0,0,2383,2384,7,11,0,0, + 2384,2385,7,4,0,0,2385,2386,7,8,0,0,2386,2387,5,95,0,0,2387,2388, + 7,20,0,0,2388,2389,7,2,0,0,2389,2390,7,5,0,0,2390,2391,7,21,0,0, + 2391,2392,7,9,0,0,2392,286,1,0,0,0,2393,2394,7,23,0,0,2394,2395, + 7,5,0,0,2395,2396,7,6,0,0,2396,2397,7,2,0,0,2397,2398,7,8,0,0,2398, + 288,1,0,0,0,2399,2400,7,23,0,0,2400,2401,7,5,0,0,2401,2402,7,6,0, + 0,2402,2403,7,6,0,0,2403,2404,7,11,0,0,2404,290,1,0,0,0,2405,2406, + 7,23,0,0,2406,2407,7,6,0,0,2407,2408,7,5,0,0,2408,2409,7,5,0,0,2409, + 2410,7,6,0,0,2410,2411,7,10,0,0,2411,2412,7,19,0,0,2412,2413,7,12, + 0,0,2413,2414,7,16,0,0,2414,292,1,0,0,0,2415,2416,7,23,0,0,2416, + 2417,7,6,0,0,2417,2418,7,11,0,0,2418,294,1,0,0,0,2419,2420,7,23, + 0,0,2420,2421,7,6,0,0,2421,2422,7,11,0,0,2422,2423,7,9,0,0,2423, + 2424,7,19,0,0,2424,2425,7,16,0,0,2425,2426,7,12,0,0,2426,296,1,0, + 0,0,2427,2428,7,23,0,0,2428,2429,7,11,0,0,2429,2430,7,2,0,0,2430, + 2431,7,17,0,0,2431,2432,7,9,0,0,2432,2433,5,95,0,0,2433,2434,7,11, + 0,0,2434,2435,7,6,0,0,2435,2436,7,10,0,0,2436,298,1,0,0,0,2437,2438, + 7,23,0,0,2438,2439,7,11,0,0,2439,2440,7,9,0,0,2440,2441,7,9,0,0, + 2441,300,1,0,0,0,2442,2443,7,23,0,0,2443,2444,7,11,0,0,2444,2445, + 7,19,0,0,2445,2446,7,15,0,0,2446,2447,7,2,0,0,2447,2448,7,13,0,0, + 2448,302,1,0,0,0,2449,2450,7,23,0,0,2450,2451,7,11,0,0,2451,2452, + 7,6,0,0,2452,2453,7,17,0,0,2453,304,1,0,0,0,2454,2455,7,23,0,0,2455, + 2456,7,21,0,0,2456,2457,7,5,0,0,2457,2458,7,5,0,0,2458,306,1,0,0, + 0,2459,2460,7,23,0,0,2460,2461,7,21,0,0,2461,2462,7,12,0,0,2462, + 2463,7,7,0,0,2463,2464,7,8,0,0,2464,2465,7,19,0,0,2465,2466,7,6, + 0,0,2466,2467,7,12,0,0,2467,308,1,0,0,0,2468,2469,7,23,0,0,2469, + 2470,7,21,0,0,2470,2471,7,12,0,0,2471,2472,7,7,0,0,2472,2473,7,8, + 0,0,2473,2474,7,19,0,0,2474,2475,7,6,0,0,2475,2476,7,12,0,0,2476, + 2477,7,4,0,0,2477,310,1,0,0,0,2478,2479,7,23,0,0,2479,2480,7,21, + 0,0,2480,2481,7,4,0,0,2481,2482,7,19,0,0,2482,2483,7,6,0,0,2483, + 2484,7,12,0,0,2484,312,1,0,0,0,2485,2486,7,16,0,0,2486,2487,7,9, + 0,0,2487,2488,7,8,0,0,2488,314,1,0,0,0,2489,2490,7,16,0,0,2490,2491, + 7,5,0,0,2491,2492,7,6,0,0,2492,2493,7,3,0,0,2493,2494,7,2,0,0,2494, + 2495,7,5,0,0,2495,316,1,0,0,0,2496,2497,7,16,0,0,2497,2498,7,11, + 0,0,2498,2499,7,2,0,0,2499,2500,7,12,0,0,2500,2501,7,8,0,0,2501, + 318,1,0,0,0,2502,2503,7,16,0,0,2503,2504,7,11,0,0,2504,2505,7,6, + 0,0,2505,2506,7,21,0,0,2506,2507,7,24,0,0,2507,320,1,0,0,0,2508, + 2509,7,16,0,0,2509,2510,7,11,0,0,2510,2511,7,6,0,0,2511,2512,7,21, + 0,0,2512,2513,7,24,0,0,2513,2514,7,19,0,0,2514,2515,7,12,0,0,2515, + 2516,7,16,0,0,2516,322,1,0,0,0,2517,2518,7,16,0,0,2518,2519,7,11, + 0,0,2519,2520,7,6,0,0,2520,2521,7,21,0,0,2521,2522,7,24,0,0,2522, + 2523,7,4,0,0,2523,324,1,0,0,0,2524,2525,7,16,0,0,2525,2526,7,11, + 0,0,2526,2527,7,6,0,0,2527,2528,7,21,0,0,2528,2529,7,24,0,0,2529, + 2530,5,95,0,0,2530,2531,7,7,0,0,2531,2532,7,6,0,0,2532,2533,7,12, + 0,0,2533,2534,7,7,0,0,2534,2535,7,2,0,0,2535,2536,7,8,0,0,2536,326, + 1,0,0,0,2537,2538,7,22,0,0,2538,2539,7,2,0,0,2539,2540,7,20,0,0, + 2540,2541,7,19,0,0,2541,2542,7,12,0,0,2542,2543,7,16,0,0,2543,328, + 1,0,0,0,2544,2545,7,22,0,0,2545,2546,7,6,0,0,2546,2547,7,5,0,0,2547, + 2548,7,15,0,0,2548,330,1,0,0,0,2549,2550,7,22,0,0,2550,2551,7,6, + 0,0,2551,2552,7,21,0,0,2552,2553,7,11,0,0,2553,332,1,0,0,0,2554, + 2555,7,19,0,0,2555,2556,7,15,0,0,2556,2557,7,9,0,0,2557,2558,7,12, + 0,0,2558,2559,7,8,0,0,2559,2560,7,19,0,0,2560,2561,7,8,0,0,2561, + 2562,7,13,0,0,2562,334,1,0,0,0,2563,2564,7,19,0,0,2564,2565,7,23, + 0,0,2565,336,1,0,0,0,2566,2567,7,19,0,0,2567,2568,7,5,0,0,2568,2569, + 7,19,0,0,2569,2570,7,25,0,0,2570,2571,7,9,0,0,2571,338,1,0,0,0,2572, + 2573,7,19,0,0,2573,2574,7,17,0,0,2574,2575,7,24,0,0,2575,2576,7, + 6,0,0,2576,2577,7,11,0,0,2577,2578,7,8,0,0,2578,340,1,0,0,0,2579, + 2580,7,19,0,0,2580,2581,7,12,0,0,2581,342,1,0,0,0,2582,2583,7,19, + 0,0,2583,2584,7,12,0,0,2584,2585,7,7,0,0,2585,2586,7,5,0,0,2586, + 2587,7,21,0,0,2587,2588,7,15,0,0,2588,2589,7,9,0,0,2589,344,1,0, + 0,0,2590,2591,7,19,0,0,2591,2592,7,12,0,0,2592,2593,7,15,0,0,2593, + 2594,7,19,0,0,2594,2595,7,7,0,0,2595,2596,7,2,0,0,2596,2597,7,8, + 0,0,2597,2598,7,6,0,0,2598,2599,7,11,0,0,2599,346,1,0,0,0,2600,2601, + 7,19,0,0,2601,2602,7,12,0,0,2602,2603,7,19,0,0,2603,2604,7,8,0,0, + 2604,2605,7,19,0,0,2605,2606,7,2,0,0,2606,2607,7,5,0,0,2607,348, + 1,0,0,0,2608,2609,7,19,0,0,2609,2610,7,12,0,0,2610,2611,7,12,0,0, + 2611,2612,7,9,0,0,2612,2613,7,11,0,0,2613,350,1,0,0,0,2614,2615, + 7,19,0,0,2615,2616,7,12,0,0,2616,2617,7,6,0,0,2617,2618,7,21,0,0, + 2618,2619,7,8,0,0,2619,352,1,0,0,0,2620,2621,7,19,0,0,2621,2622, + 7,12,0,0,2622,2623,7,4,0,0,2623,2624,7,9,0,0,2624,2625,7,12,0,0, + 2625,2626,7,4,0,0,2626,2627,7,19,0,0,2627,2628,7,8,0,0,2628,2629, + 7,19,0,0,2629,2630,7,20,0,0,2630,2631,7,9,0,0,2631,354,1,0,0,0,2632, + 2633,7,19,0,0,2633,2634,7,12,0,0,2634,2635,7,4,0,0,2635,2636,7,9, + 0,0,2636,2637,7,11,0,0,2637,2638,7,8,0,0,2638,356,1,0,0,0,2639,2640, + 7,19,0,0,2640,2641,7,12,0,0,2641,2642,7,8,0,0,2642,358,1,0,0,0,2643, + 2644,7,19,0,0,2644,2645,7,12,0,0,2645,2646,7,8,0,0,2646,2647,7,9, + 0,0,2647,2648,7,16,0,0,2648,2649,7,9,0,0,2649,2650,7,11,0,0,2650, + 360,1,0,0,0,2651,2652,7,19,0,0,2652,2653,7,12,0,0,2653,2654,7,8, + 0,0,2654,2655,7,9,0,0,2655,2656,7,11,0,0,2656,2657,7,4,0,0,2657, + 2658,7,9,0,0,2658,2659,7,7,0,0,2659,2660,7,8,0,0,2660,362,1,0,0, + 0,2661,2662,7,19,0,0,2662,2663,7,12,0,0,2663,2664,7,8,0,0,2664,2665, + 7,9,0,0,2665,2666,7,11,0,0,2666,2667,7,4,0,0,2667,2668,7,9,0,0,2668, + 2669,7,7,0,0,2669,2670,7,8,0,0,2670,2671,7,19,0,0,2671,2672,7,6, + 0,0,2672,2673,7,12,0,0,2673,364,1,0,0,0,2674,2675,7,19,0,0,2675, + 2676,7,12,0,0,2676,2677,7,8,0,0,2677,2678,7,9,0,0,2678,2679,7,11, + 0,0,2679,2680,7,20,0,0,2680,2681,7,2,0,0,2681,2682,7,5,0,0,2682, + 366,1,0,0,0,2683,2684,7,19,0,0,2684,2685,7,12,0,0,2685,2686,7,8, + 0,0,2686,2687,7,6,0,0,2687,368,1,0,0,0,2688,2689,7,19,0,0,2689,2690, + 7,4,0,0,2690,370,1,0,0,0,2691,2692,7,27,0,0,2692,2693,7,6,0,0,2693, + 2694,7,19,0,0,2694,2695,7,12,0,0,2695,372,1,0,0,0,2696,2697,7,27, + 0,0,2697,2698,7,4,0,0,2698,2699,7,6,0,0,2699,2700,7,12,0,0,2700, + 374,1,0,0,0,2701,2702,7,27,0,0,2702,2703,7,4,0,0,2703,2704,7,6,0, + 0,2704,2705,7,12,0,0,2705,2706,5,95,0,0,2706,2707,7,2,0,0,2707,2708, + 7,11,0,0,2708,2709,7,11,0,0,2709,2710,7,2,0,0,2710,2711,7,13,0,0, + 2711,376,1,0,0,0,2712,2713,7,27,0,0,2713,2714,7,4,0,0,2714,2715, + 7,6,0,0,2715,2716,7,12,0,0,2716,2717,5,95,0,0,2717,2718,7,2,0,0, + 2718,2719,7,11,0,0,2719,2720,7,11,0,0,2720,2721,7,2,0,0,2721,2722, + 7,13,0,0,2722,2723,7,2,0,0,2723,2724,7,16,0,0,2724,2725,7,16,0,0, + 2725,378,1,0,0,0,2726,2727,7,27,0,0,2727,2728,7,4,0,0,2728,2729, + 7,6,0,0,2729,2730,7,12,0,0,2730,2731,5,95,0,0,2731,2732,7,9,0,0, + 2732,2733,7,18,0,0,2733,2734,7,9,0,0,2734,2735,7,7,0,0,2735,2736, + 7,21,0,0,2736,2737,7,8,0,0,2737,2738,7,19,0,0,2738,2739,7,6,0,0, + 2739,2740,7,12,0,0,2740,2741,5,95,0,0,2741,2742,7,24,0,0,2742,2743, + 7,5,0,0,2743,2744,7,2,0,0,2744,2745,7,12,0,0,2745,380,1,0,0,0,2746, + 2747,7,27,0,0,2747,2748,7,4,0,0,2748,2749,7,6,0,0,2749,2750,7,12, + 0,0,2750,2751,5,95,0,0,2751,2752,7,9,0,0,2752,2753,7,18,0,0,2753, + 2754,7,19,0,0,2754,2755,7,4,0,0,2755,2756,7,8,0,0,2756,2757,7,4, + 0,0,2757,382,1,0,0,0,2758,2759,7,27,0,0,2759,2760,7,4,0,0,2760,2761, + 7,6,0,0,2761,2762,7,12,0,0,2762,2763,5,95,0,0,2763,2764,7,6,0,0, + 2764,2765,7,3,0,0,2765,2766,7,27,0,0,2766,2767,7,9,0,0,2767,2768, + 7,7,0,0,2768,2769,7,8,0,0,2769,384,1,0,0,0,2770,2771,7,27,0,0,2771, + 2772,7,4,0,0,2772,2773,7,6,0,0,2773,2774,7,12,0,0,2774,2775,5,95, + 0,0,2775,2776,7,6,0,0,2776,2777,7,3,0,0,2777,2778,7,27,0,0,2778, + 2779,7,9,0,0,2779,2780,7,7,0,0,2780,2781,7,8,0,0,2781,2782,7,2,0, + 0,2782,2783,7,16,0,0,2783,2784,7,16,0,0,2784,386,1,0,0,0,2785,2786, + 7,27,0,0,2786,2787,7,4,0,0,2787,2788,7,6,0,0,2788,2789,7,12,0,0, + 2789,2790,5,95,0,0,2790,2791,7,26,0,0,2791,2792,7,21,0,0,2792,2793, + 7,9,0,0,2793,2794,7,11,0,0,2794,2795,7,13,0,0,2795,388,1,0,0,0,2796, + 2797,7,27,0,0,2797,2798,7,4,0,0,2798,2799,7,6,0,0,2799,2800,7,12, + 0,0,2800,2801,5,95,0,0,2801,2802,7,20,0,0,2802,2803,7,2,0,0,2803, + 2804,7,5,0,0,2804,2805,7,21,0,0,2805,2806,7,9,0,0,2806,390,1,0,0, + 0,2807,2808,7,5,0,0,2808,2809,7,2,0,0,2809,2810,7,16,0,0,2810,392, + 1,0,0,0,2811,2812,7,5,0,0,2812,2813,7,2,0,0,2813,2814,7,12,0,0,2814, + 2815,7,16,0,0,2815,2816,7,21,0,0,2816,2817,7,2,0,0,2817,2818,7,16, + 0,0,2818,2819,7,9,0,0,2819,394,1,0,0,0,2820,2821,7,5,0,0,2821,2822, + 7,2,0,0,2822,2823,7,11,0,0,2823,2824,7,16,0,0,2824,2825,7,9,0,0, + 2825,396,1,0,0,0,2826,2827,7,5,0,0,2827,2828,7,2,0,0,2828,2829,7, + 4,0,0,2829,2830,7,8,0,0,2830,2831,5,95,0,0,2831,2832,7,20,0,0,2832, + 2833,7,2,0,0,2833,2834,7,5,0,0,2834,2835,7,21,0,0,2835,2836,7,9, + 0,0,2836,398,1,0,0,0,2837,2838,7,5,0,0,2838,2839,7,2,0,0,2839,2840, + 7,8,0,0,2840,2841,7,9,0,0,2841,2842,7,11,0,0,2842,2843,7,2,0,0,2843, + 2844,7,5,0,0,2844,400,1,0,0,0,2845,2846,7,5,0,0,2846,2847,7,9,0, + 0,2847,2848,7,2,0,0,2848,2849,7,15,0,0,2849,402,1,0,0,0,2850,2851, + 7,5,0,0,2851,2852,7,9,0,0,2852,2853,7,2,0,0,2853,2854,7,15,0,0,2854, + 2855,7,19,0,0,2855,2856,7,12,0,0,2856,2857,7,16,0,0,2857,404,1,0, + 0,0,2858,2859,7,5,0,0,2859,2860,7,9,0,0,2860,2861,7,23,0,0,2861, + 2862,7,8,0,0,2862,406,1,0,0,0,2863,2864,7,5,0,0,2864,2865,7,19,0, + 0,2865,2866,7,25,0,0,2866,2867,7,9,0,0,2867,408,1,0,0,0,2868,2869, + 7,5,0,0,2869,2870,7,19,0,0,2870,2871,7,25,0,0,2871,2872,7,9,0,0, + 2872,2873,5,95,0,0,2873,2874,7,11,0,0,2874,2875,7,9,0,0,2875,2876, + 7,16,0,0,2876,2877,7,9,0,0,2877,2878,7,18,0,0,2878,410,1,0,0,0,2879, + 2880,7,5,0,0,2880,2881,7,19,0,0,2881,2882,7,17,0,0,2882,2883,7,19, + 0,0,2883,2884,7,8,0,0,2884,412,1,0,0,0,2885,2886,7,5,0,0,2886,2887, + 7,12,0,0,2887,414,1,0,0,0,2888,2889,7,5,0,0,2889,2890,7,6,0,0,2890, + 2891,7,7,0,0,2891,2892,7,2,0,0,2892,2893,7,5,0,0,2893,416,1,0,0, + 0,2894,2895,7,5,0,0,2895,2896,7,6,0,0,2896,2897,7,7,0,0,2897,2898, + 7,2,0,0,2898,2899,7,5,0,0,2899,2900,7,8,0,0,2900,2901,7,19,0,0,2901, + 2902,7,17,0,0,2902,2903,7,9,0,0,2903,418,1,0,0,0,2904,2905,7,5,0, + 0,2905,2906,7,6,0,0,2906,2907,7,7,0,0,2907,2908,7,2,0,0,2908,2909, + 7,5,0,0,2909,2910,7,8,0,0,2910,2911,7,19,0,0,2911,2912,7,17,0,0, + 2912,2913,7,9,0,0,2913,2914,7,4,0,0,2914,2915,7,8,0,0,2915,2916, + 7,2,0,0,2916,2917,7,17,0,0,2917,2918,7,24,0,0,2918,420,1,0,0,0,2919, + 2920,7,5,0,0,2920,2921,7,6,0,0,2921,2922,7,10,0,0,2922,2923,7,9, + 0,0,2923,2924,7,11,0,0,2924,422,1,0,0,0,2925,2926,7,17,0,0,2926, + 2927,7,2,0,0,2927,2928,7,8,0,0,2928,2929,7,7,0,0,2929,2930,7,22, + 0,0,2930,424,1,0,0,0,2931,2932,7,17,0,0,2932,2933,7,2,0,0,2933,2934, + 7,8,0,0,2934,2935,7,7,0,0,2935,2936,7,22,0,0,2936,2937,7,9,0,0,2937, + 2938,7,4,0,0,2938,426,1,0,0,0,2939,2940,7,17,0,0,2940,2941,7,2,0, + 0,2941,2942,7,8,0,0,2942,2943,7,7,0,0,2943,2944,7,22,0,0,2944,2945, + 5,95,0,0,2945,2946,7,12,0,0,2946,2947,7,21,0,0,2947,2948,7,17,0, + 0,2948,2949,7,3,0,0,2949,2950,7,9,0,0,2950,2951,7,11,0,0,2951,428, + 1,0,0,0,2952,2953,7,17,0,0,2953,2954,7,2,0,0,2954,2955,7,8,0,0,2955, + 2956,7,7,0,0,2956,2957,7,22,0,0,2957,2958,5,95,0,0,2958,2959,7,11, + 0,0,2959,2960,7,9,0,0,2960,2961,7,7,0,0,2961,2962,7,6,0,0,2962,2963, + 7,16,0,0,2963,2964,7,12,0,0,2964,2965,7,19,0,0,2965,2966,7,14,0, + 0,2966,2967,7,9,0,0,2967,430,1,0,0,0,2968,2969,7,17,0,0,2969,2970, + 7,2,0,0,2970,2971,7,18,0,0,2971,432,1,0,0,0,2972,2973,7,17,0,0,2973, + 2974,7,9,0,0,2974,2975,7,2,0,0,2975,2976,7,4,0,0,2976,2977,7,21, + 0,0,2977,2978,7,11,0,0,2978,2979,7,9,0,0,2979,2980,7,4,0,0,2980, + 434,1,0,0,0,2981,2982,7,17,0,0,2982,2983,7,9,0,0,2983,2984,7,17, + 0,0,2984,2985,7,3,0,0,2985,2986,7,9,0,0,2986,2987,7,11,0,0,2987, + 436,1,0,0,0,2988,2989,7,17,0,0,2989,2990,7,9,0,0,2990,2991,7,11, + 0,0,2991,2992,7,16,0,0,2992,2993,7,9,0,0,2993,438,1,0,0,0,2994,2995, + 7,17,0,0,2995,2996,7,9,0,0,2996,2997,7,8,0,0,2997,2998,7,2,0,0,2998, + 2999,7,15,0,0,2999,3000,7,2,0,0,3000,3001,7,8,0,0,3001,3002,7,2, + 0,0,3002,440,1,0,0,0,3003,3004,7,17,0,0,3004,3005,7,9,0,0,3005,3006, + 7,8,0,0,3006,3007,7,22,0,0,3007,3008,7,6,0,0,3008,3009,7,15,0,0, + 3009,442,1,0,0,0,3010,3011,7,17,0,0,3011,3012,7,19,0,0,3012,3013, + 7,12,0,0,3013,444,1,0,0,0,3014,3015,7,17,0,0,3015,3016,7,19,0,0, + 3016,3017,7,12,0,0,3017,3018,7,21,0,0,3018,3019,7,4,0,0,3019,446, + 1,0,0,0,3020,3021,7,17,0,0,3021,3022,7,19,0,0,3022,3023,7,12,0,0, + 3023,3024,7,21,0,0,3024,3025,7,8,0,0,3025,3026,7,9,0,0,3026,448, + 1,0,0,0,3027,3028,7,17,0,0,3028,3029,7,6,0,0,3029,3030,7,15,0,0, + 3030,450,1,0,0,0,3031,3032,7,17,0,0,3032,3033,7,6,0,0,3033,3034, + 7,15,0,0,3034,3035,7,19,0,0,3035,3036,7,23,0,0,3036,3037,7,19,0, + 0,3037,3038,7,9,0,0,3038,3039,7,4,0,0,3039,452,1,0,0,0,3040,3041, + 7,17,0,0,3041,3042,7,6,0,0,3042,3043,7,15,0,0,3043,3044,7,19,0,0, + 3044,3045,7,23,0,0,3045,3046,7,13,0,0,3046,454,1,0,0,0,3047,3048, + 7,17,0,0,3048,3049,7,6,0,0,3049,3050,7,15,0,0,3050,3051,7,21,0,0, + 3051,3052,7,5,0,0,3052,3053,7,9,0,0,3053,456,1,0,0,0,3054,3055,7, + 17,0,0,3055,3056,7,6,0,0,3056,3057,7,15,0,0,3057,3058,7,21,0,0,3058, + 3059,7,5,0,0,3059,3060,7,9,0,0,3060,3061,7,4,0,0,3061,458,1,0,0, + 0,3062,3063,7,17,0,0,3063,3064,7,6,0,0,3064,3065,7,12,0,0,3065,3066, + 7,15,0,0,3066,3067,7,2,0,0,3067,3068,7,13,0,0,3068,460,1,0,0,0,3069, + 3070,7,17,0,0,3070,3071,7,6,0,0,3071,3072,7,12,0,0,3072,3073,7,8, + 0,0,3073,3074,7,22,0,0,3074,462,1,0,0,0,3075,3076,7,17,0,0,3076, + 3077,7,6,0,0,3077,3078,7,11,0,0,3078,3079,7,9,0,0,3079,464,1,0,0, + 0,3080,3081,7,17,0,0,3081,3082,7,21,0,0,3082,3083,7,5,0,0,3083,3084, + 7,8,0,0,3084,3085,7,19,0,0,3085,3086,7,4,0,0,3086,3087,7,9,0,0,3087, + 3088,7,8,0,0,3088,466,1,0,0,0,3089,3090,7,12,0,0,3090,3091,7,2,0, + 0,3091,3092,7,8,0,0,3092,3093,7,19,0,0,3093,3094,7,6,0,0,3094,3095, + 7,12,0,0,3095,3096,7,2,0,0,3096,3097,7,5,0,0,3097,468,1,0,0,0,3098, + 3099,7,12,0,0,3099,3100,7,2,0,0,3100,3101,7,8,0,0,3101,3102,7,21, + 0,0,3102,3103,7,11,0,0,3103,3104,7,2,0,0,3104,3105,7,5,0,0,3105, + 470,1,0,0,0,3106,3107,7,12,0,0,3107,3108,7,7,0,0,3108,3109,7,22, + 0,0,3109,3110,7,2,0,0,3110,3111,7,11,0,0,3111,472,1,0,0,0,3112,3113, + 7,12,0,0,3113,3114,7,7,0,0,3114,3115,7,5,0,0,3115,3116,7,6,0,0,3116, + 3117,7,3,0,0,3117,474,1,0,0,0,3118,3119,7,12,0,0,3119,3120,7,9,0, + 0,3120,3121,7,10,0,0,3121,476,1,0,0,0,3122,3123,7,12,0,0,3123,3124, + 7,9,0,0,3124,3125,7,18,0,0,3125,3126,7,8,0,0,3126,478,1,0,0,0,3127, + 3128,7,12,0,0,3128,3129,7,6,0,0,3129,480,1,0,0,0,3130,3131,7,12, + 0,0,3131,3132,7,6,0,0,3132,3133,7,12,0,0,3133,3134,7,9,0,0,3134, + 482,1,0,0,0,3135,3136,7,12,0,0,3136,3137,7,6,0,0,3137,3138,7,11, + 0,0,3138,3139,7,17,0,0,3139,3140,7,2,0,0,3140,3141,7,5,0,0,3141, + 3142,7,19,0,0,3142,3143,7,14,0,0,3143,3144,7,9,0,0,3144,484,1,0, + 0,0,3145,3146,7,12,0,0,3146,3147,7,6,0,0,3147,3148,7,8,0,0,3148, + 486,1,0,0,0,3149,3150,7,12,0,0,3150,3151,7,8,0,0,3151,3152,7,22, + 0,0,3152,3153,5,95,0,0,3153,3154,7,20,0,0,3154,3155,7,2,0,0,3155, + 3156,7,5,0,0,3156,3157,7,21,0,0,3157,3158,7,9,0,0,3158,488,1,0,0, + 0,3159,3160,7,12,0,0,3160,3161,7,8,0,0,3161,3162,7,19,0,0,3162,3163, + 7,5,0,0,3163,3164,7,9,0,0,3164,490,1,0,0,0,3165,3166,7,12,0,0,3166, + 3167,7,21,0,0,3167,3168,7,5,0,0,3168,3169,7,5,0,0,3169,492,1,0,0, + 0,3170,3171,7,12,0,0,3171,3172,7,21,0,0,3172,3173,7,5,0,0,3173,3174, + 7,5,0,0,3174,3175,7,19,0,0,3175,3176,7,23,0,0,3176,494,1,0,0,0,3177, + 3178,7,12,0,0,3178,3179,7,21,0,0,3179,3180,7,17,0,0,3180,3181,7, + 9,0,0,3181,3182,7,11,0,0,3182,3183,7,19,0,0,3183,3184,7,7,0,0,3184, + 496,1,0,0,0,3185,3186,7,6,0,0,3186,3187,7,7,0,0,3187,3188,7,7,0, + 0,3188,3189,7,21,0,0,3189,3190,7,11,0,0,3190,3191,7,11,0,0,3191, + 3192,7,9,0,0,3192,3193,7,12,0,0,3193,3194,7,7,0,0,3194,3195,7,9, + 0,0,3195,3196,7,4,0,0,3196,3197,5,95,0,0,3197,3198,7,11,0,0,3198, + 3199,7,9,0,0,3199,3200,7,16,0,0,3200,3201,7,9,0,0,3201,3202,7,18, + 0,0,3202,498,1,0,0,0,3203,3204,7,6,0,0,3204,3205,7,7,0,0,3205,3206, + 7,8,0,0,3206,3207,7,9,0,0,3207,3208,7,8,0,0,3208,3209,5,95,0,0,3209, + 3210,7,5,0,0,3210,3211,7,9,0,0,3211,3212,7,12,0,0,3212,3213,7,16, + 0,0,3213,3214,7,8,0,0,3214,3215,7,22,0,0,3215,500,1,0,0,0,3216,3217, + 7,6,0,0,3217,3218,7,23,0,0,3218,502,1,0,0,0,3219,3220,7,6,0,0,3220, + 3221,7,23,0,0,3221,3222,7,23,0,0,3222,3223,7,4,0,0,3223,3224,7,9, + 0,0,3224,3225,7,8,0,0,3225,504,1,0,0,0,3226,3227,7,6,0,0,3227,3228, + 7,5,0,0,3228,3229,7,15,0,0,3229,506,1,0,0,0,3230,3231,7,6,0,0,3231, + 3232,7,17,0,0,3232,3233,7,19,0,0,3233,3234,7,8,0,0,3234,508,1,0, + 0,0,3235,3236,7,6,0,0,3236,3237,7,12,0,0,3237,510,1,0,0,0,3238,3239, + 7,6,0,0,3239,3240,7,12,0,0,3240,3241,7,9,0,0,3241,512,1,0,0,0,3242, + 3243,7,6,0,0,3243,3244,7,12,0,0,3244,3245,7,5,0,0,3245,3246,7,13, + 0,0,3246,514,1,0,0,0,3247,3248,7,6,0,0,3248,3249,7,24,0,0,3249,3250, + 7,9,0,0,3250,3251,7,12,0,0,3251,516,1,0,0,0,3252,3253,7,6,0,0,3253, + 3254,7,11,0,0,3254,518,1,0,0,0,3255,3256,7,6,0,0,3256,3257,7,11, + 0,0,3257,3258,7,15,0,0,3258,3259,7,9,0,0,3259,3260,7,11,0,0,3260, + 520,1,0,0,0,3261,3262,7,6,0,0,3262,3263,7,11,0,0,3263,3264,7,15, + 0,0,3264,3265,7,19,0,0,3265,3266,7,12,0,0,3266,3267,7,2,0,0,3267, + 3268,7,5,0,0,3268,522,1,0,0,0,3269,3270,7,6,0,0,3270,3271,7,21,0, + 0,3271,3272,7,8,0,0,3272,524,1,0,0,0,3273,3274,7,6,0,0,3274,3275, + 7,21,0,0,3275,3276,7,8,0,0,3276,3277,7,9,0,0,3277,3278,7,11,0,0, + 3278,526,1,0,0,0,3279,3280,7,6,0,0,3280,3281,7,20,0,0,3281,3282, + 7,9,0,0,3282,3283,7,11,0,0,3283,528,1,0,0,0,3284,3285,7,6,0,0,3285, + 3286,7,20,0,0,3286,3287,7,9,0,0,3287,3288,7,11,0,0,3288,3289,7,5, + 0,0,3289,3290,7,2,0,0,3290,3291,7,24,0,0,3291,3292,7,4,0,0,3292, + 530,1,0,0,0,3293,3294,7,6,0,0,3294,3295,7,20,0,0,3295,3296,7,9,0, + 0,3296,3297,7,11,0,0,3297,3298,7,5,0,0,3298,3299,7,2,0,0,3299,3300, + 7,13,0,0,3300,532,1,0,0,0,3301,3302,7,6,0,0,3302,3303,7,20,0,0,3303, + 3304,7,9,0,0,3304,3305,7,11,0,0,3305,3306,7,10,0,0,3306,3307,7,11, + 0,0,3307,3308,7,19,0,0,3308,3309,7,8,0,0,3309,3310,7,9,0,0,3310, + 534,1,0,0,0,3311,3312,7,6,0,0,3312,3313,7,20,0,0,3313,3314,7,9,0, + 0,3314,3315,7,11,0,0,3315,3316,7,10,0,0,3316,3317,7,11,0,0,3317, + 3318,7,19,0,0,3318,3319,7,8,0,0,3319,3320,7,19,0,0,3320,3321,7,12, + 0,0,3321,3322,7,16,0,0,3322,536,1,0,0,0,3323,3324,7,24,0,0,3324, + 3325,7,2,0,0,3325,3326,7,11,0,0,3326,3327,7,2,0,0,3327,3328,7,17, + 0,0,3328,3329,7,9,0,0,3329,3330,7,8,0,0,3330,3331,7,9,0,0,3331,3332, + 7,11,0,0,3332,538,1,0,0,0,3333,3334,7,24,0,0,3334,3335,7,2,0,0,3335, + 3336,7,11,0,0,3336,3337,7,8,0,0,3337,3338,7,19,0,0,3338,3339,7,8, + 0,0,3339,3340,7,19,0,0,3340,3341,7,6,0,0,3341,3342,7,12,0,0,3342, + 540,1,0,0,0,3343,3344,7,24,0,0,3344,3345,7,2,0,0,3345,3346,7,11, + 0,0,3346,3347,7,8,0,0,3347,3348,7,19,0,0,3348,3349,7,8,0,0,3349, + 3350,7,19,0,0,3350,3351,7,6,0,0,3351,3352,7,12,0,0,3352,3353,7,9, + 0,0,3353,3354,7,15,0,0,3354,542,1,0,0,0,3355,3356,7,24,0,0,3356, + 3357,7,2,0,0,3357,3358,7,11,0,0,3358,3359,7,8,0,0,3359,3360,7,19, + 0,0,3360,3361,7,8,0,0,3361,3362,7,19,0,0,3362,3363,7,6,0,0,3363, + 3364,7,12,0,0,3364,3365,7,4,0,0,3365,544,1,0,0,0,3366,3367,7,24, + 0,0,3367,3368,7,2,0,0,3368,3369,7,8,0,0,3369,3370,7,8,0,0,3370,3371, + 7,9,0,0,3371,3372,7,11,0,0,3372,3373,7,12,0,0,3373,546,1,0,0,0,3374, + 3375,7,24,0,0,3375,3376,7,9,0,0,3376,3377,7,11,0,0,3377,548,1,0, + 0,0,3378,3379,7,24,0,0,3379,3380,7,9,0,0,3380,3381,7,11,0,0,3381, + 3382,7,7,0,0,3382,3383,7,9,0,0,3383,3384,7,12,0,0,3384,3385,7,8, + 0,0,3385,550,1,0,0,0,3386,3387,7,24,0,0,3387,3388,7,9,0,0,3388,3389, + 7,11,0,0,3389,3390,7,7,0,0,3390,3391,7,9,0,0,3391,3392,7,12,0,0, + 3392,3393,7,8,0,0,3393,3394,7,19,0,0,3394,3395,7,5,0,0,3395,3396, + 7,9,0,0,3396,3397,5,95,0,0,3397,3398,7,7,0,0,3398,3399,7,6,0,0,3399, + 3400,7,12,0,0,3400,3401,7,8,0,0,3401,552,1,0,0,0,3402,3403,7,24, + 0,0,3403,3404,7,9,0,0,3404,3405,7,11,0,0,3405,3406,7,7,0,0,3406, + 3407,7,9,0,0,3407,3408,7,12,0,0,3408,3409,7,8,0,0,3409,3410,7,19, + 0,0,3410,3411,7,5,0,0,3411,3412,7,9,0,0,3412,3413,5,95,0,0,3413, + 3414,7,15,0,0,3414,3415,7,19,0,0,3415,3416,7,4,0,0,3416,3417,7,7, + 0,0,3417,554,1,0,0,0,3418,3419,7,24,0,0,3419,3420,7,9,0,0,3420,3421, + 7,11,0,0,3421,3422,7,7,0,0,3422,3423,7,9,0,0,3423,3424,7,12,0,0, + 3424,3425,7,8,0,0,3425,3426,5,95,0,0,3426,3427,7,11,0,0,3427,3428, + 7,2,0,0,3428,3429,7,12,0,0,3429,3430,7,25,0,0,3430,556,1,0,0,0,3431, + 3432,7,24,0,0,3432,3433,7,9,0,0,3433,3434,7,11,0,0,3434,3435,7,19, + 0,0,3435,3436,7,6,0,0,3436,3437,7,15,0,0,3437,558,1,0,0,0,3438,3439, + 7,24,0,0,3439,3440,7,9,0,0,3440,3441,7,11,0,0,3441,3442,7,17,0,0, + 3442,3443,7,21,0,0,3443,3444,7,8,0,0,3444,3445,7,9,0,0,3445,560, + 1,0,0,0,3446,3447,7,11,0,0,3447,3448,7,9,0,0,3448,3449,7,8,0,0,3449, + 3450,7,21,0,0,3450,3451,7,11,0,0,3451,3452,7,12,0,0,3452,3453,7, + 19,0,0,3453,3454,7,12,0,0,3454,3455,7,16,0,0,3455,562,1,0,0,0,3456, + 3457,7,24,0,0,3457,3458,7,19,0,0,3458,3459,7,20,0,0,3459,3460,7, + 6,0,0,3460,3461,7,8,0,0,3461,564,1,0,0,0,3462,3463,7,24,0,0,3463, + 3464,7,6,0,0,3464,3465,7,11,0,0,3465,3466,7,8,0,0,3466,3467,7,19, + 0,0,3467,3468,7,6,0,0,3468,3469,7,12,0,0,3469,566,1,0,0,0,3470,3471, + 7,24,0,0,3471,3472,7,6,0,0,3472,3473,7,4,0,0,3473,3474,7,19,0,0, + 3474,3475,7,8,0,0,3475,3476,7,19,0,0,3476,3477,7,6,0,0,3477,3478, + 7,12,0,0,3478,568,1,0,0,0,3479,3480,7,24,0,0,3480,3481,7,6,0,0,3481, + 3482,7,4,0,0,3482,3483,7,19,0,0,3483,3484,7,8,0,0,3484,3485,7,19, + 0,0,3485,3486,7,6,0,0,3486,3487,7,12,0,0,3487,3488,5,95,0,0,3488, + 3489,7,11,0,0,3489,3490,7,9,0,0,3490,3491,7,16,0,0,3491,3492,7,9, + 0,0,3492,3493,7,18,0,0,3493,570,1,0,0,0,3494,3495,7,24,0,0,3495, + 3496,7,6,0,0,3496,3497,7,10,0,0,3497,3498,7,9,0,0,3498,3499,7,11, + 0,0,3499,572,1,0,0,0,3500,3501,7,24,0,0,3501,3502,7,11,0,0,3502, + 3503,7,9,0,0,3503,3504,7,7,0,0,3504,3505,7,9,0,0,3505,3506,7,15, + 0,0,3506,3507,7,9,0,0,3507,3508,7,4,0,0,3508,574,1,0,0,0,3509,3510, + 7,24,0,0,3510,3511,7,11,0,0,3511,3512,7,9,0,0,3512,3513,7,7,0,0, + 3513,3514,7,19,0,0,3514,3515,7,4,0,0,3515,3516,7,19,0,0,3516,3517, + 7,6,0,0,3517,3518,7,12,0,0,3518,576,1,0,0,0,3519,3520,7,24,0,0,3520, + 3521,7,11,0,0,3521,3522,7,9,0,0,3522,3523,7,24,0,0,3523,3524,7,2, + 0,0,3524,3525,7,11,0,0,3525,3526,7,9,0,0,3526,578,1,0,0,0,3527,3528, + 7,24,0,0,3528,3529,7,11,0,0,3529,3530,7,9,0,0,3530,3531,7,20,0,0, + 3531,580,1,0,0,0,3532,3533,7,24,0,0,3533,3534,7,11,0,0,3534,3535, + 7,19,0,0,3535,3536,7,17,0,0,3536,3537,7,2,0,0,3537,3538,7,11,0,0, + 3538,3539,7,13,0,0,3539,582,1,0,0,0,3540,3541,7,24,0,0,3541,3542, + 7,11,0,0,3542,3543,7,6,0,0,3543,3544,7,7,0,0,3544,3545,7,9,0,0,3545, + 3546,7,15,0,0,3546,3547,7,21,0,0,3547,3548,7,11,0,0,3548,3549,7, + 9,0,0,3549,584,1,0,0,0,3550,3551,7,26,0,0,3551,3552,7,21,0,0,3552, + 3553,7,2,0,0,3553,3554,7,5,0,0,3554,3555,7,19,0,0,3555,3556,7,23, + 0,0,3556,3557,7,13,0,0,3557,586,1,0,0,0,3558,3559,7,26,0,0,3559, + 3560,7,21,0,0,3560,3561,7,2,0,0,3561,3562,7,11,0,0,3562,3563,7,8, + 0,0,3563,3564,7,9,0,0,3564,3565,7,11,0,0,3565,3566,7,4,0,0,3566, + 588,1,0,0,0,3567,3568,7,11,0,0,3568,3569,7,2,0,0,3569,3570,7,12, + 0,0,3570,3571,7,16,0,0,3571,3572,7,9,0,0,3572,590,1,0,0,0,3573,3574, + 7,11,0,0,3574,3575,7,2,0,0,3575,3576,7,12,0,0,3576,3577,7,25,0,0, + 3577,592,1,0,0,0,3578,3579,7,11,0,0,3579,3580,7,2,0,0,3580,3581, + 7,10,0,0,3581,594,1,0,0,0,3582,3583,7,11,0,0,3583,3584,7,9,0,0,3584, + 3585,7,2,0,0,3585,3586,7,15,0,0,3586,3587,7,4,0,0,3587,596,1,0,0, + 0,3588,3589,7,11,0,0,3589,3590,7,9,0,0,3590,3591,7,2,0,0,3591,3592, + 7,5,0,0,3592,598,1,0,0,0,3593,3594,7,11,0,0,3594,3595,7,9,0,0,3595, + 3596,7,7,0,0,3596,3597,7,21,0,0,3597,3598,7,11,0,0,3598,3599,7,4, + 0,0,3599,3600,7,19,0,0,3600,3601,7,20,0,0,3601,3602,7,9,0,0,3602, + 600,1,0,0,0,3603,3604,7,11,0,0,3604,3605,7,9,0,0,3605,3606,7,23, + 0,0,3606,602,1,0,0,0,3607,3608,7,11,0,0,3608,3609,7,9,0,0,3609,3610, + 7,23,0,0,3610,3611,7,9,0,0,3611,3612,7,11,0,0,3612,3613,7,9,0,0, + 3613,3614,7,12,0,0,3614,3615,7,7,0,0,3615,3616,7,9,0,0,3616,3617, + 7,4,0,0,3617,604,1,0,0,0,3618,3619,7,11,0,0,3619,3620,7,9,0,0,3620, + 3621,7,23,0,0,3621,3622,7,9,0,0,3622,3623,7,11,0,0,3623,3624,7,9, + 0,0,3624,3625,7,12,0,0,3625,3626,7,7,0,0,3626,3627,7,19,0,0,3627, + 3628,7,12,0,0,3628,3629,7,16,0,0,3629,606,1,0,0,0,3630,3631,7,11, + 0,0,3631,3632,7,9,0,0,3632,3633,7,16,0,0,3633,3634,7,11,0,0,3634, + 3635,5,95,0,0,3635,3636,7,2,0,0,3636,3637,7,20,0,0,3637,3638,7,16, + 0,0,3638,3639,7,18,0,0,3639,608,1,0,0,0,3640,3641,7,11,0,0,3641, + 3642,7,9,0,0,3642,3643,7,16,0,0,3643,3644,7,11,0,0,3644,3645,5,95, + 0,0,3645,3646,7,2,0,0,3646,3647,7,20,0,0,3647,3648,7,16,0,0,3648, + 3649,7,13,0,0,3649,610,1,0,0,0,3650,3651,7,11,0,0,3651,3652,7,9, + 0,0,3652,3653,7,16,0,0,3653,3654,7,11,0,0,3654,3655,5,95,0,0,3655, + 3656,7,7,0,0,3656,3657,7,6,0,0,3657,3658,7,21,0,0,3658,3659,7,12, + 0,0,3659,3660,7,8,0,0,3660,612,1,0,0,0,3661,3662,7,11,0,0,3662,3663, + 7,9,0,0,3663,3664,7,16,0,0,3664,3665,7,11,0,0,3665,3666,5,95,0,0, + 3666,3667,7,19,0,0,3667,3668,7,12,0,0,3668,3669,7,8,0,0,3669,3670, + 7,9,0,0,3670,3671,7,11,0,0,3671,3672,7,7,0,0,3672,3673,7,9,0,0,3673, + 3674,7,24,0,0,3674,3675,7,8,0,0,3675,614,1,0,0,0,3676,3677,7,11, + 0,0,3677,3678,7,9,0,0,3678,3679,7,16,0,0,3679,3680,7,11,0,0,3680, + 3681,5,95,0,0,3681,3682,7,11,0,0,3682,3683,5,50,0,0,3683,616,1,0, + 0,0,3684,3685,7,11,0,0,3685,3686,7,9,0,0,3686,3687,7,16,0,0,3687, + 3688,7,11,0,0,3688,3689,5,95,0,0,3689,3690,7,4,0,0,3690,3691,7,5, + 0,0,3691,3692,7,6,0,0,3692,3693,7,24,0,0,3693,3694,7,9,0,0,3694, + 618,1,0,0,0,3695,3696,7,11,0,0,3696,3697,7,9,0,0,3697,3698,7,16, + 0,0,3698,3699,7,11,0,0,3699,3700,5,95,0,0,3700,3701,7,4,0,0,3701, + 3702,7,18,0,0,3702,3703,7,18,0,0,3703,620,1,0,0,0,3704,3705,7,11, + 0,0,3705,3706,7,9,0,0,3706,3707,7,16,0,0,3707,3708,7,11,0,0,3708, + 3709,5,95,0,0,3709,3710,7,4,0,0,3710,3711,7,18,0,0,3711,3712,7,13, + 0,0,3712,622,1,0,0,0,3713,3714,7,11,0,0,3714,3715,7,9,0,0,3715,3716, + 7,16,0,0,3716,3717,7,11,0,0,3717,3718,5,95,0,0,3718,3719,7,4,0,0, + 3719,3720,7,13,0,0,3720,3721,7,13,0,0,3721,624,1,0,0,0,3722,3723, + 7,11,0,0,3723,3724,7,9,0,0,3724,3725,7,5,0,0,3725,3726,7,9,0,0,3726, + 3727,7,2,0,0,3727,3728,7,4,0,0,3728,3729,7,9,0,0,3729,626,1,0,0, + 0,3730,3731,7,11,0,0,3731,3732,7,9,0,0,3732,3733,7,12,0,0,3733,3734, + 7,2,0,0,3734,3735,7,17,0,0,3735,3736,7,9,0,0,3736,628,1,0,0,0,3737, + 3738,7,11,0,0,3738,3739,7,9,0,0,3739,3740,7,4,0,0,3740,3741,7,9, + 0,0,3741,3742,7,8,0,0,3742,630,1,0,0,0,3743,3744,7,11,0,0,3744,3745, + 7,9,0,0,3745,3746,7,4,0,0,3746,3747,7,21,0,0,3747,3748,7,5,0,0,3748, + 3749,7,8,0,0,3749,632,1,0,0,0,3750,3751,7,11,0,0,3751,3752,7,9,0, + 0,3752,3753,7,8,0,0,3753,3754,7,21,0,0,3754,3755,7,11,0,0,3755,3756, + 7,12,0,0,3756,634,1,0,0,0,3757,3758,7,11,0,0,3758,3759,7,9,0,0,3759, + 3760,7,8,0,0,3760,3761,7,21,0,0,3761,3762,7,11,0,0,3762,3763,7,12, + 0,0,3763,3764,7,4,0,0,3764,636,1,0,0,0,3765,3766,7,11,0,0,3766,3767, + 7,9,0,0,3767,3768,7,20,0,0,3768,3769,7,6,0,0,3769,3770,7,25,0,0, + 3770,3771,7,9,0,0,3771,638,1,0,0,0,3772,3773,7,11,0,0,3773,3774, + 7,19,0,0,3774,3775,7,16,0,0,3775,3776,7,22,0,0,3776,3777,7,8,0,0, + 3777,640,1,0,0,0,3778,3779,7,11,0,0,3779,3780,7,5,0,0,3780,3781, + 7,19,0,0,3781,3782,7,25,0,0,3782,3783,7,9,0,0,3783,642,1,0,0,0,3784, + 3785,7,11,0,0,3785,3786,7,6,0,0,3786,3787,7,5,0,0,3787,3788,7,5, + 0,0,3788,3789,7,3,0,0,3789,3790,7,2,0,0,3790,3791,7,7,0,0,3791,3792, + 7,25,0,0,3792,644,1,0,0,0,3793,3794,7,11,0,0,3794,3795,7,6,0,0,3795, + 3796,7,5,0,0,3796,3797,7,5,0,0,3797,3798,7,21,0,0,3798,3799,7,24, + 0,0,3799,646,1,0,0,0,3800,3801,7,11,0,0,3801,3802,7,6,0,0,3802,3803, + 7,10,0,0,3803,648,1,0,0,0,3804,3805,7,11,0,0,3805,3806,7,6,0,0,3806, + 3807,7,10,0,0,3807,3808,7,4,0,0,3808,650,1,0,0,0,3809,3810,7,11, + 0,0,3810,3811,7,6,0,0,3811,3812,7,10,0,0,3812,3813,5,95,0,0,3813, + 3814,7,12,0,0,3814,3815,7,21,0,0,3815,3816,7,17,0,0,3816,3817,7, + 3,0,0,3817,3818,7,9,0,0,3818,3819,7,11,0,0,3819,652,1,0,0,0,3820, + 3821,7,11,0,0,3821,3822,7,21,0,0,3822,3823,7,12,0,0,3823,3824,7, + 12,0,0,3824,3825,7,19,0,0,3825,3826,7,12,0,0,3826,3827,7,16,0,0, + 3827,654,1,0,0,0,3828,3829,7,4,0,0,3829,3830,7,2,0,0,3830,3831,7, + 23,0,0,3831,3832,7,9,0,0,3832,3833,5,95,0,0,3833,3834,7,7,0,0,3834, + 3835,7,2,0,0,3835,3836,7,4,0,0,3836,3837,7,8,0,0,3837,656,1,0,0, + 0,3838,3839,7,4,0,0,3839,3840,7,2,0,0,3840,3841,7,23,0,0,3841,3842, + 7,9,0,0,3842,3843,5,95,0,0,3843,3844,7,6,0,0,3844,3845,7,23,0,0, + 3845,3846,7,23,0,0,3846,3847,7,4,0,0,3847,3848,7,9,0,0,3848,3849, + 7,8,0,0,3849,658,1,0,0,0,3850,3851,7,4,0,0,3851,3852,7,2,0,0,3852, + 3853,7,23,0,0,3853,3854,7,9,0,0,3854,3855,5,95,0,0,3855,3856,7,6, + 0,0,3856,3857,7,11,0,0,3857,3858,7,15,0,0,3858,3859,7,19,0,0,3859, + 3860,7,12,0,0,3860,3861,7,2,0,0,3861,3862,7,5,0,0,3862,660,1,0,0, + 0,3863,3864,7,4,0,0,3864,3865,7,2,0,0,3865,3866,7,8,0,0,3866,3867, + 7,21,0,0,3867,3868,7,11,0,0,3868,3869,7,15,0,0,3869,3870,7,2,0,0, + 3870,3871,7,13,0,0,3871,662,1,0,0,0,3872,3873,7,4,0,0,3873,3874, + 7,2,0,0,3874,3875,7,20,0,0,3875,3876,7,9,0,0,3876,3877,7,24,0,0, + 3877,3878,7,6,0,0,3878,3879,7,19,0,0,3879,3880,7,12,0,0,3880,3881, + 7,8,0,0,3881,664,1,0,0,0,3882,3883,7,4,0,0,3883,3884,7,7,0,0,3884, + 3885,7,2,0,0,3885,3886,7,5,0,0,3886,3887,7,2,0,0,3887,666,1,0,0, + 0,3888,3889,7,4,0,0,3889,3890,7,7,0,0,3890,3891,7,6,0,0,3891,3892, + 7,24,0,0,3892,3893,7,9,0,0,3893,668,1,0,0,0,3894,3895,7,4,0,0,3895, + 3896,7,7,0,0,3896,3897,7,11,0,0,3897,3898,7,6,0,0,3898,3899,7,5, + 0,0,3899,3900,7,5,0,0,3900,670,1,0,0,0,3901,3902,7,4,0,0,3902,3903, + 7,9,0,0,3903,3904,7,2,0,0,3904,3905,7,11,0,0,3905,3906,7,7,0,0,3906, + 3907,7,22,0,0,3907,672,1,0,0,0,3908,3909,7,4,0,0,3909,3910,7,9,0, + 0,3910,3911,7,7,0,0,3911,3912,7,6,0,0,3912,3913,7,12,0,0,3913,3914, + 7,15,0,0,3914,674,1,0,0,0,3915,3916,7,4,0,0,3916,3917,7,9,0,0,3917, + 3918,7,9,0,0,3918,3919,7,25,0,0,3919,676,1,0,0,0,3920,3921,7,4,0, + 0,3921,3922,7,9,0,0,3922,3923,7,5,0,0,3923,3924,7,9,0,0,3924,3925, + 7,7,0,0,3925,3926,7,8,0,0,3926,678,1,0,0,0,3927,3928,7,4,0,0,3928, + 3929,7,9,0,0,3929,3930,7,12,0,0,3930,3931,7,4,0,0,3931,3932,7,19, + 0,0,3932,3933,7,8,0,0,3933,3934,7,19,0,0,3934,3935,7,20,0,0,3935, + 3936,7,9,0,0,3936,680,1,0,0,0,3937,3938,7,4,0,0,3938,3939,7,9,0, + 0,3939,3940,7,24,0,0,3940,3941,7,2,0,0,3941,3942,7,11,0,0,3942,3943, + 7,2,0,0,3943,3944,7,8,0,0,3944,3945,7,6,0,0,3945,3946,7,11,0,0,3946, + 682,1,0,0,0,3947,3948,7,4,0,0,3948,3949,7,9,0,0,3949,3950,7,4,0, + 0,3950,3951,7,4,0,0,3951,3952,7,19,0,0,3952,3953,7,6,0,0,3953,3954, + 7,12,0,0,3954,3955,5,95,0,0,3955,3956,7,21,0,0,3956,3957,7,4,0,0, + 3957,3958,7,9,0,0,3958,3959,7,11,0,0,3959,684,1,0,0,0,3960,3961, + 7,4,0,0,3961,3962,7,9,0,0,3962,3963,7,8,0,0,3963,686,1,0,0,0,3964, + 3965,7,4,0,0,3965,3966,7,22,0,0,3966,3967,7,6,0,0,3967,3968,7,10, + 0,0,3968,688,1,0,0,0,3969,3970,7,4,0,0,3970,3971,7,19,0,0,3971,3972, + 7,17,0,0,3972,3973,7,19,0,0,3973,3974,7,5,0,0,3974,3975,7,2,0,0, + 3975,3976,7,11,0,0,3976,690,1,0,0,0,3977,3978,7,4,0,0,3978,3979, + 7,25,0,0,3979,3980,7,19,0,0,3980,3981,7,24,0,0,3981,692,1,0,0,0, + 3982,3983,7,4,0,0,3983,3984,7,17,0,0,3984,3985,7,2,0,0,3985,3986, + 7,5,0,0,3986,3987,7,5,0,0,3987,3988,7,19,0,0,3988,3989,7,12,0,0, + 3989,3990,7,8,0,0,3990,694,1,0,0,0,3991,3992,7,4,0,0,3992,3993,7, + 6,0,0,3993,3994,7,17,0,0,3994,3995,7,9,0,0,3995,696,1,0,0,0,3996, + 3997,7,4,0,0,3997,3998,7,24,0,0,3998,3999,7,9,0,0,3999,4000,7,7, + 0,0,4000,4001,7,19,0,0,4001,4002,7,23,0,0,4002,4003,7,19,0,0,4003, + 4004,7,7,0,0,4004,698,1,0,0,0,4005,4006,7,4,0,0,4006,4007,7,24,0, + 0,4007,4008,7,9,0,0,4008,4009,7,7,0,0,4009,4010,7,19,0,0,4010,4011, + 7,23,0,0,4011,4012,7,19,0,0,4012,4013,7,7,0,0,4013,4014,7,8,0,0, + 4014,4015,7,13,0,0,4015,4016,7,24,0,0,4016,4017,7,9,0,0,4017,700, + 1,0,0,0,4018,4019,7,4,0,0,4019,4020,7,26,0,0,4020,4021,7,5,0,0,4021, + 702,1,0,0,0,4022,4023,7,4,0,0,4023,4024,7,26,0,0,4024,4025,7,5,0, + 0,4025,4026,7,9,0,0,4026,4027,7,18,0,0,4027,4028,7,7,0,0,4028,4029, + 7,9,0,0,4029,4030,7,24,0,0,4030,4031,7,8,0,0,4031,4032,7,19,0,0, + 4032,4033,7,6,0,0,4033,4034,7,12,0,0,4034,704,1,0,0,0,4035,4036, + 7,4,0,0,4036,4037,7,26,0,0,4037,4038,7,5,0,0,4038,4039,7,4,0,0,4039, + 4040,7,8,0,0,4040,4041,7,2,0,0,4041,4042,7,8,0,0,4042,4043,7,9,0, + 0,4043,706,1,0,0,0,4044,4045,7,4,0,0,4045,4046,7,26,0,0,4046,4047, + 7,5,0,0,4047,4048,7,10,0,0,4048,4049,7,2,0,0,4049,4050,7,11,0,0, + 4050,4051,7,12,0,0,4051,4052,7,19,0,0,4052,4053,7,12,0,0,4053,4054, + 7,16,0,0,4054,708,1,0,0,0,4055,4056,7,4,0,0,4056,4057,7,26,0,0,4057, + 4058,7,11,0,0,4058,4059,7,8,0,0,4059,710,1,0,0,0,4060,4061,7,4,0, + 0,4061,4062,7,8,0,0,4062,4063,7,2,0,0,4063,4064,7,11,0,0,4064,4065, + 7,8,0,0,4065,712,1,0,0,0,4066,4067,7,4,0,0,4067,4068,7,8,0,0,4068, + 4069,7,2,0,0,4069,4070,7,8,0,0,4070,4071,7,9,0,0,4071,4072,7,17, + 0,0,4072,4073,7,9,0,0,4073,4074,7,12,0,0,4074,4075,7,8,0,0,4075, + 714,1,0,0,0,4076,4077,7,4,0,0,4077,4078,7,8,0,0,4078,4079,7,2,0, + 0,4079,4080,7,8,0,0,4080,4081,7,19,0,0,4081,4082,7,7,0,0,4082,716, + 1,0,0,0,4083,4084,7,4,0,0,4084,4085,7,8,0,0,4085,4086,7,2,0,0,4086, + 4087,7,8,0,0,4087,4088,7,19,0,0,4088,4089,7,4,0,0,4089,4090,7,8, + 0,0,4090,4091,7,19,0,0,4091,4092,7,7,0,0,4092,4093,7,4,0,0,4093, + 718,1,0,0,0,4094,4095,7,4,0,0,4095,4096,7,8,0,0,4096,4097,7,15,0, + 0,4097,4098,7,15,0,0,4098,4099,7,9,0,0,4099,4100,7,20,0,0,4100,4101, + 5,95,0,0,4101,4102,7,24,0,0,4102,4103,7,6,0,0,4103,4104,7,24,0,0, + 4104,720,1,0,0,0,4105,4106,7,4,0,0,4106,4107,7,8,0,0,4107,4108,7, + 15,0,0,4108,4109,7,15,0,0,4109,4110,7,9,0,0,4110,4111,7,20,0,0,4111, + 4112,5,95,0,0,4112,4113,7,4,0,0,4113,4114,7,2,0,0,4114,4115,7,17, + 0,0,4115,4116,7,24,0,0,4116,722,1,0,0,0,4117,4118,7,4,0,0,4118,4119, + 7,8,0,0,4119,4120,7,11,0,0,4120,4121,7,9,0,0,4121,4122,7,2,0,0,4122, + 4123,7,17,0,0,4123,724,1,0,0,0,4124,4125,7,4,0,0,4125,4126,7,8,0, + 0,4126,4127,7,11,0,0,4127,4128,7,19,0,0,4128,4129,7,12,0,0,4129, + 4130,7,16,0,0,4130,726,1,0,0,0,4131,4132,7,4,0,0,4132,4133,7,8,0, + 0,4133,4134,7,11,0,0,4134,4135,7,19,0,0,4135,4136,7,12,0,0,4136, + 4137,7,16,0,0,4137,4138,5,95,0,0,4138,4139,7,2,0,0,4139,4140,7,16, + 0,0,4140,4141,7,16,0,0,4141,728,1,0,0,0,4142,4143,7,4,0,0,4143,4144, + 7,21,0,0,4144,4145,7,3,0,0,4145,4146,7,17,0,0,4146,4147,7,21,0,0, + 4147,4148,7,5,0,0,4148,4149,7,8,0,0,4149,4150,7,19,0,0,4150,4151, + 7,4,0,0,4151,4152,7,9,0,0,4152,4153,7,8,0,0,4153,730,1,0,0,0,4154, + 4155,7,4,0,0,4155,4156,7,21,0,0,4156,4157,7,3,0,0,4157,4158,7,4, + 0,0,4158,4159,7,9,0,0,4159,4160,7,8,0,0,4160,732,1,0,0,0,4161,4162, + 7,4,0,0,4162,4163,7,21,0,0,4163,4164,7,3,0,0,4164,4165,7,4,0,0,4165, + 4166,7,8,0,0,4166,4167,7,11,0,0,4167,4168,7,19,0,0,4168,4169,7,12, + 0,0,4169,4170,7,16,0,0,4170,734,1,0,0,0,4171,4172,7,4,0,0,4172,4173, + 7,21,0,0,4173,4174,7,3,0,0,4174,4175,7,4,0,0,4175,4176,7,8,0,0,4176, + 4177,7,11,0,0,4177,4178,7,19,0,0,4178,4179,7,12,0,0,4179,4180,7, + 16,0,0,4180,4181,5,95,0,0,4181,4182,7,11,0,0,4182,4183,7,9,0,0,4183, + 4184,7,16,0,0,4184,4185,7,9,0,0,4185,4186,7,18,0,0,4186,736,1,0, + 0,0,4187,4188,7,4,0,0,4188,4189,7,21,0,0,4189,4190,7,7,0,0,4190, + 4191,7,7,0,0,4191,4192,7,9,0,0,4192,4193,7,9,0,0,4193,4194,7,15, + 0,0,4194,4195,7,4,0,0,4195,738,1,0,0,0,4196,4197,7,4,0,0,4197,4198, + 7,21,0,0,4198,4199,7,17,0,0,4199,740,1,0,0,0,4200,4201,7,4,0,0,4201, + 4202,7,21,0,0,4202,4203,7,12,0,0,4203,4204,7,15,0,0,4204,4205,7, + 2,0,0,4205,4206,7,13,0,0,4206,742,1,0,0,0,4207,4208,7,4,0,0,4208, + 4209,7,13,0,0,4209,4210,7,17,0,0,4210,4211,7,17,0,0,4211,4212,7, + 9,0,0,4212,4213,7,8,0,0,4213,4214,7,11,0,0,4214,4215,7,19,0,0,4215, + 4216,7,7,0,0,4216,744,1,0,0,0,4217,4218,7,4,0,0,4218,4219,7,13,0, + 0,4219,4220,7,4,0,0,4220,4221,7,8,0,0,4221,4222,7,9,0,0,4222,4223, + 7,17,0,0,4223,746,1,0,0,0,4224,4225,7,4,0,0,4225,4226,7,13,0,0,4226, + 4227,7,4,0,0,4227,4228,7,8,0,0,4228,4229,7,9,0,0,4229,4230,7,17, + 0,0,4230,4231,5,95,0,0,4231,4232,7,8,0,0,4232,4233,7,19,0,0,4233, + 4234,7,17,0,0,4234,4235,7,9,0,0,4235,748,1,0,0,0,4236,4237,7,4,0, + 0,4237,4238,7,13,0,0,4238,4239,7,4,0,0,4239,4240,7,8,0,0,4240,4241, + 7,9,0,0,4241,4242,7,17,0,0,4242,4243,5,95,0,0,4243,4244,7,21,0,0, + 4244,4245,7,4,0,0,4245,4246,7,9,0,0,4246,4247,7,11,0,0,4247,750, + 1,0,0,0,4248,4249,7,8,0,0,4249,4250,7,2,0,0,4250,4251,7,3,0,0,4251, + 4252,7,5,0,0,4252,4253,7,9,0,0,4253,752,1,0,0,0,4254,4255,7,8,0, + 0,4255,4256,7,2,0,0,4256,4257,7,3,0,0,4257,4258,7,5,0,0,4258,4259, + 7,9,0,0,4259,4260,7,4,0,0,4260,754,1,0,0,0,4261,4262,7,8,0,0,4262, + 4263,7,2,0,0,4263,4264,7,3,0,0,4264,4265,7,5,0,0,4265,4266,7,9,0, + 0,4266,4267,7,4,0,0,4267,4268,7,2,0,0,4268,4269,7,17,0,0,4269,4270, + 7,24,0,0,4270,4271,7,5,0,0,4271,4272,7,9,0,0,4272,756,1,0,0,0,4273, + 4274,7,8,0,0,4274,4275,7,22,0,0,4275,4276,7,9,0,0,4276,4277,7,12, + 0,0,4277,758,1,0,0,0,4278,4279,7,8,0,0,4279,4280,7,22,0,0,4280,4281, + 7,21,0,0,4281,4282,7,11,0,0,4282,4283,7,4,0,0,4283,4284,7,15,0,0, + 4284,4285,7,2,0,0,4285,4286,7,13,0,0,4286,760,1,0,0,0,4287,4288, + 7,8,0,0,4288,4289,7,19,0,0,4289,4290,7,17,0,0,4290,4291,7,9,0,0, + 4291,762,1,0,0,0,4292,4293,7,8,0,0,4293,4294,7,19,0,0,4294,4295, + 7,17,0,0,4295,4296,7,9,0,0,4296,4297,7,4,0,0,4297,4298,7,8,0,0,4298, + 4299,7,2,0,0,4299,4300,7,17,0,0,4300,4301,7,24,0,0,4301,764,1,0, + 0,0,4302,4303,7,8,0,0,4303,4304,7,19,0,0,4304,4305,7,17,0,0,4305, + 4306,7,9,0,0,4306,4307,7,4,0,0,4307,4308,7,8,0,0,4308,4309,7,2,0, + 0,4309,4310,7,17,0,0,4310,4311,7,24,0,0,4311,4312,5,95,0,0,4312, + 4313,7,15,0,0,4313,4314,7,19,0,0,4314,4315,7,23,0,0,4315,4316,7, + 23,0,0,4316,766,1,0,0,0,4317,4318,7,8,0,0,4318,4319,7,19,0,0,4319, + 4320,7,17,0,0,4320,4321,7,9,0,0,4321,4322,7,4,0,0,4322,4323,7,8, + 0,0,4323,4324,7,2,0,0,4324,4325,7,17,0,0,4325,4326,7,24,0,0,4326, + 4327,5,95,0,0,4327,4328,7,5,0,0,4328,4329,7,8,0,0,4329,4330,7,14, + 0,0,4330,768,1,0,0,0,4331,4332,7,8,0,0,4332,4333,7,19,0,0,4333,4334, + 7,17,0,0,4334,4335,7,9,0,0,4335,4336,7,4,0,0,4336,4337,7,8,0,0,4337, + 4338,7,2,0,0,4338,4339,7,17,0,0,4339,4340,7,24,0,0,4340,4341,5,95, + 0,0,4341,4342,7,8,0,0,4342,4343,7,11,0,0,4343,4344,7,21,0,0,4344, + 4345,7,12,0,0,4345,4346,7,7,0,0,4346,770,1,0,0,0,4347,4348,7,8,0, + 0,4348,4349,7,19,0,0,4349,4350,7,17,0,0,4350,4351,7,9,0,0,4351,4352, + 7,14,0,0,4352,4353,7,6,0,0,4353,4354,7,12,0,0,4354,4355,7,9,0,0, + 4355,4356,5,95,0,0,4356,4357,7,22,0,0,4357,4358,7,6,0,0,4358,4359, + 7,21,0,0,4359,4360,7,11,0,0,4360,772,1,0,0,0,4361,4362,7,8,0,0,4362, + 4363,7,19,0,0,4363,4364,7,17,0,0,4364,4365,7,9,0,0,4365,4366,7,14, + 0,0,4366,4367,7,6,0,0,4367,4368,7,12,0,0,4368,4369,7,9,0,0,4369, + 4370,5,95,0,0,4370,4371,7,17,0,0,4371,4372,7,19,0,0,4372,4373,7, + 12,0,0,4373,4374,7,21,0,0,4374,4375,7,8,0,0,4375,4376,7,9,0,0,4376, + 774,1,0,0,0,4377,4378,7,8,0,0,4378,4379,7,19,0,0,4379,4380,7,17, + 0,0,4380,4381,7,9,0,0,4381,4382,5,95,0,0,4382,4383,7,15,0,0,4383, + 4384,7,19,0,0,4384,4385,7,23,0,0,4385,4386,7,23,0,0,4386,776,1,0, + 0,0,4387,4388,7,8,0,0,4388,4389,7,19,0,0,4389,4390,7,17,0,0,4390, + 4391,7,9,0,0,4391,4392,5,95,0,0,4392,4393,7,8,0,0,4393,4394,7,11, + 0,0,4394,4395,7,21,0,0,4395,4396,7,12,0,0,4396,4397,7,7,0,0,4397, + 778,1,0,0,0,4398,4399,7,8,0,0,4399,4400,7,19,0,0,4400,4401,7,12, + 0,0,4401,4402,7,13,0,0,4402,4403,7,19,0,0,4403,4404,7,12,0,0,4404, + 4405,7,8,0,0,4405,780,1,0,0,0,4406,4407,7,8,0,0,4407,4408,7,6,0, + 0,4408,782,1,0,0,0,4409,4410,7,8,0,0,4410,4411,7,11,0,0,4411,4412, + 7,2,0,0,4412,4413,7,19,0,0,4413,4414,7,5,0,0,4414,4415,7,19,0,0, + 4415,4416,7,12,0,0,4416,4417,7,16,0,0,4417,784,1,0,0,0,4418,4419, + 7,8,0,0,4419,4420,7,11,0,0,4420,4421,7,2,0,0,4421,4422,7,12,0,0, + 4422,4423,7,4,0,0,4423,4424,7,5,0,0,4424,4425,7,2,0,0,4425,4426, + 7,8,0,0,4426,4427,7,9,0,0,4427,786,1,0,0,0,4428,4429,7,8,0,0,4429, + 4430,7,11,0,0,4430,4431,7,2,0,0,4431,4432,7,12,0,0,4432,4433,7,4, + 0,0,4433,4434,7,5,0,0,4434,4435,7,2,0,0,4435,4436,7,8,0,0,4436,4437, + 7,9,0,0,4437,4438,5,95,0,0,4438,4439,7,11,0,0,4439,4440,7,9,0,0, + 4440,4441,7,16,0,0,4441,4442,7,9,0,0,4442,4443,7,18,0,0,4443,788, + 1,0,0,0,4444,4445,7,8,0,0,4445,4446,7,11,0,0,4446,4447,7,2,0,0,4447, + 4448,7,12,0,0,4448,4449,7,4,0,0,4449,4450,7,5,0,0,4450,4451,7,2, + 0,0,4451,4452,7,8,0,0,4452,4453,7,19,0,0,4453,4454,7,6,0,0,4454, + 4455,7,12,0,0,4455,790,1,0,0,0,4456,4457,7,8,0,0,4457,4458,7,11, + 0,0,4458,4459,7,9,0,0,4459,4460,7,2,0,0,4460,4461,7,8,0,0,4461,792, + 1,0,0,0,4462,4463,7,8,0,0,4463,4464,7,11,0,0,4464,4465,7,19,0,0, + 4465,4466,7,16,0,0,4466,4467,7,16,0,0,4467,4468,7,9,0,0,4468,4469, + 7,11,0,0,4469,794,1,0,0,0,4470,4471,7,8,0,0,4471,4472,7,11,0,0,4472, + 4473,7,19,0,0,4473,4474,7,17,0,0,4474,796,1,0,0,0,4475,4476,7,8, + 0,0,4476,4477,7,11,0,0,4477,4478,7,19,0,0,4478,4479,7,17,0,0,4479, + 4480,5,95,0,0,4480,4481,7,2,0,0,4481,4482,7,11,0,0,4482,4483,7,11, + 0,0,4483,4484,7,2,0,0,4484,4485,7,13,0,0,4485,798,1,0,0,0,4486,4487, + 7,8,0,0,4487,4488,7,11,0,0,4488,4489,7,21,0,0,4489,4490,7,9,0,0, + 4490,800,1,0,0,0,4491,4492,7,8,0,0,4492,4493,7,11,0,0,4493,4494, + 7,21,0,0,4494,4495,7,12,0,0,4495,4496,7,7,0,0,4496,4497,7,2,0,0, + 4497,4498,7,8,0,0,4498,4499,7,9,0,0,4499,802,1,0,0,0,4500,4501,7, + 8,0,0,4501,4502,7,11,0,0,4502,4503,7,13,0,0,4503,4504,5,95,0,0,4504, + 4505,7,7,0,0,4505,4506,7,2,0,0,4506,4507,7,4,0,0,4507,4508,7,8,0, + 0,4508,804,1,0,0,0,4509,4510,7,8,0,0,4510,4511,7,21,0,0,4511,4512, + 7,9,0,0,4512,4513,7,4,0,0,4513,4514,7,15,0,0,4514,4515,7,2,0,0,4515, + 4516,7,13,0,0,4516,806,1,0,0,0,4517,4518,7,21,0,0,4518,4519,7,9, + 0,0,4519,4520,7,4,0,0,4520,4521,7,7,0,0,4521,4522,7,2,0,0,4522,4523, + 7,24,0,0,4523,4524,7,9,0,0,4524,808,1,0,0,0,4525,4526,7,21,0,0,4526, + 4527,7,12,0,0,4527,4528,7,3,0,0,4528,4529,7,6,0,0,4529,4530,7,21, + 0,0,4530,4531,7,12,0,0,4531,4532,7,15,0,0,4532,4533,7,9,0,0,4533, + 4534,7,15,0,0,4534,810,1,0,0,0,4535,4536,7,21,0,0,4536,4537,7,12, + 0,0,4537,4538,7,19,0,0,4538,4539,7,6,0,0,4539,4540,7,12,0,0,4540, + 812,1,0,0,0,4541,4542,7,21,0,0,4542,4543,7,12,0,0,4543,4544,7,19, + 0,0,4544,4545,7,26,0,0,4545,4546,7,21,0,0,4546,4547,7,9,0,0,4547, + 814,1,0,0,0,4548,4549,7,21,0,0,4549,4550,7,12,0,0,4550,4551,7,25, + 0,0,4551,4552,7,12,0,0,4552,4553,7,6,0,0,4553,4554,7,10,0,0,4554, + 4555,7,12,0,0,4555,816,1,0,0,0,4556,4557,7,21,0,0,4557,4558,7,12, + 0,0,4558,4559,7,12,0,0,4559,4560,7,9,0,0,4560,4561,7,4,0,0,4561, + 4562,7,8,0,0,4562,818,1,0,0,0,4563,4564,7,21,0,0,4564,4565,7,12, + 0,0,4565,4566,7,24,0,0,4566,4567,7,19,0,0,4567,4568,7,20,0,0,4568, + 4569,7,6,0,0,4569,4570,7,8,0,0,4570,820,1,0,0,0,4571,4572,7,21,0, + 0,4572,4573,7,24,0,0,4573,4574,7,15,0,0,4574,4575,7,2,0,0,4575,4576, + 7,8,0,0,4576,4577,7,9,0,0,4577,822,1,0,0,0,4578,4579,7,21,0,0,4579, + 4580,7,24,0,0,4580,4581,7,24,0,0,4581,4582,7,9,0,0,4582,4583,7,11, + 0,0,4583,824,1,0,0,0,4584,4585,7,21,0,0,4585,4586,7,24,0,0,4586, + 4587,7,4,0,0,4587,4588,7,9,0,0,4588,4589,7,11,0,0,4589,4590,7,8, + 0,0,4590,826,1,0,0,0,4591,4592,7,21,0,0,4592,4593,7,4,0,0,4593,4594, + 7,9,0,0,4594,828,1,0,0,0,4595,4596,7,21,0,0,4596,4597,7,4,0,0,4597, + 4598,7,9,0,0,4598,4599,7,11,0,0,4599,830,1,0,0,0,4600,4601,7,21, + 0,0,4601,4602,7,4,0,0,4602,4603,7,19,0,0,4603,4604,7,12,0,0,4604, + 4605,7,16,0,0,4605,832,1,0,0,0,4606,4607,7,20,0,0,4607,4608,7,2, + 0,0,4608,4609,7,5,0,0,4609,4610,7,21,0,0,4610,4611,7,9,0,0,4611, + 834,1,0,0,0,4612,4613,7,20,0,0,4613,4614,7,2,0,0,4614,4615,7,5,0, + 0,4615,4616,7,21,0,0,4616,4617,7,9,0,0,4617,4618,7,4,0,0,4618,836, + 1,0,0,0,4619,4620,7,20,0,0,4620,4621,7,2,0,0,4621,4622,7,5,0,0,4622, + 4623,7,21,0,0,4623,4624,7,9,0,0,4624,4625,5,95,0,0,4625,4626,7,6, + 0,0,4626,4627,7,23,0,0,4627,838,1,0,0,0,4628,4629,7,20,0,0,4629, + 4630,7,2,0,0,4630,4631,7,11,0,0,4631,4632,7,3,0,0,4632,4633,7,19, + 0,0,4633,4634,7,12,0,0,4634,4635,7,2,0,0,4635,4636,7,11,0,0,4636, + 4637,7,13,0,0,4637,840,1,0,0,0,4638,4639,7,20,0,0,4639,4640,7,2, + 0,0,4640,4641,7,11,0,0,4641,4642,7,7,0,0,4642,4643,7,22,0,0,4643, + 4644,7,2,0,0,4644,4645,7,11,0,0,4645,842,1,0,0,0,4646,4647,7,20, + 0,0,4647,4648,7,2,0,0,4648,4649,7,11,0,0,4649,4650,7,13,0,0,4650, + 4651,7,19,0,0,4651,4652,7,12,0,0,4652,4653,7,16,0,0,4653,844,1,0, + 0,0,4654,4655,7,20,0,0,4655,4656,7,2,0,0,4656,4657,7,11,0,0,4657, + 4658,5,95,0,0,4658,4659,7,24,0,0,4659,4660,7,6,0,0,4660,4661,7,24, + 0,0,4661,846,1,0,0,0,4662,4663,7,20,0,0,4663,4664,7,2,0,0,4664,4665, + 7,11,0,0,4665,4666,5,95,0,0,4666,4667,7,4,0,0,4667,4668,7,2,0,0, + 4668,4669,7,17,0,0,4669,4670,7,24,0,0,4670,848,1,0,0,0,4671,4672, + 7,20,0,0,4672,4673,7,9,0,0,4673,4674,7,11,0,0,4674,4675,7,4,0,0, + 4675,4676,7,19,0,0,4676,4677,7,6,0,0,4677,4678,7,12,0,0,4678,4679, + 7,19,0,0,4679,4680,7,12,0,0,4680,4681,7,16,0,0,4681,850,1,0,0,0, + 4682,4683,7,20,0,0,4683,4684,7,19,0,0,4684,4685,7,9,0,0,4685,4686, + 7,10,0,0,4686,4687,7,4,0,0,4687,852,1,0,0,0,4688,4689,7,20,0,0,4689, + 4690,7,19,0,0,4690,4691,7,11,0,0,4691,4692,7,8,0,0,4692,4693,7,21, + 0,0,4693,4694,7,2,0,0,4694,4695,7,5,0,0,4695,854,1,0,0,0,4696,4697, + 7,10,0,0,4697,4698,7,2,0,0,4698,4699,7,8,0,0,4699,4700,7,9,0,0,4700, + 4701,7,11,0,0,4701,4702,7,17,0,0,4702,4703,7,2,0,0,4703,4704,7,11, + 0,0,4704,4705,7,25,0,0,4705,856,1,0,0,0,4706,4707,7,10,0,0,4707, + 4708,7,2,0,0,4708,4709,7,8,0,0,4709,4710,7,9,0,0,4710,4711,7,11, + 0,0,4711,4712,7,17,0,0,4712,4713,7,2,0,0,4713,4714,7,11,0,0,4714, + 4715,7,25,0,0,4715,4716,7,4,0,0,4716,858,1,0,0,0,4717,4718,7,10, + 0,0,4718,4719,7,9,0,0,4719,4720,7,15,0,0,4720,4721,7,12,0,0,4721, + 4722,7,9,0,0,4722,4723,7,4,0,0,4723,4724,7,15,0,0,4724,4725,7,2, + 0,0,4725,4726,7,13,0,0,4726,860,1,0,0,0,4727,4728,7,10,0,0,4728, + 4729,7,9,0,0,4729,4730,7,9,0,0,4730,4731,7,25,0,0,4731,4732,7,4, + 0,0,4732,862,1,0,0,0,4733,4734,7,10,0,0,4734,4735,7,22,0,0,4735, + 4736,7,9,0,0,4736,4737,7,12,0,0,4737,864,1,0,0,0,4738,4739,7,10, + 0,0,4739,4740,7,22,0,0,4740,4741,7,9,0,0,4741,4742,7,12,0,0,4742, + 4743,7,9,0,0,4743,4744,7,20,0,0,4744,4745,7,9,0,0,4745,4746,7,11, + 0,0,4746,866,1,0,0,0,4747,4748,7,10,0,0,4748,4749,7,22,0,0,4749, + 4750,7,9,0,0,4750,4751,7,11,0,0,4751,4752,7,9,0,0,4752,868,1,0,0, + 0,4753,4754,7,10,0,0,4754,4755,7,19,0,0,4755,4756,7,15,0,0,4756, + 4757,7,8,0,0,4757,4758,7,22,0,0,4758,4759,5,95,0,0,4759,4760,7,3, + 0,0,4760,4761,7,21,0,0,4761,4762,7,7,0,0,4762,4763,7,25,0,0,4763, + 4764,7,9,0,0,4764,4765,7,8,0,0,4765,870,1,0,0,0,4766,4767,7,10,0, + 0,4767,4768,7,19,0,0,4768,4769,7,12,0,0,4769,4770,7,15,0,0,4770, + 4771,7,6,0,0,4771,4772,7,10,0,0,4772,872,1,0,0,0,4773,4774,7,10, + 0,0,4774,4775,7,19,0,0,4775,4776,7,8,0,0,4776,4777,7,22,0,0,4777, + 874,1,0,0,0,4778,4779,7,10,0,0,4779,4780,7,19,0,0,4780,4781,7,8, + 0,0,4781,4782,7,22,0,0,4782,4783,7,19,0,0,4783,4784,7,12,0,0,4784, + 876,1,0,0,0,4785,4786,7,10,0,0,4786,4787,7,19,0,0,4787,4788,7,8, + 0,0,4788,4789,7,22,0,0,4789,4790,7,6,0,0,4790,4791,7,21,0,0,4791, + 4792,7,8,0,0,4792,878,1,0,0,0,4793,4794,7,13,0,0,4794,4795,7,9,0, + 0,4795,4796,7,2,0,0,4796,4797,7,11,0,0,4797,880,1,0,0,0,4798,4799, + 7,2,0,0,4799,4800,7,15,0,0,4800,4801,7,15,0,0,4801,882,1,0,0,0,4802, + 4803,7,2,0,0,4803,4804,7,23,0,0,4804,4805,7,8,0,0,4805,4806,7,9, + 0,0,4806,4807,7,11,0,0,4807,884,1,0,0,0,4808,4809,7,2,0,0,4809,4810, + 7,4,0,0,4810,4811,7,7,0,0,4811,886,1,0,0,0,4812,4813,7,7,0,0,4813, + 4814,7,2,0,0,4814,4815,7,4,0,0,4815,4816,7,7,0,0,4816,4817,7,2,0, + 0,4817,4818,7,15,0,0,4818,4819,7,9,0,0,4819,888,1,0,0,0,4820,4821, + 7,7,0,0,4821,4822,7,2,0,0,4822,4823,7,8,0,0,4823,4824,7,2,0,0,4824, + 4825,7,5,0,0,4825,4826,7,6,0,0,4826,4827,7,16,0,0,4827,890,1,0,0, + 0,4828,4829,7,7,0,0,4829,4830,7,9,0,0,4830,4831,7,12,0,0,4831,4832, + 7,8,0,0,4832,4833,7,21,0,0,4833,4834,7,11,0,0,4834,4835,7,13,0,0, + 4835,892,1,0,0,0,4836,4837,7,7,0,0,4837,4838,7,6,0,0,4838,4839,7, + 12,0,0,4839,4840,7,23,0,0,4840,4841,7,19,0,0,4841,4842,7,16,0,0, + 4842,894,1,0,0,0,4843,4844,7,7,0,0,4844,4845,7,6,0,0,4845,4846,7, + 12,0,0,4846,4847,7,4,0,0,4847,4848,7,8,0,0,4848,4849,7,11,0,0,4849, + 4850,7,2,0,0,4850,4851,7,19,0,0,4851,4852,7,12,0,0,4852,4853,7,8, + 0,0,4853,4854,7,4,0,0,4854,896,1,0,0,0,4855,4856,7,7,0,0,4856,4857, + 7,21,0,0,4857,4858,7,17,0,0,4858,4859,7,21,0,0,4859,4860,7,5,0,0, + 4860,4861,7,2,0,0,4861,4862,7,8,0,0,4862,4863,7,9,0,0,4863,898,1, + 0,0,0,4864,4865,7,15,0,0,4865,4866,7,2,0,0,4866,4867,7,8,0,0,4867, + 4868,7,2,0,0,4868,900,1,0,0,0,4869,4870,7,15,0,0,4870,4871,7,2,0, + 0,4871,4872,7,8,0,0,4872,4873,7,2,0,0,4873,4874,7,3,0,0,4874,4875, + 7,2,0,0,4875,4876,7,4,0,0,4876,4877,7,9,0,0,4877,902,1,0,0,0,4878, + 4879,7,15,0,0,4879,4880,7,2,0,0,4880,4881,7,13,0,0,4881,4882,7,4, + 0,0,4882,904,1,0,0,0,4883,4884,7,15,0,0,4884,4885,7,9,0,0,4885,4886, + 7,7,0,0,4886,4887,7,2,0,0,4887,4888,7,15,0,0,4888,4889,7,9,0,0,4889, + 906,1,0,0,0,4890,4891,7,15,0,0,4891,4892,7,9,0,0,4892,4893,7,4,0, + 0,4893,4894,7,7,0,0,4894,908,1,0,0,0,4895,4896,7,15,0,0,4896,4897, + 7,9,0,0,4897,4898,7,4,0,0,4898,4899,7,7,0,0,4899,4900,7,11,0,0,4900, + 4901,7,19,0,0,4901,4902,7,24,0,0,4902,4903,7,8,0,0,4903,4904,7,6, + 0,0,4904,4905,7,11,0,0,4905,910,1,0,0,0,4906,4907,7,15,0,0,4907, + 4908,7,19,0,0,4908,4909,7,20,0,0,4909,912,1,0,0,0,4910,4911,7,9, + 0,0,4911,4912,7,12,0,0,4912,4913,7,16,0,0,4913,4914,7,19,0,0,4914, + 4915,7,12,0,0,4915,4916,7,9,0,0,4916,914,1,0,0,0,4917,4918,7,9,0, + 0,4918,4919,7,24,0,0,4919,4920,7,6,0,0,4920,4921,7,7,0,0,4921,4922, + 7,22,0,0,4922,916,1,0,0,0,4923,4924,7,9,0,0,4924,4925,7,18,0,0,4925, + 4926,7,7,0,0,4926,4927,7,5,0,0,4927,4928,7,21,0,0,4928,4929,7,15, + 0,0,4929,4930,7,19,0,0,4930,4931,7,12,0,0,4931,4932,7,16,0,0,4932, + 918,1,0,0,0,4933,4934,7,23,0,0,4934,4935,7,19,0,0,4935,4936,7,5, + 0,0,4936,4937,7,9,0,0,4937,920,1,0,0,0,4938,4939,7,23,0,0,4939,4940, + 7,19,0,0,4940,4941,7,11,0,0,4941,4942,7,4,0,0,4942,4943,7,8,0,0, + 4943,922,1,0,0,0,4944,4945,7,16,0,0,4945,4946,7,9,0,0,4946,4947, + 7,12,0,0,4947,4948,7,9,0,0,4948,4949,7,11,0,0,4949,4950,7,2,0,0, + 4950,4951,7,8,0,0,4951,4952,7,9,0,0,4952,4953,7,15,0,0,4953,924, + 1,0,0,0,4954,4955,7,22,0,0,4955,4956,7,6,0,0,4956,4957,7,24,0,0, + 4957,926,1,0,0,0,4958,4959,7,22,0,0,4959,4960,7,6,0,0,4960,4961, + 7,21,0,0,4961,4962,7,11,0,0,4962,4963,7,4,0,0,4963,928,1,0,0,0,4964, + 4965,7,19,0,0,4965,4966,7,16,0,0,4966,4967,7,12,0,0,4967,4968,7, + 6,0,0,4968,4969,7,11,0,0,4969,4970,7,9,0,0,4970,930,1,0,0,0,4971, + 4972,7,19,0,0,4972,4973,7,12,0,0,4973,4974,7,7,0,0,4974,4975,7,5, + 0,0,4975,4976,7,21,0,0,4976,4977,7,15,0,0,4977,4978,7,19,0,0,4978, + 4979,7,12,0,0,4979,4980,7,16,0,0,4980,932,1,0,0,0,4981,4982,7,27, + 0,0,4982,4983,7,2,0,0,4983,4984,7,11,0,0,4984,934,1,0,0,0,4985,4986, + 7,27,0,0,4986,4987,7,2,0,0,4987,4988,7,11,0,0,4988,4989,7,4,0,0, + 4989,936,1,0,0,0,4990,4991,7,27,0,0,4991,4992,7,2,0,0,4992,4993, + 7,20,0,0,4993,4994,7,2,0,0,4994,938,1,0,0,0,4995,4996,7,25,0,0,4996, + 4997,7,9,0,0,4997,4998,7,13,0,0,4998,940,1,0,0,0,4999,5000,7,5,0, + 0,5000,5001,7,2,0,0,5001,5002,7,4,0,0,5002,5003,7,8,0,0,5003,942, + 1,0,0,0,5004,5005,7,5,0,0,5005,5006,7,6,0,0,5006,5007,7,2,0,0,5007, + 5008,7,15,0,0,5008,944,1,0,0,0,5009,5010,7,17,0,0,5010,5011,7,2, + 0,0,5011,5012,7,24,0,0,5012,946,1,0,0,0,5013,5014,7,17,0,0,5014, + 5015,7,19,0,0,5015,5016,7,7,0,0,5016,5017,7,11,0,0,5017,5018,7,6, + 0,0,5018,5019,7,4,0,0,5019,5020,7,9,0,0,5020,5021,7,7,0,0,5021,5022, + 7,6,0,0,5022,5023,7,12,0,0,5023,5024,7,15,0,0,5024,948,1,0,0,0,5025, + 5026,7,17,0,0,5026,5027,7,19,0,0,5027,5028,7,5,0,0,5028,5029,7,5, + 0,0,5029,5030,7,9,0,0,5030,5031,7,12,0,0,5031,5032,7,12,0,0,5032, + 5033,7,19,0,0,5033,5034,7,21,0,0,5034,5035,7,17,0,0,5035,950,1,0, + 0,0,5036,5037,7,17,0,0,5037,5038,7,19,0,0,5038,5039,7,5,0,0,5039, + 5040,7,5,0,0,5040,5041,7,19,0,0,5041,5042,7,4,0,0,5042,5043,7,9, + 0,0,5043,5044,7,7,0,0,5044,5045,7,6,0,0,5045,5046,7,12,0,0,5046, + 5047,7,15,0,0,5047,952,1,0,0,0,5048,5049,7,17,0,0,5049,5050,7,19, + 0,0,5050,5051,7,12,0,0,5051,5052,7,21,0,0,5052,5053,7,8,0,0,5053, + 5054,7,9,0,0,5054,5055,7,4,0,0,5055,954,1,0,0,0,5056,5057,7,17,0, + 0,5057,5058,7,6,0,0,5058,5059,7,12,0,0,5059,5060,7,8,0,0,5060,5061, + 7,22,0,0,5061,5062,7,4,0,0,5062,956,1,0,0,0,5063,5064,7,12,0,0,5064, + 5065,7,2,0,0,5065,5066,7,12,0,0,5066,5067,7,6,0,0,5067,5068,7,4, + 0,0,5068,5069,7,9,0,0,5069,5070,7,7,0,0,5070,5071,7,6,0,0,5071,5072, + 7,12,0,0,5072,5073,7,15,0,0,5073,958,1,0,0,0,5074,5075,7,12,0,0, + 5075,5076,7,21,0,0,5076,5077,7,5,0,0,5077,5078,7,5,0,0,5078,5079, + 7,4,0,0,5079,960,1,0,0,0,5080,5081,7,6,0,0,5081,5082,7,24,0,0,5082, + 5083,7,8,0,0,5083,5084,7,19,0,0,5084,5085,7,6,0,0,5085,5086,7,12, + 0,0,5086,5087,7,4,0,0,5087,962,1,0,0,0,5088,5089,7,24,0,0,5089,5090, + 7,2,0,0,5090,5091,7,4,0,0,5091,5092,7,8,0,0,5092,964,1,0,0,0,5093, + 5094,7,24,0,0,5094,5095,7,5,0,0,5095,5096,7,2,0,0,5096,5097,7,12, + 0,0,5097,966,1,0,0,0,5098,5099,7,24,0,0,5099,5100,7,11,0,0,5100, + 5101,7,9,0,0,5101,5102,7,7,0,0,5102,5103,7,9,0,0,5103,5104,7,15, + 0,0,5104,5105,7,19,0,0,5105,5106,7,12,0,0,5106,5107,7,16,0,0,5107, + 968,1,0,0,0,5108,5109,7,24,0,0,5109,5110,7,13,0,0,5110,5111,7,8, + 0,0,5111,5112,7,22,0,0,5112,5113,7,6,0,0,5113,5114,7,12,0,0,5114, + 970,1,0,0,0,5115,5116,7,24,0,0,5116,5117,7,13,0,0,5117,5118,7,8, + 0,0,5118,5119,7,22,0,0,5119,5120,7,6,0,0,5120,5121,7,12,0,0,5121, + 5122,5,95,0,0,5122,5123,7,2,0,0,5123,5124,7,11,0,0,5124,5125,7,7, + 0,0,5125,5126,7,22,0,0,5126,5127,7,19,0,0,5127,5128,7,20,0,0,5128, + 5129,7,9,0,0,5129,5130,7,4,0,0,5130,972,1,0,0,0,5131,5132,7,24,0, + 0,5132,5133,7,13,0,0,5133,5134,7,8,0,0,5134,5135,7,22,0,0,5135,5136, + 7,6,0,0,5136,5137,7,12,0,0,5137,5138,5,95,0,0,5138,5139,7,15,0,0, + 5139,5140,7,9,0,0,5140,5141,7,24,0,0,5141,5142,7,9,0,0,5142,5143, + 7,12,0,0,5143,5144,7,15,0,0,5144,5145,7,9,0,0,5145,5146,7,12,0,0, + 5146,5147,7,7,0,0,5147,5148,7,19,0,0,5148,5149,7,9,0,0,5149,5150, + 7,4,0,0,5150,974,1,0,0,0,5151,5152,7,24,0,0,5152,5153,7,13,0,0,5153, + 5154,7,8,0,0,5154,5155,7,22,0,0,5155,5156,7,6,0,0,5156,5157,7,12, + 0,0,5157,5158,5,95,0,0,5158,5159,7,23,0,0,5159,5160,7,19,0,0,5160, + 5161,7,5,0,0,5161,5162,7,9,0,0,5162,5163,7,4,0,0,5163,976,1,0,0, + 0,5164,5165,7,24,0,0,5165,5166,7,13,0,0,5166,5167,7,8,0,0,5167,5168, + 7,22,0,0,5168,5169,7,6,0,0,5169,5170,7,12,0,0,5170,5171,5,95,0,0, + 5171,5172,7,27,0,0,5172,5173,7,2,0,0,5173,5174,7,11,0,0,5174,978, + 1,0,0,0,5175,5176,7,24,0,0,5176,5177,7,13,0,0,5177,5178,7,8,0,0, + 5178,5179,7,22,0,0,5179,5180,7,6,0,0,5180,5181,7,12,0,0,5181,5182, + 5,95,0,0,5182,5183,7,24,0,0,5183,5184,7,2,0,0,5184,5185,7,11,0,0, + 5185,5186,7,2,0,0,5186,5187,7,17,0,0,5187,5188,7,9,0,0,5188,5189, + 7,8,0,0,5189,5190,7,9,0,0,5190,5191,7,11,0,0,5191,980,1,0,0,0,5192, + 5193,7,24,0,0,5193,5194,7,13,0,0,5194,5195,7,8,0,0,5195,5196,7,22, + 0,0,5196,5197,7,6,0,0,5197,5198,7,12,0,0,5198,5199,5,95,0,0,5199, + 5200,7,11,0,0,5200,5201,7,9,0,0,5201,5202,7,26,0,0,5202,5203,7,21, + 0,0,5203,5204,7,19,0,0,5204,5205,7,11,0,0,5205,5206,7,9,0,0,5206, + 5207,7,17,0,0,5207,5208,7,9,0,0,5208,5209,7,12,0,0,5209,5210,7,8, + 0,0,5210,5211,7,4,0,0,5211,982,1,0,0,0,5212,5213,7,26,0,0,5213,5214, + 7,21,0,0,5214,5215,7,2,0,0,5215,5216,7,11,0,0,5216,5217,7,8,0,0, + 5217,5218,7,9,0,0,5218,5219,7,11,0,0,5219,984,1,0,0,0,5220,5221, + 7,11,0,0,5221,5222,7,9,0,0,5222,5223,7,17,0,0,5223,5224,7,6,0,0, + 5224,5225,7,20,0,0,5225,5226,7,9,0,0,5226,986,1,0,0,0,5227,5228, + 7,11,0,0,5228,5229,7,9,0,0,5229,5230,7,4,0,0,5230,5231,7,8,0,0,5231, + 5232,7,11,0,0,5232,5233,7,19,0,0,5233,5234,7,7,0,0,5234,5235,7,8, + 0,0,5235,988,1,0,0,0,5236,5237,7,4,0,0,5237,5238,7,9,0,0,5238,5239, + 7,7,0,0,5239,5240,7,6,0,0,5240,5241,7,12,0,0,5241,5242,7,15,0,0, + 5242,5243,7,4,0,0,5243,990,1,0,0,0,5244,5245,7,4,0,0,5245,5246,7, + 9,0,0,5246,5247,7,4,0,0,5247,5248,7,4,0,0,5248,5249,7,19,0,0,5249, + 5250,7,6,0,0,5250,5251,7,12,0,0,5251,992,1,0,0,0,5252,5253,7,4,0, + 0,5253,5254,7,9,0,0,5254,5255,7,8,0,0,5255,5256,7,4,0,0,5256,994, + 1,0,0,0,5257,5258,7,4,0,0,5258,5259,7,19,0,0,5259,5260,7,14,0,0, + 5260,5261,7,9,0,0,5261,996,1,0,0,0,5262,5263,7,4,0,0,5263,5264,7, + 5,0,0,5264,5265,7,19,0,0,5265,5266,7,15,0,0,5266,5267,7,9,0,0,5267, + 998,1,0,0,0,5268,5269,7,4,0,0,5269,5270,7,8,0,0,5270,5271,7,9,0, + 0,5271,5272,7,24,0,0,5272,1000,1,0,0,0,5273,5274,7,8,0,0,5274,5275, + 7,9,0,0,5275,5276,7,17,0,0,5276,5277,7,24,0,0,5277,5278,7,6,0,0, + 5278,5279,7,11,0,0,5279,5280,7,2,0,0,5280,5281,7,11,0,0,5281,5282, + 7,13,0,0,5282,1002,1,0,0,0,5283,5284,7,8,0,0,5284,5285,7,19,0,0, + 5285,5286,7,17,0,0,5286,5287,7,9,0,0,5287,5288,7,7,0,0,5288,5289, + 7,6,0,0,5289,5290,7,5,0,0,5290,1004,1,0,0,0,5291,5292,7,8,0,0,5292, + 5293,7,21,0,0,5293,5294,7,17,0,0,5294,5295,7,3,0,0,5295,5296,7,5, + 0,0,5296,5297,7,9,0,0,5297,1006,1,0,0,0,5298,5299,7,21,0,0,5299, + 5300,7,12,0,0,5300,5301,7,5,0,0,5301,5302,7,6,0,0,5302,5303,7,2, + 0,0,5303,5304,7,15,0,0,5304,1008,1,0,0,0,5305,5306,7,20,0,0,5306, + 5307,7,19,0,0,5307,5308,7,9,0,0,5308,5309,7,10,0,0,5309,1010,1,0, + 0,0,5310,5311,7,10,0,0,5311,5312,7,9,0,0,5312,5313,7,9,0,0,5313, + 5314,7,25,0,0,5314,1012,1,0,0,0,5315,5316,7,13,0,0,5316,5317,7,9, + 0,0,5317,5318,7,2,0,0,5318,5319,7,11,0,0,5319,5320,7,4,0,0,5320, + 1014,1,0,0,0,5321,5322,7,14,0,0,5322,5323,7,6,0,0,5323,5324,7,12, + 0,0,5324,5325,7,9,0,0,5325,1016,1,0,0,0,5326,5327,5,61,0,0,5327, + 1018,1,0,0,0,5328,5329,5,62,0,0,5329,1020,1,0,0,0,5330,5331,5,60, + 0,0,5331,1022,1,0,0,0,5332,5333,5,33,0,0,5333,1024,1,0,0,0,5334, + 5335,5,126,0,0,5335,1026,1,0,0,0,5336,5337,5,124,0,0,5337,1028,1, + 0,0,0,5338,5339,5,38,0,0,5339,1030,1,0,0,0,5340,5341,5,94,0,0,5341, + 1032,1,0,0,0,5342,5343,5,46,0,0,5343,1034,1,0,0,0,5344,5345,5,91, + 0,0,5345,1036,1,0,0,0,5346,5347,5,93,0,0,5347,1038,1,0,0,0,5348, + 5349,5,40,0,0,5349,1040,1,0,0,0,5350,5351,5,41,0,0,5351,1042,1,0, + 0,0,5352,5353,5,123,0,0,5353,1044,1,0,0,0,5354,5355,5,125,0,0,5355, + 1046,1,0,0,0,5356,5357,5,44,0,0,5357,1048,1,0,0,0,5358,5359,5,59, + 0,0,5359,1050,1,0,0,0,5360,5361,5,64,0,0,5361,1052,1,0,0,0,5362, + 5363,5,39,0,0,5363,1054,1,0,0,0,5364,5365,5,34,0,0,5365,1056,1,0, + 0,0,5366,5367,5,96,0,0,5367,1058,1,0,0,0,5368,5369,5,58,0,0,5369, + 1060,1,0,0,0,5370,5371,5,42,0,0,5371,1062,1,0,0,0,5372,5373,5,95, + 0,0,5373,1064,1,0,0,0,5374,5375,5,45,0,0,5375,1066,1,0,0,0,5376, + 5377,5,43,0,0,5377,1068,1,0,0,0,5378,5379,5,37,0,0,5379,1070,1,0, + 0,0,5380,5381,5,124,0,0,5381,5382,5,124,0,0,5382,1072,1,0,0,0,5383, + 5384,5,45,0,0,5384,5385,5,45,0,0,5385,1074,1,0,0,0,5386,5387,5,47, + 0,0,5387,1076,1,0,0,0,5388,5389,5,63,0,0,5389,1078,1,0,0,0,5390, + 5391,5,61,0,0,5391,5392,5,62,0,0,5392,1080,1,0,0,0,5393,5397,3,1101, + 550,0,5394,5397,3,1103,551,0,5395,5397,3,1107,553,0,5396,5393,1, + 0,0,0,5396,5394,1,0,0,0,5396,5395,1,0,0,0,5397,1082,1,0,0,0,5398, + 5400,3,1097,548,0,5399,5398,1,0,0,0,5400,5401,1,0,0,0,5401,5399, + 1,0,0,0,5401,5402,1,0,0,0,5402,1084,1,0,0,0,5403,5405,3,1097,548, + 0,5404,5403,1,0,0,0,5405,5406,1,0,0,0,5406,5404,1,0,0,0,5406,5407, + 1,0,0,0,5407,5409,1,0,0,0,5408,5404,1,0,0,0,5408,5409,1,0,0,0,5409, + 5410,1,0,0,0,5410,5412,5,46,0,0,5411,5413,3,1097,548,0,5412,5411, + 1,0,0,0,5413,5414,1,0,0,0,5414,5412,1,0,0,0,5414,5415,1,0,0,0,5415, + 5447,1,0,0,0,5416,5418,3,1097,548,0,5417,5416,1,0,0,0,5418,5419, + 1,0,0,0,5419,5417,1,0,0,0,5419,5420,1,0,0,0,5420,5421,1,0,0,0,5421, + 5422,5,46,0,0,5422,5423,3,1093,546,0,5423,5447,1,0,0,0,5424,5426, + 3,1097,548,0,5425,5424,1,0,0,0,5426,5427,1,0,0,0,5427,5425,1,0,0, + 0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5425,1,0,0,0,5429,5430, + 1,0,0,0,5430,5431,1,0,0,0,5431,5433,5,46,0,0,5432,5434,3,1097,548, + 0,5433,5432,1,0,0,0,5434,5435,1,0,0,0,5435,5433,1,0,0,0,5435,5436, + 1,0,0,0,5436,5437,1,0,0,0,5437,5438,3,1093,546,0,5438,5447,1,0,0, + 0,5439,5441,3,1097,548,0,5440,5439,1,0,0,0,5441,5442,1,0,0,0,5442, + 5440,1,0,0,0,5442,5443,1,0,0,0,5443,5444,1,0,0,0,5444,5445,3,1093, + 546,0,5445,5447,1,0,0,0,5446,5408,1,0,0,0,5446,5417,1,0,0,0,5446, + 5429,1,0,0,0,5446,5440,1,0,0,0,5447,1086,1,0,0,0,5448,5449,3,1105, + 552,0,5449,1088,1,0,0,0,5450,5451,3,1095,547,0,5451,1090,1,0,0,0, + 5452,5460,5,96,0,0,5453,5454,5,92,0,0,5454,5459,9,0,0,0,5455,5456, + 5,96,0,0,5456,5459,5,96,0,0,5457,5459,8,28,0,0,5458,5453,1,0,0,0, + 5458,5455,1,0,0,0,5458,5457,1,0,0,0,5459,5462,1,0,0,0,5460,5458, + 1,0,0,0,5460,5461,1,0,0,0,5461,5463,1,0,0,0,5462,5460,1,0,0,0,5463, + 5464,5,96,0,0,5464,1092,1,0,0,0,5465,5467,7,9,0,0,5466,5468,7,29, + 0,0,5467,5466,1,0,0,0,5467,5468,1,0,0,0,5468,5470,1,0,0,0,5469,5471, + 3,1097,548,0,5470,5469,1,0,0,0,5471,5472,1,0,0,0,5472,5470,1,0,0, + 0,5472,5473,1,0,0,0,5473,1094,1,0,0,0,5474,5476,7,30,0,0,5475,5474, + 1,0,0,0,5476,5479,1,0,0,0,5477,5478,1,0,0,0,5477,5475,1,0,0,0,5478, + 5481,1,0,0,0,5479,5477,1,0,0,0,5480,5482,7,31,0,0,5481,5480,1,0, + 0,0,5482,5483,1,0,0,0,5483,5484,1,0,0,0,5483,5481,1,0,0,0,5484,5488, + 1,0,0,0,5485,5487,7,30,0,0,5486,5485,1,0,0,0,5487,5490,1,0,0,0,5488, + 5486,1,0,0,0,5488,5489,1,0,0,0,5489,1096,1,0,0,0,5490,5488,1,0,0, + 0,5491,5492,7,32,0,0,5492,1098,1,0,0,0,5493,5494,7,33,0,0,5494,1100, + 1,0,0,0,5495,5503,5,34,0,0,5496,5497,5,92,0,0,5497,5502,9,0,0,0, + 5498,5499,5,34,0,0,5499,5502,5,34,0,0,5500,5502,8,34,0,0,5501,5496, + 1,0,0,0,5501,5498,1,0,0,0,5501,5500,1,0,0,0,5502,5505,1,0,0,0,5503, + 5501,1,0,0,0,5503,5504,1,0,0,0,5504,5506,1,0,0,0,5505,5503,1,0,0, + 0,5506,5507,5,34,0,0,5507,1102,1,0,0,0,5508,5516,5,39,0,0,5509,5510, + 5,92,0,0,5510,5515,9,0,0,0,5511,5512,5,39,0,0,5512,5515,5,39,0,0, + 5513,5515,8,35,0,0,5514,5509,1,0,0,0,5514,5511,1,0,0,0,5514,5513, + 1,0,0,0,5515,5518,1,0,0,0,5516,5514,1,0,0,0,5516,5517,1,0,0,0,5517, + 5519,1,0,0,0,5518,5516,1,0,0,0,5519,5520,5,39,0,0,5520,1104,1,0, + 0,0,5521,5522,7,3,0,0,5522,5524,5,39,0,0,5523,5525,7,36,0,0,5524, + 5523,1,0,0,0,5525,5526,1,0,0,0,5526,5524,1,0,0,0,5526,5527,1,0,0, + 0,5527,5528,1,0,0,0,5528,5529,5,39,0,0,5529,1106,1,0,0,0,5530,5538, + 5,96,0,0,5531,5532,5,92,0,0,5532,5537,9,0,0,0,5533,5534,5,96,0,0, + 5534,5537,5,96,0,0,5535,5537,8,28,0,0,5536,5531,1,0,0,0,5536,5533, + 1,0,0,0,5536,5535,1,0,0,0,5537,5540,1,0,0,0,5538,5536,1,0,0,0,5538, + 5539,1,0,0,0,5539,5541,1,0,0,0,5540,5538,1,0,0,0,5541,5542,5,96, + 0,0,5542,1108,1,0,0,0,34,0,1119,1130,1135,1139,1143,1149,1153,1155, + 5396,5401,5406,5408,5414,5419,5427,5429,5435,5442,5446,5458,5460, + 5467,5472,5477,5483,5488,5501,5503,5514,5516,5526,5536,5538,1,0, 1,0 ]; diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 1de25841..8f971109 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -145,6 +145,7 @@ null 'FIRST_VALUE' 'FLOAT' 'FLOOR' +'FOLLOWING' 'FOR' 'FOREIGN' 'FRAME_ROW' @@ -279,6 +280,7 @@ null 'PERCENT_RANK' 'PERIOD' 'PERMUTE' +'RETURNING' 'PIVOT' 'PORTION' 'POSITION' @@ -402,6 +404,7 @@ null 'TRY_CAST' 'TUESDAY' 'UESCAPE' +'UNBOUNDED' 'UNION' 'UNIQUE' 'UNKNOWN' @@ -690,6 +693,7 @@ KW_FILTER KW_FIRST_VALUE KW_FLOAT KW_FLOOR +KW_FOLLOWING KW_FOR KW_FOREIGN KW_FRAME_ROW @@ -824,6 +828,7 @@ KW_PERCENTILE_DISC KW_PERCENT_RANK KW_PERIOD KW_PERMUTE +KW_RETURNING KW_PIVOT KW_PORTION KW_POSITION @@ -947,6 +952,7 @@ KW_TRUNCATE KW_TRY_CAST KW_TUESDAY KW_UESCAPE +KW_UNBOUNDED KW_UNION KW_UNIQUE KW_UNKNOWN @@ -1217,6 +1223,8 @@ afterMatchStrategy patternVariablesDefinition windowFrame frameBound +frameStart +frameEnd withinClause expression booleanExpression @@ -1225,6 +1233,7 @@ likePredicate valueExpression functionCallExpression primaryExpression +jsonValueExpression functionNameCreate functionName functionNameAndParams @@ -1285,4 +1294,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2313, 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, 1, 0, 5, 0, 388, 8, 0, 10, 0, 12, 0, 391, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 397, 8, 1, 1, 1, 3, 1, 400, 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, 414, 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, 432, 8, 4, 1, 5, 1, 5, 3, 5, 436, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 445, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 450, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 455, 8, 8, 10, 8, 12, 8, 458, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 468, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 475, 8, 11, 10, 11, 12, 11, 478, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 489, 8, 12, 1, 12, 3, 12, 492, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 499, 8, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 510, 8, 12, 1, 12, 1, 12, 3, 12, 514, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 519, 8, 12, 1, 12, 3, 12, 522, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 529, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 537, 8, 15, 1, 16, 1, 16, 3, 16, 541, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 561, 8, 18, 1, 18, 1, 18, 3, 18, 565, 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, 597, 8, 18, 1, 19, 3, 19, 600, 8, 19, 1, 19, 4, 19, 603, 8, 19, 11, 19, 12, 19, 604, 1, 20, 1, 20, 3, 20, 609, 8, 20, 1, 21, 1, 21, 3, 21, 613, 8, 21, 1, 21, 1, 21, 3, 21, 617, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 624, 8, 21, 10, 21, 12, 21, 627, 9, 21, 1, 21, 1, 21, 3, 21, 631, 8, 21, 1, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 644, 8, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 656, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 667, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 672, 8, 24, 1, 24, 1, 24, 3, 24, 676, 8, 24, 1, 25, 1, 25, 3, 25, 680, 8, 25, 1, 26, 1, 26, 3, 26, 684, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 692, 8, 28, 10, 28, 12, 28, 695, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 702, 8, 29, 1, 29, 1, 29, 3, 29, 706, 8, 29, 1, 29, 1, 29, 3, 29, 710, 8, 29, 1, 29, 1, 29, 3, 29, 714, 8, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 3, 29, 736, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 746, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 754, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 776, 8, 35, 10, 35, 12, 35, 779, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 790, 8, 35, 10, 35, 12, 35, 793, 9, 35, 1, 35, 1, 35, 3, 35, 797, 8, 35, 1, 36, 1, 36, 3, 36, 801, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 807, 8, 36, 1, 36, 3, 36, 810, 8, 36, 1, 36, 3, 36, 813, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 820, 8, 37, 1, 37, 3, 37, 823, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 832, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 844, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 866, 8, 46, 10, 46, 12, 46, 869, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 878, 8, 47, 10, 47, 12, 47, 881, 9, 47, 1, 47, 1, 47, 3, 47, 885, 8, 47, 1, 48, 1, 48, 3, 48, 889, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 895, 8, 49, 10, 49, 12, 49, 898, 9, 49, 1, 49, 3, 49, 901, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 907, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 917, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 922, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 928, 8, 53, 1, 53, 1, 53, 3, 53, 932, 8, 53, 1, 53, 1, 53, 3, 53, 936, 8, 53, 1, 53, 1, 53, 3, 53, 940, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 949, 8, 54, 1, 54, 1, 54, 3, 54, 953, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 960, 8, 54, 1, 54, 3, 54, 963, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 971, 8, 55, 10, 55, 12, 55, 974, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 981, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 989, 8, 57, 1, 58, 1, 58, 3, 58, 993, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1008, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1027, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1038, 8, 66, 1, 66, 1, 66, 3, 66, 1042, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1049, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1054, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1060, 8, 68, 1, 68, 1, 68, 3, 68, 1064, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1071, 8, 69, 1, 69, 1, 69, 3, 69, 1075, 8, 69, 1, 70, 1, 70, 3, 70, 1079, 8, 70, 1, 70, 1, 70, 3, 70, 1083, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1091, 8, 71, 1, 71, 1, 71, 3, 71, 1095, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1100, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1106, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1112, 8, 73, 1, 73, 3, 73, 1115, 8, 73, 1, 73, 1, 73, 3, 73, 1119, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1128, 8, 75, 10, 75, 12, 75, 1131, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1137, 8, 76, 10, 76, 12, 76, 1140, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1151, 8, 77, 11, 77, 12, 77, 1152, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1163, 8, 78, 11, 78, 12, 78, 1164, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1180, 8, 79, 1, 79, 3, 79, 1183, 8, 79, 1, 79, 1, 79, 3, 79, 1187, 8, 79, 1, 79, 3, 79, 1190, 8, 79, 3, 79, 1192, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1197, 8, 79, 1, 79, 1, 79, 3, 79, 1201, 8, 79, 1, 79, 3, 79, 1204, 8, 79, 5, 79, 1206, 8, 79, 10, 79, 12, 79, 1209, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1215, 8, 80, 10, 80, 12, 80, 1218, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1224, 8, 81, 10, 81, 12, 81, 1227, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1234, 8, 82, 10, 82, 12, 82, 1237, 9, 82, 1, 82, 1, 82, 3, 82, 1241, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1252, 8, 84, 1, 84, 3, 84, 1255, 8, 84, 1, 84, 3, 84, 1258, 8, 84, 1, 84, 3, 84, 1261, 8, 84, 1, 84, 3, 84, 1264, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 85, 1, 85, 3, 85, 1274, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1280, 8, 85, 10, 85, 12, 85, 1283, 9, 85, 3, 85, 1285, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1290, 8, 86, 1, 86, 3, 86, 1293, 8, 86, 1, 86, 1, 86, 3, 86, 1297, 8, 86, 1, 86, 3, 86, 1300, 8, 86, 3, 86, 1302, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1316, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1325, 8, 89, 10, 89, 12, 89, 1328, 9, 89, 1, 89, 1, 89, 3, 89, 1332, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1340, 8, 89, 1, 89, 3, 89, 1343, 8, 89, 1, 89, 3, 89, 1346, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1351, 8, 89, 5, 89, 1353, 8, 89, 10, 89, 12, 89, 1356, 9, 89, 1, 90, 1, 90, 3, 90, 1360, 8, 90, 1, 91, 3, 91, 1363, 8, 91, 1, 91, 1, 91, 3, 91, 1367, 8, 91, 1, 91, 1, 91, 3, 91, 1371, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1380, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1391, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1416, 8, 96, 10, 96, 12, 96, 1419, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1440, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1453, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1463, 8, 103, 10, 103, 12, 103, 1466, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1476, 8, 104, 10, 104, 12, 104, 1479, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1488, 8, 104, 10, 104, 12, 104, 1491, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1500, 8, 104, 10, 104, 12, 104, 1503, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1508, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1533, 8, 111, 10, 111, 12, 111, 1536, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1543, 8, 113, 1, 113, 1, 113, 3, 113, 1547, 8, 113, 1, 113, 3, 113, 1550, 8, 113, 1, 113, 3, 113, 1553, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1560, 8, 114, 1, 114, 3, 114, 1563, 8, 114, 1, 114, 3, 114, 1566, 8, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 3, 114, 1572, 8, 114, 1, 114, 3, 114, 1575, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1580, 8, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1590, 8, 115, 10, 115, 12, 115, 1593, 9, 115, 1, 116, 1, 116, 3, 116, 1597, 8, 116, 1, 116, 1, 116, 3, 116, 1601, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1606, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1617, 8, 118, 5, 118, 1619, 8, 118, 10, 118, 12, 118, 1622, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1640, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1646, 8, 120, 10, 120, 12, 120, 1649, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1654, 8, 121, 11, 121, 12, 121, 1655, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 3, 122, 1664, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1674, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1700, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1706, 8, 125, 10, 125, 12, 125, 1709, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1720, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1742, 8, 130, 3, 130, 1744, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1755, 8, 130, 1, 130, 5, 130, 1758, 8, 130, 10, 130, 12, 130, 1761, 9, 130, 1, 131, 3, 131, 1764, 8, 131, 1, 131, 1, 131, 3, 131, 1768, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1775, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1782, 8, 131, 10, 131, 12, 131, 1785, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1790, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1803, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1810, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1815, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1821, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1828, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1835, 8, 131, 3, 131, 1837, 8, 131, 1, 132, 3, 132, 1840, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1850, 8, 132, 10, 132, 12, 132, 1853, 9, 132, 1, 132, 1, 132, 3, 132, 1857, 8, 132, 1, 132, 3, 132, 1860, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1866, 8, 132, 3, 132, 1868, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1874, 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, 5, 133, 1895, 8, 133, 10, 133, 12, 133, 1898, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1905, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1910, 8, 134, 10, 134, 12, 134, 1913, 9, 134, 3, 134, 1915, 8, 134, 1, 134, 1, 134, 3, 134, 1919, 8, 134, 1, 135, 1, 135, 1, 135, 4, 135, 1924, 8, 135, 11, 135, 12, 135, 1925, 1, 135, 1, 135, 3, 135, 1930, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 1937, 8, 135, 11, 135, 12, 135, 1938, 1, 135, 1, 135, 3, 135, 1943, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1959, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1968, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1996, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 2003, 8, 135, 10, 135, 12, 135, 2006, 9, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2014, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 3, 139, 2024, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2038, 8, 143, 1, 144, 1, 144, 1, 144, 3, 144, 2043, 8, 144, 1, 145, 1, 145, 3, 145, 2047, 8, 145, 1, 146, 1, 146, 1, 146, 4, 146, 2052, 8, 146, 11, 146, 12, 146, 2053, 1, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 3, 149, 2067, 8, 149, 1, 149, 1, 149, 3, 149, 2071, 8, 149, 1, 150, 3, 150, 2074, 8, 150, 1, 150, 1, 150, 3, 150, 2078, 8, 150, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 4, 152, 2085, 8, 152, 11, 152, 12, 152, 2086, 1, 152, 3, 152, 2090, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2099, 8, 154, 10, 154, 12, 154, 2102, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2107, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2125, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2130, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2135, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2142, 8, 163, 3, 163, 2144, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2149, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2156, 8, 164, 3, 164, 2158, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2163, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2170, 8, 165, 3, 165, 2172, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2177, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2184, 8, 166, 3, 166, 2186, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2191, 8, 167, 10, 167, 12, 167, 2194, 9, 167, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 2210, 8, 171, 10, 171, 12, 171, 2213, 9, 171, 1, 171, 1, 171, 1, 172, 1, 172, 3, 172, 2219, 8, 172, 1, 172, 3, 172, 2222, 8, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2227, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2241, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2257, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2266, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2276, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2283, 8, 180, 1, 180, 3, 180, 2286, 8, 180, 1, 181, 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, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 2192, 5, 158, 178, 260, 266, 270, 193, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2519, 0, 389, 1, 0, 0, 0, 2, 399, 1, 0, 0, 0, 4, 413, 1, 0, 0, 0, 6, 415, 1, 0, 0, 0, 8, 431, 1, 0, 0, 0, 10, 435, 1, 0, 0, 0, 12, 437, 1, 0, 0, 0, 14, 440, 1, 0, 0, 0, 16, 451, 1, 0, 0, 0, 18, 459, 1, 0, 0, 0, 20, 467, 1, 0, 0, 0, 22, 469, 1, 0, 0, 0, 24, 521, 1, 0, 0, 0, 26, 523, 1, 0, 0, 0, 28, 530, 1, 0, 0, 0, 30, 534, 1, 0, 0, 0, 32, 538, 1, 0, 0, 0, 34, 542, 1, 0, 0, 0, 36, 596, 1, 0, 0, 0, 38, 602, 1, 0, 0, 0, 40, 608, 1, 0, 0, 0, 42, 610, 1, 0, 0, 0, 44, 652, 1, 0, 0, 0, 46, 666, 1, 0, 0, 0, 48, 668, 1, 0, 0, 0, 50, 679, 1, 0, 0, 0, 52, 683, 1, 0, 0, 0, 54, 685, 1, 0, 0, 0, 56, 687, 1, 0, 0, 0, 58, 735, 1, 0, 0, 0, 60, 737, 1, 0, 0, 0, 62, 741, 1, 0, 0, 0, 64, 749, 1, 0, 0, 0, 66, 757, 1, 0, 0, 0, 68, 761, 1, 0, 0, 0, 70, 796, 1, 0, 0, 0, 72, 812, 1, 0, 0, 0, 74, 814, 1, 0, 0, 0, 76, 824, 1, 0, 0, 0, 78, 826, 1, 0, 0, 0, 80, 833, 1, 0, 0, 0, 82, 835, 1, 0, 0, 0, 84, 843, 1, 0, 0, 0, 86, 851, 1, 0, 0, 0, 88, 853, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 861, 1, 0, 0, 0, 94, 884, 1, 0, 0, 0, 96, 888, 1, 0, 0, 0, 98, 890, 1, 0, 0, 0, 100, 906, 1, 0, 0, 0, 102, 908, 1, 0, 0, 0, 104, 913, 1, 0, 0, 0, 106, 925, 1, 0, 0, 0, 108, 944, 1, 0, 0, 0, 110, 964, 1, 0, 0, 0, 112, 975, 1, 0, 0, 0, 114, 977, 1, 0, 0, 0, 116, 990, 1, 0, 0, 0, 118, 997, 1, 0, 0, 0, 120, 1000, 1, 0, 0, 0, 122, 1009, 1, 0, 0, 0, 124, 1013, 1, 0, 0, 0, 126, 1017, 1, 0, 0, 0, 128, 1020, 1, 0, 0, 0, 130, 1028, 1, 0, 0, 0, 132, 1033, 1, 0, 0, 0, 134, 1050, 1, 0, 0, 0, 136, 1057, 1, 0, 0, 0, 138, 1067, 1, 0, 0, 0, 140, 1076, 1, 0, 0, 0, 142, 1086, 1, 0, 0, 0, 144, 1105, 1, 0, 0, 0, 146, 1107, 1, 0, 0, 0, 148, 1120, 1, 0, 0, 0, 150, 1123, 1, 0, 0, 0, 152, 1132, 1, 0, 0, 0, 154, 1143, 1, 0, 0, 0, 156, 1156, 1, 0, 0, 0, 158, 1191, 1, 0, 0, 0, 160, 1210, 1, 0, 0, 0, 162, 1219, 1, 0, 0, 0, 164, 1228, 1, 0, 0, 0, 166, 1247, 1, 0, 0, 0, 168, 1269, 1, 0, 0, 0, 170, 1271, 1, 0, 0, 0, 172, 1301, 1, 0, 0, 0, 174, 1315, 1, 0, 0, 0, 176, 1317, 1, 0, 0, 0, 178, 1331, 1, 0, 0, 0, 180, 1357, 1, 0, 0, 0, 182, 1390, 1, 0, 0, 0, 184, 1392, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1400, 1, 0, 0, 0, 190, 1405, 1, 0, 0, 0, 192, 1410, 1, 0, 0, 0, 194, 1422, 1, 0, 0, 0, 196, 1439, 1, 0, 0, 0, 198, 1441, 1, 0, 0, 0, 200, 1443, 1, 0, 0, 0, 202, 1452, 1, 0, 0, 0, 204, 1454, 1, 0, 0, 0, 206, 1457, 1, 0, 0, 0, 208, 1507, 1, 0, 0, 0, 210, 1509, 1, 0, 0, 0, 212, 1512, 1, 0, 0, 0, 214, 1514, 1, 0, 0, 0, 216, 1521, 1, 0, 0, 0, 218, 1523, 1, 0, 0, 0, 220, 1525, 1, 0, 0, 0, 222, 1528, 1, 0, 0, 0, 224, 1537, 1, 0, 0, 0, 226, 1542, 1, 0, 0, 0, 228, 1556, 1, 0, 0, 0, 230, 1584, 1, 0, 0, 0, 232, 1594, 1, 0, 0, 0, 234, 1602, 1, 0, 0, 0, 236, 1607, 1, 0, 0, 0, 238, 1639, 1, 0, 0, 0, 240, 1641, 1, 0, 0, 0, 242, 1650, 1, 0, 0, 0, 244, 1661, 1, 0, 0, 0, 246, 1673, 1, 0, 0, 0, 248, 1699, 1, 0, 0, 0, 250, 1701, 1, 0, 0, 0, 252, 1719, 1, 0, 0, 0, 254, 1721, 1, 0, 0, 0, 256, 1726, 1, 0, 0, 0, 258, 1729, 1, 0, 0, 0, 260, 1743, 1, 0, 0, 0, 262, 1836, 1, 0, 0, 0, 264, 1867, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1918, 1, 0, 0, 0, 270, 1995, 1, 0, 0, 0, 272, 2007, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2023, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2031, 1, 0, 0, 0, 284, 2033, 1, 0, 0, 0, 286, 2037, 1, 0, 0, 0, 288, 2039, 1, 0, 0, 0, 290, 2044, 1, 0, 0, 0, 292, 2051, 1, 0, 0, 0, 294, 2055, 1, 0, 0, 0, 296, 2060, 1, 0, 0, 0, 298, 2070, 1, 0, 0, 0, 300, 2073, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2089, 1, 0, 0, 0, 306, 2091, 1, 0, 0, 0, 308, 2095, 1, 0, 0, 0, 310, 2106, 1, 0, 0, 0, 312, 2108, 1, 0, 0, 0, 314, 2110, 1, 0, 0, 0, 316, 2112, 1, 0, 0, 0, 318, 2117, 1, 0, 0, 0, 320, 2119, 1, 0, 0, 0, 322, 2121, 1, 0, 0, 0, 324, 2126, 1, 0, 0, 0, 326, 2143, 1, 0, 0, 0, 328, 2157, 1, 0, 0, 0, 330, 2171, 1, 0, 0, 0, 332, 2185, 1, 0, 0, 0, 334, 2187, 1, 0, 0, 0, 336, 2195, 1, 0, 0, 0, 338, 2198, 1, 0, 0, 0, 340, 2202, 1, 0, 0, 0, 342, 2205, 1, 0, 0, 0, 344, 2216, 1, 0, 0, 0, 346, 2226, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2240, 1, 0, 0, 0, 352, 2256, 1, 0, 0, 0, 354, 2265, 1, 0, 0, 0, 356, 2267, 1, 0, 0, 0, 358, 2269, 1, 0, 0, 0, 360, 2285, 1, 0, 0, 0, 362, 2287, 1, 0, 0, 0, 364, 2290, 1, 0, 0, 0, 366, 2292, 1, 0, 0, 0, 368, 2294, 1, 0, 0, 0, 370, 2296, 1, 0, 0, 0, 372, 2298, 1, 0, 0, 0, 374, 2300, 1, 0, 0, 0, 376, 2302, 1, 0, 0, 0, 378, 2304, 1, 0, 0, 0, 380, 2306, 1, 0, 0, 0, 382, 2308, 1, 0, 0, 0, 384, 2310, 1, 0, 0, 0, 386, 388, 3, 2, 1, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 5, 0, 0, 1, 393, 1, 1, 0, 0, 0, 394, 396, 3, 4, 2, 0, 395, 397, 5, 522, 0, 0, 396, 395, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 400, 3, 6, 3, 0, 399, 394, 1, 0, 0, 0, 399, 398, 1, 0, 0, 0, 400, 3, 1, 0, 0, 0, 401, 414, 3, 8, 4, 0, 402, 414, 3, 10, 5, 0, 403, 414, 3, 12, 6, 0, 404, 414, 3, 14, 7, 0, 405, 414, 3, 20, 10, 0, 406, 414, 3, 24, 12, 0, 407, 414, 3, 26, 13, 0, 408, 414, 3, 28, 14, 0, 409, 414, 3, 30, 15, 0, 410, 414, 3, 32, 16, 0, 411, 414, 3, 34, 17, 0, 412, 414, 3, 36, 18, 0, 413, 401, 1, 0, 0, 0, 413, 402, 1, 0, 0, 0, 413, 403, 1, 0, 0, 0, 413, 404, 1, 0, 0, 0, 413, 405, 1, 0, 0, 0, 413, 406, 1, 0, 0, 0, 413, 407, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 5, 1, 0, 0, 0, 415, 416, 5, 522, 0, 0, 416, 7, 1, 0, 0, 0, 417, 432, 3, 40, 20, 0, 418, 432, 3, 104, 52, 0, 419, 432, 3, 106, 53, 0, 420, 432, 3, 108, 54, 0, 421, 432, 3, 102, 51, 0, 422, 432, 3, 114, 57, 0, 423, 432, 3, 128, 64, 0, 424, 432, 3, 130, 65, 0, 425, 432, 3, 132, 66, 0, 426, 432, 3, 134, 67, 0, 427, 432, 3, 136, 68, 0, 428, 432, 3, 138, 69, 0, 429, 432, 3, 140, 70, 0, 430, 432, 3, 142, 71, 0, 431, 417, 1, 0, 0, 0, 431, 418, 1, 0, 0, 0, 431, 419, 1, 0, 0, 0, 431, 420, 1, 0, 0, 0, 431, 421, 1, 0, 0, 0, 431, 422, 1, 0, 0, 0, 431, 423, 1, 0, 0, 0, 431, 424, 1, 0, 0, 0, 431, 425, 1, 0, 0, 0, 431, 426, 1, 0, 0, 0, 431, 427, 1, 0, 0, 0, 431, 428, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 9, 1, 0, 0, 0, 433, 436, 3, 158, 79, 0, 434, 436, 3, 144, 72, 0, 435, 433, 1, 0, 0, 0, 435, 434, 1, 0, 0, 0, 436, 11, 1, 0, 0, 0, 437, 438, 7, 0, 0, 0, 438, 439, 3, 328, 164, 0, 439, 13, 1, 0, 0, 0, 440, 444, 5, 135, 0, 0, 441, 445, 3, 16, 8, 0, 442, 443, 5, 480, 0, 0, 443, 445, 5, 146, 0, 0, 444, 441, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 449, 1, 0, 0, 0, 446, 450, 3, 10, 5, 0, 447, 450, 3, 146, 73, 0, 448, 450, 3, 156, 78, 0, 449, 446, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 15, 1, 0, 0, 0, 451, 456, 3, 18, 9, 0, 452, 453, 5, 521, 0, 0, 453, 455, 3, 18, 9, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 17, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 7, 1, 0, 0, 460, 19, 1, 0, 0, 0, 461, 462, 5, 411, 0, 0, 462, 463, 5, 442, 0, 0, 463, 468, 3, 318, 159, 0, 464, 465, 5, 411, 0, 0, 465, 468, 3, 322, 161, 0, 466, 468, 3, 22, 11, 0, 467, 461, 1, 0, 0, 0, 467, 464, 1, 0, 0, 0, 467, 466, 1, 0, 0, 0, 468, 21, 1, 0, 0, 0, 469, 470, 5, 411, 0, 0, 470, 471, 5, 228, 0, 0, 471, 476, 3, 334, 167, 0, 472, 473, 5, 521, 0, 0, 473, 475, 3, 334, 167, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 23, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 480, 5, 342, 0, 0, 480, 522, 7, 2, 0, 0, 481, 482, 5, 342, 0, 0, 482, 483, 5, 76, 0, 0, 483, 522, 7, 3, 0, 0, 484, 485, 5, 342, 0, 0, 485, 488, 5, 375, 0, 0, 486, 487, 7, 4, 0, 0, 487, 489, 3, 322, 161, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 492, 3, 264, 132, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 522, 1, 0, 0, 0, 493, 494, 5, 342, 0, 0, 494, 495, 5, 58, 0, 0, 495, 498, 7, 4, 0, 0, 496, 499, 3, 330, 165, 0, 497, 499, 3, 328, 164, 0, 498, 496, 1, 0, 0, 0, 498, 497, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 3, 264, 132, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 522, 1, 0, 0, 0, 503, 504, 5, 342, 0, 0, 504, 509, 5, 72, 0, 0, 505, 506, 5, 374, 0, 0, 506, 510, 3, 328, 164, 0, 507, 508, 5, 502, 0, 0, 508, 510, 3, 330, 165, 0, 509, 505, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 510, 522, 1, 0, 0, 0, 511, 513, 5, 342, 0, 0, 512, 514, 5, 412, 0, 0, 513, 512, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 522, 5, 154, 0, 0, 516, 518, 5, 342, 0, 0, 517, 519, 5, 152, 0, 0, 518, 517, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 5, 228, 0, 0, 521, 479, 1, 0, 0, 0, 521, 481, 1, 0, 0, 0, 521, 484, 1, 0, 0, 0, 521, 493, 1, 0, 0, 0, 521, 503, 1, 0, 0, 0, 521, 511, 1, 0, 0, 0, 521, 516, 1, 0, 0, 0, 522, 25, 1, 0, 0, 0, 523, 524, 5, 469, 0, 0, 524, 525, 5, 227, 0, 0, 525, 528, 3, 334, 167, 0, 526, 527, 5, 434, 0, 0, 527, 529, 3, 342, 171, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 27, 1, 0, 0, 0, 530, 531, 5, 501, 0, 0, 531, 532, 5, 227, 0, 0, 532, 533, 3, 334, 167, 0, 533, 29, 1, 0, 0, 0, 534, 536, 5, 341, 0, 0, 535, 537, 3, 344, 172, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 31, 1, 0, 0, 0, 538, 540, 5, 313, 0, 0, 539, 541, 3, 346, 173, 0, 540, 539, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 33, 1, 0, 0, 0, 542, 543, 7, 5, 0, 0, 543, 544, 5, 464, 0, 0, 544, 545, 3, 112, 56, 0, 545, 35, 1, 0, 0, 0, 546, 547, 5, 438, 0, 0, 547, 548, 5, 464, 0, 0, 548, 549, 5, 434, 0, 0, 549, 552, 3, 38, 19, 0, 550, 551, 5, 17, 0, 0, 551, 553, 3, 334, 167, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 597, 1, 0, 0, 0, 554, 555, 5, 438, 0, 0, 555, 556, 5, 457, 0, 0, 556, 557, 5, 434, 0, 0, 557, 560, 3, 38, 19, 0, 558, 559, 5, 17, 0, 0, 559, 561, 3, 334, 167, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 312, 0, 0, 563, 565, 3, 334, 167, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 597, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 7, 6, 0, 0, 568, 569, 5, 434, 0, 0, 569, 570, 3, 38, 19, 0, 570, 571, 5, 312, 0, 0, 571, 572, 3, 334, 167, 0, 572, 597, 1, 0, 0, 0, 573, 574, 5, 438, 0, 0, 574, 575, 5, 487, 0, 0, 575, 597, 3, 38, 19, 0, 576, 577, 5, 438, 0, 0, 577, 578, 5, 454, 0, 0, 578, 579, 5, 457, 0, 0, 579, 580, 5, 434, 0, 0, 580, 581, 3, 38, 19, 0, 581, 582, 5, 312, 0, 0, 582, 583, 3, 334, 167, 0, 583, 584, 5, 467, 0, 0, 584, 585, 3, 334, 167, 0, 585, 597, 1, 0, 0, 0, 586, 587, 5, 438, 0, 0, 587, 588, 5, 444, 0, 0, 588, 589, 5, 457, 0, 0, 589, 590, 5, 434, 0, 0, 590, 591, 3, 38, 19, 0, 591, 592, 5, 146, 0, 0, 592, 593, 3, 334, 167, 0, 593, 594, 5, 17, 0, 0, 594, 595, 3, 334, 167, 0, 595, 597, 1, 0, 0, 0, 596, 546, 1, 0, 0, 0, 596, 554, 1, 0, 0, 0, 596, 566, 1, 0, 0, 0, 596, 573, 1, 0, 0, 0, 596, 576, 1, 0, 0, 0, 596, 586, 1, 0, 0, 0, 597, 37, 1, 0, 0, 0, 598, 600, 5, 535, 0, 0, 599, 598, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 3, 334, 167, 0, 602, 599, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 39, 1, 0, 0, 0, 606, 609, 3, 42, 21, 0, 607, 609, 3, 44, 22, 0, 608, 606, 1, 0, 0, 0, 608, 607, 1, 0, 0, 0, 609, 41, 1, 0, 0, 0, 610, 612, 5, 72, 0, 0, 611, 613, 5, 498, 0, 0, 612, 611, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 616, 5, 374, 0, 0, 615, 617, 3, 338, 169, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 3, 326, 163, 0, 619, 620, 5, 517, 0, 0, 620, 625, 3, 46, 23, 0, 621, 622, 5, 521, 0, 0, 622, 624, 3, 46, 23, 0, 623, 621, 1, 0, 0, 0, 624, 627, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 5, 521, 0, 0, 629, 631, 3, 82, 41, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 633, 5, 521, 0, 0, 633, 635, 3, 84, 42, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 637, 5, 521, 0, 0, 637, 639, 3, 88, 44, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 643, 5, 518, 0, 0, 641, 642, 5, 59, 0, 0, 642, 644, 5, 538, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 646, 1, 0, 0, 0, 645, 647, 3, 90, 45, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 3, 336, 168, 0, 649, 651, 3, 98, 49, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 43, 1, 0, 0, 0, 652, 653, 5, 72, 0, 0, 653, 655, 5, 374, 0, 0, 654, 656, 3, 338, 169, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 326, 163, 0, 658, 661, 3, 336, 168, 0, 659, 660, 5, 17, 0, 0, 660, 662, 3, 158, 79, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 45, 1, 0, 0, 0, 663, 667, 3, 48, 24, 0, 664, 667, 3, 74, 37, 0, 665, 667, 3, 78, 39, 0, 666, 663, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 47, 1, 0, 0, 0, 668, 669, 3, 50, 25, 0, 669, 671, 3, 58, 29, 0, 670, 672, 3, 72, 36, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 674, 5, 59, 0, 0, 674, 676, 5, 538, 0, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 49, 1, 0, 0, 0, 677, 680, 3, 334, 167, 0, 678, 680, 3, 258, 129, 0, 679, 677, 1, 0, 0, 0, 679, 678, 1, 0, 0, 0, 680, 51, 1, 0, 0, 0, 681, 684, 3, 334, 167, 0, 682, 684, 4, 26, 0, 0, 683, 681, 1, 0, 0, 0, 683, 682, 1, 0, 0, 0, 684, 53, 1, 0, 0, 0, 685, 686, 3, 334, 167, 0, 686, 55, 1, 0, 0, 0, 687, 688, 5, 517, 0, 0, 688, 693, 3, 52, 26, 0, 689, 690, 5, 521, 0, 0, 690, 692, 3, 52, 26, 0, 691, 689, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 696, 697, 5, 518, 0, 0, 697, 57, 1, 0, 0, 0, 698, 736, 7, 7, 0, 0, 699, 701, 7, 8, 0, 0, 700, 702, 3, 60, 30, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 736, 1, 0, 0, 0, 703, 705, 5, 380, 0, 0, 704, 706, 3, 60, 30, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 713, 1, 0, 0, 0, 707, 709, 7, 9, 0, 0, 708, 710, 5, 207, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 379, 0, 0, 712, 714, 5, 505, 0, 0, 713, 707, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 736, 1, 0, 0, 0, 715, 717, 7, 10, 0, 0, 716, 718, 3, 62, 31, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 736, 1, 0, 0, 0, 719, 721, 7, 11, 0, 0, 720, 722, 3, 66, 33, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 736, 1, 0, 0, 0, 723, 725, 5, 470, 0, 0, 724, 726, 3, 68, 34, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 736, 1, 0, 0, 0, 727, 729, 5, 322, 0, 0, 728, 730, 3, 70, 35, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 736, 1, 0, 0, 0, 731, 733, 5, 295, 0, 0, 732, 734, 3, 64, 32, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 736, 1, 0, 0, 0, 735, 698, 1, 0, 0, 0, 735, 699, 1, 0, 0, 0, 735, 703, 1, 0, 0, 0, 735, 715, 1, 0, 0, 0, 735, 719, 1, 0, 0, 0, 735, 723, 1, 0, 0, 0, 735, 727, 1, 0, 0, 0, 735, 731, 1, 0, 0, 0, 736, 59, 1, 0, 0, 0, 737, 738, 5, 517, 0, 0, 738, 739, 3, 366, 183, 0, 739, 740, 5, 518, 0, 0, 740, 61, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 745, 3, 366, 183, 0, 743, 744, 5, 521, 0, 0, 744, 746, 3, 366, 183, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 518, 0, 0, 748, 63, 1, 0, 0, 0, 749, 750, 5, 517, 0, 0, 750, 753, 3, 364, 182, 0, 751, 752, 5, 521, 0, 0, 752, 754, 3, 364, 182, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 5, 518, 0, 0, 756, 65, 1, 0, 0, 0, 757, 758, 5, 508, 0, 0, 758, 759, 3, 58, 29, 0, 759, 760, 5, 507, 0, 0, 760, 67, 1, 0, 0, 0, 761, 762, 5, 508, 0, 0, 762, 763, 3, 58, 29, 0, 763, 764, 5, 521, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 1, 0, 0, 0, 766, 767, 5, 507, 0, 0, 767, 69, 1, 0, 0, 0, 768, 769, 5, 508, 0, 0, 769, 770, 3, 52, 26, 0, 770, 777, 3, 58, 29, 0, 771, 772, 5, 521, 0, 0, 772, 773, 3, 52, 26, 0, 773, 774, 3, 58, 29, 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, 507, 0, 0, 781, 797, 1, 0, 0, 0, 782, 783, 5, 517, 0, 0, 783, 784, 3, 52, 26, 0, 784, 791, 3, 58, 29, 0, 785, 786, 5, 521, 0, 0, 786, 787, 3, 52, 26, 0, 787, 788, 3, 58, 29, 0, 788, 790, 1, 0, 0, 0, 789, 785, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 5, 518, 0, 0, 795, 797, 1, 0, 0, 0, 796, 768, 1, 0, 0, 0, 796, 782, 1, 0, 0, 0, 797, 71, 1, 0, 0, 0, 798, 799, 5, 64, 0, 0, 799, 801, 3, 86, 43, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 289, 0, 0, 803, 806, 5, 467, 0, 0, 804, 805, 5, 242, 0, 0, 805, 807, 5, 125, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 813, 1, 0, 0, 0, 808, 810, 5, 242, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 245, 0, 0, 812, 800, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 813, 73, 1, 0, 0, 0, 814, 815, 3, 50, 25, 0, 815, 816, 3, 58, 29, 0, 816, 819, 5, 219, 0, 0, 817, 818, 5, 151, 0, 0, 818, 820, 3, 76, 38, 0, 819, 817, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 822, 1, 0, 0, 0, 821, 823, 5, 424, 0, 0, 822, 821, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 75, 1, 0, 0, 0, 824, 825, 5, 538, 0, 0, 825, 77, 1, 0, 0, 0, 826, 827, 3, 50, 25, 0, 827, 828, 5, 17, 0, 0, 828, 831, 3, 80, 40, 0, 829, 830, 5, 59, 0, 0, 830, 832, 5, 538, 0, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 79, 1, 0, 0, 0, 833, 834, 3, 258, 129, 0, 834, 81, 1, 0, 0, 0, 835, 836, 5, 425, 0, 0, 836, 837, 5, 146, 0, 0, 837, 838, 3, 52, 26, 0, 838, 839, 5, 17, 0, 0, 839, 840, 3, 258, 129, 0, 840, 83, 1, 0, 0, 0, 841, 842, 5, 64, 0, 0, 842, 844, 3, 86, 43, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 289, 0, 0, 846, 847, 5, 467, 0, 0, 847, 848, 3, 56, 28, 0, 848, 849, 5, 242, 0, 0, 849, 850, 5, 125, 0, 0, 850, 85, 1, 0, 0, 0, 851, 852, 3, 310, 155, 0, 852, 87, 1, 0, 0, 0, 853, 854, 5, 278, 0, 0, 854, 855, 5, 146, 0, 0, 855, 856, 5, 372, 0, 0, 856, 89, 1, 0, 0, 0, 857, 858, 5, 270, 0, 0, 858, 859, 5, 34, 0, 0, 859, 860, 3, 92, 46, 0, 860, 91, 1, 0, 0, 0, 861, 862, 5, 517, 0, 0, 862, 867, 3, 94, 47, 0, 863, 864, 5, 521, 0, 0, 864, 866, 3, 94, 47, 0, 865, 863, 1, 0, 0, 0, 866, 869, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 870, 871, 5, 518, 0, 0, 871, 93, 1, 0, 0, 0, 872, 885, 3, 52, 26, 0, 873, 874, 5, 517, 0, 0, 874, 879, 3, 96, 48, 0, 875, 876, 5, 521, 0, 0, 876, 878, 3, 96, 48, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 518, 0, 0, 883, 885, 1, 0, 0, 0, 884, 872, 1, 0, 0, 0, 884, 873, 1, 0, 0, 0, 885, 95, 1, 0, 0, 0, 886, 889, 3, 286, 143, 0, 887, 889, 3, 360, 180, 0, 888, 886, 1, 0, 0, 0, 888, 887, 1, 0, 0, 0, 889, 97, 1, 0, 0, 0, 890, 891, 5, 203, 0, 0, 891, 900, 3, 328, 164, 0, 892, 896, 5, 517, 0, 0, 893, 895, 3, 100, 50, 0, 894, 893, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 901, 5, 518, 0, 0, 900, 892, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 99, 1, 0, 0, 0, 902, 903, 7, 12, 0, 0, 903, 907, 7, 13, 0, 0, 904, 905, 7, 14, 0, 0, 905, 907, 7, 15, 0, 0, 906, 902, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 101, 1, 0, 0, 0, 908, 909, 5, 72, 0, 0, 909, 910, 5, 442, 0, 0, 910, 911, 3, 320, 160, 0, 911, 912, 3, 336, 168, 0, 912, 103, 1, 0, 0, 0, 913, 914, 5, 72, 0, 0, 914, 916, 5, 448, 0, 0, 915, 917, 3, 338, 169, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 921, 3, 324, 162, 0, 919, 920, 5, 59, 0, 0, 920, 922, 5, 538, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 336, 168, 0, 924, 105, 1, 0, 0, 0, 925, 927, 5, 72, 0, 0, 926, 928, 5, 498, 0, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 5, 502, 0, 0, 930, 932, 3, 338, 169, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 3, 332, 166, 0, 934, 936, 3, 56, 28, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 939, 1, 0, 0, 0, 937, 938, 5, 59, 0, 0, 938, 940, 5, 538, 0, 0, 939, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 5, 17, 0, 0, 942, 943, 3, 158, 79, 0, 943, 107, 1, 0, 0, 0, 944, 948, 5, 72, 0, 0, 945, 949, 5, 498, 0, 0, 946, 947, 5, 498, 0, 0, 947, 949, 5, 371, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 5, 153, 0, 0, 951, 953, 3, 338, 169, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 955, 3, 272, 136, 0, 955, 956, 5, 17, 0, 0, 956, 959, 3, 310, 155, 0, 957, 958, 5, 196, 0, 0, 958, 960, 7, 16, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 1, 0, 0, 0, 961, 963, 3, 110, 55, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 109, 1, 0, 0, 0, 964, 965, 5, 413, 0, 0, 965, 966, 5, 464, 0, 0, 966, 972, 3, 112, 56, 0, 967, 968, 5, 521, 0, 0, 968, 969, 5, 464, 0, 0, 969, 971, 3, 112, 56, 0, 970, 967, 1, 0, 0, 0, 971, 974, 1, 0, 0, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 111, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 975, 976, 5, 538, 0, 0, 976, 113, 1, 0, 0, 0, 977, 978, 5, 8, 0, 0, 978, 980, 5, 374, 0, 0, 979, 981, 3, 340, 170, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 988, 3, 328, 164, 0, 983, 989, 3, 116, 58, 0, 984, 989, 3, 118, 59, 0, 985, 989, 3, 120, 60, 0, 986, 989, 3, 122, 61, 0, 987, 989, 3, 124, 62, 0, 988, 983, 1, 0, 0, 0, 988, 984, 1, 0, 0, 0, 988, 985, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 115, 1, 0, 0, 0, 990, 992, 5, 312, 0, 0, 991, 993, 3, 334, 167, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 389, 0, 0, 995, 996, 3, 334, 167, 0, 996, 117, 1, 0, 0, 0, 997, 998, 5, 341, 0, 0, 998, 999, 3, 342, 171, 0, 999, 119, 1, 0, 0, 0, 1000, 1001, 5, 438, 0, 0, 1001, 1002, 5, 64, 0, 0, 1002, 1003, 3, 86, 43, 0, 1003, 1004, 5, 289, 0, 0, 1004, 1005, 5, 467, 0, 0, 1005, 1007, 3, 56, 28, 0, 1006, 1008, 3, 126, 63, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 121, 1, 0, 0, 0, 1009, 1010, 5, 116, 0, 0, 1010, 1011, 5, 64, 0, 0, 1011, 1012, 3, 86, 43, 0, 1012, 123, 1, 0, 0, 0, 1013, 1014, 5, 438, 0, 0, 1014, 1015, 5, 404, 0, 0, 1015, 1016, 3, 56, 28, 0, 1016, 125, 1, 0, 0, 0, 1017, 1018, 5, 242, 0, 0, 1018, 1019, 5, 125, 0, 0, 1019, 127, 1, 0, 0, 0, 1020, 1021, 5, 8, 0, 0, 1021, 1022, 5, 502, 0, 0, 1022, 1026, 3, 330, 165, 0, 1023, 1027, 3, 116, 58, 0, 1024, 1025, 5, 17, 0, 0, 1025, 1027, 3, 158, 79, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1027, 129, 1, 0, 0, 0, 1028, 1029, 5, 8, 0, 0, 1029, 1030, 5, 448, 0, 0, 1030, 1031, 3, 322, 161, 0, 1031, 1032, 3, 118, 59, 0, 1032, 131, 1, 0, 0, 0, 1033, 1037, 5, 8, 0, 0, 1034, 1038, 5, 498, 0, 0, 1035, 1036, 5, 498, 0, 0, 1036, 1038, 5, 371, 0, 0, 1037, 1034, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1041, 5, 153, 0, 0, 1040, 1042, 3, 340, 170, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 3, 274, 137, 0, 1044, 1045, 5, 17, 0, 0, 1045, 1048, 3, 310, 155, 0, 1046, 1047, 5, 196, 0, 0, 1047, 1049, 7, 16, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 133, 1, 0, 0, 0, 1050, 1051, 5, 116, 0, 0, 1051, 1053, 5, 442, 0, 0, 1052, 1054, 3, 340, 170, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 318, 159, 0, 1056, 135, 1, 0, 0, 0, 1057, 1059, 5, 116, 0, 0, 1058, 1060, 5, 498, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 5, 374, 0, 0, 1062, 1064, 3, 340, 170, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 3, 328, 164, 0, 1066, 137, 1, 0, 0, 0, 1067, 1068, 5, 116, 0, 0, 1068, 1070, 5, 448, 0, 0, 1069, 1071, 3, 340, 170, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 3, 322, 161, 0, 1073, 1075, 7, 17, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 139, 1, 0, 0, 0, 1076, 1078, 5, 116, 0, 0, 1077, 1079, 5, 498, 0, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1082, 5, 502, 0, 0, 1081, 1083, 3, 340, 170, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 3, 330, 165, 0, 1085, 141, 1, 0, 0, 0, 1086, 1090, 5, 116, 0, 0, 1087, 1091, 5, 498, 0, 0, 1088, 1089, 5, 498, 0, 0, 1089, 1091, 5, 371, 0, 0, 1090, 1087, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 5, 153, 0, 0, 1093, 1095, 3, 340, 170, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 274, 137, 0, 1097, 143, 1, 0, 0, 0, 1098, 1100, 5, 132, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1106, 3, 146, 73, 0, 1102, 1106, 3, 154, 77, 0, 1103, 1104, 5, 132, 0, 0, 1104, 1106, 3, 156, 78, 0, 1105, 1099, 1, 0, 0, 0, 1105, 1102, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1106, 145, 1, 0, 0, 0, 1107, 1108, 5, 177, 0, 0, 1108, 1109, 7, 18, 0, 0, 1109, 1118, 3, 328, 164, 0, 1110, 1112, 3, 148, 74, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1115, 3, 56, 28, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1119, 3, 158, 79, 0, 1117, 1119, 3, 150, 75, 0, 1118, 1111, 1, 0, 0, 0, 1118, 1117, 1, 0, 0, 0, 1119, 147, 1, 0, 0, 0, 1120, 1121, 5, 269, 0, 0, 1121, 1122, 3, 342, 171, 0, 1122, 149, 1, 0, 0, 0, 1123, 1124, 5, 415, 0, 0, 1124, 1129, 3, 152, 76, 0, 1125, 1126, 5, 521, 0, 0, 1126, 1128, 3, 152, 76, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 151, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 517, 0, 0, 1133, 1138, 3, 360, 180, 0, 1134, 1135, 5, 521, 0, 0, 1135, 1137, 3, 360, 180, 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, 1141, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1142, 5, 518, 0, 0, 1142, 153, 1, 0, 0, 0, 1143, 1144, 5, 24, 0, 0, 1144, 1145, 5, 355, 0, 0, 1145, 1146, 5, 341, 0, 0, 1146, 1150, 5, 522, 0, 0, 1147, 1148, 3, 146, 73, 0, 1148, 1149, 5, 522, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1147, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 5, 122, 0, 0, 1155, 155, 1, 0, 0, 0, 1156, 1157, 5, 355, 0, 0, 1157, 1158, 5, 341, 0, 0, 1158, 1162, 5, 24, 0, 0, 1159, 1160, 3, 146, 73, 0, 1160, 1161, 5, 522, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1159, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 5, 122, 0, 0, 1167, 157, 1, 0, 0, 0, 1168, 1169, 6, 79, -1, 0, 1169, 1192, 3, 160, 80, 0, 1170, 1171, 3, 162, 81, 0, 1171, 1172, 3, 158, 79, 5, 1172, 1192, 1, 0, 0, 0, 1173, 1174, 5, 517, 0, 0, 1174, 1175, 3, 158, 79, 0, 1175, 1176, 5, 518, 0, 0, 1176, 1192, 1, 0, 0, 0, 1177, 1179, 3, 170, 85, 0, 1178, 1180, 3, 230, 115, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1183, 3, 234, 117, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1192, 1, 0, 0, 0, 1184, 1186, 3, 168, 84, 0, 1185, 1187, 3, 230, 115, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1190, 3, 234, 117, 0, 1189, 1188, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1168, 1, 0, 0, 0, 1191, 1170, 1, 0, 0, 0, 1191, 1173, 1, 0, 0, 0, 1191, 1177, 1, 0, 0, 0, 1191, 1184, 1, 0, 0, 0, 1192, 1207, 1, 0, 0, 0, 1193, 1194, 10, 3, 0, 0, 1194, 1196, 7, 19, 0, 0, 1195, 1197, 5, 5, 0, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, 3, 158, 79, 0, 1199, 1201, 3, 230, 115, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1204, 3, 234, 117, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1193, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 159, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 415, 0, 0, 1211, 1216, 3, 258, 129, 0, 1212, 1213, 5, 521, 0, 0, 1213, 1215, 3, 258, 129, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 161, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 434, 0, 0, 1220, 1225, 3, 164, 82, 0, 1221, 1222, 5, 521, 0, 0, 1222, 1224, 3, 164, 82, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 163, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1240, 3, 166, 83, 0, 1229, 1230, 5, 517, 0, 0, 1230, 1235, 3, 52, 26, 0, 1231, 1232, 5, 521, 0, 0, 1232, 1234, 3, 52, 26, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 1, 0, 0, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1239, 5, 518, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1229, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 5, 17, 0, 0, 1243, 1244, 5, 517, 0, 0, 1244, 1245, 3, 158, 79, 0, 1245, 1246, 5, 518, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1248, 3, 310, 155, 0, 1248, 167, 1, 0, 0, 0, 1249, 1251, 3, 170, 85, 0, 1250, 1252, 3, 176, 88, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1255, 3, 204, 102, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1258, 3, 206, 103, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 220, 110, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 222, 111, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1270, 1, 0, 0, 0, 1265, 1266, 3, 170, 85, 0, 1266, 1267, 3, 176, 88, 0, 1267, 1268, 3, 228, 114, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1249, 1, 0, 0, 0, 1269, 1265, 1, 0, 0, 0, 1270, 169, 1, 0, 0, 0, 1271, 1273, 5, 337, 0, 0, 1272, 1274, 3, 370, 185, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1284, 1, 0, 0, 0, 1275, 1285, 5, 528, 0, 0, 1276, 1281, 3, 172, 86, 0, 1277, 1278, 5, 521, 0, 0, 1278, 1280, 3, 172, 86, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1275, 1, 0, 0, 0, 1284, 1276, 1, 0, 0, 0, 1285, 171, 1, 0, 0, 0, 1286, 1302, 3, 174, 87, 0, 1287, 1292, 3, 258, 129, 0, 1288, 1290, 5, 17, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 3, 52, 26, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1302, 1, 0, 0, 0, 1294, 1299, 3, 52, 26, 0, 1295, 1297, 5, 17, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 3, 258, 129, 0, 1299, 1296, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1286, 1, 0, 0, 0, 1301, 1287, 1, 0, 0, 0, 1301, 1294, 1, 0, 0, 0, 1302, 173, 1, 0, 0, 0, 1303, 1304, 3, 270, 135, 0, 1304, 1305, 5, 263, 0, 0, 1305, 1306, 3, 226, 113, 0, 1306, 1307, 5, 17, 0, 0, 1307, 1308, 3, 310, 155, 0, 1308, 1316, 1, 0, 0, 0, 1309, 1310, 3, 270, 135, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 302, 151, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 310, 155, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1303, 1, 0, 0, 0, 1315, 1309, 1, 0, 0, 0, 1316, 175, 1, 0, 0, 0, 1317, 1318, 5, 151, 0, 0, 1318, 1319, 3, 178, 89, 0, 1319, 177, 1, 0, 0, 0, 1320, 1321, 6, 89, -1, 0, 1321, 1326, 3, 180, 90, 0, 1322, 1323, 5, 521, 0, 0, 1323, 1325, 3, 180, 90, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1328, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1332, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1332, 3, 188, 94, 0, 1330, 1332, 3, 190, 95, 0, 1331, 1320, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1354, 1, 0, 0, 0, 1333, 1334, 10, 3, 0, 0, 1334, 1335, 5, 73, 0, 0, 1335, 1336, 5, 185, 0, 0, 1336, 1353, 3, 178, 89, 4, 1337, 1339, 10, 4, 0, 0, 1338, 1340, 5, 234, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 7, 20, 0, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1346, 5, 262, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 5, 185, 0, 0, 1348, 1350, 3, 178, 89, 0, 1349, 1351, 3, 202, 101, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1333, 1, 0, 0, 0, 1352, 1337, 1, 0, 0, 0, 1353, 1356, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 179, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1357, 1359, 3, 182, 91, 0, 1358, 1360, 3, 300, 150, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 181, 1, 0, 0, 0, 1361, 1363, 5, 374, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1366, 3, 328, 164, 0, 1365, 1367, 3, 184, 92, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1391, 1, 0, 0, 0, 1368, 1370, 3, 330, 165, 0, 1369, 1371, 3, 184, 92, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1391, 1, 0, 0, 0, 1372, 1373, 5, 199, 0, 0, 1373, 1374, 5, 374, 0, 0, 1374, 1375, 5, 517, 0, 0, 1375, 1376, 3, 268, 134, 0, 1376, 1377, 5, 518, 0, 0, 1377, 1391, 1, 0, 0, 0, 1378, 1380, 5, 199, 0, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 5, 517, 0, 0, 1382, 1383, 3, 158, 79, 0, 1383, 1384, 5, 518, 0, 0, 1384, 1391, 1, 0, 0, 0, 1385, 1386, 5, 406, 0, 0, 1386, 1387, 5, 517, 0, 0, 1387, 1388, 3, 258, 129, 0, 1388, 1389, 5, 518, 0, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1362, 1, 0, 0, 0, 1390, 1368, 1, 0, 0, 0, 1390, 1372, 1, 0, 0, 0, 1390, 1379, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1391, 183, 1, 0, 0, 0, 1392, 1393, 5, 146, 0, 0, 1393, 1394, 5, 372, 0, 0, 1394, 1395, 5, 17, 0, 0, 1395, 1396, 5, 250, 0, 0, 1396, 1397, 3, 186, 93, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 3, 258, 129, 0, 1399, 187, 1, 0, 0, 0, 1400, 1401, 5, 517, 0, 0, 1401, 1402, 3, 150, 75, 0, 1402, 1403, 5, 518, 0, 0, 1403, 1404, 3, 300, 150, 0, 1404, 189, 1, 0, 0, 0, 1405, 1406, 5, 374, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 192, 96, 0, 1408, 1409, 5, 518, 0, 0, 1409, 191, 1, 0, 0, 0, 1410, 1411, 3, 194, 97, 0, 1411, 1412, 5, 517, 0, 0, 1412, 1417, 3, 196, 98, 0, 1413, 1414, 5, 521, 0, 0, 1414, 1416, 3, 196, 98, 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, 518, 0, 0, 1421, 193, 1, 0, 0, 0, 1422, 1423, 7, 21, 0, 0, 1423, 195, 1, 0, 0, 0, 1424, 1425, 5, 374, 0, 0, 1425, 1440, 3, 218, 109, 0, 1426, 1440, 3, 200, 100, 0, 1427, 1440, 3, 288, 144, 0, 1428, 1429, 5, 447, 0, 0, 1429, 1430, 5, 537, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1440, 3, 218, 109, 0, 1432, 1433, 5, 499, 0, 0, 1433, 1434, 5, 537, 0, 0, 1434, 1440, 3, 200, 100, 0, 1435, 1436, 3, 198, 99, 0, 1436, 1437, 5, 537, 0, 0, 1437, 1438, 3, 288, 144, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1424, 1, 0, 0, 0, 1439, 1426, 1, 0, 0, 0, 1439, 1427, 1, 0, 0, 0, 1439, 1428, 1, 0, 0, 0, 1439, 1432, 1, 0, 0, 0, 1439, 1435, 1, 0, 0, 0, 1440, 197, 1, 0, 0, 0, 1441, 1442, 7, 22, 0, 0, 1442, 199, 1, 0, 0, 0, 1443, 1444, 5, 452, 0, 0, 1444, 1445, 5, 517, 0, 0, 1445, 1446, 3, 52, 26, 0, 1446, 1447, 5, 518, 0, 0, 1447, 201, 1, 0, 0, 0, 1448, 1449, 5, 254, 0, 0, 1449, 1453, 3, 260, 130, 0, 1450, 1451, 5, 413, 0, 0, 1451, 1453, 3, 56, 28, 0, 1452, 1448, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 431, 0, 0, 1455, 1456, 3, 260, 130, 0, 1456, 205, 1, 0, 0, 0, 1457, 1458, 5, 159, 0, 0, 1458, 1459, 5, 34, 0, 0, 1459, 1464, 3, 208, 104, 0, 1460, 1461, 5, 521, 0, 0, 1461, 1463, 3, 208, 104, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 207, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1508, 3, 52, 26, 0, 1468, 1508, 3, 214, 107, 0, 1469, 1470, 5, 517, 0, 0, 1470, 1508, 5, 518, 0, 0, 1471, 1472, 5, 517, 0, 0, 1472, 1477, 3, 258, 129, 0, 1473, 1474, 5, 521, 0, 0, 1474, 1476, 3, 258, 129, 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, 518, 0, 0, 1481, 1508, 1, 0, 0, 0, 1482, 1483, 3, 212, 106, 0, 1483, 1484, 5, 517, 0, 0, 1484, 1489, 3, 258, 129, 0, 1485, 1486, 5, 521, 0, 0, 1486, 1488, 3, 258, 129, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1491, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1493, 5, 518, 0, 0, 1493, 1508, 1, 0, 0, 0, 1494, 1495, 3, 210, 105, 0, 1495, 1496, 5, 517, 0, 0, 1496, 1501, 3, 208, 104, 0, 1497, 1498, 5, 521, 0, 0, 1498, 1500, 3, 208, 104, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1503, 1, 0, 0, 0, 1501, 1499, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1505, 5, 518, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1508, 3, 258, 129, 0, 1507, 1467, 1, 0, 0, 0, 1507, 1468, 1, 0, 0, 0, 1507, 1469, 1, 0, 0, 0, 1507, 1471, 1, 0, 0, 0, 1507, 1482, 1, 0, 0, 0, 1507, 1494, 1, 0, 0, 0, 1507, 1506, 1, 0, 0, 0, 1508, 209, 1, 0, 0, 0, 1509, 1510, 5, 160, 0, 0, 1510, 1511, 5, 494, 0, 0, 1511, 211, 1, 0, 0, 0, 1512, 1513, 7, 23, 0, 0, 1513, 213, 1, 0, 0, 0, 1514, 1515, 3, 216, 108, 0, 1515, 1516, 5, 517, 0, 0, 1516, 1517, 3, 218, 109, 0, 1517, 1518, 5, 521, 0, 0, 1518, 1519, 3, 288, 144, 0, 1519, 1520, 5, 518, 0, 0, 1520, 215, 1, 0, 0, 0, 1521, 1522, 7, 24, 0, 0, 1522, 217, 1, 0, 0, 0, 1523, 1524, 3, 334, 167, 0, 1524, 219, 1, 0, 0, 0, 1525, 1526, 5, 163, 0, 0, 1526, 1527, 3, 260, 130, 0, 1527, 221, 1, 0, 0, 0, 1528, 1529, 5, 433, 0, 0, 1529, 1534, 3, 224, 112, 0, 1530, 1531, 5, 521, 0, 0, 1531, 1533, 3, 224, 112, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 223, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1538, 3, 302, 151, 0, 1538, 1539, 5, 17, 0, 0, 1539, 1540, 3, 226, 113, 0, 1540, 225, 1, 0, 0, 0, 1541, 1543, 3, 302, 151, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 5, 517, 0, 0, 1545, 1547, 3, 236, 118, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 230, 115, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1553, 3, 252, 126, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 5, 518, 0, 0, 1555, 227, 1, 0, 0, 0, 1556, 1557, 5, 214, 0, 0, 1557, 1559, 5, 517, 0, 0, 1558, 1560, 3, 236, 118, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 1, 0, 0, 0, 1561, 1563, 3, 230, 115, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1566, 3, 240, 120, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 246, 123, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 248, 124, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 242, 121, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 3, 250, 125, 0, 1577, 1582, 5, 518, 0, 0, 1578, 1580, 5, 17, 0, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 3, 310, 155, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 229, 1, 0, 0, 0, 1584, 1585, 5, 259, 0, 0, 1585, 1586, 5, 34, 0, 0, 1586, 1591, 3, 232, 116, 0, 1587, 1588, 5, 521, 0, 0, 1588, 1590, 3, 232, 116, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 231, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1596, 3, 52, 26, 0, 1595, 1597, 7, 25, 0, 0, 1596, 1595, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1600, 1, 0, 0, 0, 1598, 1599, 5, 477, 0, 0, 1599, 1601, 7, 26, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 233, 1, 0, 0, 0, 1602, 1605, 5, 205, 0, 0, 1603, 1606, 5, 5, 0, 0, 1604, 1606, 3, 258, 129, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 235, 1, 0, 0, 0, 1607, 1608, 5, 269, 0, 0, 1608, 1611, 5, 34, 0, 0, 1609, 1612, 3, 52, 26, 0, 1610, 1612, 3, 270, 135, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 1620, 1, 0, 0, 0, 1613, 1616, 5, 521, 0, 0, 1614, 1617, 3, 52, 26, 0, 1615, 1617, 3, 270, 135, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1613, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 237, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1640, 5, 528, 0, 0, 1624, 1640, 5, 531, 0, 0, 1625, 1640, 5, 536, 0, 0, 1626, 1627, 5, 519, 0, 0, 1627, 1628, 5, 539, 0, 0, 1628, 1629, 5, 521, 0, 0, 1629, 1630, 5, 539, 0, 0, 1630, 1640, 5, 520, 0, 0, 1631, 1632, 5, 519, 0, 0, 1632, 1633, 5, 539, 0, 0, 1633, 1634, 5, 521, 0, 0, 1634, 1640, 5, 520, 0, 0, 1635, 1636, 5, 519, 0, 0, 1636, 1637, 5, 521, 0, 0, 1637, 1638, 5, 539, 0, 0, 1638, 1640, 5, 520, 0, 0, 1639, 1623, 1, 0, 0, 0, 1639, 1624, 1, 0, 0, 0, 1639, 1625, 1, 0, 0, 0, 1639, 1626, 1, 0, 0, 0, 1639, 1631, 1, 0, 0, 0, 1639, 1635, 1, 0, 0, 0, 1640, 239, 1, 0, 0, 0, 1641, 1642, 5, 216, 0, 0, 1642, 1647, 3, 172, 86, 0, 1643, 1644, 5, 521, 0, 0, 1644, 1646, 3, 172, 86, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 241, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1651, 5, 272, 0, 0, 1651, 1653, 5, 517, 0, 0, 1652, 1654, 3, 244, 122, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1659, 5, 518, 0, 0, 1658, 1660, 3, 256, 128, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1663, 3, 312, 156, 0, 1662, 1664, 3, 238, 119, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 245, 1, 0, 0, 0, 1665, 1666, 5, 5, 0, 0, 1666, 1667, 5, 323, 0, 0, 1667, 1668, 5, 273, 0, 0, 1668, 1674, 5, 211, 0, 0, 1669, 1670, 5, 255, 0, 0, 1670, 1671, 5, 322, 0, 0, 1671, 1672, 5, 273, 0, 0, 1672, 1674, 5, 211, 0, 0, 1673, 1665, 1, 0, 0, 0, 1673, 1669, 1, 0, 0, 0, 1674, 247, 1, 0, 0, 0, 1675, 1676, 5, 439, 0, 0, 1676, 1677, 5, 211, 0, 0, 1677, 1678, 5, 344, 0, 0, 1678, 1679, 5, 479, 0, 0, 1679, 1680, 5, 468, 0, 0, 1680, 1700, 5, 322, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 389, 0, 0, 1685, 1686, 5, 238, 0, 0, 1686, 1700, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 468, 0, 0, 1692, 1700, 3, 312, 156, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 458, 0, 0, 1698, 1700, 3, 312, 156, 0, 1699, 1675, 1, 0, 0, 0, 1699, 1681, 1, 0, 0, 0, 1699, 1687, 1, 0, 0, 0, 1699, 1693, 1, 0, 0, 0, 1700, 249, 1, 0, 0, 0, 1701, 1702, 5, 105, 0, 0, 1702, 1707, 3, 172, 86, 0, 1703, 1704, 5, 521, 0, 0, 1704, 1706, 3, 172, 86, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1709, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 251, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1711, 5, 293, 0, 0, 1711, 1712, 5, 27, 0, 0, 1712, 1713, 3, 288, 144, 0, 1713, 1714, 3, 254, 127, 0, 1714, 1720, 1, 0, 0, 0, 1715, 1716, 5, 323, 0, 0, 1716, 1717, 5, 27, 0, 0, 1717, 1718, 5, 539, 0, 0, 1718, 1720, 3, 254, 127, 0, 1719, 1710, 1, 0, 0, 0, 1719, 1715, 1, 0, 0, 0, 1720, 253, 1, 0, 0, 0, 1721, 1722, 5, 481, 0, 0, 1722, 1723, 5, 10, 0, 0, 1723, 1724, 5, 76, 0, 0, 1724, 1725, 5, 322, 0, 0, 1725, 255, 1, 0, 0, 0, 1726, 1727, 5, 435, 0, 0, 1727, 1728, 3, 288, 144, 0, 1728, 257, 1, 0, 0, 0, 1729, 1730, 3, 260, 130, 0, 1730, 259, 1, 0, 0, 0, 1731, 1732, 6, 130, -1, 0, 1732, 1733, 5, 242, 0, 0, 1733, 1744, 3, 260, 130, 6, 1734, 1735, 5, 133, 0, 0, 1735, 1736, 5, 517, 0, 0, 1736, 1737, 3, 158, 79, 0, 1737, 1738, 5, 518, 0, 0, 1738, 1744, 1, 0, 0, 0, 1739, 1741, 3, 266, 133, 0, 1740, 1742, 3, 262, 131, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1744, 1, 0, 0, 0, 1743, 1731, 1, 0, 0, 0, 1743, 1734, 1, 0, 0, 0, 1743, 1739, 1, 0, 0, 0, 1744, 1759, 1, 0, 0, 0, 1745, 1746, 10, 3, 0, 0, 1746, 1747, 5, 10, 0, 0, 1747, 1758, 3, 260, 130, 4, 1748, 1749, 10, 2, 0, 0, 1749, 1750, 5, 258, 0, 0, 1750, 1758, 3, 260, 130, 3, 1751, 1752, 10, 1, 0, 0, 1752, 1754, 5, 184, 0, 0, 1753, 1755, 5, 242, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 7, 27, 0, 0, 1757, 1745, 1, 0, 0, 0, 1757, 1748, 1, 0, 0, 0, 1757, 1751, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 261, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1764, 5, 242, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 5, 27, 0, 0, 1766, 1768, 7, 28, 0, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 3, 266, 133, 0, 1770, 1771, 5, 10, 0, 0, 1771, 1772, 3, 266, 133, 0, 1772, 1837, 1, 0, 0, 0, 1773, 1775, 5, 242, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 5, 170, 0, 0, 1777, 1778, 5, 517, 0, 0, 1778, 1783, 3, 258, 129, 0, 1779, 1780, 5, 521, 0, 0, 1780, 1782, 3, 258, 129, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1785, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1786, 1787, 5, 518, 0, 0, 1787, 1837, 1, 0, 0, 0, 1788, 1790, 5, 242, 0, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 5, 170, 0, 0, 1792, 1793, 5, 517, 0, 0, 1793, 1794, 3, 158, 79, 0, 1794, 1795, 5, 518, 0, 0, 1795, 1837, 1, 0, 0, 0, 1796, 1797, 5, 133, 0, 0, 1797, 1798, 5, 517, 0, 0, 1798, 1799, 3, 158, 79, 0, 1799, 1800, 5, 518, 0, 0, 1800, 1837, 1, 0, 0, 0, 1801, 1803, 5, 242, 0, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 5, 319, 0, 0, 1805, 1837, 3, 266, 133, 0, 1806, 1837, 3, 264, 132, 0, 1807, 1809, 5, 184, 0, 0, 1808, 1810, 5, 242, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1837, 7, 27, 0, 0, 1812, 1814, 5, 184, 0, 0, 1813, 1815, 5, 242, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 5, 113, 0, 0, 1817, 1818, 5, 151, 0, 0, 1818, 1837, 3, 266, 133, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 343, 0, 0, 1823, 1824, 5, 389, 0, 0, 1824, 1827, 3, 266, 133, 0, 1825, 1826, 5, 127, 0, 0, 1826, 1828, 3, 364, 182, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1837, 1, 0, 0, 0, 1829, 1830, 5, 184, 0, 0, 1830, 1834, 5, 186, 0, 0, 1831, 1835, 5, 414, 0, 0, 1832, 1835, 5, 13, 0, 0, 1833, 1835, 3, 310, 155, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1837, 1, 0, 0, 0, 1836, 1763, 1, 0, 0, 0, 1836, 1774, 1, 0, 0, 0, 1836, 1789, 1, 0, 0, 0, 1836, 1796, 1, 0, 0, 0, 1836, 1802, 1, 0, 0, 0, 1836, 1806, 1, 0, 0, 0, 1836, 1807, 1, 0, 0, 0, 1836, 1812, 1, 0, 0, 0, 1836, 1820, 1, 0, 0, 0, 1836, 1829, 1, 0, 0, 0, 1837, 263, 1, 0, 0, 0, 1838, 1840, 5, 242, 0, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 5, 203, 0, 0, 1842, 1856, 7, 29, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1857, 5, 518, 0, 0, 1845, 1846, 5, 517, 0, 0, 1846, 1851, 3, 258, 129, 0, 1847, 1848, 5, 521, 0, 0, 1848, 1850, 3, 258, 129, 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, 1854, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1855, 5, 518, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1843, 1, 0, 0, 0, 1856, 1845, 1, 0, 0, 0, 1857, 1868, 1, 0, 0, 0, 1858, 1860, 5, 242, 0, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 5, 203, 0, 0, 1862, 1865, 3, 266, 133, 0, 1863, 1864, 5, 127, 0, 0, 1864, 1866, 3, 364, 182, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1868, 1, 0, 0, 0, 1867, 1839, 1, 0, 0, 0, 1867, 1859, 1, 0, 0, 0, 1868, 265, 1, 0, 0, 0, 1869, 1870, 6, 133, -1, 0, 1870, 1874, 3, 270, 135, 0, 1871, 1872, 7, 30, 0, 0, 1872, 1874, 3, 266, 133, 7, 1873, 1869, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1896, 1, 0, 0, 0, 1875, 1876, 10, 6, 0, 0, 1876, 1877, 7, 31, 0, 0, 1877, 1895, 3, 266, 133, 7, 1878, 1879, 10, 5, 0, 0, 1879, 1880, 7, 32, 0, 0, 1880, 1895, 3, 266, 133, 6, 1881, 1882, 10, 4, 0, 0, 1882, 1883, 5, 512, 0, 0, 1883, 1895, 3, 266, 133, 5, 1884, 1885, 10, 3, 0, 0, 1885, 1886, 5, 513, 0, 0, 1886, 1895, 3, 266, 133, 4, 1887, 1888, 10, 2, 0, 0, 1888, 1889, 5, 511, 0, 0, 1889, 1895, 3, 266, 133, 3, 1890, 1891, 10, 1, 0, 0, 1891, 1892, 3, 352, 176, 0, 1892, 1893, 3, 266, 133, 2, 1893, 1895, 1, 0, 0, 0, 1894, 1875, 1, 0, 0, 0, 1894, 1878, 1, 0, 0, 0, 1894, 1881, 1, 0, 0, 0, 1894, 1884, 1, 0, 0, 0, 1894, 1887, 1, 0, 0, 0, 1894, 1890, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 267, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1919, 3, 378, 189, 0, 1900, 1919, 3, 276, 138, 0, 1901, 1902, 3, 278, 139, 0, 1902, 1914, 5, 517, 0, 0, 1903, 1905, 3, 370, 185, 0, 1904, 1903, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1911, 3, 280, 140, 0, 1907, 1908, 5, 521, 0, 0, 1908, 1910, 3, 280, 140, 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, 1915, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1904, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 518, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1899, 1, 0, 0, 0, 1918, 1900, 1, 0, 0, 0, 1918, 1901, 1, 0, 0, 0, 1919, 269, 1, 0, 0, 0, 1920, 1921, 6, 135, -1, 0, 1921, 1923, 5, 40, 0, 0, 1922, 1924, 3, 316, 158, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1928, 5, 120, 0, 0, 1928, 1930, 3, 258, 129, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 5, 122, 0, 0, 1932, 1996, 1, 0, 0, 0, 1933, 1934, 5, 40, 0, 0, 1934, 1936, 3, 258, 129, 0, 1935, 1937, 3, 316, 158, 0, 1936, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1941, 5, 120, 0, 0, 1941, 1943, 3, 258, 129, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 5, 122, 0, 0, 1945, 1996, 1, 0, 0, 0, 1946, 1947, 5, 41, 0, 0, 1947, 1948, 5, 517, 0, 0, 1948, 1949, 3, 258, 129, 0, 1949, 1950, 5, 17, 0, 0, 1950, 1951, 3, 58, 29, 0, 1951, 1952, 5, 518, 0, 0, 1952, 1996, 1, 0, 0, 0, 1953, 1954, 5, 458, 0, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1958, 3, 258, 129, 0, 1956, 1957, 5, 462, 0, 0, 1957, 1959, 5, 477, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 5, 518, 0, 0, 1961, 1996, 1, 0, 0, 0, 1962, 1963, 5, 468, 0, 0, 1963, 1964, 5, 517, 0, 0, 1964, 1967, 3, 258, 129, 0, 1965, 1966, 5, 462, 0, 0, 1966, 1968, 5, 477, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 518, 0, 0, 1970, 1996, 1, 0, 0, 0, 1971, 1972, 5, 282, 0, 0, 1972, 1973, 5, 517, 0, 0, 1973, 1974, 3, 266, 133, 0, 1974, 1975, 5, 170, 0, 0, 1975, 1976, 3, 266, 133, 0, 1976, 1977, 5, 518, 0, 0, 1977, 1996, 1, 0, 0, 0, 1978, 1996, 3, 360, 180, 0, 1979, 1996, 5, 528, 0, 0, 1980, 1981, 3, 334, 167, 0, 1981, 1982, 5, 514, 0, 0, 1982, 1983, 5, 528, 0, 0, 1983, 1996, 1, 0, 0, 0, 1984, 1985, 5, 517, 0, 0, 1985, 1986, 3, 158, 79, 0, 1986, 1987, 5, 518, 0, 0, 1987, 1996, 1, 0, 0, 0, 1988, 1996, 3, 268, 134, 0, 1989, 1996, 3, 54, 27, 0, 1990, 1996, 3, 282, 141, 0, 1991, 1992, 5, 517, 0, 0, 1992, 1993, 3, 258, 129, 0, 1993, 1994, 5, 518, 0, 0, 1994, 1996, 1, 0, 0, 0, 1995, 1920, 1, 0, 0, 0, 1995, 1933, 1, 0, 0, 0, 1995, 1946, 1, 0, 0, 0, 1995, 1953, 1, 0, 0, 0, 1995, 1962, 1, 0, 0, 0, 1995, 1971, 1, 0, 0, 0, 1995, 1978, 1, 0, 0, 0, 1995, 1979, 1, 0, 0, 0, 1995, 1980, 1, 0, 0, 0, 1995, 1984, 1, 0, 0, 0, 1995, 1988, 1, 0, 0, 0, 1995, 1989, 1, 0, 0, 0, 1995, 1990, 1, 0, 0, 0, 1995, 1991, 1, 0, 0, 0, 1996, 2004, 1, 0, 0, 0, 1997, 1998, 10, 4, 0, 0, 1998, 1999, 5, 515, 0, 0, 1999, 2000, 3, 266, 133, 0, 2000, 2001, 5, 516, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 1997, 1, 0, 0, 0, 2003, 2006, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 271, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2007, 2008, 3, 334, 167, 0, 2008, 273, 1, 0, 0, 0, 2009, 2014, 3, 382, 191, 0, 2010, 2014, 3, 378, 189, 0, 2011, 2014, 3, 380, 190, 0, 2012, 2014, 3, 334, 167, 0, 2013, 2009, 1, 0, 0, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 275, 1, 0, 0, 0, 2015, 2016, 3, 380, 190, 0, 2016, 2017, 5, 538, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2020, 3, 288, 144, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2024, 3, 382, 191, 0, 2022, 2024, 3, 334, 167, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2022, 1, 0, 0, 0, 2024, 279, 1, 0, 0, 0, 2025, 2030, 3, 376, 188, 0, 2026, 2030, 3, 374, 187, 0, 2027, 2030, 3, 372, 186, 0, 2028, 2030, 3, 258, 129, 0, 2029, 2025, 1, 0, 0, 0, 2029, 2026, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2032, 3, 334, 167, 0, 2032, 283, 1, 0, 0, 0, 2033, 2034, 3, 310, 155, 0, 2034, 285, 1, 0, 0, 0, 2035, 2038, 3, 310, 155, 0, 2036, 2038, 3, 282, 141, 0, 2037, 2035, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 287, 1, 0, 0, 0, 2039, 2042, 5, 182, 0, 0, 2040, 2043, 3, 290, 145, 0, 2041, 2043, 3, 294, 147, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 289, 1, 0, 0, 0, 2044, 2046, 3, 292, 146, 0, 2045, 2047, 3, 296, 148, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 291, 1, 0, 0, 0, 2048, 2049, 3, 298, 149, 0, 2049, 2050, 3, 374, 187, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2048, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 293, 1, 0, 0, 0, 2055, 2058, 3, 296, 148, 0, 2056, 2059, 3, 292, 146, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 295, 1, 0, 0, 0, 2060, 2061, 3, 298, 149, 0, 2061, 2062, 3, 374, 187, 0, 2062, 2063, 5, 389, 0, 0, 2063, 2064, 3, 374, 187, 0, 2064, 297, 1, 0, 0, 0, 2065, 2067, 7, 33, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2071, 7, 34, 0, 0, 2069, 2071, 5, 538, 0, 0, 2070, 2066, 1, 0, 0, 0, 2070, 2069, 1, 0, 0, 0, 2071, 299, 1, 0, 0, 0, 2072, 2074, 5, 17, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2077, 3, 310, 155, 0, 2076, 2078, 3, 306, 153, 0, 2077, 2076, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 301, 1, 0, 0, 0, 2079, 2080, 3, 310, 155, 0, 2080, 2081, 3, 304, 152, 0, 2081, 303, 1, 0, 0, 0, 2082, 2083, 5, 222, 0, 0, 2083, 2085, 3, 310, 155, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2090, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2089, 2088, 1, 0, 0, 0, 2090, 305, 1, 0, 0, 0, 2091, 2092, 5, 517, 0, 0, 2092, 2093, 3, 308, 154, 0, 2093, 2094, 5, 518, 0, 0, 2094, 307, 1, 0, 0, 0, 2095, 2100, 3, 310, 155, 0, 2096, 2097, 5, 521, 0, 0, 2097, 2099, 3, 310, 155, 0, 2098, 2096, 1, 0, 0, 0, 2099, 2102, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 309, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2103, 2107, 3, 312, 156, 0, 2104, 2107, 3, 314, 157, 0, 2105, 2107, 3, 384, 192, 0, 2106, 2103, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2105, 1, 0, 0, 0, 2107, 311, 1, 0, 0, 0, 2108, 2109, 7, 35, 0, 0, 2109, 313, 1, 0, 0, 0, 2110, 2111, 5, 538, 0, 0, 2111, 315, 1, 0, 0, 0, 2112, 2113, 5, 429, 0, 0, 2113, 2114, 3, 258, 129, 0, 2114, 2115, 5, 377, 0, 0, 2115, 2116, 3, 258, 129, 0, 2116, 317, 1, 0, 0, 0, 2117, 2118, 3, 310, 155, 0, 2118, 319, 1, 0, 0, 0, 2119, 2120, 3, 310, 155, 0, 2120, 321, 1, 0, 0, 0, 2121, 2124, 3, 310, 155, 0, 2122, 2123, 5, 514, 0, 0, 2123, 2125, 3, 310, 155, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 323, 1, 0, 0, 0, 2126, 2129, 3, 310, 155, 0, 2127, 2128, 5, 514, 0, 0, 2128, 2130, 3, 310, 155, 0, 2129, 2127, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 325, 1, 0, 0, 0, 2131, 2134, 3, 310, 155, 0, 2132, 2133, 5, 514, 0, 0, 2133, 2135, 3, 310, 155, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2144, 1, 0, 0, 0, 2136, 2137, 3, 310, 155, 0, 2137, 2138, 5, 514, 0, 0, 2138, 2141, 3, 310, 155, 0, 2139, 2140, 5, 514, 0, 0, 2140, 2142, 3, 310, 155, 0, 2141, 2139, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2131, 1, 0, 0, 0, 2143, 2136, 1, 0, 0, 0, 2144, 327, 1, 0, 0, 0, 2145, 2148, 3, 310, 155, 0, 2146, 2147, 5, 514, 0, 0, 2147, 2149, 3, 310, 155, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2158, 1, 0, 0, 0, 2150, 2151, 3, 310, 155, 0, 2151, 2152, 5, 514, 0, 0, 2152, 2155, 3, 310, 155, 0, 2153, 2154, 5, 514, 0, 0, 2154, 2156, 3, 310, 155, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2145, 1, 0, 0, 0, 2157, 2150, 1, 0, 0, 0, 2158, 329, 1, 0, 0, 0, 2159, 2162, 3, 310, 155, 0, 2160, 2161, 5, 514, 0, 0, 2161, 2163, 3, 310, 155, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 2172, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 2166, 5, 514, 0, 0, 2166, 2169, 3, 310, 155, 0, 2167, 2168, 5, 514, 0, 0, 2168, 2170, 3, 310, 155, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2159, 1, 0, 0, 0, 2171, 2164, 1, 0, 0, 0, 2172, 331, 1, 0, 0, 0, 2173, 2176, 3, 310, 155, 0, 2174, 2175, 5, 514, 0, 0, 2175, 2177, 3, 310, 155, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2186, 1, 0, 0, 0, 2178, 2179, 3, 310, 155, 0, 2179, 2180, 5, 514, 0, 0, 2180, 2183, 3, 310, 155, 0, 2181, 2182, 5, 514, 0, 0, 2182, 2184, 3, 310, 155, 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, 333, 1, 0, 0, 0, 2187, 2192, 3, 310, 155, 0, 2188, 2189, 5, 514, 0, 0, 2189, 2191, 3, 310, 155, 0, 2190, 2188, 1, 0, 0, 0, 2191, 2194, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2193, 335, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2195, 2196, 5, 434, 0, 0, 2196, 2197, 3, 342, 171, 0, 2197, 337, 1, 0, 0, 0, 2198, 2199, 5, 167, 0, 0, 2199, 2200, 5, 242, 0, 0, 2200, 2201, 5, 133, 0, 0, 2201, 339, 1, 0, 0, 0, 2202, 2203, 5, 167, 0, 0, 2203, 2204, 5, 133, 0, 0, 2204, 341, 1, 0, 0, 0, 2205, 2206, 5, 517, 0, 0, 2206, 2211, 3, 344, 172, 0, 2207, 2208, 5, 521, 0, 0, 2208, 2210, 3, 344, 172, 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, 518, 0, 0, 2215, 343, 1, 0, 0, 0, 2216, 2221, 3, 346, 173, 0, 2217, 2219, 5, 506, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 3, 348, 174, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 345, 1, 0, 0, 0, 2223, 2227, 3, 310, 155, 0, 2224, 2227, 3, 282, 141, 0, 2225, 2227, 5, 538, 0, 0, 2226, 2223, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2225, 1, 0, 0, 0, 2227, 347, 1, 0, 0, 0, 2228, 2233, 5, 539, 0, 0, 2229, 2233, 5, 540, 0, 0, 2230, 2233, 3, 368, 184, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2228, 1, 0, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2241, 5, 10, 0, 0, 2235, 2236, 5, 512, 0, 0, 2236, 2241, 5, 512, 0, 0, 2237, 2241, 5, 258, 0, 0, 2238, 2239, 5, 511, 0, 0, 2239, 2241, 5, 511, 0, 0, 2240, 2234, 1, 0, 0, 0, 2240, 2235, 1, 0, 0, 0, 2240, 2237, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2241, 351, 1, 0, 0, 0, 2242, 2257, 5, 506, 0, 0, 2243, 2257, 5, 507, 0, 0, 2244, 2257, 5, 508, 0, 0, 2245, 2246, 5, 508, 0, 0, 2246, 2257, 5, 506, 0, 0, 2247, 2248, 5, 507, 0, 0, 2248, 2257, 5, 506, 0, 0, 2249, 2250, 5, 508, 0, 0, 2250, 2257, 5, 507, 0, 0, 2251, 2252, 5, 509, 0, 0, 2252, 2257, 5, 506, 0, 0, 2253, 2254, 5, 508, 0, 0, 2254, 2255, 5, 506, 0, 0, 2255, 2257, 5, 507, 0, 0, 2256, 2242, 1, 0, 0, 0, 2256, 2243, 1, 0, 0, 0, 2256, 2244, 1, 0, 0, 0, 2256, 2245, 1, 0, 0, 0, 2256, 2247, 1, 0, 0, 0, 2256, 2249, 1, 0, 0, 0, 2256, 2251, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2257, 353, 1, 0, 0, 0, 2258, 2259, 5, 508, 0, 0, 2259, 2266, 5, 508, 0, 0, 2260, 2261, 5, 507, 0, 0, 2261, 2266, 5, 507, 0, 0, 2262, 2266, 5, 512, 0, 0, 2263, 2266, 5, 513, 0, 0, 2264, 2266, 5, 511, 0, 0, 2265, 2258, 1, 0, 0, 0, 2265, 2260, 1, 0, 0, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2265, 2264, 1, 0, 0, 0, 2266, 355, 1, 0, 0, 0, 2267, 2268, 7, 36, 0, 0, 2268, 357, 1, 0, 0, 0, 2269, 2270, 7, 37, 0, 0, 2270, 359, 1, 0, 0, 0, 2271, 2286, 3, 288, 144, 0, 2272, 2286, 3, 362, 181, 0, 2273, 2286, 3, 364, 182, 0, 2274, 2276, 5, 530, 0, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 3, 366, 183, 0, 2278, 2286, 3, 368, 184, 0, 2279, 2286, 5, 540, 0, 0, 2280, 2286, 5, 541, 0, 0, 2281, 2283, 5, 242, 0, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 5, 245, 0, 0, 2285, 2271, 1, 0, 0, 0, 2285, 2272, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2275, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2285, 2279, 1, 0, 0, 0, 2285, 2280, 1, 0, 0, 0, 2285, 2282, 1, 0, 0, 0, 2286, 361, 1, 0, 0, 0, 2287, 2288, 3, 372, 186, 0, 2288, 2289, 3, 364, 182, 0, 2289, 363, 1, 0, 0, 0, 2290, 2291, 5, 538, 0, 0, 2291, 365, 1, 0, 0, 0, 2292, 2293, 5, 539, 0, 0, 2293, 367, 1, 0, 0, 0, 2294, 2295, 7, 38, 0, 0, 2295, 369, 1, 0, 0, 0, 2296, 2297, 7, 39, 0, 0, 2297, 371, 1, 0, 0, 0, 2298, 2299, 7, 40, 0, 0, 2299, 373, 1, 0, 0, 0, 2300, 2301, 7, 41, 0, 0, 2301, 375, 1, 0, 0, 0, 2302, 2303, 7, 42, 0, 0, 2303, 377, 1, 0, 0, 0, 2304, 2305, 7, 43, 0, 0, 2305, 379, 1, 0, 0, 0, 2306, 2307, 7, 44, 0, 0, 2307, 381, 1, 0, 0, 0, 2308, 2309, 7, 45, 0, 0, 2309, 383, 1, 0, 0, 0, 2310, 2311, 7, 46, 0, 0, 2311, 385, 1, 0, 0, 0, 273, 389, 396, 399, 413, 431, 435, 444, 449, 456, 467, 476, 488, 491, 498, 501, 509, 513, 518, 521, 528, 536, 540, 552, 560, 564, 596, 599, 604, 608, 612, 616, 625, 630, 634, 638, 643, 646, 650, 655, 661, 666, 671, 675, 679, 683, 693, 701, 705, 709, 713, 717, 721, 725, 729, 733, 735, 745, 753, 777, 791, 796, 800, 806, 809, 812, 819, 822, 831, 843, 867, 879, 884, 888, 896, 900, 906, 916, 921, 927, 931, 935, 939, 948, 952, 959, 962, 972, 980, 988, 992, 1007, 1026, 1037, 1041, 1048, 1053, 1059, 1063, 1070, 1074, 1078, 1082, 1090, 1094, 1099, 1105, 1111, 1114, 1118, 1129, 1138, 1152, 1164, 1179, 1182, 1186, 1189, 1191, 1196, 1200, 1203, 1207, 1216, 1225, 1235, 1240, 1251, 1254, 1257, 1260, 1263, 1269, 1273, 1281, 1284, 1289, 1292, 1296, 1299, 1301, 1315, 1326, 1331, 1339, 1342, 1345, 1350, 1352, 1354, 1359, 1362, 1366, 1370, 1379, 1390, 1417, 1439, 1452, 1464, 1477, 1489, 1501, 1507, 1534, 1542, 1546, 1549, 1552, 1559, 1562, 1565, 1568, 1571, 1574, 1579, 1582, 1591, 1596, 1600, 1605, 1611, 1616, 1620, 1639, 1647, 1655, 1659, 1663, 1673, 1699, 1707, 1719, 1741, 1743, 1754, 1757, 1759, 1763, 1767, 1774, 1783, 1789, 1802, 1809, 1814, 1820, 1827, 1834, 1836, 1839, 1851, 1856, 1859, 1865, 1867, 1873, 1894, 1896, 1904, 1911, 1914, 1918, 1925, 1929, 1938, 1942, 1958, 1967, 1995, 2004, 2013, 2019, 2023, 2029, 2037, 2042, 2046, 2053, 2058, 2066, 2070, 2073, 2077, 2086, 2089, 2100, 2106, 2124, 2129, 2134, 2141, 2143, 2148, 2155, 2157, 2162, 2169, 2171, 2176, 2183, 2185, 2192, 2211, 2218, 2221, 2226, 2232, 2240, 2256, 2265, 2275, 2282, 2285] \ No newline at end of file +[4, 1, 545, 2365, 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, 28, 1, 28, 1, 28, 1, 28, 5, 28, 698, 8, 28, 10, 28, 12, 28, 701, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 708, 8, 29, 1, 29, 1, 29, 3, 29, 712, 8, 29, 1, 29, 1, 29, 3, 29, 716, 8, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 29, 1, 29, 3, 29, 724, 8, 29, 1, 29, 1, 29, 3, 29, 728, 8, 29, 1, 29, 1, 29, 3, 29, 732, 8, 29, 1, 29, 1, 29, 3, 29, 736, 8, 29, 1, 29, 1, 29, 3, 29, 740, 8, 29, 3, 29, 742, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 752, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 760, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 782, 8, 35, 10, 35, 12, 35, 785, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 796, 8, 35, 10, 35, 12, 35, 799, 9, 35, 1, 35, 1, 35, 3, 35, 803, 8, 35, 1, 36, 1, 36, 3, 36, 807, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 813, 8, 36, 1, 36, 3, 36, 816, 8, 36, 1, 36, 3, 36, 819, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 826, 8, 37, 1, 37, 3, 37, 829, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 838, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 850, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 872, 8, 46, 10, 46, 12, 46, 875, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 884, 8, 47, 10, 47, 12, 47, 887, 9, 47, 1, 47, 1, 47, 3, 47, 891, 8, 47, 1, 48, 1, 48, 3, 48, 895, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 901, 8, 49, 10, 49, 12, 49, 904, 9, 49, 1, 49, 3, 49, 907, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 913, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 923, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 928, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 934, 8, 53, 1, 53, 1, 53, 3, 53, 938, 8, 53, 1, 53, 1, 53, 3, 53, 942, 8, 53, 1, 53, 1, 53, 3, 53, 946, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 955, 8, 54, 1, 54, 1, 54, 3, 54, 959, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 966, 8, 54, 1, 54, 3, 54, 969, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 977, 8, 55, 10, 55, 12, 55, 980, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 987, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 995, 8, 57, 1, 58, 1, 58, 3, 58, 999, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1014, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1033, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1044, 8, 66, 1, 66, 1, 66, 3, 66, 1048, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1055, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1060, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1066, 8, 68, 1, 68, 1, 68, 3, 68, 1070, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1077, 8, 69, 1, 69, 1, 69, 3, 69, 1081, 8, 69, 1, 70, 1, 70, 3, 70, 1085, 8, 70, 1, 70, 1, 70, 3, 70, 1089, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1097, 8, 71, 1, 71, 1, 71, 3, 71, 1101, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1106, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1112, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1118, 8, 73, 1, 73, 3, 73, 1121, 8, 73, 1, 73, 1, 73, 3, 73, 1125, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1134, 8, 75, 10, 75, 12, 75, 1137, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1143, 8, 76, 10, 76, 12, 76, 1146, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1157, 8, 77, 11, 77, 12, 77, 1158, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1169, 8, 78, 11, 78, 12, 78, 1170, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1186, 8, 79, 1, 79, 3, 79, 1189, 8, 79, 1, 79, 1, 79, 3, 79, 1193, 8, 79, 1, 79, 3, 79, 1196, 8, 79, 3, 79, 1198, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1203, 8, 79, 1, 79, 1, 79, 3, 79, 1207, 8, 79, 1, 79, 3, 79, 1210, 8, 79, 5, 79, 1212, 8, 79, 10, 79, 12, 79, 1215, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1221, 8, 80, 10, 80, 12, 80, 1224, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1230, 8, 81, 10, 81, 12, 81, 1233, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1240, 8, 82, 10, 82, 12, 82, 1243, 9, 82, 1, 82, 1, 82, 3, 82, 1247, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1258, 8, 84, 1, 84, 3, 84, 1261, 8, 84, 1, 84, 3, 84, 1264, 8, 84, 1, 84, 3, 84, 1267, 8, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1276, 8, 84, 1, 85, 1, 85, 3, 85, 1280, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1286, 8, 85, 10, 85, 12, 85, 1289, 9, 85, 3, 85, 1291, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1296, 8, 86, 1, 86, 3, 86, 1299, 8, 86, 1, 86, 1, 86, 3, 86, 1303, 8, 86, 1, 86, 3, 86, 1306, 8, 86, 3, 86, 1308, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1315, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1322, 8, 87, 3, 87, 1324, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 1333, 8, 89, 10, 89, 12, 89, 1336, 9, 89, 1, 89, 1, 89, 3, 89, 1340, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1348, 8, 89, 1, 89, 3, 89, 1351, 8, 89, 1, 89, 3, 89, 1354, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1359, 8, 89, 5, 89, 1361, 8, 89, 10, 89, 12, 89, 1364, 9, 89, 1, 90, 1, 90, 3, 90, 1368, 8, 90, 1, 91, 3, 91, 1371, 8, 91, 1, 91, 1, 91, 3, 91, 1375, 8, 91, 1, 91, 1, 91, 3, 91, 1379, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1388, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1399, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 1424, 8, 96, 10, 96, 12, 96, 1427, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1448, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1461, 8, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1471, 8, 103, 10, 103, 12, 103, 1474, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1484, 8, 104, 10, 104, 12, 104, 1487, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1496, 8, 104, 10, 104, 12, 104, 1499, 9, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1508, 8, 104, 10, 104, 12, 104, 1511, 9, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1516, 8, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1541, 8, 111, 10, 111, 12, 111, 1544, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 3, 113, 1551, 8, 113, 1, 113, 1, 113, 3, 113, 1555, 8, 113, 1, 113, 3, 113, 1558, 8, 113, 1, 113, 3, 113, 1561, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1568, 8, 114, 1, 114, 3, 114, 1571, 8, 114, 1, 114, 3, 114, 1574, 8, 114, 1, 114, 3, 114, 1577, 8, 114, 1, 114, 3, 114, 1580, 8, 114, 1, 114, 3, 114, 1583, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1588, 8, 114, 1, 114, 3, 114, 1591, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1598, 8, 115, 10, 115, 12, 115, 1601, 9, 115, 1, 116, 1, 116, 3, 116, 1605, 8, 116, 1, 116, 3, 116, 1608, 8, 116, 1, 116, 1, 116, 3, 116, 1612, 8, 116, 1, 117, 1, 117, 1, 117, 3, 117, 1617, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1623, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1628, 8, 118, 5, 118, 1630, 8, 118, 10, 118, 12, 118, 1633, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1651, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1657, 8, 120, 10, 120, 12, 120, 1660, 9, 120, 1, 121, 1, 121, 1, 121, 4, 121, 1665, 8, 121, 11, 121, 12, 121, 1666, 1, 121, 1, 121, 3, 121, 1671, 8, 121, 1, 122, 1, 122, 3, 122, 1675, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1685, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1711, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1717, 8, 125, 10, 125, 12, 125, 1720, 9, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1737, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1750, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1758, 8, 129, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1775, 8, 132, 3, 132, 1777, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1788, 8, 132, 1, 132, 5, 132, 1791, 8, 132, 10, 132, 12, 132, 1794, 9, 132, 1, 133, 3, 133, 1797, 8, 133, 1, 133, 1, 133, 3, 133, 1801, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1808, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1815, 8, 133, 10, 133, 12, 133, 1818, 9, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1823, 8, 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, 1836, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1843, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1848, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1854, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1861, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1868, 8, 133, 3, 133, 1870, 8, 133, 1, 134, 3, 134, 1873, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1883, 8, 134, 10, 134, 12, 134, 1886, 9, 134, 1, 134, 1, 134, 3, 134, 1890, 8, 134, 1, 134, 3, 134, 1893, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1899, 8, 134, 3, 134, 1901, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1907, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1928, 8, 135, 10, 135, 12, 135, 1931, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1938, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1943, 8, 136, 10, 136, 12, 136, 1946, 9, 136, 3, 136, 1948, 8, 136, 1, 136, 1, 136, 3, 136, 1952, 8, 136, 1, 137, 1, 137, 1, 137, 4, 137, 1957, 8, 137, 11, 137, 12, 137, 1958, 1, 137, 1, 137, 3, 137, 1963, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 1970, 8, 137, 11, 137, 12, 137, 1971, 1, 137, 1, 137, 3, 137, 1976, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1992, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2001, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2037, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 2044, 8, 137, 10, 137, 12, 137, 2047, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2056, 8, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2066, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2072, 8, 141, 1, 142, 1, 142, 3, 142, 2076, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2082, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 2090, 8, 146, 1, 147, 1, 147, 1, 147, 3, 147, 2095, 8, 147, 1, 148, 1, 148, 3, 148, 2099, 8, 148, 1, 149, 1, 149, 1, 149, 4, 149, 2104, 8, 149, 11, 149, 12, 149, 2105, 1, 150, 1, 150, 1, 150, 3, 150, 2111, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 3, 152, 2119, 8, 152, 1, 152, 1, 152, 3, 152, 2123, 8, 152, 1, 153, 3, 153, 2126, 8, 153, 1, 153, 1, 153, 3, 153, 2130, 8, 153, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 4, 155, 2137, 8, 155, 11, 155, 12, 155, 2138, 1, 155, 3, 155, 2142, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 5, 157, 2151, 8, 157, 10, 157, 12, 157, 2154, 9, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2159, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2177, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2182, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2187, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2194, 8, 166, 3, 166, 2196, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2201, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2208, 8, 167, 3, 167, 2210, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2215, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2222, 8, 168, 3, 168, 2224, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2229, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2236, 8, 169, 3, 169, 2238, 8, 169, 1, 170, 1, 170, 1, 170, 5, 170, 2243, 8, 170, 10, 170, 12, 170, 2246, 9, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 2262, 8, 174, 10, 174, 12, 174, 2265, 9, 174, 1, 174, 1, 174, 1, 175, 1, 175, 3, 175, 2271, 8, 175, 1, 175, 3, 175, 2274, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2279, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2285, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2293, 8, 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, 3, 179, 2309, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2318, 8, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2328, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2335, 8, 183, 1, 183, 3, 183, 2338, 8, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 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, 1, 2244, 5, 158, 178, 264, 270, 274, 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, 48, 2, 0, 109, 109, 454, 454, 3, 0, 45, 45, 128, 128, 190, 190, 4, 0, 42, 42, 90, 90, 426, 426, 468, 468, 2, 0, 445, 445, 451, 451, 2, 0, 152, 152, 171, 171, 2, 0, 441, 441, 493, 493, 2, 0, 486, 489, 491, 491, 3, 0, 32, 32, 91, 91, 246, 246, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 179, 180, 347, 347, 363, 363, 381, 381, 384, 384, 390, 390, 420, 421, 2, 0, 437, 437, 439, 439, 4, 0, 101, 102, 115, 115, 144, 144, 248, 248, 2, 0, 13, 13, 233, 233, 2, 0, 459, 459, 466, 466, 3, 0, 5, 5, 272, 272, 448, 448, 3, 0, 268, 268, 459, 459, 466, 466, 3, 0, 429, 429, 462, 462, 481, 481, 3, 0, 333, 333, 469, 469, 485, 485, 2, 0, 444, 444, 494, 494, 2, 0, 184, 184, 267, 267, 3, 0, 130, 130, 181, 181, 406, 406, 4, 0, 153, 153, 175, 175, 203, 203, 320, 320, 3, 0, 449, 449, 463, 463, 503, 503, 4, 0, 252, 252, 450, 450, 498, 500, 502, 502, 2, 0, 74, 74, 323, 323, 3, 0, 463, 463, 496, 496, 503, 503, 2, 0, 443, 443, 454, 454, 2, 0, 461, 461, 471, 471, 2, 0, 295, 295, 325, 325, 4, 0, 140, 140, 246, 246, 400, 400, 408, 408, 2, 0, 19, 19, 372, 372, 2, 0, 5, 5, 11, 11, 2, 0, 513, 513, 533, 534, 4, 0, 456, 456, 531, 531, 535, 535, 538, 538, 2, 0, 533, 534, 536, 536, 1, 0, 533, 534, 1, 0, 542, 543, 2, 0, 542, 542, 545, 545, 4, 0, 456, 456, 531, 531, 533, 535, 537, 538, 3, 0, 243, 243, 512, 513, 533, 534, 2, 0, 140, 140, 400, 400, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 166, 166, 224, 224, 231, 231, 337, 337, 440, 440, 474, 474, 476, 476, 492, 492, 506, 506, 15, 0, 97, 97, 166, 166, 224, 224, 231, 231, 337, 337, 431, 431, 440, 440, 446, 446, 452, 453, 458, 458, 464, 464, 474, 479, 492, 492, 495, 495, 506, 507, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 202, 202, 209, 210, 392, 392, 417, 417, 531, 531, 3, 0, 78, 78, 84, 85, 209, 210, 2, 0, 91, 91, 381, 382, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 161, 161, 166, 166, 168, 168, 188, 189, 191, 196, 199, 199, 201, 201, 203, 203, 207, 207, 211, 211, 216, 216, 222, 222, 224, 225, 231, 231, 245, 245, 247, 247, 266, 266, 278, 278, 284, 284, 286, 286, 296, 296, 320, 320, 324, 326, 337, 337, 360, 361, 367, 367, 370, 370, 383, 383, 398, 398, 401, 402, 412, 412, 423, 424, 440, 440, 473, 473, 492, 492, 506, 506, 1, 0, 441, 508, 2579, 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, 693, 1, 0, 0, 0, 58, 741, 1, 0, 0, 0, 60, 743, 1, 0, 0, 0, 62, 747, 1, 0, 0, 0, 64, 755, 1, 0, 0, 0, 66, 763, 1, 0, 0, 0, 68, 767, 1, 0, 0, 0, 70, 802, 1, 0, 0, 0, 72, 818, 1, 0, 0, 0, 74, 820, 1, 0, 0, 0, 76, 830, 1, 0, 0, 0, 78, 832, 1, 0, 0, 0, 80, 839, 1, 0, 0, 0, 82, 841, 1, 0, 0, 0, 84, 849, 1, 0, 0, 0, 86, 857, 1, 0, 0, 0, 88, 859, 1, 0, 0, 0, 90, 863, 1, 0, 0, 0, 92, 867, 1, 0, 0, 0, 94, 890, 1, 0, 0, 0, 96, 894, 1, 0, 0, 0, 98, 896, 1, 0, 0, 0, 100, 912, 1, 0, 0, 0, 102, 914, 1, 0, 0, 0, 104, 919, 1, 0, 0, 0, 106, 931, 1, 0, 0, 0, 108, 950, 1, 0, 0, 0, 110, 970, 1, 0, 0, 0, 112, 981, 1, 0, 0, 0, 114, 983, 1, 0, 0, 0, 116, 996, 1, 0, 0, 0, 118, 1003, 1, 0, 0, 0, 120, 1006, 1, 0, 0, 0, 122, 1015, 1, 0, 0, 0, 124, 1019, 1, 0, 0, 0, 126, 1023, 1, 0, 0, 0, 128, 1026, 1, 0, 0, 0, 130, 1034, 1, 0, 0, 0, 132, 1039, 1, 0, 0, 0, 134, 1056, 1, 0, 0, 0, 136, 1063, 1, 0, 0, 0, 138, 1073, 1, 0, 0, 0, 140, 1082, 1, 0, 0, 0, 142, 1092, 1, 0, 0, 0, 144, 1111, 1, 0, 0, 0, 146, 1113, 1, 0, 0, 0, 148, 1126, 1, 0, 0, 0, 150, 1129, 1, 0, 0, 0, 152, 1138, 1, 0, 0, 0, 154, 1149, 1, 0, 0, 0, 156, 1162, 1, 0, 0, 0, 158, 1197, 1, 0, 0, 0, 160, 1216, 1, 0, 0, 0, 162, 1225, 1, 0, 0, 0, 164, 1234, 1, 0, 0, 0, 166, 1253, 1, 0, 0, 0, 168, 1275, 1, 0, 0, 0, 170, 1277, 1, 0, 0, 0, 172, 1307, 1, 0, 0, 0, 174, 1323, 1, 0, 0, 0, 176, 1325, 1, 0, 0, 0, 178, 1339, 1, 0, 0, 0, 180, 1365, 1, 0, 0, 0, 182, 1398, 1, 0, 0, 0, 184, 1400, 1, 0, 0, 0, 186, 1406, 1, 0, 0, 0, 188, 1408, 1, 0, 0, 0, 190, 1413, 1, 0, 0, 0, 192, 1418, 1, 0, 0, 0, 194, 1430, 1, 0, 0, 0, 196, 1447, 1, 0, 0, 0, 198, 1449, 1, 0, 0, 0, 200, 1451, 1, 0, 0, 0, 202, 1460, 1, 0, 0, 0, 204, 1462, 1, 0, 0, 0, 206, 1465, 1, 0, 0, 0, 208, 1515, 1, 0, 0, 0, 210, 1517, 1, 0, 0, 0, 212, 1520, 1, 0, 0, 0, 214, 1522, 1, 0, 0, 0, 216, 1529, 1, 0, 0, 0, 218, 1531, 1, 0, 0, 0, 220, 1533, 1, 0, 0, 0, 222, 1536, 1, 0, 0, 0, 224, 1545, 1, 0, 0, 0, 226, 1550, 1, 0, 0, 0, 228, 1564, 1, 0, 0, 0, 230, 1592, 1, 0, 0, 0, 232, 1604, 1, 0, 0, 0, 234, 1613, 1, 0, 0, 0, 236, 1618, 1, 0, 0, 0, 238, 1650, 1, 0, 0, 0, 240, 1652, 1, 0, 0, 0, 242, 1661, 1, 0, 0, 0, 244, 1672, 1, 0, 0, 0, 246, 1684, 1, 0, 0, 0, 248, 1710, 1, 0, 0, 0, 250, 1712, 1, 0, 0, 0, 252, 1736, 1, 0, 0, 0, 254, 1738, 1, 0, 0, 0, 256, 1749, 1, 0, 0, 0, 258, 1757, 1, 0, 0, 0, 260, 1759, 1, 0, 0, 0, 262, 1762, 1, 0, 0, 0, 264, 1776, 1, 0, 0, 0, 266, 1869, 1, 0, 0, 0, 268, 1900, 1, 0, 0, 0, 270, 1906, 1, 0, 0, 0, 272, 1951, 1, 0, 0, 0, 274, 2036, 1, 0, 0, 0, 276, 2048, 1, 0, 0, 0, 278, 2059, 1, 0, 0, 0, 280, 2065, 1, 0, 0, 0, 282, 2071, 1, 0, 0, 0, 284, 2075, 1, 0, 0, 0, 286, 2081, 1, 0, 0, 0, 288, 2083, 1, 0, 0, 0, 290, 2085, 1, 0, 0, 0, 292, 2089, 1, 0, 0, 0, 294, 2091, 1, 0, 0, 0, 296, 2096, 1, 0, 0, 0, 298, 2103, 1, 0, 0, 0, 300, 2107, 1, 0, 0, 0, 302, 2112, 1, 0, 0, 0, 304, 2122, 1, 0, 0, 0, 306, 2125, 1, 0, 0, 0, 308, 2131, 1, 0, 0, 0, 310, 2141, 1, 0, 0, 0, 312, 2143, 1, 0, 0, 0, 314, 2147, 1, 0, 0, 0, 316, 2158, 1, 0, 0, 0, 318, 2160, 1, 0, 0, 0, 320, 2162, 1, 0, 0, 0, 322, 2164, 1, 0, 0, 0, 324, 2169, 1, 0, 0, 0, 326, 2171, 1, 0, 0, 0, 328, 2173, 1, 0, 0, 0, 330, 2178, 1, 0, 0, 0, 332, 2195, 1, 0, 0, 0, 334, 2209, 1, 0, 0, 0, 336, 2223, 1, 0, 0, 0, 338, 2237, 1, 0, 0, 0, 340, 2239, 1, 0, 0, 0, 342, 2247, 1, 0, 0, 0, 344, 2250, 1, 0, 0, 0, 346, 2254, 1, 0, 0, 0, 348, 2257, 1, 0, 0, 0, 350, 2268, 1, 0, 0, 0, 352, 2278, 1, 0, 0, 0, 354, 2284, 1, 0, 0, 0, 356, 2292, 1, 0, 0, 0, 358, 2308, 1, 0, 0, 0, 360, 2317, 1, 0, 0, 0, 362, 2319, 1, 0, 0, 0, 364, 2321, 1, 0, 0, 0, 366, 2337, 1, 0, 0, 0, 368, 2339, 1, 0, 0, 0, 370, 2342, 1, 0, 0, 0, 372, 2344, 1, 0, 0, 0, 374, 2346, 1, 0, 0, 0, 376, 2348, 1, 0, 0, 0, 378, 2350, 1, 0, 0, 0, 380, 2352, 1, 0, 0, 0, 382, 2354, 1, 0, 0, 0, 384, 2356, 1, 0, 0, 0, 386, 2358, 1, 0, 0, 0, 388, 2360, 1, 0, 0, 0, 390, 2362, 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, 525, 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, 525, 0, 0, 422, 7, 1, 0, 0, 0, 423, 438, 3, 40, 20, 0, 424, 438, 3, 104, 52, 0, 425, 438, 3, 106, 53, 0, 426, 438, 3, 108, 54, 0, 427, 438, 3, 102, 51, 0, 428, 438, 3, 114, 57, 0, 429, 438, 3, 128, 64, 0, 430, 438, 3, 130, 65, 0, 431, 438, 3, 132, 66, 0, 432, 438, 3, 134, 67, 0, 433, 438, 3, 136, 68, 0, 434, 438, 3, 138, 69, 0, 435, 438, 3, 140, 70, 0, 436, 438, 3, 142, 71, 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, 158, 79, 0, 440, 442, 3, 144, 72, 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, 334, 167, 0, 445, 13, 1, 0, 0, 0, 446, 450, 5, 135, 0, 0, 447, 451, 3, 16, 8, 0, 448, 449, 5, 483, 0, 0, 449, 451, 5, 147, 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, 146, 73, 0, 454, 456, 3, 156, 78, 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, 524, 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, 414, 0, 0, 468, 469, 5, 445, 0, 0, 469, 474, 3, 324, 162, 0, 470, 471, 5, 414, 0, 0, 471, 474, 3, 328, 164, 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, 414, 0, 0, 476, 477, 5, 229, 0, 0, 477, 482, 3, 340, 170, 0, 478, 479, 5, 524, 0, 0, 479, 481, 3, 340, 170, 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, 344, 0, 0, 486, 528, 7, 2, 0, 0, 487, 488, 5, 344, 0, 0, 488, 489, 5, 76, 0, 0, 489, 528, 7, 3, 0, 0, 490, 491, 5, 344, 0, 0, 491, 494, 5, 377, 0, 0, 492, 493, 7, 4, 0, 0, 493, 495, 3, 328, 164, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 3, 268, 134, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 528, 1, 0, 0, 0, 499, 500, 5, 344, 0, 0, 500, 501, 5, 58, 0, 0, 501, 504, 7, 4, 0, 0, 502, 505, 3, 336, 168, 0, 503, 505, 3, 334, 167, 0, 504, 502, 1, 0, 0, 0, 504, 503, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 508, 3, 268, 134, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 528, 1, 0, 0, 0, 509, 510, 5, 344, 0, 0, 510, 515, 5, 72, 0, 0, 511, 512, 5, 376, 0, 0, 512, 516, 3, 334, 167, 0, 513, 514, 5, 505, 0, 0, 514, 516, 3, 336, 168, 0, 515, 511, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 516, 528, 1, 0, 0, 0, 517, 519, 5, 344, 0, 0, 518, 520, 5, 415, 0, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 528, 5, 155, 0, 0, 522, 524, 5, 344, 0, 0, 523, 525, 5, 153, 0, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 528, 5, 229, 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, 472, 0, 0, 530, 531, 5, 228, 0, 0, 531, 534, 3, 340, 170, 0, 532, 533, 5, 437, 0, 0, 533, 535, 3, 348, 174, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 27, 1, 0, 0, 0, 536, 537, 5, 504, 0, 0, 537, 538, 5, 228, 0, 0, 538, 539, 3, 340, 170, 0, 539, 29, 1, 0, 0, 0, 540, 542, 5, 343, 0, 0, 541, 543, 3, 350, 175, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 31, 1, 0, 0, 0, 544, 546, 5, 315, 0, 0, 545, 547, 3, 352, 176, 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, 467, 0, 0, 550, 551, 3, 112, 56, 0, 551, 35, 1, 0, 0, 0, 552, 553, 5, 441, 0, 0, 553, 554, 5, 467, 0, 0, 554, 555, 5, 437, 0, 0, 555, 558, 3, 38, 19, 0, 556, 557, 5, 17, 0, 0, 557, 559, 3, 340, 170, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 603, 1, 0, 0, 0, 560, 561, 5, 441, 0, 0, 561, 562, 5, 460, 0, 0, 562, 563, 5, 437, 0, 0, 563, 566, 3, 38, 19, 0, 564, 565, 5, 17, 0, 0, 565, 567, 3, 340, 170, 0, 566, 564, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 569, 5, 314, 0, 0, 569, 571, 3, 340, 170, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 603, 1, 0, 0, 0, 572, 573, 5, 441, 0, 0, 573, 574, 7, 6, 0, 0, 574, 575, 5, 437, 0, 0, 575, 576, 3, 38, 19, 0, 576, 577, 5, 314, 0, 0, 577, 578, 3, 340, 170, 0, 578, 603, 1, 0, 0, 0, 579, 580, 5, 441, 0, 0, 580, 581, 5, 490, 0, 0, 581, 603, 3, 38, 19, 0, 582, 583, 5, 441, 0, 0, 583, 584, 5, 457, 0, 0, 584, 585, 5, 460, 0, 0, 585, 586, 5, 437, 0, 0, 586, 587, 3, 38, 19, 0, 587, 588, 5, 314, 0, 0, 588, 589, 3, 340, 170, 0, 589, 590, 5, 470, 0, 0, 590, 591, 3, 340, 170, 0, 591, 603, 1, 0, 0, 0, 592, 593, 5, 441, 0, 0, 593, 594, 5, 447, 0, 0, 594, 595, 5, 460, 0, 0, 595, 596, 5, 437, 0, 0, 596, 597, 3, 38, 19, 0, 597, 598, 5, 147, 0, 0, 598, 599, 3, 340, 170, 0, 599, 600, 5, 17, 0, 0, 600, 601, 3, 340, 170, 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, 538, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 609, 3, 340, 170, 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, 501, 0, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 622, 5, 376, 0, 0, 621, 623, 3, 344, 172, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 3, 332, 166, 0, 625, 626, 5, 520, 0, 0, 626, 631, 3, 46, 23, 0, 627, 628, 5, 524, 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, 524, 0, 0, 635, 637, 3, 82, 41, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 524, 0, 0, 639, 641, 3, 84, 42, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 643, 5, 524, 0, 0, 643, 645, 3, 88, 44, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 649, 5, 521, 0, 0, 647, 648, 5, 59, 0, 0, 648, 650, 5, 541, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 653, 3, 90, 45, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 656, 3, 342, 171, 0, 655, 657, 3, 98, 49, 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, 376, 0, 0, 660, 662, 3, 344, 172, 0, 661, 660, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 3, 332, 166, 0, 664, 667, 3, 342, 171, 0, 665, 666, 5, 17, 0, 0, 666, 668, 3, 158, 79, 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, 74, 37, 0, 671, 673, 3, 78, 39, 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, 58, 29, 0, 676, 678, 3, 72, 36, 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, 541, 0, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 49, 1, 0, 0, 0, 683, 686, 3, 340, 170, 0, 684, 686, 3, 262, 131, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 51, 1, 0, 0, 0, 687, 690, 3, 340, 170, 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, 3, 340, 170, 0, 692, 55, 1, 0, 0, 0, 693, 694, 5, 520, 0, 0, 694, 699, 3, 52, 26, 0, 695, 696, 5, 524, 0, 0, 696, 698, 3, 52, 26, 0, 697, 695, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 702, 1, 0, 0, 0, 701, 699, 1, 0, 0, 0, 702, 703, 5, 521, 0, 0, 703, 57, 1, 0, 0, 0, 704, 742, 7, 7, 0, 0, 705, 707, 7, 8, 0, 0, 706, 708, 3, 60, 30, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 742, 1, 0, 0, 0, 709, 711, 5, 382, 0, 0, 710, 712, 3, 60, 30, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 719, 1, 0, 0, 0, 713, 715, 7, 9, 0, 0, 714, 716, 5, 208, 0, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 718, 5, 381, 0, 0, 718, 720, 5, 508, 0, 0, 719, 713, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 742, 1, 0, 0, 0, 721, 723, 7, 10, 0, 0, 722, 724, 3, 62, 31, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 742, 1, 0, 0, 0, 725, 727, 7, 11, 0, 0, 726, 728, 3, 66, 33, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 742, 1, 0, 0, 0, 729, 731, 5, 473, 0, 0, 730, 732, 3, 68, 34, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 742, 1, 0, 0, 0, 733, 735, 5, 324, 0, 0, 734, 736, 3, 70, 35, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 742, 1, 0, 0, 0, 737, 739, 5, 297, 0, 0, 738, 740, 3, 64, 32, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 742, 1, 0, 0, 0, 741, 704, 1, 0, 0, 0, 741, 705, 1, 0, 0, 0, 741, 709, 1, 0, 0, 0, 741, 721, 1, 0, 0, 0, 741, 725, 1, 0, 0, 0, 741, 729, 1, 0, 0, 0, 741, 733, 1, 0, 0, 0, 741, 737, 1, 0, 0, 0, 742, 59, 1, 0, 0, 0, 743, 744, 5, 520, 0, 0, 744, 745, 3, 372, 186, 0, 745, 746, 5, 521, 0, 0, 746, 61, 1, 0, 0, 0, 747, 748, 5, 520, 0, 0, 748, 751, 3, 372, 186, 0, 749, 750, 5, 524, 0, 0, 750, 752, 3, 372, 186, 0, 751, 749, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 5, 521, 0, 0, 754, 63, 1, 0, 0, 0, 755, 756, 5, 520, 0, 0, 756, 759, 3, 370, 185, 0, 757, 758, 5, 524, 0, 0, 758, 760, 3, 370, 185, 0, 759, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 5, 521, 0, 0, 762, 65, 1, 0, 0, 0, 763, 764, 5, 511, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 5, 510, 0, 0, 766, 67, 1, 0, 0, 0, 767, 768, 5, 511, 0, 0, 768, 769, 3, 58, 29, 0, 769, 770, 5, 524, 0, 0, 770, 771, 3, 58, 29, 0, 771, 772, 1, 0, 0, 0, 772, 773, 5, 510, 0, 0, 773, 69, 1, 0, 0, 0, 774, 775, 5, 511, 0, 0, 775, 776, 3, 52, 26, 0, 776, 783, 3, 58, 29, 0, 777, 778, 5, 524, 0, 0, 778, 779, 3, 52, 26, 0, 779, 780, 3, 58, 29, 0, 780, 782, 1, 0, 0, 0, 781, 777, 1, 0, 0, 0, 782, 785, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 786, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 786, 787, 5, 510, 0, 0, 787, 803, 1, 0, 0, 0, 788, 789, 5, 520, 0, 0, 789, 790, 3, 52, 26, 0, 790, 797, 3, 58, 29, 0, 791, 792, 5, 524, 0, 0, 792, 793, 3, 52, 26, 0, 793, 794, 3, 58, 29, 0, 794, 796, 1, 0, 0, 0, 795, 791, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 801, 5, 521, 0, 0, 801, 803, 1, 0, 0, 0, 802, 774, 1, 0, 0, 0, 802, 788, 1, 0, 0, 0, 803, 71, 1, 0, 0, 0, 804, 805, 5, 64, 0, 0, 805, 807, 3, 86, 43, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 5, 291, 0, 0, 809, 812, 5, 470, 0, 0, 810, 811, 5, 243, 0, 0, 811, 813, 5, 125, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 819, 1, 0, 0, 0, 814, 816, 5, 243, 0, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 5, 246, 0, 0, 818, 806, 1, 0, 0, 0, 818, 815, 1, 0, 0, 0, 819, 73, 1, 0, 0, 0, 820, 821, 3, 50, 25, 0, 821, 822, 3, 58, 29, 0, 822, 825, 5, 220, 0, 0, 823, 824, 5, 152, 0, 0, 824, 826, 3, 76, 38, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 829, 5, 427, 0, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 75, 1, 0, 0, 0, 830, 831, 5, 541, 0, 0, 831, 77, 1, 0, 0, 0, 832, 833, 3, 50, 25, 0, 833, 834, 5, 17, 0, 0, 834, 837, 3, 80, 40, 0, 835, 836, 5, 59, 0, 0, 836, 838, 5, 541, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 79, 1, 0, 0, 0, 839, 840, 3, 262, 131, 0, 840, 81, 1, 0, 0, 0, 841, 842, 5, 428, 0, 0, 842, 843, 5, 147, 0, 0, 843, 844, 3, 52, 26, 0, 844, 845, 5, 17, 0, 0, 845, 846, 3, 262, 131, 0, 846, 83, 1, 0, 0, 0, 847, 848, 5, 64, 0, 0, 848, 850, 3, 86, 43, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 291, 0, 0, 852, 853, 5, 470, 0, 0, 853, 854, 3, 56, 28, 0, 854, 855, 5, 243, 0, 0, 855, 856, 5, 125, 0, 0, 856, 85, 1, 0, 0, 0, 857, 858, 3, 316, 158, 0, 858, 87, 1, 0, 0, 0, 859, 860, 5, 279, 0, 0, 860, 861, 5, 147, 0, 0, 861, 862, 5, 374, 0, 0, 862, 89, 1, 0, 0, 0, 863, 864, 5, 271, 0, 0, 864, 865, 5, 34, 0, 0, 865, 866, 3, 92, 46, 0, 866, 91, 1, 0, 0, 0, 867, 868, 5, 520, 0, 0, 868, 873, 3, 94, 47, 0, 869, 870, 5, 524, 0, 0, 870, 872, 3, 94, 47, 0, 871, 869, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 877, 5, 521, 0, 0, 877, 93, 1, 0, 0, 0, 878, 891, 3, 52, 26, 0, 879, 880, 5, 520, 0, 0, 880, 885, 3, 96, 48, 0, 881, 882, 5, 524, 0, 0, 882, 884, 3, 96, 48, 0, 883, 881, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 889, 5, 521, 0, 0, 889, 891, 1, 0, 0, 0, 890, 878, 1, 0, 0, 0, 890, 879, 1, 0, 0, 0, 891, 95, 1, 0, 0, 0, 892, 895, 3, 292, 146, 0, 893, 895, 3, 366, 183, 0, 894, 892, 1, 0, 0, 0, 894, 893, 1, 0, 0, 0, 895, 97, 1, 0, 0, 0, 896, 897, 5, 204, 0, 0, 897, 906, 3, 334, 167, 0, 898, 902, 5, 520, 0, 0, 899, 901, 3, 100, 50, 0, 900, 899, 1, 0, 0, 0, 901, 904, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 905, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 905, 907, 5, 521, 0, 0, 906, 898, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 99, 1, 0, 0, 0, 908, 909, 7, 12, 0, 0, 909, 913, 7, 13, 0, 0, 910, 911, 7, 14, 0, 0, 911, 913, 7, 15, 0, 0, 912, 908, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 913, 101, 1, 0, 0, 0, 914, 915, 5, 72, 0, 0, 915, 916, 5, 445, 0, 0, 916, 917, 3, 326, 163, 0, 917, 918, 3, 342, 171, 0, 918, 103, 1, 0, 0, 0, 919, 920, 5, 72, 0, 0, 920, 922, 5, 451, 0, 0, 921, 923, 3, 344, 172, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 927, 3, 330, 165, 0, 925, 926, 5, 59, 0, 0, 926, 928, 5, 541, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 3, 342, 171, 0, 930, 105, 1, 0, 0, 0, 931, 933, 5, 72, 0, 0, 932, 934, 5, 501, 0, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 5, 505, 0, 0, 936, 938, 3, 344, 172, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 3, 338, 169, 0, 940, 942, 3, 56, 28, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 944, 5, 59, 0, 0, 944, 946, 5, 541, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 5, 17, 0, 0, 948, 949, 3, 158, 79, 0, 949, 107, 1, 0, 0, 0, 950, 954, 5, 72, 0, 0, 951, 955, 5, 501, 0, 0, 952, 953, 5, 501, 0, 0, 953, 955, 5, 373, 0, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 958, 5, 154, 0, 0, 957, 959, 3, 344, 172, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 961, 3, 278, 139, 0, 961, 962, 5, 17, 0, 0, 962, 965, 3, 316, 158, 0, 963, 964, 5, 197, 0, 0, 964, 966, 7, 16, 0, 0, 965, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 968, 1, 0, 0, 0, 967, 969, 3, 110, 55, 0, 968, 967, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 109, 1, 0, 0, 0, 970, 971, 5, 416, 0, 0, 971, 972, 5, 467, 0, 0, 972, 978, 3, 112, 56, 0, 973, 974, 5, 524, 0, 0, 974, 975, 5, 467, 0, 0, 975, 977, 3, 112, 56, 0, 976, 973, 1, 0, 0, 0, 977, 980, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 111, 1, 0, 0, 0, 980, 978, 1, 0, 0, 0, 981, 982, 5, 541, 0, 0, 982, 113, 1, 0, 0, 0, 983, 984, 5, 8, 0, 0, 984, 986, 5, 376, 0, 0, 985, 987, 3, 346, 173, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 3, 334, 167, 0, 989, 995, 3, 116, 58, 0, 990, 995, 3, 118, 59, 0, 991, 995, 3, 120, 60, 0, 992, 995, 3, 122, 61, 0, 993, 995, 3, 124, 62, 0, 994, 989, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 991, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 993, 1, 0, 0, 0, 995, 115, 1, 0, 0, 0, 996, 998, 5, 314, 0, 0, 997, 999, 3, 340, 170, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 5, 391, 0, 0, 1001, 1002, 3, 340, 170, 0, 1002, 117, 1, 0, 0, 0, 1003, 1004, 5, 343, 0, 0, 1004, 1005, 3, 348, 174, 0, 1005, 119, 1, 0, 0, 0, 1006, 1007, 5, 441, 0, 0, 1007, 1008, 5, 64, 0, 0, 1008, 1009, 3, 86, 43, 0, 1009, 1010, 5, 291, 0, 0, 1010, 1011, 5, 470, 0, 0, 1011, 1013, 3, 56, 28, 0, 1012, 1014, 3, 126, 63, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 121, 1, 0, 0, 0, 1015, 1016, 5, 116, 0, 0, 1016, 1017, 5, 64, 0, 0, 1017, 1018, 3, 86, 43, 0, 1018, 123, 1, 0, 0, 0, 1019, 1020, 5, 441, 0, 0, 1020, 1021, 5, 407, 0, 0, 1021, 1022, 3, 56, 28, 0, 1022, 125, 1, 0, 0, 0, 1023, 1024, 5, 243, 0, 0, 1024, 1025, 5, 125, 0, 0, 1025, 127, 1, 0, 0, 0, 1026, 1027, 5, 8, 0, 0, 1027, 1028, 5, 505, 0, 0, 1028, 1032, 3, 336, 168, 0, 1029, 1033, 3, 116, 58, 0, 1030, 1031, 5, 17, 0, 0, 1031, 1033, 3, 158, 79, 0, 1032, 1029, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1033, 129, 1, 0, 0, 0, 1034, 1035, 5, 8, 0, 0, 1035, 1036, 5, 451, 0, 0, 1036, 1037, 3, 328, 164, 0, 1037, 1038, 3, 118, 59, 0, 1038, 131, 1, 0, 0, 0, 1039, 1043, 5, 8, 0, 0, 1040, 1044, 5, 501, 0, 0, 1041, 1042, 5, 501, 0, 0, 1042, 1044, 5, 373, 0, 0, 1043, 1040, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 5, 154, 0, 0, 1046, 1048, 3, 346, 173, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 3, 280, 140, 0, 1050, 1051, 5, 17, 0, 0, 1051, 1054, 3, 316, 158, 0, 1052, 1053, 5, 197, 0, 0, 1053, 1055, 7, 16, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 133, 1, 0, 0, 0, 1056, 1057, 5, 116, 0, 0, 1057, 1059, 5, 445, 0, 0, 1058, 1060, 3, 346, 173, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 3, 324, 162, 0, 1062, 135, 1, 0, 0, 0, 1063, 1065, 5, 116, 0, 0, 1064, 1066, 5, 501, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 5, 376, 0, 0, 1068, 1070, 3, 346, 173, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 3, 334, 167, 0, 1072, 137, 1, 0, 0, 0, 1073, 1074, 5, 116, 0, 0, 1074, 1076, 5, 451, 0, 0, 1075, 1077, 3, 346, 173, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 3, 328, 164, 0, 1079, 1081, 7, 17, 0, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 139, 1, 0, 0, 0, 1082, 1084, 5, 116, 0, 0, 1083, 1085, 5, 501, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, 5, 505, 0, 0, 1087, 1089, 3, 346, 173, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 3, 336, 168, 0, 1091, 141, 1, 0, 0, 0, 1092, 1096, 5, 116, 0, 0, 1093, 1097, 5, 501, 0, 0, 1094, 1095, 5, 501, 0, 0, 1095, 1097, 5, 373, 0, 0, 1096, 1093, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 5, 154, 0, 0, 1099, 1101, 3, 346, 173, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 3, 280, 140, 0, 1103, 143, 1, 0, 0, 0, 1104, 1106, 5, 132, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1112, 3, 146, 73, 0, 1108, 1112, 3, 154, 77, 0, 1109, 1110, 5, 132, 0, 0, 1110, 1112, 3, 156, 78, 0, 1111, 1105, 1, 0, 0, 0, 1111, 1108, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 145, 1, 0, 0, 0, 1113, 1114, 5, 178, 0, 0, 1114, 1115, 7, 18, 0, 0, 1115, 1124, 3, 334, 167, 0, 1116, 1118, 3, 148, 74, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 1, 0, 0, 0, 1119, 1121, 3, 56, 28, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1125, 3, 158, 79, 0, 1123, 1125, 3, 150, 75, 0, 1124, 1117, 1, 0, 0, 0, 1124, 1123, 1, 0, 0, 0, 1125, 147, 1, 0, 0, 0, 1126, 1127, 5, 270, 0, 0, 1127, 1128, 3, 348, 174, 0, 1128, 149, 1, 0, 0, 0, 1129, 1130, 5, 418, 0, 0, 1130, 1135, 3, 152, 76, 0, 1131, 1132, 5, 524, 0, 0, 1132, 1134, 3, 152, 76, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 151, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1139, 5, 520, 0, 0, 1139, 1144, 3, 366, 183, 0, 1140, 1141, 5, 524, 0, 0, 1141, 1143, 3, 366, 183, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1147, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1148, 5, 521, 0, 0, 1148, 153, 1, 0, 0, 0, 1149, 1150, 5, 24, 0, 0, 1150, 1151, 5, 357, 0, 0, 1151, 1152, 5, 343, 0, 0, 1152, 1156, 5, 525, 0, 0, 1153, 1154, 3, 146, 73, 0, 1154, 1155, 5, 525, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 5, 122, 0, 0, 1161, 155, 1, 0, 0, 0, 1162, 1163, 5, 357, 0, 0, 1163, 1164, 5, 343, 0, 0, 1164, 1168, 5, 24, 0, 0, 1165, 1166, 3, 146, 73, 0, 1166, 1167, 5, 525, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 122, 0, 0, 1173, 157, 1, 0, 0, 0, 1174, 1175, 6, 79, -1, 0, 1175, 1198, 3, 160, 80, 0, 1176, 1177, 3, 162, 81, 0, 1177, 1178, 3, 158, 79, 5, 1178, 1198, 1, 0, 0, 0, 1179, 1180, 5, 520, 0, 0, 1180, 1181, 3, 158, 79, 0, 1181, 1182, 5, 521, 0, 0, 1182, 1198, 1, 0, 0, 0, 1183, 1185, 3, 170, 85, 0, 1184, 1186, 3, 230, 115, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 234, 117, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1198, 1, 0, 0, 0, 1190, 1192, 3, 168, 84, 0, 1191, 1193, 3, 230, 115, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 3, 234, 117, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1174, 1, 0, 0, 0, 1197, 1176, 1, 0, 0, 0, 1197, 1179, 1, 0, 0, 0, 1197, 1183, 1, 0, 0, 0, 1197, 1190, 1, 0, 0, 0, 1198, 1213, 1, 0, 0, 0, 1199, 1200, 10, 3, 0, 0, 1200, 1202, 7, 19, 0, 0, 1201, 1203, 5, 5, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 3, 158, 79, 0, 1205, 1207, 3, 230, 115, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 234, 117, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1199, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 159, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 418, 0, 0, 1217, 1222, 3, 262, 131, 0, 1218, 1219, 5, 524, 0, 0, 1219, 1221, 3, 262, 131, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 161, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1226, 5, 437, 0, 0, 1226, 1231, 3, 164, 82, 0, 1227, 1228, 5, 524, 0, 0, 1228, 1230, 3, 164, 82, 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, 163, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1246, 3, 166, 83, 0, 1235, 1236, 5, 520, 0, 0, 1236, 1241, 3, 52, 26, 0, 1237, 1238, 5, 524, 0, 0, 1238, 1240, 3, 52, 26, 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, 1244, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1245, 5, 521, 0, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1235, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 5, 17, 0, 0, 1249, 1250, 5, 520, 0, 0, 1250, 1251, 3, 158, 79, 0, 1251, 1252, 5, 521, 0, 0, 1252, 165, 1, 0, 0, 0, 1253, 1254, 3, 316, 158, 0, 1254, 167, 1, 0, 0, 0, 1255, 1257, 3, 170, 85, 0, 1256, 1258, 3, 176, 88, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 204, 102, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 206, 103, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, 220, 110, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 222, 111, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1276, 1, 0, 0, 0, 1271, 1272, 3, 170, 85, 0, 1272, 1273, 3, 176, 88, 0, 1273, 1274, 3, 228, 114, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1255, 1, 0, 0, 0, 1275, 1271, 1, 0, 0, 0, 1276, 169, 1, 0, 0, 0, 1277, 1279, 5, 339, 0, 0, 1278, 1280, 3, 376, 188, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1290, 1, 0, 0, 0, 1281, 1291, 5, 531, 0, 0, 1282, 1287, 3, 172, 86, 0, 1283, 1284, 5, 524, 0, 0, 1284, 1286, 3, 172, 86, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1281, 1, 0, 0, 0, 1290, 1282, 1, 0, 0, 0, 1291, 171, 1, 0, 0, 0, 1292, 1308, 3, 174, 87, 0, 1293, 1298, 3, 262, 131, 0, 1294, 1296, 5, 17, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 3, 52, 26, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1308, 1, 0, 0, 0, 1300, 1305, 3, 52, 26, 0, 1301, 1303, 5, 17, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 3, 262, 131, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1292, 1, 0, 0, 0, 1307, 1293, 1, 0, 0, 0, 1307, 1300, 1, 0, 0, 0, 1308, 173, 1, 0, 0, 0, 1309, 1310, 3, 274, 137, 0, 1310, 1311, 5, 264, 0, 0, 1311, 1314, 3, 226, 113, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1315, 3, 316, 158, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1324, 1, 0, 0, 0, 1316, 1317, 3, 274, 137, 0, 1317, 1318, 5, 264, 0, 0, 1318, 1321, 3, 308, 154, 0, 1319, 1320, 5, 17, 0, 0, 1320, 1322, 3, 316, 158, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1309, 1, 0, 0, 0, 1323, 1316, 1, 0, 0, 0, 1324, 175, 1, 0, 0, 0, 1325, 1326, 5, 152, 0, 0, 1326, 1327, 3, 178, 89, 0, 1327, 177, 1, 0, 0, 0, 1328, 1329, 6, 89, -1, 0, 1329, 1334, 3, 180, 90, 0, 1330, 1331, 5, 524, 0, 0, 1331, 1333, 3, 180, 90, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1340, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 1340, 3, 188, 94, 0, 1338, 1340, 3, 190, 95, 0, 1339, 1328, 1, 0, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1340, 1362, 1, 0, 0, 0, 1341, 1342, 10, 3, 0, 0, 1342, 1343, 5, 73, 0, 0, 1343, 1344, 5, 186, 0, 0, 1344, 1361, 3, 178, 89, 4, 1345, 1347, 10, 4, 0, 0, 1346, 1348, 5, 235, 0, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1350, 1, 0, 0, 0, 1349, 1351, 7, 20, 0, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1354, 5, 263, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 5, 186, 0, 0, 1356, 1358, 3, 178, 89, 0, 1357, 1359, 3, 202, 101, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1341, 1, 0, 0, 0, 1360, 1345, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 179, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1367, 3, 182, 91, 0, 1366, 1368, 3, 306, 153, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 181, 1, 0, 0, 0, 1369, 1371, 5, 376, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 3, 334, 167, 0, 1373, 1375, 3, 184, 92, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1399, 1, 0, 0, 0, 1376, 1378, 3, 336, 168, 0, 1377, 1379, 3, 184, 92, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1399, 1, 0, 0, 0, 1380, 1381, 5, 200, 0, 0, 1381, 1382, 5, 376, 0, 0, 1382, 1383, 5, 520, 0, 0, 1383, 1384, 3, 272, 136, 0, 1384, 1385, 5, 521, 0, 0, 1385, 1399, 1, 0, 0, 0, 1386, 1388, 5, 200, 0, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 5, 520, 0, 0, 1390, 1391, 3, 158, 79, 0, 1391, 1392, 5, 521, 0, 0, 1392, 1399, 1, 0, 0, 0, 1393, 1394, 5, 409, 0, 0, 1394, 1395, 5, 520, 0, 0, 1395, 1396, 3, 262, 131, 0, 1396, 1397, 5, 521, 0, 0, 1397, 1399, 1, 0, 0, 0, 1398, 1370, 1, 0, 0, 0, 1398, 1376, 1, 0, 0, 0, 1398, 1380, 1, 0, 0, 0, 1398, 1387, 1, 0, 0, 0, 1398, 1393, 1, 0, 0, 0, 1399, 183, 1, 0, 0, 0, 1400, 1401, 5, 147, 0, 0, 1401, 1402, 5, 374, 0, 0, 1402, 1403, 5, 17, 0, 0, 1403, 1404, 5, 251, 0, 0, 1404, 1405, 3, 186, 93, 0, 1405, 185, 1, 0, 0, 0, 1406, 1407, 3, 262, 131, 0, 1407, 187, 1, 0, 0, 0, 1408, 1409, 5, 520, 0, 0, 1409, 1410, 3, 150, 75, 0, 1410, 1411, 5, 521, 0, 0, 1411, 1412, 3, 306, 153, 0, 1412, 189, 1, 0, 0, 0, 1413, 1414, 5, 376, 0, 0, 1414, 1415, 5, 520, 0, 0, 1415, 1416, 3, 192, 96, 0, 1416, 1417, 5, 521, 0, 0, 1417, 191, 1, 0, 0, 0, 1418, 1419, 3, 194, 97, 0, 1419, 1420, 5, 520, 0, 0, 1420, 1425, 3, 196, 98, 0, 1421, 1422, 5, 524, 0, 0, 1422, 1424, 3, 196, 98, 0, 1423, 1421, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1428, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1428, 1429, 5, 521, 0, 0, 1429, 193, 1, 0, 0, 0, 1430, 1431, 7, 21, 0, 0, 1431, 195, 1, 0, 0, 0, 1432, 1433, 5, 376, 0, 0, 1433, 1448, 3, 218, 109, 0, 1434, 1448, 3, 200, 100, 0, 1435, 1448, 3, 294, 147, 0, 1436, 1437, 5, 450, 0, 0, 1437, 1438, 5, 540, 0, 0, 1438, 1439, 5, 376, 0, 0, 1439, 1448, 3, 218, 109, 0, 1440, 1441, 5, 502, 0, 0, 1441, 1442, 5, 540, 0, 0, 1442, 1448, 3, 200, 100, 0, 1443, 1444, 3, 198, 99, 0, 1444, 1445, 5, 540, 0, 0, 1445, 1446, 3, 294, 147, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1432, 1, 0, 0, 0, 1447, 1434, 1, 0, 0, 0, 1447, 1435, 1, 0, 0, 0, 1447, 1436, 1, 0, 0, 0, 1447, 1440, 1, 0, 0, 0, 1447, 1443, 1, 0, 0, 0, 1448, 197, 1, 0, 0, 0, 1449, 1450, 7, 22, 0, 0, 1450, 199, 1, 0, 0, 0, 1451, 1452, 5, 455, 0, 0, 1452, 1453, 5, 520, 0, 0, 1453, 1454, 3, 52, 26, 0, 1454, 1455, 5, 521, 0, 0, 1455, 201, 1, 0, 0, 0, 1456, 1457, 5, 255, 0, 0, 1457, 1461, 3, 264, 132, 0, 1458, 1459, 5, 416, 0, 0, 1459, 1461, 3, 56, 28, 0, 1460, 1456, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1461, 203, 1, 0, 0, 0, 1462, 1463, 5, 434, 0, 0, 1463, 1464, 3, 264, 132, 0, 1464, 205, 1, 0, 0, 0, 1465, 1466, 5, 160, 0, 0, 1466, 1467, 5, 34, 0, 0, 1467, 1472, 3, 208, 104, 0, 1468, 1469, 5, 524, 0, 0, 1469, 1471, 3, 208, 104, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 207, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1516, 3, 52, 26, 0, 1476, 1516, 3, 214, 107, 0, 1477, 1478, 5, 520, 0, 0, 1478, 1516, 5, 521, 0, 0, 1479, 1480, 5, 520, 0, 0, 1480, 1485, 3, 262, 131, 0, 1481, 1482, 5, 524, 0, 0, 1482, 1484, 3, 262, 131, 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, 521, 0, 0, 1489, 1516, 1, 0, 0, 0, 1490, 1491, 3, 212, 106, 0, 1491, 1492, 5, 520, 0, 0, 1492, 1497, 3, 262, 131, 0, 1493, 1494, 5, 524, 0, 0, 1494, 1496, 3, 262, 131, 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, 521, 0, 0, 1501, 1516, 1, 0, 0, 0, 1502, 1503, 3, 210, 105, 0, 1503, 1504, 5, 520, 0, 0, 1504, 1509, 3, 208, 104, 0, 1505, 1506, 5, 524, 0, 0, 1506, 1508, 3, 208, 104, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1513, 5, 521, 0, 0, 1513, 1516, 1, 0, 0, 0, 1514, 1516, 3, 262, 131, 0, 1515, 1475, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1477, 1, 0, 0, 0, 1515, 1479, 1, 0, 0, 0, 1515, 1490, 1, 0, 0, 0, 1515, 1502, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 209, 1, 0, 0, 0, 1517, 1518, 5, 161, 0, 0, 1518, 1519, 5, 497, 0, 0, 1519, 211, 1, 0, 0, 0, 1520, 1521, 7, 23, 0, 0, 1521, 213, 1, 0, 0, 0, 1522, 1523, 3, 216, 108, 0, 1523, 1524, 5, 520, 0, 0, 1524, 1525, 3, 218, 109, 0, 1525, 1526, 5, 524, 0, 0, 1526, 1527, 3, 294, 147, 0, 1527, 1528, 5, 521, 0, 0, 1528, 215, 1, 0, 0, 0, 1529, 1530, 7, 24, 0, 0, 1530, 217, 1, 0, 0, 0, 1531, 1532, 3, 340, 170, 0, 1532, 219, 1, 0, 0, 0, 1533, 1534, 5, 164, 0, 0, 1534, 1535, 3, 264, 132, 0, 1535, 221, 1, 0, 0, 0, 1536, 1537, 5, 436, 0, 0, 1537, 1542, 3, 224, 112, 0, 1538, 1539, 5, 524, 0, 0, 1539, 1541, 3, 224, 112, 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, 223, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1545, 1546, 3, 308, 154, 0, 1546, 1547, 5, 17, 0, 0, 1547, 1548, 3, 226, 113, 0, 1548, 225, 1, 0, 0, 0, 1549, 1551, 3, 308, 154, 0, 1550, 1549, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1554, 5, 520, 0, 0, 1553, 1555, 3, 236, 118, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1558, 3, 230, 115, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, 1561, 3, 252, 126, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 5, 521, 0, 0, 1563, 227, 1, 0, 0, 0, 1564, 1565, 5, 215, 0, 0, 1565, 1567, 5, 520, 0, 0, 1566, 1568, 3, 236, 118, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1571, 3, 230, 115, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1573, 1, 0, 0, 0, 1572, 1574, 3, 240, 120, 0, 1573, 1572, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1577, 3, 246, 123, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 1, 0, 0, 0, 1578, 1580, 3, 248, 124, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1583, 3, 242, 121, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 3, 250, 125, 0, 1585, 1590, 5, 521, 0, 0, 1586, 1588, 5, 17, 0, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1591, 3, 316, 158, 0, 1590, 1587, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 229, 1, 0, 0, 0, 1592, 1593, 5, 260, 0, 0, 1593, 1594, 5, 34, 0, 0, 1594, 1599, 3, 232, 116, 0, 1595, 1596, 5, 524, 0, 0, 1596, 1598, 3, 232, 116, 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, 231, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1605, 3, 52, 26, 0, 1603, 1605, 3, 270, 135, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1603, 1, 0, 0, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1608, 7, 25, 0, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1610, 5, 480, 0, 0, 1610, 1612, 7, 26, 0, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 233, 1, 0, 0, 0, 1613, 1616, 5, 206, 0, 0, 1614, 1617, 5, 5, 0, 0, 1615, 1617, 3, 262, 131, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1619, 5, 270, 0, 0, 1619, 1622, 5, 34, 0, 0, 1620, 1623, 3, 52, 26, 0, 1621, 1623, 3, 274, 137, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1631, 1, 0, 0, 0, 1624, 1627, 5, 524, 0, 0, 1625, 1628, 3, 52, 26, 0, 1626, 1628, 3, 274, 137, 0, 1627, 1625, 1, 0, 0, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1630, 1, 0, 0, 0, 1629, 1624, 1, 0, 0, 0, 1630, 1633, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 237, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1634, 1651, 5, 531, 0, 0, 1635, 1651, 5, 534, 0, 0, 1636, 1651, 5, 539, 0, 0, 1637, 1638, 5, 522, 0, 0, 1638, 1639, 5, 542, 0, 0, 1639, 1640, 5, 524, 0, 0, 1640, 1641, 5, 542, 0, 0, 1641, 1651, 5, 523, 0, 0, 1642, 1643, 5, 522, 0, 0, 1643, 1644, 5, 542, 0, 0, 1644, 1645, 5, 524, 0, 0, 1645, 1651, 5, 523, 0, 0, 1646, 1647, 5, 522, 0, 0, 1647, 1648, 5, 524, 0, 0, 1648, 1649, 5, 542, 0, 0, 1649, 1651, 5, 523, 0, 0, 1650, 1634, 1, 0, 0, 0, 1650, 1635, 1, 0, 0, 0, 1650, 1636, 1, 0, 0, 0, 1650, 1637, 1, 0, 0, 0, 1650, 1642, 1, 0, 0, 0, 1650, 1646, 1, 0, 0, 0, 1651, 239, 1, 0, 0, 0, 1652, 1653, 5, 217, 0, 0, 1653, 1658, 3, 172, 86, 0, 1654, 1655, 5, 524, 0, 0, 1655, 1657, 3, 172, 86, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 241, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1662, 5, 273, 0, 0, 1662, 1664, 5, 520, 0, 0, 1663, 1665, 3, 244, 122, 0, 1664, 1663, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1670, 5, 521, 0, 0, 1669, 1671, 3, 260, 130, 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 243, 1, 0, 0, 0, 1672, 1674, 3, 318, 159, 0, 1673, 1675, 3, 238, 119, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 245, 1, 0, 0, 0, 1676, 1677, 5, 5, 0, 0, 1677, 1678, 5, 325, 0, 0, 1678, 1679, 5, 274, 0, 0, 1679, 1685, 5, 212, 0, 0, 1680, 1681, 5, 256, 0, 0, 1681, 1682, 5, 324, 0, 0, 1682, 1683, 5, 274, 0, 0, 1683, 1685, 5, 212, 0, 0, 1684, 1676, 1, 0, 0, 0, 1684, 1680, 1, 0, 0, 0, 1685, 247, 1, 0, 0, 0, 1686, 1687, 5, 442, 0, 0, 1687, 1688, 5, 212, 0, 0, 1688, 1689, 5, 346, 0, 0, 1689, 1690, 5, 482, 0, 0, 1690, 1691, 5, 471, 0, 0, 1691, 1711, 5, 324, 0, 0, 1692, 1693, 5, 442, 0, 0, 1693, 1694, 5, 212, 0, 0, 1694, 1695, 5, 346, 0, 0, 1695, 1696, 5, 391, 0, 0, 1696, 1697, 5, 239, 0, 0, 1697, 1711, 5, 324, 0, 0, 1698, 1699, 5, 442, 0, 0, 1699, 1700, 5, 212, 0, 0, 1700, 1701, 5, 346, 0, 0, 1701, 1702, 5, 391, 0, 0, 1702, 1703, 5, 471, 0, 0, 1703, 1711, 3, 318, 159, 0, 1704, 1705, 5, 442, 0, 0, 1705, 1706, 5, 212, 0, 0, 1706, 1707, 5, 346, 0, 0, 1707, 1708, 5, 391, 0, 0, 1708, 1709, 5, 461, 0, 0, 1709, 1711, 3, 318, 159, 0, 1710, 1686, 1, 0, 0, 0, 1710, 1692, 1, 0, 0, 0, 1710, 1698, 1, 0, 0, 0, 1710, 1704, 1, 0, 0, 0, 1711, 249, 1, 0, 0, 0, 1712, 1713, 5, 105, 0, 0, 1713, 1718, 3, 172, 86, 0, 1714, 1715, 5, 524, 0, 0, 1715, 1717, 3, 172, 86, 0, 1716, 1714, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 251, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1722, 5, 295, 0, 0, 1722, 1723, 5, 27, 0, 0, 1723, 1724, 3, 294, 147, 0, 1724, 1725, 3, 254, 127, 0, 1725, 1737, 1, 0, 0, 0, 1726, 1727, 7, 27, 0, 0, 1727, 1728, 5, 27, 0, 0, 1728, 1729, 3, 256, 128, 0, 1729, 1730, 5, 10, 0, 0, 1730, 1731, 3, 258, 129, 0, 1731, 1737, 1, 0, 0, 0, 1732, 1733, 5, 325, 0, 0, 1733, 1734, 5, 27, 0, 0, 1734, 1735, 5, 542, 0, 0, 1735, 1737, 3, 254, 127, 0, 1736, 1721, 1, 0, 0, 0, 1736, 1726, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1737, 253, 1, 0, 0, 0, 1738, 1739, 5, 484, 0, 0, 1739, 1740, 5, 10, 0, 0, 1740, 1741, 5, 76, 0, 0, 1741, 1742, 5, 324, 0, 0, 1742, 255, 1, 0, 0, 0, 1743, 1744, 5, 405, 0, 0, 1744, 1750, 5, 484, 0, 0, 1745, 1746, 5, 542, 0, 0, 1746, 1750, 5, 484, 0, 0, 1747, 1748, 5, 76, 0, 0, 1748, 1750, 5, 324, 0, 0, 1749, 1743, 1, 0, 0, 0, 1749, 1745, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 257, 1, 0, 0, 0, 1751, 1752, 5, 76, 0, 0, 1752, 1758, 5, 324, 0, 0, 1753, 1754, 5, 542, 0, 0, 1754, 1758, 5, 146, 0, 0, 1755, 1756, 5, 405, 0, 0, 1756, 1758, 5, 146, 0, 0, 1757, 1751, 1, 0, 0, 0, 1757, 1753, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 259, 1, 0, 0, 0, 1759, 1760, 5, 438, 0, 0, 1760, 1761, 3, 294, 147, 0, 1761, 261, 1, 0, 0, 0, 1762, 1763, 3, 264, 132, 0, 1763, 263, 1, 0, 0, 0, 1764, 1765, 6, 132, -1, 0, 1765, 1766, 5, 243, 0, 0, 1766, 1777, 3, 264, 132, 6, 1767, 1768, 5, 133, 0, 0, 1768, 1769, 5, 520, 0, 0, 1769, 1770, 3, 158, 79, 0, 1770, 1771, 5, 521, 0, 0, 1771, 1777, 1, 0, 0, 0, 1772, 1774, 3, 270, 135, 0, 1773, 1775, 3, 266, 133, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1764, 1, 0, 0, 0, 1776, 1767, 1, 0, 0, 0, 1776, 1772, 1, 0, 0, 0, 1777, 1792, 1, 0, 0, 0, 1778, 1779, 10, 3, 0, 0, 1779, 1780, 5, 10, 0, 0, 1780, 1791, 3, 264, 132, 4, 1781, 1782, 10, 2, 0, 0, 1782, 1783, 5, 259, 0, 0, 1783, 1791, 3, 264, 132, 3, 1784, 1785, 10, 1, 0, 0, 1785, 1787, 5, 185, 0, 0, 1786, 1788, 5, 243, 0, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1791, 7, 28, 0, 0, 1790, 1778, 1, 0, 0, 0, 1790, 1781, 1, 0, 0, 0, 1790, 1784, 1, 0, 0, 0, 1791, 1794, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 265, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1797, 5, 243, 0, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 5, 27, 0, 0, 1799, 1801, 7, 29, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 3, 270, 135, 0, 1803, 1804, 5, 10, 0, 0, 1804, 1805, 3, 270, 135, 0, 1805, 1870, 1, 0, 0, 0, 1806, 1808, 5, 243, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 5, 171, 0, 0, 1810, 1811, 5, 520, 0, 0, 1811, 1816, 3, 262, 131, 0, 1812, 1813, 5, 524, 0, 0, 1813, 1815, 3, 262, 131, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1818, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1819, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1819, 1820, 5, 521, 0, 0, 1820, 1870, 1, 0, 0, 0, 1821, 1823, 5, 243, 0, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 5, 171, 0, 0, 1825, 1826, 5, 520, 0, 0, 1826, 1827, 3, 158, 79, 0, 1827, 1828, 5, 521, 0, 0, 1828, 1870, 1, 0, 0, 0, 1829, 1830, 5, 133, 0, 0, 1830, 1831, 5, 520, 0, 0, 1831, 1832, 3, 158, 79, 0, 1832, 1833, 5, 521, 0, 0, 1833, 1870, 1, 0, 0, 0, 1834, 1836, 5, 243, 0, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 5, 321, 0, 0, 1838, 1870, 3, 270, 135, 0, 1839, 1870, 3, 268, 134, 0, 1840, 1842, 5, 185, 0, 0, 1841, 1843, 5, 243, 0, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1870, 7, 28, 0, 0, 1845, 1847, 5, 185, 0, 0, 1846, 1848, 5, 243, 0, 0, 1847, 1846, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 5, 113, 0, 0, 1850, 1851, 5, 152, 0, 0, 1851, 1870, 3, 270, 135, 0, 1852, 1854, 5, 243, 0, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 5, 345, 0, 0, 1856, 1857, 5, 391, 0, 0, 1857, 1860, 3, 270, 135, 0, 1858, 1859, 5, 127, 0, 0, 1859, 1861, 3, 370, 185, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1870, 1, 0, 0, 0, 1862, 1863, 5, 185, 0, 0, 1863, 1867, 5, 187, 0, 0, 1864, 1868, 5, 417, 0, 0, 1865, 1868, 5, 13, 0, 0, 1866, 1868, 3, 316, 158, 0, 1867, 1864, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1796, 1, 0, 0, 0, 1869, 1807, 1, 0, 0, 0, 1869, 1822, 1, 0, 0, 0, 1869, 1829, 1, 0, 0, 0, 1869, 1835, 1, 0, 0, 0, 1869, 1839, 1, 0, 0, 0, 1869, 1840, 1, 0, 0, 0, 1869, 1845, 1, 0, 0, 0, 1869, 1853, 1, 0, 0, 0, 1869, 1862, 1, 0, 0, 0, 1870, 267, 1, 0, 0, 0, 1871, 1873, 5, 243, 0, 0, 1872, 1871, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1875, 5, 204, 0, 0, 1875, 1889, 7, 30, 0, 0, 1876, 1877, 5, 520, 0, 0, 1877, 1890, 5, 521, 0, 0, 1878, 1879, 5, 520, 0, 0, 1879, 1884, 3, 262, 131, 0, 1880, 1881, 5, 524, 0, 0, 1881, 1883, 3, 262, 131, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1887, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1887, 1888, 5, 521, 0, 0, 1888, 1890, 1, 0, 0, 0, 1889, 1876, 1, 0, 0, 0, 1889, 1878, 1, 0, 0, 0, 1890, 1901, 1, 0, 0, 0, 1891, 1893, 5, 243, 0, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 5, 204, 0, 0, 1895, 1898, 3, 270, 135, 0, 1896, 1897, 5, 127, 0, 0, 1897, 1899, 3, 370, 185, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1901, 1, 0, 0, 0, 1900, 1872, 1, 0, 0, 0, 1900, 1892, 1, 0, 0, 0, 1901, 269, 1, 0, 0, 0, 1902, 1903, 6, 135, -1, 0, 1903, 1907, 3, 274, 137, 0, 1904, 1905, 7, 31, 0, 0, 1905, 1907, 3, 270, 135, 7, 1906, 1902, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1929, 1, 0, 0, 0, 1908, 1909, 10, 6, 0, 0, 1909, 1910, 7, 32, 0, 0, 1910, 1928, 3, 270, 135, 7, 1911, 1912, 10, 5, 0, 0, 1912, 1913, 7, 33, 0, 0, 1913, 1928, 3, 270, 135, 6, 1914, 1915, 10, 4, 0, 0, 1915, 1916, 5, 515, 0, 0, 1916, 1928, 3, 270, 135, 5, 1917, 1918, 10, 3, 0, 0, 1918, 1919, 5, 516, 0, 0, 1919, 1928, 3, 270, 135, 4, 1920, 1921, 10, 2, 0, 0, 1921, 1922, 5, 514, 0, 0, 1922, 1928, 3, 270, 135, 3, 1923, 1924, 10, 1, 0, 0, 1924, 1925, 3, 358, 179, 0, 1925, 1926, 3, 270, 135, 2, 1926, 1928, 1, 0, 0, 0, 1927, 1908, 1, 0, 0, 0, 1927, 1911, 1, 0, 0, 0, 1927, 1914, 1, 0, 0, 0, 1927, 1917, 1, 0, 0, 0, 1927, 1920, 1, 0, 0, 0, 1927, 1923, 1, 0, 0, 0, 1928, 1931, 1, 0, 0, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 271, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1932, 1952, 3, 384, 192, 0, 1933, 1952, 3, 282, 141, 0, 1934, 1935, 3, 284, 142, 0, 1935, 1947, 5, 520, 0, 0, 1936, 1938, 3, 376, 188, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 286, 143, 0, 1940, 1941, 5, 524, 0, 0, 1941, 1943, 3, 286, 143, 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, 1948, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1937, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 5, 521, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1932, 1, 0, 0, 0, 1951, 1933, 1, 0, 0, 0, 1951, 1934, 1, 0, 0, 0, 1952, 273, 1, 0, 0, 0, 1953, 1954, 6, 137, -1, 0, 1954, 1956, 5, 40, 0, 0, 1955, 1957, 3, 322, 161, 0, 1956, 1955, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1961, 5, 120, 0, 0, 1961, 1963, 3, 262, 131, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 5, 122, 0, 0, 1965, 2037, 1, 0, 0, 0, 1966, 1967, 5, 40, 0, 0, 1967, 1969, 3, 262, 131, 0, 1968, 1970, 3, 322, 161, 0, 1969, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1975, 1, 0, 0, 0, 1973, 1974, 5, 120, 0, 0, 1974, 1976, 3, 262, 131, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 5, 122, 0, 0, 1978, 2037, 1, 0, 0, 0, 1979, 1980, 5, 41, 0, 0, 1980, 1981, 5, 520, 0, 0, 1981, 1982, 3, 262, 131, 0, 1982, 1983, 5, 17, 0, 0, 1983, 1984, 3, 58, 29, 0, 1984, 1985, 5, 521, 0, 0, 1985, 2037, 1, 0, 0, 0, 1986, 1987, 5, 461, 0, 0, 1987, 1988, 5, 520, 0, 0, 1988, 1991, 3, 262, 131, 0, 1989, 1990, 5, 465, 0, 0, 1990, 1992, 5, 480, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 5, 521, 0, 0, 1994, 2037, 1, 0, 0, 0, 1995, 1996, 5, 471, 0, 0, 1996, 1997, 5, 520, 0, 0, 1997, 2000, 3, 262, 131, 0, 1998, 1999, 5, 465, 0, 0, 1999, 2001, 5, 480, 0, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 5, 521, 0, 0, 2003, 2037, 1, 0, 0, 0, 2004, 2005, 5, 284, 0, 0, 2005, 2006, 5, 520, 0, 0, 2006, 2007, 3, 270, 135, 0, 2007, 2008, 5, 171, 0, 0, 2008, 2009, 3, 270, 135, 0, 2009, 2010, 5, 521, 0, 0, 2010, 2037, 1, 0, 0, 0, 2011, 2037, 3, 366, 183, 0, 2012, 2037, 5, 531, 0, 0, 2013, 2014, 3, 340, 170, 0, 2014, 2015, 5, 517, 0, 0, 2015, 2016, 5, 531, 0, 0, 2016, 2037, 1, 0, 0, 0, 2017, 2018, 5, 520, 0, 0, 2018, 2019, 3, 158, 79, 0, 2019, 2020, 5, 521, 0, 0, 2020, 2037, 1, 0, 0, 0, 2021, 2037, 3, 272, 136, 0, 2022, 2037, 3, 54, 27, 0, 2023, 2037, 3, 288, 144, 0, 2024, 2025, 5, 520, 0, 0, 2025, 2026, 3, 262, 131, 0, 2026, 2027, 5, 521, 0, 0, 2027, 2037, 1, 0, 0, 0, 2028, 2029, 5, 139, 0, 0, 2029, 2030, 5, 520, 0, 0, 2030, 2031, 3, 316, 158, 0, 2031, 2032, 5, 152, 0, 0, 2032, 2033, 3, 270, 135, 0, 2033, 2034, 5, 521, 0, 0, 2034, 2037, 1, 0, 0, 0, 2035, 2037, 3, 276, 138, 0, 2036, 1953, 1, 0, 0, 0, 2036, 1966, 1, 0, 0, 0, 2036, 1979, 1, 0, 0, 0, 2036, 1986, 1, 0, 0, 0, 2036, 1995, 1, 0, 0, 0, 2036, 2004, 1, 0, 0, 0, 2036, 2011, 1, 0, 0, 0, 2036, 2012, 1, 0, 0, 0, 2036, 2013, 1, 0, 0, 0, 2036, 2017, 1, 0, 0, 0, 2036, 2021, 1, 0, 0, 0, 2036, 2022, 1, 0, 0, 0, 2036, 2023, 1, 0, 0, 0, 2036, 2024, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2035, 1, 0, 0, 0, 2037, 2045, 1, 0, 0, 0, 2038, 2039, 10, 6, 0, 0, 2039, 2040, 5, 518, 0, 0, 2040, 2041, 3, 270, 135, 0, 2041, 2042, 5, 519, 0, 0, 2042, 2044, 1, 0, 0, 0, 2043, 2038, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 275, 1, 0, 0, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2049, 5, 195, 0, 0, 2049, 2050, 5, 520, 0, 0, 2050, 2051, 3, 262, 131, 0, 2051, 2052, 5, 524, 0, 0, 2052, 2055, 3, 370, 185, 0, 2053, 2054, 5, 281, 0, 0, 2054, 2056, 3, 58, 29, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 5, 521, 0, 0, 2058, 277, 1, 0, 0, 0, 2059, 2060, 3, 340, 170, 0, 2060, 279, 1, 0, 0, 0, 2061, 2066, 3, 388, 194, 0, 2062, 2066, 3, 384, 192, 0, 2063, 2066, 3, 386, 193, 0, 2064, 2066, 3, 340, 170, 0, 2065, 2061, 1, 0, 0, 0, 2065, 2062, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2064, 1, 0, 0, 0, 2066, 281, 1, 0, 0, 0, 2067, 2068, 3, 386, 193, 0, 2068, 2069, 5, 541, 0, 0, 2069, 2072, 1, 0, 0, 0, 2070, 2072, 3, 294, 147, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 283, 1, 0, 0, 0, 2073, 2076, 3, 388, 194, 0, 2074, 2076, 3, 340, 170, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2074, 1, 0, 0, 0, 2076, 285, 1, 0, 0, 0, 2077, 2082, 3, 382, 191, 0, 2078, 2082, 3, 380, 190, 0, 2079, 2082, 3, 378, 189, 0, 2080, 2082, 3, 262, 131, 0, 2081, 2077, 1, 0, 0, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2081, 2080, 1, 0, 0, 0, 2082, 287, 1, 0, 0, 0, 2083, 2084, 3, 340, 170, 0, 2084, 289, 1, 0, 0, 0, 2085, 2086, 3, 316, 158, 0, 2086, 291, 1, 0, 0, 0, 2087, 2090, 3, 316, 158, 0, 2088, 2090, 3, 288, 144, 0, 2089, 2087, 1, 0, 0, 0, 2089, 2088, 1, 0, 0, 0, 2090, 293, 1, 0, 0, 0, 2091, 2094, 5, 183, 0, 0, 2092, 2095, 3, 296, 148, 0, 2093, 2095, 3, 300, 150, 0, 2094, 2092, 1, 0, 0, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 295, 1, 0, 0, 0, 2096, 2098, 3, 298, 149, 0, 2097, 2099, 3, 302, 151, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 297, 1, 0, 0, 0, 2100, 2101, 3, 304, 152, 0, 2101, 2102, 3, 380, 190, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2100, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 299, 1, 0, 0, 0, 2107, 2110, 3, 302, 151, 0, 2108, 2111, 3, 298, 149, 0, 2109, 2111, 3, 302, 151, 0, 2110, 2108, 1, 0, 0, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 301, 1, 0, 0, 0, 2112, 2113, 3, 304, 152, 0, 2113, 2114, 3, 380, 190, 0, 2114, 2115, 5, 391, 0, 0, 2115, 2116, 3, 380, 190, 0, 2116, 303, 1, 0, 0, 0, 2117, 2119, 7, 34, 0, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2123, 7, 35, 0, 0, 2121, 2123, 5, 541, 0, 0, 2122, 2118, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 305, 1, 0, 0, 0, 2124, 2126, 5, 17, 0, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 3, 316, 158, 0, 2128, 2130, 3, 312, 156, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 307, 1, 0, 0, 0, 2131, 2132, 3, 316, 158, 0, 2132, 2133, 3, 310, 155, 0, 2133, 309, 1, 0, 0, 0, 2134, 2135, 5, 223, 0, 0, 2135, 2137, 3, 316, 158, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2136, 1, 0, 0, 0, 2141, 2140, 1, 0, 0, 0, 2142, 311, 1, 0, 0, 0, 2143, 2144, 5, 520, 0, 0, 2144, 2145, 3, 314, 157, 0, 2145, 2146, 5, 521, 0, 0, 2146, 313, 1, 0, 0, 0, 2147, 2152, 3, 316, 158, 0, 2148, 2149, 5, 524, 0, 0, 2149, 2151, 3, 316, 158, 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, 315, 1, 0, 0, 0, 2154, 2152, 1, 0, 0, 0, 2155, 2159, 3, 318, 159, 0, 2156, 2159, 3, 320, 160, 0, 2157, 2159, 3, 390, 195, 0, 2158, 2155, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 317, 1, 0, 0, 0, 2160, 2161, 7, 36, 0, 0, 2161, 319, 1, 0, 0, 0, 2162, 2163, 5, 541, 0, 0, 2163, 321, 1, 0, 0, 0, 2164, 2165, 5, 432, 0, 0, 2165, 2166, 3, 262, 131, 0, 2166, 2167, 5, 379, 0, 0, 2167, 2168, 3, 262, 131, 0, 2168, 323, 1, 0, 0, 0, 2169, 2170, 3, 316, 158, 0, 2170, 325, 1, 0, 0, 0, 2171, 2172, 3, 316, 158, 0, 2172, 327, 1, 0, 0, 0, 2173, 2176, 3, 316, 158, 0, 2174, 2175, 5, 517, 0, 0, 2175, 2177, 3, 316, 158, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 329, 1, 0, 0, 0, 2178, 2181, 3, 316, 158, 0, 2179, 2180, 5, 517, 0, 0, 2180, 2182, 3, 316, 158, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 331, 1, 0, 0, 0, 2183, 2186, 3, 316, 158, 0, 2184, 2185, 5, 517, 0, 0, 2185, 2187, 3, 316, 158, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2196, 1, 0, 0, 0, 2188, 2189, 3, 316, 158, 0, 2189, 2190, 5, 517, 0, 0, 2190, 2193, 3, 316, 158, 0, 2191, 2192, 5, 517, 0, 0, 2192, 2194, 3, 316, 158, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2183, 1, 0, 0, 0, 2195, 2188, 1, 0, 0, 0, 2196, 333, 1, 0, 0, 0, 2197, 2200, 3, 316, 158, 0, 2198, 2199, 5, 517, 0, 0, 2199, 2201, 3, 316, 158, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2210, 1, 0, 0, 0, 2202, 2203, 3, 316, 158, 0, 2203, 2204, 5, 517, 0, 0, 2204, 2207, 3, 316, 158, 0, 2205, 2206, 5, 517, 0, 0, 2206, 2208, 3, 316, 158, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2197, 1, 0, 0, 0, 2209, 2202, 1, 0, 0, 0, 2210, 335, 1, 0, 0, 0, 2211, 2214, 3, 316, 158, 0, 2212, 2213, 5, 517, 0, 0, 2213, 2215, 3, 316, 158, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2224, 1, 0, 0, 0, 2216, 2217, 3, 316, 158, 0, 2217, 2218, 5, 517, 0, 0, 2218, 2221, 3, 316, 158, 0, 2219, 2220, 5, 517, 0, 0, 2220, 2222, 3, 316, 158, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2224, 1, 0, 0, 0, 2223, 2211, 1, 0, 0, 0, 2223, 2216, 1, 0, 0, 0, 2224, 337, 1, 0, 0, 0, 2225, 2228, 3, 316, 158, 0, 2226, 2227, 5, 517, 0, 0, 2227, 2229, 3, 316, 158, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2238, 1, 0, 0, 0, 2230, 2231, 3, 316, 158, 0, 2231, 2232, 5, 517, 0, 0, 2232, 2235, 3, 316, 158, 0, 2233, 2234, 5, 517, 0, 0, 2234, 2236, 3, 316, 158, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2238, 1, 0, 0, 0, 2237, 2225, 1, 0, 0, 0, 2237, 2230, 1, 0, 0, 0, 2238, 339, 1, 0, 0, 0, 2239, 2244, 3, 316, 158, 0, 2240, 2241, 5, 517, 0, 0, 2241, 2243, 3, 316, 158, 0, 2242, 2240, 1, 0, 0, 0, 2243, 2246, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2245, 341, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2248, 5, 437, 0, 0, 2248, 2249, 3, 348, 174, 0, 2249, 343, 1, 0, 0, 0, 2250, 2251, 5, 168, 0, 0, 2251, 2252, 5, 243, 0, 0, 2252, 2253, 5, 133, 0, 0, 2253, 345, 1, 0, 0, 0, 2254, 2255, 5, 168, 0, 0, 2255, 2256, 5, 133, 0, 0, 2256, 347, 1, 0, 0, 0, 2257, 2258, 5, 520, 0, 0, 2258, 2263, 3, 350, 175, 0, 2259, 2260, 5, 524, 0, 0, 2260, 2262, 3, 350, 175, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2266, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 5, 521, 0, 0, 2267, 349, 1, 0, 0, 0, 2268, 2273, 3, 352, 176, 0, 2269, 2271, 5, 509, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2274, 3, 354, 177, 0, 2273, 2270, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 351, 1, 0, 0, 0, 2275, 2279, 3, 316, 158, 0, 2276, 2279, 3, 288, 144, 0, 2277, 2279, 5, 541, 0, 0, 2278, 2275, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2277, 1, 0, 0, 0, 2279, 353, 1, 0, 0, 0, 2280, 2285, 5, 542, 0, 0, 2281, 2285, 5, 543, 0, 0, 2282, 2285, 3, 374, 187, 0, 2283, 2285, 5, 541, 0, 0, 2284, 2280, 1, 0, 0, 0, 2284, 2281, 1, 0, 0, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 355, 1, 0, 0, 0, 2286, 2293, 5, 10, 0, 0, 2287, 2288, 5, 515, 0, 0, 2288, 2293, 5, 515, 0, 0, 2289, 2293, 5, 259, 0, 0, 2290, 2291, 5, 514, 0, 0, 2291, 2293, 5, 514, 0, 0, 2292, 2286, 1, 0, 0, 0, 2292, 2287, 1, 0, 0, 0, 2292, 2289, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2293, 357, 1, 0, 0, 0, 2294, 2309, 5, 509, 0, 0, 2295, 2309, 5, 510, 0, 0, 2296, 2309, 5, 511, 0, 0, 2297, 2298, 5, 511, 0, 0, 2298, 2309, 5, 509, 0, 0, 2299, 2300, 5, 510, 0, 0, 2300, 2309, 5, 509, 0, 0, 2301, 2302, 5, 511, 0, 0, 2302, 2309, 5, 510, 0, 0, 2303, 2304, 5, 512, 0, 0, 2304, 2309, 5, 509, 0, 0, 2305, 2306, 5, 511, 0, 0, 2306, 2307, 5, 509, 0, 0, 2307, 2309, 5, 510, 0, 0, 2308, 2294, 1, 0, 0, 0, 2308, 2295, 1, 0, 0, 0, 2308, 2296, 1, 0, 0, 0, 2308, 2297, 1, 0, 0, 0, 2308, 2299, 1, 0, 0, 0, 2308, 2301, 1, 0, 0, 0, 2308, 2303, 1, 0, 0, 0, 2308, 2305, 1, 0, 0, 0, 2309, 359, 1, 0, 0, 0, 2310, 2311, 5, 511, 0, 0, 2311, 2318, 5, 511, 0, 0, 2312, 2313, 5, 510, 0, 0, 2313, 2318, 5, 510, 0, 0, 2314, 2318, 5, 515, 0, 0, 2315, 2318, 5, 516, 0, 0, 2316, 2318, 5, 514, 0, 0, 2317, 2310, 1, 0, 0, 0, 2317, 2312, 1, 0, 0, 0, 2317, 2314, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2316, 1, 0, 0, 0, 2318, 361, 1, 0, 0, 0, 2319, 2320, 7, 37, 0, 0, 2320, 363, 1, 0, 0, 0, 2321, 2322, 7, 38, 0, 0, 2322, 365, 1, 0, 0, 0, 2323, 2338, 3, 294, 147, 0, 2324, 2338, 3, 368, 184, 0, 2325, 2338, 3, 370, 185, 0, 2326, 2328, 5, 533, 0, 0, 2327, 2326, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2338, 3, 372, 186, 0, 2330, 2338, 3, 374, 187, 0, 2331, 2338, 5, 543, 0, 0, 2332, 2338, 5, 544, 0, 0, 2333, 2335, 5, 243, 0, 0, 2334, 2333, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2338, 5, 246, 0, 0, 2337, 2323, 1, 0, 0, 0, 2337, 2324, 1, 0, 0, 0, 2337, 2325, 1, 0, 0, 0, 2337, 2327, 1, 0, 0, 0, 2337, 2330, 1, 0, 0, 0, 2337, 2331, 1, 0, 0, 0, 2337, 2332, 1, 0, 0, 0, 2337, 2334, 1, 0, 0, 0, 2338, 367, 1, 0, 0, 0, 2339, 2340, 3, 378, 189, 0, 2340, 2341, 3, 370, 185, 0, 2341, 369, 1, 0, 0, 0, 2342, 2343, 5, 541, 0, 0, 2343, 371, 1, 0, 0, 0, 2344, 2345, 5, 542, 0, 0, 2345, 373, 1, 0, 0, 0, 2346, 2347, 7, 39, 0, 0, 2347, 375, 1, 0, 0, 0, 2348, 2349, 7, 40, 0, 0, 2349, 377, 1, 0, 0, 0, 2350, 2351, 7, 41, 0, 0, 2351, 379, 1, 0, 0, 0, 2352, 2353, 7, 42, 0, 0, 2353, 381, 1, 0, 0, 0, 2354, 2355, 7, 43, 0, 0, 2355, 383, 1, 0, 0, 0, 2356, 2357, 7, 44, 0, 0, 2357, 385, 1, 0, 0, 0, 2358, 2359, 7, 45, 0, 0, 2359, 387, 1, 0, 0, 0, 2360, 2361, 7, 46, 0, 0, 2361, 389, 1, 0, 0, 0, 2362, 2363, 7, 47, 0, 0, 2363, 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, 699, 707, 711, 715, 719, 723, 727, 731, 735, 739, 741, 751, 759, 783, 797, 802, 806, 812, 815, 818, 825, 828, 837, 849, 873, 885, 890, 894, 902, 906, 912, 922, 927, 933, 937, 941, 945, 954, 958, 965, 968, 978, 986, 994, 998, 1013, 1032, 1043, 1047, 1054, 1059, 1065, 1069, 1076, 1080, 1084, 1088, 1096, 1100, 1105, 1111, 1117, 1120, 1124, 1135, 1144, 1158, 1170, 1185, 1188, 1192, 1195, 1197, 1202, 1206, 1209, 1213, 1222, 1231, 1241, 1246, 1257, 1260, 1263, 1266, 1269, 1275, 1279, 1287, 1290, 1295, 1298, 1302, 1305, 1307, 1314, 1321, 1323, 1334, 1339, 1347, 1350, 1353, 1358, 1360, 1362, 1367, 1370, 1374, 1378, 1387, 1398, 1425, 1447, 1460, 1472, 1485, 1497, 1509, 1515, 1542, 1550, 1554, 1557, 1560, 1567, 1570, 1573, 1576, 1579, 1582, 1587, 1590, 1599, 1604, 1607, 1611, 1616, 1622, 1627, 1631, 1650, 1658, 1666, 1670, 1674, 1684, 1710, 1718, 1736, 1749, 1757, 1774, 1776, 1787, 1790, 1792, 1796, 1800, 1807, 1816, 1822, 1835, 1842, 1847, 1853, 1860, 1867, 1869, 1872, 1884, 1889, 1892, 1898, 1900, 1906, 1927, 1929, 1937, 1944, 1947, 1951, 1958, 1962, 1971, 1975, 1991, 2000, 2036, 2045, 2055, 2065, 2071, 2075, 2081, 2089, 2094, 2098, 2105, 2110, 2118, 2122, 2125, 2129, 2138, 2141, 2152, 2158, 2176, 2181, 2186, 2193, 2195, 2200, 2207, 2209, 2214, 2221, 2223, 2228, 2235, 2237, 2244, 2263, 2270, 2273, 2278, 2284, 2292, 2308, 2317, 2327, 2334, 2337] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.tokens b/src/lib/flink/FlinkSqlParser.tokens index 48749ead..68212f4e 100644 --- a/src/lib/flink/FlinkSqlParser.tokens +++ b/src/lib/flink/FlinkSqlParser.tokens @@ -143,403 +143,406 @@ KW_FILTER=142 KW_FIRST_VALUE=143 KW_FLOAT=144 KW_FLOOR=145 -KW_FOR=146 -KW_FOREIGN=147 -KW_FRAME_ROW=148 -KW_FREE=149 -KW_FRIDAY=150 -KW_FROM=151 -KW_FULL=152 -KW_FUNCTION=153 -KW_FUNCTIONS=154 -KW_FUSION=155 -KW_GET=156 -KW_GLOBAL=157 -KW_GRANT=158 -KW_GROUP=159 -KW_GROUPING=160 -KW_GROUPS=161 -KW_GROUP_CONCAT=162 -KW_HAVING=163 -KW_HOLD=164 -KW_HOUR=165 -KW_IDENTITY=166 -KW_IF=167 -KW_ILIKE=168 -KW_IMPORT=169 -KW_IN=170 -KW_INCLUDE=171 -KW_INDICATOR=172 -KW_INITIAL=173 -KW_INNER=174 -KW_INOUT=175 -KW_INSENSITIVE=176 -KW_INSERT=177 -KW_INT=178 -KW_INTEGER=179 -KW_INTERSECT=180 -KW_INTERSECTION=181 -KW_INTERVAL=182 -KW_INTO=183 -KW_IS=184 -KW_JOIN=185 -KW_JSON=186 -KW_JSON_ARRAY=187 -KW_JSON_ARRAYAGG=188 -KW_JSON_EXECUTION_PLAN=189 -KW_JSON_EXISTS=190 -KW_JSON_OBJECT=191 -KW_JSON_OBJECTAGG=192 -KW_JSON_QUERY=193 -KW_JSON_VALUE=194 -KW_LAG=195 -KW_LANGUAGE=196 -KW_LARGE=197 -KW_LAST_VALUE=198 -KW_LATERAL=199 -KW_LEAD=200 -KW_LEADING=201 -KW_LEFT=202 -KW_LIKE=203 -KW_LIKE_REGEX=204 -KW_LIMIT=205 -KW_LN=206 -KW_LOCAL=207 -KW_LOCALTIME=208 -KW_LOCALTIMESTAMP=209 -KW_LOWER=210 -KW_MATCH=211 -KW_MATCHES=212 -KW_MATCH_NUMBER=213 -KW_MATCH_RECOGNIZE=214 -KW_MAX=215 -KW_MEASURES=216 -KW_MEMBER=217 -KW_MERGE=218 -KW_METADATA=219 -KW_METHOD=220 -KW_MIN=221 -KW_MINUS=222 -KW_MINUTE=223 -KW_MOD=224 -KW_MODIFIES=225 -KW_MODIFY=226 -KW_MODULE=227 -KW_MODULES=228 -KW_MONDAY=229 -KW_MONTH=230 -KW_MORE=231 -KW_MULTISET=232 -KW_NATIONAL=233 -KW_NATURAL=234 -KW_NCHAR=235 -KW_NCLOB=236 -KW_NEW=237 -KW_NEXT=238 -KW_NO=239 -KW_NONE=240 -KW_NORMALIZE=241 -KW_NOT=242 -KW_NTH_VALUE=243 -KW_NTILE=244 -KW_NULL=245 -KW_NULLIF=246 -KW_NUMERIC=247 -KW_OCCURRENCES_REGEX=248 -KW_OCTET_LENGTH=249 -KW_OF=250 -KW_OFFSET=251 -KW_OLD=252 -KW_OMIT=253 -KW_ON=254 -KW_ONE=255 -KW_ONLY=256 -KW_OPEN=257 -KW_OR=258 -KW_ORDER=259 -KW_ORDINAL=260 -KW_OUT=261 -KW_OUTER=262 -KW_OVER=263 -KW_OVERLAPS=264 -KW_OVERLAY=265 -KW_OVERWRITE=266 -KW_OVERWRITING=267 -KW_PARAMETER=268 -KW_PARTITION=269 -KW_PARTITIONED=270 -KW_PARTITIONS=271 -KW_PATTERN=272 -KW_PER=273 -KW_PERCENT=274 -KW_PERCENTILE_CONT=275 -KW_PERCENTILE_DISC=276 -KW_PERCENT_RANK=277 -KW_PERIOD=278 -KW_PERMUTE=279 -KW_PIVOT=280 -KW_PORTION=281 -KW_POSITION=282 -KW_POSITION_REGEX=283 -KW_POWER=284 -KW_PRECEDES=285 -KW_PRECISION=286 -KW_PREPARE=287 -KW_PREV=288 -KW_PRIMARY=289 -KW_PROCEDURE=290 -KW_QUALIFY=291 -KW_QUARTERS=292 -KW_RANGE=293 -KW_RANK=294 -KW_RAW=295 -KW_READS=296 -KW_REAL=297 -KW_RECURSIVE=298 -KW_REF=299 -KW_REFERENCES=300 -KW_REFERENCING=301 -KW_REGR_AVGX=302 -KW_REGR_AVGY=303 -KW_REGR_COUNT=304 -KW_REGR_INTERCEPT=305 -KW_REGR_R2=306 -KW_REGR_SLOPE=307 -KW_REGR_SXX=308 -KW_REGR_SXY=309 -KW_REGR_SYY=310 -KW_RELEASE=311 -KW_RENAME=312 -KW_RESET=313 -KW_RESULT=314 -KW_RETURN=315 -KW_RETURNS=316 -KW_REVOKE=317 -KW_RIGHT=318 -KW_RLIKE=319 -KW_ROLLBACK=320 -KW_ROLLUP=321 -KW_ROW=322 -KW_ROWS=323 -KW_ROW_NUMBER=324 -KW_RUNNING=325 -KW_SAFE_CAST=326 -KW_SAFE_OFFSET=327 -KW_SAFE_ORDINAL=328 -KW_SATURDAY=329 -KW_SAVEPOINT=330 -KW_SCALA=331 -KW_SCOPE=332 -KW_SCROLL=333 -KW_SEARCH=334 -KW_SECOND=335 -KW_SEEK=336 -KW_SELECT=337 -KW_SENSITIVE=338 -KW_SEPARATOR=339 -KW_SESSION_USER=340 -KW_SET=341 -KW_SHOW=342 -KW_SIMILAR=343 -KW_SKIP=344 -KW_SMALLINT=345 -KW_SOME=346 -KW_SPECIFIC=347 -KW_SPECIFICTYPE=348 -KW_SQL=349 -KW_SQLEXCEPTION=350 -KW_SQLSTATE=351 -KW_SQLWARNING=352 -KW_SQRT=353 -KW_START=354 -KW_STATEMENT=355 -KW_STATIC=356 -KW_STATISTICS=357 -KW_STDDEV_POP=358 -KW_STDDEV_SAMP=359 -KW_STREAM=360 -KW_STRING=361 -KW_STRING_AGG=362 -KW_SUBMULTISET=363 -KW_SUBSET=364 -KW_SUBSTRING=365 -KW_SUBSTRING_REGEX=366 -KW_SUCCEEDS=367 -KW_SUM=368 -KW_SUNDAY=369 -KW_SYMMETRIC=370 -KW_SYSTEM=371 -KW_SYSTEM_TIME=372 -KW_SYSTEM_USER=373 -KW_TABLE=374 -KW_TABLES=375 -KW_TABLESAMPLE=376 -KW_THEN=377 -KW_THURSDAY=378 -KW_TIME=379 -KW_TIMESTAMP=380 -KW_TIMESTAMP_DIFF=381 -KW_TIMESTAMP_LTZ=382 -KW_TIMESTAMP_TRUNC=383 -KW_TIMEZONE_HOUR=384 -KW_TIMEZONE_MINUTE=385 -KW_TIME_DIFF=386 -KW_TIME_TRUNC=387 -KW_TINYINT=388 -KW_TO=389 -KW_TRAILING=390 -KW_TRANSLATE=391 -KW_TRANSLATE_REGEX=392 -KW_TRANSLATION=393 -KW_TREAT=394 -KW_TRIGGER=395 -KW_TRIM=396 -KW_TRIM_ARRAY=397 -KW_TRUE=398 -KW_TRUNCATE=399 -KW_TRY_CAST=400 -KW_TUESDAY=401 -KW_UESCAPE=402 -KW_UNION=403 -KW_UNIQUE=404 -KW_UNKNOWN=405 -KW_UNNEST=406 -KW_UNPIVOT=407 -KW_UPDATE=408 -KW_UPPER=409 -KW_UPSERT=410 -KW_USE=411 -KW_USER=412 -KW_USING=413 -KW_VALUE=414 -KW_VALUES=415 -KW_VALUE_OF=416 -KW_VARBINARY=417 -KW_VARCHAR=418 -KW_VARYING=419 -KW_VAR_POP=420 -KW_VAR_SAMP=421 -KW_VERSIONING=422 -KW_VIEWS=423 -KW_VIRTUAL=424 -KW_WATERMARK=425 -KW_WATERMARKS=426 -KW_WEDNESDAY=427 -KW_WEEKS=428 -KW_WHEN=429 -KW_WHENEVER=430 -KW_WHERE=431 -KW_WIDTH_BUCKET=432 -KW_WINDOW=433 -KW_WITH=434 -KW_WITHIN=435 -KW_WITHOUT=436 -KW_YEAR=437 -KW_ADD=438 -KW_AFTER=439 -KW_ASC=440 -KW_CASCADE=441 -KW_CATALOG=442 -KW_CENTURY=443 -KW_CONFIG=444 -KW_CONSTRAINTS=445 -KW_CUMULATE=446 -KW_DATA=447 -KW_DATABASE=448 -KW_DAYS=449 -KW_DECADE=450 -KW_DESC=451 -KW_DESCRIPTOR=452 -KW_DIV=453 -KW_ENGINE=454 -KW_EPOCH=455 -KW_EXCLUDING=456 -KW_FILE=457 -KW_FIRST=458 -KW_GENERATED=459 -KW_HOP=460 -KW_HOURS=461 -KW_IGNORE=462 -KW_INCLUDING=463 -KW_JAR=464 -KW_JARS=465 -KW_JAVA=466 -KW_KEY=467 -KW_LAST=468 -KW_LOAD=469 -KW_MAP=470 -KW_MICROSECOND=471 -KW_MILLENNIUM=472 -KW_MILLISECOND=473 -KW_MINUTES=474 -KW_MONTHS=475 -KW_NANOSECOND=476 -KW_NULLS=477 -KW_OPTIONS=478 -KW_PAST=479 -KW_PLAN=480 -KW_PRECEDING=481 -KW_PYTHON=482 -KW_PYTHON_ARCHIVES=483 -KW_PYTHON_DEPENDENCIES=484 -KW_PYTHON_FILES=485 -KW_PYTHON_JAR=486 -KW_PYTHON_PARAMETER=487 -KW_PYTHON_REQUIREMENTS=488 -KW_QUARTER=489 -KW_REMOVE=490 -KW_RESTRICT=491 -KW_SECONDS=492 -KW_SESSION=493 -KW_SETS=494 -KW_SIZE=495 -KW_SLIDE=496 -KW_STEP=497 -KW_TEMPORARY=498 -KW_TIMECOL=499 -KW_TUMBLE=500 -KW_UNLOAD=501 -KW_VIEW=502 -KW_WEEK=503 -KW_YEARS=504 -KW_ZONE=505 -EQUAL_SYMBOL=506 -GREATER_SYMBOL=507 -LESS_SYMBOL=508 -EXCLAMATION_SYMBOL=509 -BIT_NOT_OP=510 -BIT_OR_OP=511 -BIT_AND_OP=512 -BIT_XOR_OP=513 -DOT=514 -LS_BRACKET=515 -RS_BRACKET=516 -LR_BRACKET=517 -RR_BRACKET=518 -LB_BRACKET=519 -RB_BRACKET=520 -COMMA=521 -SEMICOLON=522 -AT_SIGN=523 -SINGLE_QUOTE_SYMB=524 -DOUBLE_QUOTE_SYMB=525 -REVERSE_QUOTE_SYMB=526 -COLON_SYMB=527 -ASTERISK_SIGN=528 -UNDERLINE_SIGN=529 -HYPHEN_SIGN=530 -ADD_SIGN=531 -PERCENT_SIGN=532 -DOUBLE_VERTICAL_SIGN=533 -DOUBLE_HYPHEN_SIGN=534 -SLASH_SIGN=535 -QUESTION_MARK_SIGN=536 -DOUBLE_RIGHT_ARROW=537 -STRING_LITERAL=538 -DIG_LITERAL=539 -REAL_LITERAL=540 -BIT_STRING=541 -ID_LITERAL=542 +KW_FOLLOWING=146 +KW_FOR=147 +KW_FOREIGN=148 +KW_FRAME_ROW=149 +KW_FREE=150 +KW_FRIDAY=151 +KW_FROM=152 +KW_FULL=153 +KW_FUNCTION=154 +KW_FUNCTIONS=155 +KW_FUSION=156 +KW_GET=157 +KW_GLOBAL=158 +KW_GRANT=159 +KW_GROUP=160 +KW_GROUPING=161 +KW_GROUPS=162 +KW_GROUP_CONCAT=163 +KW_HAVING=164 +KW_HOLD=165 +KW_HOUR=166 +KW_IDENTITY=167 +KW_IF=168 +KW_ILIKE=169 +KW_IMPORT=170 +KW_IN=171 +KW_INCLUDE=172 +KW_INDICATOR=173 +KW_INITIAL=174 +KW_INNER=175 +KW_INOUT=176 +KW_INSENSITIVE=177 +KW_INSERT=178 +KW_INT=179 +KW_INTEGER=180 +KW_INTERSECT=181 +KW_INTERSECTION=182 +KW_INTERVAL=183 +KW_INTO=184 +KW_IS=185 +KW_JOIN=186 +KW_JSON=187 +KW_JSON_ARRAY=188 +KW_JSON_ARRAYAGG=189 +KW_JSON_EXECUTION_PLAN=190 +KW_JSON_EXISTS=191 +KW_JSON_OBJECT=192 +KW_JSON_OBJECTAGG=193 +KW_JSON_QUERY=194 +KW_JSON_VALUE=195 +KW_LAG=196 +KW_LANGUAGE=197 +KW_LARGE=198 +KW_LAST_VALUE=199 +KW_LATERAL=200 +KW_LEAD=201 +KW_LEADING=202 +KW_LEFT=203 +KW_LIKE=204 +KW_LIKE_REGEX=205 +KW_LIMIT=206 +KW_LN=207 +KW_LOCAL=208 +KW_LOCALTIME=209 +KW_LOCALTIMESTAMP=210 +KW_LOWER=211 +KW_MATCH=212 +KW_MATCHES=213 +KW_MATCH_NUMBER=214 +KW_MATCH_RECOGNIZE=215 +KW_MAX=216 +KW_MEASURES=217 +KW_MEMBER=218 +KW_MERGE=219 +KW_METADATA=220 +KW_METHOD=221 +KW_MIN=222 +KW_MINUS=223 +KW_MINUTE=224 +KW_MOD=225 +KW_MODIFIES=226 +KW_MODIFY=227 +KW_MODULE=228 +KW_MODULES=229 +KW_MONDAY=230 +KW_MONTH=231 +KW_MORE=232 +KW_MULTISET=233 +KW_NATIONAL=234 +KW_NATURAL=235 +KW_NCHAR=236 +KW_NCLOB=237 +KW_NEW=238 +KW_NEXT=239 +KW_NO=240 +KW_NONE=241 +KW_NORMALIZE=242 +KW_NOT=243 +KW_NTH_VALUE=244 +KW_NTILE=245 +KW_NULL=246 +KW_NULLIF=247 +KW_NUMERIC=248 +KW_OCCURRENCES_REGEX=249 +KW_OCTET_LENGTH=250 +KW_OF=251 +KW_OFFSET=252 +KW_OLD=253 +KW_OMIT=254 +KW_ON=255 +KW_ONE=256 +KW_ONLY=257 +KW_OPEN=258 +KW_OR=259 +KW_ORDER=260 +KW_ORDINAL=261 +KW_OUT=262 +KW_OUTER=263 +KW_OVER=264 +KW_OVERLAPS=265 +KW_OVERLAY=266 +KW_OVERWRITE=267 +KW_OVERWRITING=268 +KW_PARAMETER=269 +KW_PARTITION=270 +KW_PARTITIONED=271 +KW_PARTITIONS=272 +KW_PATTERN=273 +KW_PER=274 +KW_PERCENT=275 +KW_PERCENTILE_CONT=276 +KW_PERCENTILE_DISC=277 +KW_PERCENT_RANK=278 +KW_PERIOD=279 +KW_PERMUTE=280 +KW_RETURNING=281 +KW_PIVOT=282 +KW_PORTION=283 +KW_POSITION=284 +KW_POSITION_REGEX=285 +KW_POWER=286 +KW_PRECEDES=287 +KW_PRECISION=288 +KW_PREPARE=289 +KW_PREV=290 +KW_PRIMARY=291 +KW_PROCEDURE=292 +KW_QUALIFY=293 +KW_QUARTERS=294 +KW_RANGE=295 +KW_RANK=296 +KW_RAW=297 +KW_READS=298 +KW_REAL=299 +KW_RECURSIVE=300 +KW_REF=301 +KW_REFERENCES=302 +KW_REFERENCING=303 +KW_REGR_AVGX=304 +KW_REGR_AVGY=305 +KW_REGR_COUNT=306 +KW_REGR_INTERCEPT=307 +KW_REGR_R2=308 +KW_REGR_SLOPE=309 +KW_REGR_SXX=310 +KW_REGR_SXY=311 +KW_REGR_SYY=312 +KW_RELEASE=313 +KW_RENAME=314 +KW_RESET=315 +KW_RESULT=316 +KW_RETURN=317 +KW_RETURNS=318 +KW_REVOKE=319 +KW_RIGHT=320 +KW_RLIKE=321 +KW_ROLLBACK=322 +KW_ROLLUP=323 +KW_ROW=324 +KW_ROWS=325 +KW_ROW_NUMBER=326 +KW_RUNNING=327 +KW_SAFE_CAST=328 +KW_SAFE_OFFSET=329 +KW_SAFE_ORDINAL=330 +KW_SATURDAY=331 +KW_SAVEPOINT=332 +KW_SCALA=333 +KW_SCOPE=334 +KW_SCROLL=335 +KW_SEARCH=336 +KW_SECOND=337 +KW_SEEK=338 +KW_SELECT=339 +KW_SENSITIVE=340 +KW_SEPARATOR=341 +KW_SESSION_USER=342 +KW_SET=343 +KW_SHOW=344 +KW_SIMILAR=345 +KW_SKIP=346 +KW_SMALLINT=347 +KW_SOME=348 +KW_SPECIFIC=349 +KW_SPECIFICTYPE=350 +KW_SQL=351 +KW_SQLEXCEPTION=352 +KW_SQLSTATE=353 +KW_SQLWARNING=354 +KW_SQRT=355 +KW_START=356 +KW_STATEMENT=357 +KW_STATIC=358 +KW_STATISTICS=359 +KW_STDDEV_POP=360 +KW_STDDEV_SAMP=361 +KW_STREAM=362 +KW_STRING=363 +KW_STRING_AGG=364 +KW_SUBMULTISET=365 +KW_SUBSET=366 +KW_SUBSTRING=367 +KW_SUBSTRING_REGEX=368 +KW_SUCCEEDS=369 +KW_SUM=370 +KW_SUNDAY=371 +KW_SYMMETRIC=372 +KW_SYSTEM=373 +KW_SYSTEM_TIME=374 +KW_SYSTEM_USER=375 +KW_TABLE=376 +KW_TABLES=377 +KW_TABLESAMPLE=378 +KW_THEN=379 +KW_THURSDAY=380 +KW_TIME=381 +KW_TIMESTAMP=382 +KW_TIMESTAMP_DIFF=383 +KW_TIMESTAMP_LTZ=384 +KW_TIMESTAMP_TRUNC=385 +KW_TIMEZONE_HOUR=386 +KW_TIMEZONE_MINUTE=387 +KW_TIME_DIFF=388 +KW_TIME_TRUNC=389 +KW_TINYINT=390 +KW_TO=391 +KW_TRAILING=392 +KW_TRANSLATE=393 +KW_TRANSLATE_REGEX=394 +KW_TRANSLATION=395 +KW_TREAT=396 +KW_TRIGGER=397 +KW_TRIM=398 +KW_TRIM_ARRAY=399 +KW_TRUE=400 +KW_TRUNCATE=401 +KW_TRY_CAST=402 +KW_TUESDAY=403 +KW_UESCAPE=404 +KW_UNBOUNDED=405 +KW_UNION=406 +KW_UNIQUE=407 +KW_UNKNOWN=408 +KW_UNNEST=409 +KW_UNPIVOT=410 +KW_UPDATE=411 +KW_UPPER=412 +KW_UPSERT=413 +KW_USE=414 +KW_USER=415 +KW_USING=416 +KW_VALUE=417 +KW_VALUES=418 +KW_VALUE_OF=419 +KW_VARBINARY=420 +KW_VARCHAR=421 +KW_VARYING=422 +KW_VAR_POP=423 +KW_VAR_SAMP=424 +KW_VERSIONING=425 +KW_VIEWS=426 +KW_VIRTUAL=427 +KW_WATERMARK=428 +KW_WATERMARKS=429 +KW_WEDNESDAY=430 +KW_WEEKS=431 +KW_WHEN=432 +KW_WHENEVER=433 +KW_WHERE=434 +KW_WIDTH_BUCKET=435 +KW_WINDOW=436 +KW_WITH=437 +KW_WITHIN=438 +KW_WITHOUT=439 +KW_YEAR=440 +KW_ADD=441 +KW_AFTER=442 +KW_ASC=443 +KW_CASCADE=444 +KW_CATALOG=445 +KW_CENTURY=446 +KW_CONFIG=447 +KW_CONSTRAINTS=448 +KW_CUMULATE=449 +KW_DATA=450 +KW_DATABASE=451 +KW_DAYS=452 +KW_DECADE=453 +KW_DESC=454 +KW_DESCRIPTOR=455 +KW_DIV=456 +KW_ENGINE=457 +KW_EPOCH=458 +KW_EXCLUDING=459 +KW_FILE=460 +KW_FIRST=461 +KW_GENERATED=462 +KW_HOP=463 +KW_HOURS=464 +KW_IGNORE=465 +KW_INCLUDING=466 +KW_JAR=467 +KW_JARS=468 +KW_JAVA=469 +KW_KEY=470 +KW_LAST=471 +KW_LOAD=472 +KW_MAP=473 +KW_MICROSECOND=474 +KW_MILLENNIUM=475 +KW_MILLISECOND=476 +KW_MINUTES=477 +KW_MONTHS=478 +KW_NANOSECOND=479 +KW_NULLS=480 +KW_OPTIONS=481 +KW_PAST=482 +KW_PLAN=483 +KW_PRECEDING=484 +KW_PYTHON=485 +KW_PYTHON_ARCHIVES=486 +KW_PYTHON_DEPENDENCIES=487 +KW_PYTHON_FILES=488 +KW_PYTHON_JAR=489 +KW_PYTHON_PARAMETER=490 +KW_PYTHON_REQUIREMENTS=491 +KW_QUARTER=492 +KW_REMOVE=493 +KW_RESTRICT=494 +KW_SECONDS=495 +KW_SESSION=496 +KW_SETS=497 +KW_SIZE=498 +KW_SLIDE=499 +KW_STEP=500 +KW_TEMPORARY=501 +KW_TIMECOL=502 +KW_TUMBLE=503 +KW_UNLOAD=504 +KW_VIEW=505 +KW_WEEK=506 +KW_YEARS=507 +KW_ZONE=508 +EQUAL_SYMBOL=509 +GREATER_SYMBOL=510 +LESS_SYMBOL=511 +EXCLAMATION_SYMBOL=512 +BIT_NOT_OP=513 +BIT_OR_OP=514 +BIT_AND_OP=515 +BIT_XOR_OP=516 +DOT=517 +LS_BRACKET=518 +RS_BRACKET=519 +LR_BRACKET=520 +RR_BRACKET=521 +LB_BRACKET=522 +RB_BRACKET=523 +COMMA=524 +SEMICOLON=525 +AT_SIGN=526 +SINGLE_QUOTE_SYMB=527 +DOUBLE_QUOTE_SYMB=528 +REVERSE_QUOTE_SYMB=529 +COLON_SYMB=530 +ASTERISK_SIGN=531 +UNDERLINE_SIGN=532 +HYPHEN_SIGN=533 +ADD_SIGN=534 +PERCENT_SIGN=535 +DOUBLE_VERTICAL_SIGN=536 +DOUBLE_HYPHEN_SIGN=537 +SLASH_SIGN=538 +QUESTION_MARK_SIGN=539 +DOUBLE_RIGHT_ARROW=540 +STRING_LITERAL=541 +DIG_LITERAL=542 +REAL_LITERAL=543 +BIT_STRING=544 +ID_LITERAL=545 'ABS'=4 'ALL'=5 'ALLOCATE'=6 @@ -682,395 +685,398 @@ ID_LITERAL=542 'FIRST_VALUE'=143 'FLOAT'=144 'FLOOR'=145 -'FOR'=146 -'FOREIGN'=147 -'FRAME_ROW'=148 -'FREE'=149 -'FRIDAY'=150 -'FROM'=151 -'FULL'=152 -'FUNCTION'=153 -'FUNCTIONS'=154 -'FUSION'=155 -'GET'=156 -'GLOBAL'=157 -'GRANT'=158 -'GROUP'=159 -'GROUPING'=160 -'GROUPS'=161 -'GROUP_CONCAT'=162 -'HAVING'=163 -'HOLD'=164 -'HOUR'=165 -'IDENTITY'=166 -'IF'=167 -'ILIKE'=168 -'IMPORT'=169 -'IN'=170 -'INCLUDE'=171 -'INDICATOR'=172 -'INITIAL'=173 -'INNER'=174 -'INOUT'=175 -'INSENSITIVE'=176 -'INSERT'=177 -'INT'=178 -'INTEGER'=179 -'INTERSECT'=180 -'INTERSECTION'=181 -'INTERVAL'=182 -'INTO'=183 -'IS'=184 -'JOIN'=185 -'JSON'=186 -'JSON_ARRAY'=187 -'JSON_ARRAYAGG'=188 -'JSON_EXECUTION_PLAN'=189 -'JSON_EXISTS'=190 -'JSON_OBJECT'=191 -'JSON_OBJECTAGG'=192 -'JSON_QUERY'=193 -'JSON_VALUE'=194 -'LAG'=195 -'LANGUAGE'=196 -'LARGE'=197 -'LAST_VALUE'=198 -'LATERAL'=199 -'LEAD'=200 -'LEADING'=201 -'LEFT'=202 -'LIKE'=203 -'LIKE_REGEX'=204 -'LIMIT'=205 -'LN'=206 -'LOCAL'=207 -'LOCALTIME'=208 -'LOCALTIMESTAMP'=209 -'LOWER'=210 -'MATCH'=211 -'MATCHES'=212 -'MATCH_NUMBER'=213 -'MATCH_RECOGNIZE'=214 -'MAX'=215 -'MEASURES'=216 -'MEMBER'=217 -'MERGE'=218 -'METADATA'=219 -'METHOD'=220 -'MIN'=221 -'MINUS'=222 -'MINUTE'=223 -'MOD'=224 -'MODIFIES'=225 -'MODIFY'=226 -'MODULE'=227 -'MODULES'=228 -'MONDAY'=229 -'MONTH'=230 -'MORE'=231 -'MULTISET'=232 -'NATIONAL'=233 -'NATURAL'=234 -'NCHAR'=235 -'NCLOB'=236 -'NEW'=237 -'NEXT'=238 -'NO'=239 -'NONE'=240 -'NORMALIZE'=241 -'NOT'=242 -'NTH_VALUE'=243 -'NTILE'=244 -'NULL'=245 -'NULLIF'=246 -'NUMERIC'=247 -'OCCURRENCES_REGEX'=248 -'OCTET_LENGTH'=249 -'OF'=250 -'OFFSET'=251 -'OLD'=252 -'OMIT'=253 -'ON'=254 -'ONE'=255 -'ONLY'=256 -'OPEN'=257 -'OR'=258 -'ORDER'=259 -'ORDINAL'=260 -'OUT'=261 -'OUTER'=262 -'OVER'=263 -'OVERLAPS'=264 -'OVERLAY'=265 -'OVERWRITE'=266 -'OVERWRITING'=267 -'PARAMETER'=268 -'PARTITION'=269 -'PARTITIONED'=270 -'PARTITIONS'=271 -'PATTERN'=272 -'PER'=273 -'PERCENT'=274 -'PERCENTILE_CONT'=275 -'PERCENTILE_DISC'=276 -'PERCENT_RANK'=277 -'PERIOD'=278 -'PERMUTE'=279 -'PIVOT'=280 -'PORTION'=281 -'POSITION'=282 -'POSITION_REGEX'=283 -'POWER'=284 -'PRECEDES'=285 -'PRECISION'=286 -'PREPARE'=287 -'PREV'=288 -'PRIMARY'=289 -'PROCEDURE'=290 -'QUALIFY'=291 -'QUARTERS'=292 -'RANGE'=293 -'RANK'=294 -'RAW'=295 -'READS'=296 -'REAL'=297 -'RECURSIVE'=298 -'REF'=299 -'REFERENCES'=300 -'REFERENCING'=301 -'REGR_AVGX'=302 -'REGR_AVGY'=303 -'REGR_COUNT'=304 -'REGR_INTERCEPT'=305 -'REGR_R2'=306 -'REGR_SLOPE'=307 -'REGR_SXX'=308 -'REGR_SXY'=309 -'REGR_SYY'=310 -'RELEASE'=311 -'RENAME'=312 -'RESET'=313 -'RESULT'=314 -'RETURN'=315 -'RETURNS'=316 -'REVOKE'=317 -'RIGHT'=318 -'RLIKE'=319 -'ROLLBACK'=320 -'ROLLUP'=321 -'ROW'=322 -'ROWS'=323 -'ROW_NUMBER'=324 -'RUNNING'=325 -'SAFE_CAST'=326 -'SAFE_OFFSET'=327 -'SAFE_ORDINAL'=328 -'SATURDAY'=329 -'SAVEPOINT'=330 -'SCALA'=331 -'SCOPE'=332 -'SCROLL'=333 -'SEARCH'=334 -'SECOND'=335 -'SEEK'=336 -'SELECT'=337 -'SENSITIVE'=338 -'SEPARATOR'=339 -'SESSION_USER'=340 -'SET'=341 -'SHOW'=342 -'SIMILAR'=343 -'SKIP'=344 -'SMALLINT'=345 -'SOME'=346 -'SPECIFIC'=347 -'SPECIFICTYPE'=348 -'SQL'=349 -'SQLEXCEPTION'=350 -'SQLSTATE'=351 -'SQLWARNING'=352 -'SQRT'=353 -'START'=354 -'STATEMENT'=355 -'STATIC'=356 -'STATISTICS'=357 -'STDDEV_POP'=358 -'STDDEV_SAMP'=359 -'STREAM'=360 -'STRING'=361 -'STRING_AGG'=362 -'SUBMULTISET'=363 -'SUBSET'=364 -'SUBSTRING'=365 -'SUBSTRING_REGEX'=366 -'SUCCEEDS'=367 -'SUM'=368 -'SUNDAY'=369 -'SYMMETRIC'=370 -'SYSTEM'=371 -'SYSTEM_TIME'=372 -'SYSTEM_USER'=373 -'TABLE'=374 -'TABLES'=375 -'TABLESAMPLE'=376 -'THEN'=377 -'THURSDAY'=378 -'TIME'=379 -'TIMESTAMP'=380 -'TIMESTAMP_DIFF'=381 -'TIMESTAMP_LTZ'=382 -'TIMESTAMP_TRUNC'=383 -'TIMEZONE_HOUR'=384 -'TIMEZONE_MINUTE'=385 -'TIME_DIFF'=386 -'TIME_TRUNC'=387 -'TINYINT'=388 -'TO'=389 -'TRAILING'=390 -'TRANSLATE'=391 -'TRANSLATE_REGEX'=392 -'TRANSLATION'=393 -'TREAT'=394 -'TRIGGER'=395 -'TRIM'=396 -'TRIM_ARRAY'=397 -'TRUE'=398 -'TRUNCATE'=399 -'TRY_CAST'=400 -'TUESDAY'=401 -'UESCAPE'=402 -'UNION'=403 -'UNIQUE'=404 -'UNKNOWN'=405 -'UNNEST'=406 -'UNPIVOT'=407 -'UPDATE'=408 -'UPPER'=409 -'UPSERT'=410 -'USE'=411 -'USER'=412 -'USING'=413 -'VALUE'=414 -'VALUES'=415 -'VALUE_OF'=416 -'VARBINARY'=417 -'VARCHAR'=418 -'VARYING'=419 -'VAR_POP'=420 -'VAR_SAMP'=421 -'VERSIONING'=422 -'VIEWS'=423 -'VIRTUAL'=424 -'WATERMARK'=425 -'WATERMARKS'=426 -'WEDNESDAY'=427 -'WEEKS'=428 -'WHEN'=429 -'WHENEVER'=430 -'WHERE'=431 -'WIDTH_BUCKET'=432 -'WINDOW'=433 -'WITH'=434 -'WITHIN'=435 -'WITHOUT'=436 -'YEAR'=437 -'ADD'=438 -'AFTER'=439 -'ASC'=440 -'CASCADE'=441 -'CATALOG'=442 -'CENTURY'=443 -'CONFIG'=444 -'CONSTRAINTS'=445 -'CUMULATE'=446 -'DATA'=447 -'DATABASE'=448 -'DAYS'=449 -'DECADE'=450 -'DESC'=451 -'DESCRIPTOR'=452 -'DIV'=453 -'ENGINE'=454 -'EPOCH'=455 -'EXCLUDING'=456 -'FILE'=457 -'FIRST'=458 -'GENERATED'=459 -'HOP'=460 -'HOURS'=461 -'IGNORE'=462 -'INCLUDING'=463 -'JAR'=464 -'JARS'=465 -'JAVA'=466 -'KEY'=467 -'LAST'=468 -'LOAD'=469 -'MAP'=470 -'MICROSECOND'=471 -'MILLENNIUM'=472 -'MILLISECOND'=473 -'MINUTES'=474 -'MONTHS'=475 -'NANOSECOND'=476 -'NULLS'=477 -'OPTIONS'=478 -'PAST'=479 -'PLAN'=480 -'PRECEDING'=481 -'PYTHON'=482 -'PYTHON_ARCHIVES'=483 -'PYTHON_DEPENDENCIES'=484 -'PYTHON_FILES'=485 -'PYTHON_JAR'=486 -'PYTHON_PARAMETER'=487 -'PYTHON_REQUIREMENTS'=488 -'QUARTER'=489 -'REMOVE'=490 -'RESTRICT'=491 -'SECONDS'=492 -'SESSION'=493 -'SETS'=494 -'SIZE'=495 -'SLIDE'=496 -'STEP'=497 -'TEMPORARY'=498 -'TIMECOL'=499 -'TUMBLE'=500 -'UNLOAD'=501 -'VIEW'=502 -'WEEK'=503 -'YEARS'=504 -'ZONE'=505 -'='=506 -'>'=507 -'<'=508 -'!'=509 -'~'=510 -'|'=511 -'&'=512 -'^'=513 -'.'=514 -'['=515 -']'=516 -'('=517 -')'=518 -'{'=519 -'}'=520 -','=521 -';'=522 -'@'=523 -'\''=524 -'"'=525 -'`'=526 -':'=527 -'*'=528 -'_'=529 -'-'=530 -'+'=531 -'%'=532 -'||'=533 -'--'=534 -'/'=535 -'?'=536 -'=>'=537 +'FOLLOWING'=146 +'FOR'=147 +'FOREIGN'=148 +'FRAME_ROW'=149 +'FREE'=150 +'FRIDAY'=151 +'FROM'=152 +'FULL'=153 +'FUNCTION'=154 +'FUNCTIONS'=155 +'FUSION'=156 +'GET'=157 +'GLOBAL'=158 +'GRANT'=159 +'GROUP'=160 +'GROUPING'=161 +'GROUPS'=162 +'GROUP_CONCAT'=163 +'HAVING'=164 +'HOLD'=165 +'HOUR'=166 +'IDENTITY'=167 +'IF'=168 +'ILIKE'=169 +'IMPORT'=170 +'IN'=171 +'INCLUDE'=172 +'INDICATOR'=173 +'INITIAL'=174 +'INNER'=175 +'INOUT'=176 +'INSENSITIVE'=177 +'INSERT'=178 +'INT'=179 +'INTEGER'=180 +'INTERSECT'=181 +'INTERSECTION'=182 +'INTERVAL'=183 +'INTO'=184 +'IS'=185 +'JOIN'=186 +'JSON'=187 +'JSON_ARRAY'=188 +'JSON_ARRAYAGG'=189 +'JSON_EXECUTION_PLAN'=190 +'JSON_EXISTS'=191 +'JSON_OBJECT'=192 +'JSON_OBJECTAGG'=193 +'JSON_QUERY'=194 +'JSON_VALUE'=195 +'LAG'=196 +'LANGUAGE'=197 +'LARGE'=198 +'LAST_VALUE'=199 +'LATERAL'=200 +'LEAD'=201 +'LEADING'=202 +'LEFT'=203 +'LIKE'=204 +'LIKE_REGEX'=205 +'LIMIT'=206 +'LN'=207 +'LOCAL'=208 +'LOCALTIME'=209 +'LOCALTIMESTAMP'=210 +'LOWER'=211 +'MATCH'=212 +'MATCHES'=213 +'MATCH_NUMBER'=214 +'MATCH_RECOGNIZE'=215 +'MAX'=216 +'MEASURES'=217 +'MEMBER'=218 +'MERGE'=219 +'METADATA'=220 +'METHOD'=221 +'MIN'=222 +'MINUS'=223 +'MINUTE'=224 +'MOD'=225 +'MODIFIES'=226 +'MODIFY'=227 +'MODULE'=228 +'MODULES'=229 +'MONDAY'=230 +'MONTH'=231 +'MORE'=232 +'MULTISET'=233 +'NATIONAL'=234 +'NATURAL'=235 +'NCHAR'=236 +'NCLOB'=237 +'NEW'=238 +'NEXT'=239 +'NO'=240 +'NONE'=241 +'NORMALIZE'=242 +'NOT'=243 +'NTH_VALUE'=244 +'NTILE'=245 +'NULL'=246 +'NULLIF'=247 +'NUMERIC'=248 +'OCCURRENCES_REGEX'=249 +'OCTET_LENGTH'=250 +'OF'=251 +'OFFSET'=252 +'OLD'=253 +'OMIT'=254 +'ON'=255 +'ONE'=256 +'ONLY'=257 +'OPEN'=258 +'OR'=259 +'ORDER'=260 +'ORDINAL'=261 +'OUT'=262 +'OUTER'=263 +'OVER'=264 +'OVERLAPS'=265 +'OVERLAY'=266 +'OVERWRITE'=267 +'OVERWRITING'=268 +'PARAMETER'=269 +'PARTITION'=270 +'PARTITIONED'=271 +'PARTITIONS'=272 +'PATTERN'=273 +'PER'=274 +'PERCENT'=275 +'PERCENTILE_CONT'=276 +'PERCENTILE_DISC'=277 +'PERCENT_RANK'=278 +'PERIOD'=279 +'PERMUTE'=280 +'RETURNING'=281 +'PIVOT'=282 +'PORTION'=283 +'POSITION'=284 +'POSITION_REGEX'=285 +'POWER'=286 +'PRECEDES'=287 +'PRECISION'=288 +'PREPARE'=289 +'PREV'=290 +'PRIMARY'=291 +'PROCEDURE'=292 +'QUALIFY'=293 +'QUARTERS'=294 +'RANGE'=295 +'RANK'=296 +'RAW'=297 +'READS'=298 +'REAL'=299 +'RECURSIVE'=300 +'REF'=301 +'REFERENCES'=302 +'REFERENCING'=303 +'REGR_AVGX'=304 +'REGR_AVGY'=305 +'REGR_COUNT'=306 +'REGR_INTERCEPT'=307 +'REGR_R2'=308 +'REGR_SLOPE'=309 +'REGR_SXX'=310 +'REGR_SXY'=311 +'REGR_SYY'=312 +'RELEASE'=313 +'RENAME'=314 +'RESET'=315 +'RESULT'=316 +'RETURN'=317 +'RETURNS'=318 +'REVOKE'=319 +'RIGHT'=320 +'RLIKE'=321 +'ROLLBACK'=322 +'ROLLUP'=323 +'ROW'=324 +'ROWS'=325 +'ROW_NUMBER'=326 +'RUNNING'=327 +'SAFE_CAST'=328 +'SAFE_OFFSET'=329 +'SAFE_ORDINAL'=330 +'SATURDAY'=331 +'SAVEPOINT'=332 +'SCALA'=333 +'SCOPE'=334 +'SCROLL'=335 +'SEARCH'=336 +'SECOND'=337 +'SEEK'=338 +'SELECT'=339 +'SENSITIVE'=340 +'SEPARATOR'=341 +'SESSION_USER'=342 +'SET'=343 +'SHOW'=344 +'SIMILAR'=345 +'SKIP'=346 +'SMALLINT'=347 +'SOME'=348 +'SPECIFIC'=349 +'SPECIFICTYPE'=350 +'SQL'=351 +'SQLEXCEPTION'=352 +'SQLSTATE'=353 +'SQLWARNING'=354 +'SQRT'=355 +'START'=356 +'STATEMENT'=357 +'STATIC'=358 +'STATISTICS'=359 +'STDDEV_POP'=360 +'STDDEV_SAMP'=361 +'STREAM'=362 +'STRING'=363 +'STRING_AGG'=364 +'SUBMULTISET'=365 +'SUBSET'=366 +'SUBSTRING'=367 +'SUBSTRING_REGEX'=368 +'SUCCEEDS'=369 +'SUM'=370 +'SUNDAY'=371 +'SYMMETRIC'=372 +'SYSTEM'=373 +'SYSTEM_TIME'=374 +'SYSTEM_USER'=375 +'TABLE'=376 +'TABLES'=377 +'TABLESAMPLE'=378 +'THEN'=379 +'THURSDAY'=380 +'TIME'=381 +'TIMESTAMP'=382 +'TIMESTAMP_DIFF'=383 +'TIMESTAMP_LTZ'=384 +'TIMESTAMP_TRUNC'=385 +'TIMEZONE_HOUR'=386 +'TIMEZONE_MINUTE'=387 +'TIME_DIFF'=388 +'TIME_TRUNC'=389 +'TINYINT'=390 +'TO'=391 +'TRAILING'=392 +'TRANSLATE'=393 +'TRANSLATE_REGEX'=394 +'TRANSLATION'=395 +'TREAT'=396 +'TRIGGER'=397 +'TRIM'=398 +'TRIM_ARRAY'=399 +'TRUE'=400 +'TRUNCATE'=401 +'TRY_CAST'=402 +'TUESDAY'=403 +'UESCAPE'=404 +'UNBOUNDED'=405 +'UNION'=406 +'UNIQUE'=407 +'UNKNOWN'=408 +'UNNEST'=409 +'UNPIVOT'=410 +'UPDATE'=411 +'UPPER'=412 +'UPSERT'=413 +'USE'=414 +'USER'=415 +'USING'=416 +'VALUE'=417 +'VALUES'=418 +'VALUE_OF'=419 +'VARBINARY'=420 +'VARCHAR'=421 +'VARYING'=422 +'VAR_POP'=423 +'VAR_SAMP'=424 +'VERSIONING'=425 +'VIEWS'=426 +'VIRTUAL'=427 +'WATERMARK'=428 +'WATERMARKS'=429 +'WEDNESDAY'=430 +'WEEKS'=431 +'WHEN'=432 +'WHENEVER'=433 +'WHERE'=434 +'WIDTH_BUCKET'=435 +'WINDOW'=436 +'WITH'=437 +'WITHIN'=438 +'WITHOUT'=439 +'YEAR'=440 +'ADD'=441 +'AFTER'=442 +'ASC'=443 +'CASCADE'=444 +'CATALOG'=445 +'CENTURY'=446 +'CONFIG'=447 +'CONSTRAINTS'=448 +'CUMULATE'=449 +'DATA'=450 +'DATABASE'=451 +'DAYS'=452 +'DECADE'=453 +'DESC'=454 +'DESCRIPTOR'=455 +'DIV'=456 +'ENGINE'=457 +'EPOCH'=458 +'EXCLUDING'=459 +'FILE'=460 +'FIRST'=461 +'GENERATED'=462 +'HOP'=463 +'HOURS'=464 +'IGNORE'=465 +'INCLUDING'=466 +'JAR'=467 +'JARS'=468 +'JAVA'=469 +'KEY'=470 +'LAST'=471 +'LOAD'=472 +'MAP'=473 +'MICROSECOND'=474 +'MILLENNIUM'=475 +'MILLISECOND'=476 +'MINUTES'=477 +'MONTHS'=478 +'NANOSECOND'=479 +'NULLS'=480 +'OPTIONS'=481 +'PAST'=482 +'PLAN'=483 +'PRECEDING'=484 +'PYTHON'=485 +'PYTHON_ARCHIVES'=486 +'PYTHON_DEPENDENCIES'=487 +'PYTHON_FILES'=488 +'PYTHON_JAR'=489 +'PYTHON_PARAMETER'=490 +'PYTHON_REQUIREMENTS'=491 +'QUARTER'=492 +'REMOVE'=493 +'RESTRICT'=494 +'SECONDS'=495 +'SESSION'=496 +'SETS'=497 +'SIZE'=498 +'SLIDE'=499 +'STEP'=500 +'TEMPORARY'=501 +'TIMECOL'=502 +'TUMBLE'=503 +'UNLOAD'=504 +'VIEW'=505 +'WEEK'=506 +'YEARS'=507 +'ZONE'=508 +'='=509 +'>'=510 +'<'=511 +'!'=512 +'~'=513 +'|'=514 +'&'=515 +'^'=516 +'.'=517 +'['=518 +']'=519 +'('=520 +')'=521 +'{'=522 +'}'=523 +','=524 +';'=525 +'@'=526 +'\''=527 +'"'=528 +'`'=529 +':'=530 +'*'=531 +'_'=532 +'-'=533 +'+'=534 +'%'=535 +'||'=536 +'--'=537 +'/'=538 +'?'=539 +'=>'=540 diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 7c2f5de7..c4afaae1 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -162,403 +162,406 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly KW_FIRST_VALUE = 143; public static readonly KW_FLOAT = 144; public static readonly KW_FLOOR = 145; - public static readonly KW_FOR = 146; - public static readonly KW_FOREIGN = 147; - public static readonly KW_FRAME_ROW = 148; - public static readonly KW_FREE = 149; - public static readonly KW_FRIDAY = 150; - public static readonly KW_FROM = 151; - public static readonly KW_FULL = 152; - public static readonly KW_FUNCTION = 153; - public static readonly KW_FUNCTIONS = 154; - public static readonly KW_FUSION = 155; - public static readonly KW_GET = 156; - public static readonly KW_GLOBAL = 157; - public static readonly KW_GRANT = 158; - public static readonly KW_GROUP = 159; - public static readonly KW_GROUPING = 160; - public static readonly KW_GROUPS = 161; - public static readonly KW_GROUP_CONCAT = 162; - public static readonly KW_HAVING = 163; - public static readonly KW_HOLD = 164; - public static readonly KW_HOUR = 165; - public static readonly KW_IDENTITY = 166; - public static readonly KW_IF = 167; - public static readonly KW_ILIKE = 168; - public static readonly KW_IMPORT = 169; - public static readonly KW_IN = 170; - public static readonly KW_INCLUDE = 171; - public static readonly KW_INDICATOR = 172; - public static readonly KW_INITIAL = 173; - public static readonly KW_INNER = 174; - public static readonly KW_INOUT = 175; - public static readonly KW_INSENSITIVE = 176; - public static readonly KW_INSERT = 177; - public static readonly KW_INT = 178; - public static readonly KW_INTEGER = 179; - public static readonly KW_INTERSECT = 180; - public static readonly KW_INTERSECTION = 181; - public static readonly KW_INTERVAL = 182; - public static readonly KW_INTO = 183; - public static readonly KW_IS = 184; - public static readonly KW_JOIN = 185; - public static readonly KW_JSON = 186; - public static readonly KW_JSON_ARRAY = 187; - public static readonly KW_JSON_ARRAYAGG = 188; - public static readonly KW_JSON_EXECUTION_PLAN = 189; - public static readonly KW_JSON_EXISTS = 190; - public static readonly KW_JSON_OBJECT = 191; - public static readonly KW_JSON_OBJECTAGG = 192; - public static readonly KW_JSON_QUERY = 193; - public static readonly KW_JSON_VALUE = 194; - public static readonly KW_LAG = 195; - public static readonly KW_LANGUAGE = 196; - public static readonly KW_LARGE = 197; - public static readonly KW_LAST_VALUE = 198; - public static readonly KW_LATERAL = 199; - public static readonly KW_LEAD = 200; - public static readonly KW_LEADING = 201; - public static readonly KW_LEFT = 202; - public static readonly KW_LIKE = 203; - public static readonly KW_LIKE_REGEX = 204; - public static readonly KW_LIMIT = 205; - public static readonly KW_LN = 206; - public static readonly KW_LOCAL = 207; - public static readonly KW_LOCALTIME = 208; - public static readonly KW_LOCALTIMESTAMP = 209; - public static readonly KW_LOWER = 210; - public static readonly KW_MATCH = 211; - public static readonly KW_MATCHES = 212; - public static readonly KW_MATCH_NUMBER = 213; - public static readonly KW_MATCH_RECOGNIZE = 214; - public static readonly KW_MAX = 215; - public static readonly KW_MEASURES = 216; - public static readonly KW_MEMBER = 217; - public static readonly KW_MERGE = 218; - public static readonly KW_METADATA = 219; - public static readonly KW_METHOD = 220; - public static readonly KW_MIN = 221; - public static readonly KW_MINUS = 222; - public static readonly KW_MINUTE = 223; - public static readonly KW_MOD = 224; - public static readonly KW_MODIFIES = 225; - public static readonly KW_MODIFY = 226; - public static readonly KW_MODULE = 227; - public static readonly KW_MODULES = 228; - public static readonly KW_MONDAY = 229; - public static readonly KW_MONTH = 230; - public static readonly KW_MORE = 231; - public static readonly KW_MULTISET = 232; - public static readonly KW_NATIONAL = 233; - public static readonly KW_NATURAL = 234; - public static readonly KW_NCHAR = 235; - public static readonly KW_NCLOB = 236; - public static readonly KW_NEW = 237; - public static readonly KW_NEXT = 238; - public static readonly KW_NO = 239; - public static readonly KW_NONE = 240; - public static readonly KW_NORMALIZE = 241; - public static readonly KW_NOT = 242; - public static readonly KW_NTH_VALUE = 243; - public static readonly KW_NTILE = 244; - public static readonly KW_NULL = 245; - public static readonly KW_NULLIF = 246; - public static readonly KW_NUMERIC = 247; - public static readonly KW_OCCURRENCES_REGEX = 248; - public static readonly KW_OCTET_LENGTH = 249; - public static readonly KW_OF = 250; - public static readonly KW_OFFSET = 251; - public static readonly KW_OLD = 252; - public static readonly KW_OMIT = 253; - public static readonly KW_ON = 254; - public static readonly KW_ONE = 255; - public static readonly KW_ONLY = 256; - public static readonly KW_OPEN = 257; - public static readonly KW_OR = 258; - public static readonly KW_ORDER = 259; - public static readonly KW_ORDINAL = 260; - public static readonly KW_OUT = 261; - public static readonly KW_OUTER = 262; - public static readonly KW_OVER = 263; - public static readonly KW_OVERLAPS = 264; - public static readonly KW_OVERLAY = 265; - public static readonly KW_OVERWRITE = 266; - public static readonly KW_OVERWRITING = 267; - public static readonly KW_PARAMETER = 268; - public static readonly KW_PARTITION = 269; - public static readonly KW_PARTITIONED = 270; - public static readonly KW_PARTITIONS = 271; - public static readonly KW_PATTERN = 272; - public static readonly KW_PER = 273; - public static readonly KW_PERCENT = 274; - public static readonly KW_PERCENTILE_CONT = 275; - public static readonly KW_PERCENTILE_DISC = 276; - public static readonly KW_PERCENT_RANK = 277; - public static readonly KW_PERIOD = 278; - public static readonly KW_PERMUTE = 279; - public static readonly KW_PIVOT = 280; - public static readonly KW_PORTION = 281; - public static readonly KW_POSITION = 282; - public static readonly KW_POSITION_REGEX = 283; - public static readonly KW_POWER = 284; - public static readonly KW_PRECEDES = 285; - public static readonly KW_PRECISION = 286; - public static readonly KW_PREPARE = 287; - public static readonly KW_PREV = 288; - public static readonly KW_PRIMARY = 289; - public static readonly KW_PROCEDURE = 290; - public static readonly KW_QUALIFY = 291; - public static readonly KW_QUARTERS = 292; - public static readonly KW_RANGE = 293; - public static readonly KW_RANK = 294; - public static readonly KW_RAW = 295; - public static readonly KW_READS = 296; - public static readonly KW_REAL = 297; - public static readonly KW_RECURSIVE = 298; - public static readonly KW_REF = 299; - public static readonly KW_REFERENCES = 300; - public static readonly KW_REFERENCING = 301; - public static readonly KW_REGR_AVGX = 302; - public static readonly KW_REGR_AVGY = 303; - public static readonly KW_REGR_COUNT = 304; - public static readonly KW_REGR_INTERCEPT = 305; - public static readonly KW_REGR_R2 = 306; - public static readonly KW_REGR_SLOPE = 307; - public static readonly KW_REGR_SXX = 308; - public static readonly KW_REGR_SXY = 309; - public static readonly KW_REGR_SYY = 310; - public static readonly KW_RELEASE = 311; - public static readonly KW_RENAME = 312; - public static readonly KW_RESET = 313; - public static readonly KW_RESULT = 314; - public static readonly KW_RETURN = 315; - public static readonly KW_RETURNS = 316; - public static readonly KW_REVOKE = 317; - public static readonly KW_RIGHT = 318; - public static readonly KW_RLIKE = 319; - public static readonly KW_ROLLBACK = 320; - public static readonly KW_ROLLUP = 321; - public static readonly KW_ROW = 322; - public static readonly KW_ROWS = 323; - public static readonly KW_ROW_NUMBER = 324; - public static readonly KW_RUNNING = 325; - public static readonly KW_SAFE_CAST = 326; - public static readonly KW_SAFE_OFFSET = 327; - public static readonly KW_SAFE_ORDINAL = 328; - public static readonly KW_SATURDAY = 329; - public static readonly KW_SAVEPOINT = 330; - public static readonly KW_SCALA = 331; - public static readonly KW_SCOPE = 332; - public static readonly KW_SCROLL = 333; - public static readonly KW_SEARCH = 334; - public static readonly KW_SECOND = 335; - public static readonly KW_SEEK = 336; - public static readonly KW_SELECT = 337; - public static readonly KW_SENSITIVE = 338; - public static readonly KW_SEPARATOR = 339; - public static readonly KW_SESSION_USER = 340; - public static readonly KW_SET = 341; - public static readonly KW_SHOW = 342; - public static readonly KW_SIMILAR = 343; - public static readonly KW_SKIP = 344; - public static readonly KW_SMALLINT = 345; - public static readonly KW_SOME = 346; - public static readonly KW_SPECIFIC = 347; - public static readonly KW_SPECIFICTYPE = 348; - public static readonly KW_SQL = 349; - public static readonly KW_SQLEXCEPTION = 350; - public static readonly KW_SQLSTATE = 351; - public static readonly KW_SQLWARNING = 352; - public static readonly KW_SQRT = 353; - public static readonly KW_START = 354; - public static readonly KW_STATEMENT = 355; - public static readonly KW_STATIC = 356; - public static readonly KW_STATISTICS = 357; - public static readonly KW_STDDEV_POP = 358; - public static readonly KW_STDDEV_SAMP = 359; - public static readonly KW_STREAM = 360; - public static readonly KW_STRING = 361; - public static readonly KW_STRING_AGG = 362; - public static readonly KW_SUBMULTISET = 363; - public static readonly KW_SUBSET = 364; - public static readonly KW_SUBSTRING = 365; - public static readonly KW_SUBSTRING_REGEX = 366; - public static readonly KW_SUCCEEDS = 367; - public static readonly KW_SUM = 368; - public static readonly KW_SUNDAY = 369; - public static readonly KW_SYMMETRIC = 370; - public static readonly KW_SYSTEM = 371; - public static readonly KW_SYSTEM_TIME = 372; - public static readonly KW_SYSTEM_USER = 373; - public static readonly KW_TABLE = 374; - public static readonly KW_TABLES = 375; - public static readonly KW_TABLESAMPLE = 376; - public static readonly KW_THEN = 377; - public static readonly KW_THURSDAY = 378; - public static readonly KW_TIME = 379; - public static readonly KW_TIMESTAMP = 380; - public static readonly KW_TIMESTAMP_DIFF = 381; - public static readonly KW_TIMESTAMP_LTZ = 382; - public static readonly KW_TIMESTAMP_TRUNC = 383; - public static readonly KW_TIMEZONE_HOUR = 384; - public static readonly KW_TIMEZONE_MINUTE = 385; - public static readonly KW_TIME_DIFF = 386; - public static readonly KW_TIME_TRUNC = 387; - public static readonly KW_TINYINT = 388; - public static readonly KW_TO = 389; - public static readonly KW_TRAILING = 390; - public static readonly KW_TRANSLATE = 391; - public static readonly KW_TRANSLATE_REGEX = 392; - public static readonly KW_TRANSLATION = 393; - public static readonly KW_TREAT = 394; - public static readonly KW_TRIGGER = 395; - public static readonly KW_TRIM = 396; - public static readonly KW_TRIM_ARRAY = 397; - public static readonly KW_TRUE = 398; - public static readonly KW_TRUNCATE = 399; - public static readonly KW_TRY_CAST = 400; - public static readonly KW_TUESDAY = 401; - public static readonly KW_UESCAPE = 402; - public static readonly KW_UNION = 403; - public static readonly KW_UNIQUE = 404; - public static readonly KW_UNKNOWN = 405; - public static readonly KW_UNNEST = 406; - public static readonly KW_UNPIVOT = 407; - public static readonly KW_UPDATE = 408; - public static readonly KW_UPPER = 409; - public static readonly KW_UPSERT = 410; - public static readonly KW_USE = 411; - public static readonly KW_USER = 412; - public static readonly KW_USING = 413; - public static readonly KW_VALUE = 414; - public static readonly KW_VALUES = 415; - public static readonly KW_VALUE_OF = 416; - public static readonly KW_VARBINARY = 417; - public static readonly KW_VARCHAR = 418; - public static readonly KW_VARYING = 419; - public static readonly KW_VAR_POP = 420; - public static readonly KW_VAR_SAMP = 421; - public static readonly KW_VERSIONING = 422; - public static readonly KW_VIEWS = 423; - public static readonly KW_VIRTUAL = 424; - public static readonly KW_WATERMARK = 425; - public static readonly KW_WATERMARKS = 426; - public static readonly KW_WEDNESDAY = 427; - public static readonly KW_WEEKS = 428; - public static readonly KW_WHEN = 429; - public static readonly KW_WHENEVER = 430; - public static readonly KW_WHERE = 431; - public static readonly KW_WIDTH_BUCKET = 432; - public static readonly KW_WINDOW = 433; - public static readonly KW_WITH = 434; - public static readonly KW_WITHIN = 435; - public static readonly KW_WITHOUT = 436; - public static readonly KW_YEAR = 437; - public static readonly KW_ADD = 438; - public static readonly KW_AFTER = 439; - public static readonly KW_ASC = 440; - public static readonly KW_CASCADE = 441; - public static readonly KW_CATALOG = 442; - public static readonly KW_CENTURY = 443; - public static readonly KW_CONFIG = 444; - public static readonly KW_CONSTRAINTS = 445; - public static readonly KW_CUMULATE = 446; - public static readonly KW_DATA = 447; - public static readonly KW_DATABASE = 448; - public static readonly KW_DAYS = 449; - public static readonly KW_DECADE = 450; - public static readonly KW_DESC = 451; - public static readonly KW_DESCRIPTOR = 452; - public static readonly KW_DIV = 453; - public static readonly KW_ENGINE = 454; - public static readonly KW_EPOCH = 455; - public static readonly KW_EXCLUDING = 456; - public static readonly KW_FILE = 457; - public static readonly KW_FIRST = 458; - public static readonly KW_GENERATED = 459; - public static readonly KW_HOP = 460; - public static readonly KW_HOURS = 461; - public static readonly KW_IGNORE = 462; - public static readonly KW_INCLUDING = 463; - public static readonly KW_JAR = 464; - public static readonly KW_JARS = 465; - public static readonly KW_JAVA = 466; - public static readonly KW_KEY = 467; - public static readonly KW_LAST = 468; - public static readonly KW_LOAD = 469; - public static readonly KW_MAP = 470; - public static readonly KW_MICROSECOND = 471; - public static readonly KW_MILLENNIUM = 472; - public static readonly KW_MILLISECOND = 473; - public static readonly KW_MINUTES = 474; - public static readonly KW_MONTHS = 475; - public static readonly KW_NANOSECOND = 476; - public static readonly KW_NULLS = 477; - public static readonly KW_OPTIONS = 478; - public static readonly KW_PAST = 479; - public static readonly KW_PLAN = 480; - public static readonly KW_PRECEDING = 481; - public static readonly KW_PYTHON = 482; - public static readonly KW_PYTHON_ARCHIVES = 483; - public static readonly KW_PYTHON_DEPENDENCIES = 484; - public static readonly KW_PYTHON_FILES = 485; - public static readonly KW_PYTHON_JAR = 486; - public static readonly KW_PYTHON_PARAMETER = 487; - public static readonly KW_PYTHON_REQUIREMENTS = 488; - public static readonly KW_QUARTER = 489; - public static readonly KW_REMOVE = 490; - public static readonly KW_RESTRICT = 491; - public static readonly KW_SECONDS = 492; - public static readonly KW_SESSION = 493; - public static readonly KW_SETS = 494; - public static readonly KW_SIZE = 495; - public static readonly KW_SLIDE = 496; - public static readonly KW_STEP = 497; - public static readonly KW_TEMPORARY = 498; - public static readonly KW_TIMECOL = 499; - public static readonly KW_TUMBLE = 500; - public static readonly KW_UNLOAD = 501; - public static readonly KW_VIEW = 502; - public static readonly KW_WEEK = 503; - public static readonly KW_YEARS = 504; - public static readonly KW_ZONE = 505; - public static readonly EQUAL_SYMBOL = 506; - public static readonly GREATER_SYMBOL = 507; - public static readonly LESS_SYMBOL = 508; - public static readonly EXCLAMATION_SYMBOL = 509; - public static readonly BIT_NOT_OP = 510; - public static readonly BIT_OR_OP = 511; - public static readonly BIT_AND_OP = 512; - public static readonly BIT_XOR_OP = 513; - public static readonly DOT = 514; - public static readonly LS_BRACKET = 515; - public static readonly RS_BRACKET = 516; - public static readonly LR_BRACKET = 517; - public static readonly RR_BRACKET = 518; - public static readonly LB_BRACKET = 519; - public static readonly RB_BRACKET = 520; - public static readonly COMMA = 521; - public static readonly SEMICOLON = 522; - public static readonly AT_SIGN = 523; - public static readonly SINGLE_QUOTE_SYMB = 524; - public static readonly DOUBLE_QUOTE_SYMB = 525; - public static readonly REVERSE_QUOTE_SYMB = 526; - public static readonly COLON_SYMB = 527; - public static readonly ASTERISK_SIGN = 528; - public static readonly UNDERLINE_SIGN = 529; - public static readonly HYPHEN_SIGN = 530; - public static readonly ADD_SIGN = 531; - public static readonly PERCENT_SIGN = 532; - public static readonly DOUBLE_VERTICAL_SIGN = 533; - public static readonly DOUBLE_HYPHEN_SIGN = 534; - public static readonly SLASH_SIGN = 535; - public static readonly QUESTION_MARK_SIGN = 536; - public static readonly DOUBLE_RIGHT_ARROW = 537; - public static readonly STRING_LITERAL = 538; - public static readonly DIG_LITERAL = 539; - public static readonly REAL_LITERAL = 540; - public static readonly BIT_STRING = 541; - public static readonly ID_LITERAL = 542; + public static readonly KW_FOLLOWING = 146; + public static readonly KW_FOR = 147; + public static readonly KW_FOREIGN = 148; + public static readonly KW_FRAME_ROW = 149; + public static readonly KW_FREE = 150; + public static readonly KW_FRIDAY = 151; + public static readonly KW_FROM = 152; + public static readonly KW_FULL = 153; + public static readonly KW_FUNCTION = 154; + public static readonly KW_FUNCTIONS = 155; + public static readonly KW_FUSION = 156; + public static readonly KW_GET = 157; + public static readonly KW_GLOBAL = 158; + public static readonly KW_GRANT = 159; + public static readonly KW_GROUP = 160; + public static readonly KW_GROUPING = 161; + public static readonly KW_GROUPS = 162; + public static readonly KW_GROUP_CONCAT = 163; + public static readonly KW_HAVING = 164; + public static readonly KW_HOLD = 165; + public static readonly KW_HOUR = 166; + public static readonly KW_IDENTITY = 167; + public static readonly KW_IF = 168; + public static readonly KW_ILIKE = 169; + public static readonly KW_IMPORT = 170; + public static readonly KW_IN = 171; + public static readonly KW_INCLUDE = 172; + public static readonly KW_INDICATOR = 173; + public static readonly KW_INITIAL = 174; + public static readonly KW_INNER = 175; + public static readonly KW_INOUT = 176; + public static readonly KW_INSENSITIVE = 177; + public static readonly KW_INSERT = 178; + public static readonly KW_INT = 179; + public static readonly KW_INTEGER = 180; + public static readonly KW_INTERSECT = 181; + public static readonly KW_INTERSECTION = 182; + public static readonly KW_INTERVAL = 183; + public static readonly KW_INTO = 184; + public static readonly KW_IS = 185; + public static readonly KW_JOIN = 186; + public static readonly KW_JSON = 187; + public static readonly KW_JSON_ARRAY = 188; + public static readonly KW_JSON_ARRAYAGG = 189; + public static readonly KW_JSON_EXECUTION_PLAN = 190; + public static readonly KW_JSON_EXISTS = 191; + public static readonly KW_JSON_OBJECT = 192; + public static readonly KW_JSON_OBJECTAGG = 193; + public static readonly KW_JSON_QUERY = 194; + public static readonly KW_JSON_VALUE = 195; + public static readonly KW_LAG = 196; + public static readonly KW_LANGUAGE = 197; + public static readonly KW_LARGE = 198; + public static readonly KW_LAST_VALUE = 199; + public static readonly KW_LATERAL = 200; + public static readonly KW_LEAD = 201; + public static readonly KW_LEADING = 202; + public static readonly KW_LEFT = 203; + public static readonly KW_LIKE = 204; + public static readonly KW_LIKE_REGEX = 205; + public static readonly KW_LIMIT = 206; + public static readonly KW_LN = 207; + public static readonly KW_LOCAL = 208; + public static readonly KW_LOCALTIME = 209; + public static readonly KW_LOCALTIMESTAMP = 210; + public static readonly KW_LOWER = 211; + public static readonly KW_MATCH = 212; + public static readonly KW_MATCHES = 213; + public static readonly KW_MATCH_NUMBER = 214; + public static readonly KW_MATCH_RECOGNIZE = 215; + public static readonly KW_MAX = 216; + public static readonly KW_MEASURES = 217; + public static readonly KW_MEMBER = 218; + public static readonly KW_MERGE = 219; + public static readonly KW_METADATA = 220; + public static readonly KW_METHOD = 221; + public static readonly KW_MIN = 222; + public static readonly KW_MINUS = 223; + public static readonly KW_MINUTE = 224; + public static readonly KW_MOD = 225; + public static readonly KW_MODIFIES = 226; + public static readonly KW_MODIFY = 227; + public static readonly KW_MODULE = 228; + public static readonly KW_MODULES = 229; + public static readonly KW_MONDAY = 230; + public static readonly KW_MONTH = 231; + public static readonly KW_MORE = 232; + public static readonly KW_MULTISET = 233; + public static readonly KW_NATIONAL = 234; + public static readonly KW_NATURAL = 235; + public static readonly KW_NCHAR = 236; + public static readonly KW_NCLOB = 237; + public static readonly KW_NEW = 238; + public static readonly KW_NEXT = 239; + public static readonly KW_NO = 240; + public static readonly KW_NONE = 241; + public static readonly KW_NORMALIZE = 242; + public static readonly KW_NOT = 243; + public static readonly KW_NTH_VALUE = 244; + public static readonly KW_NTILE = 245; + public static readonly KW_NULL = 246; + public static readonly KW_NULLIF = 247; + public static readonly KW_NUMERIC = 248; + public static readonly KW_OCCURRENCES_REGEX = 249; + public static readonly KW_OCTET_LENGTH = 250; + public static readonly KW_OF = 251; + public static readonly KW_OFFSET = 252; + public static readonly KW_OLD = 253; + public static readonly KW_OMIT = 254; + public static readonly KW_ON = 255; + public static readonly KW_ONE = 256; + public static readonly KW_ONLY = 257; + public static readonly KW_OPEN = 258; + public static readonly KW_OR = 259; + public static readonly KW_ORDER = 260; + public static readonly KW_ORDINAL = 261; + public static readonly KW_OUT = 262; + public static readonly KW_OUTER = 263; + public static readonly KW_OVER = 264; + public static readonly KW_OVERLAPS = 265; + public static readonly KW_OVERLAY = 266; + public static readonly KW_OVERWRITE = 267; + public static readonly KW_OVERWRITING = 268; + public static readonly KW_PARAMETER = 269; + public static readonly KW_PARTITION = 270; + public static readonly KW_PARTITIONED = 271; + public static readonly KW_PARTITIONS = 272; + public static readonly KW_PATTERN = 273; + public static readonly KW_PER = 274; + public static readonly KW_PERCENT = 275; + public static readonly KW_PERCENTILE_CONT = 276; + public static readonly KW_PERCENTILE_DISC = 277; + public static readonly KW_PERCENT_RANK = 278; + public static readonly KW_PERIOD = 279; + public static readonly KW_PERMUTE = 280; + public static readonly KW_RETURNING = 281; + public static readonly KW_PIVOT = 282; + public static readonly KW_PORTION = 283; + public static readonly KW_POSITION = 284; + public static readonly KW_POSITION_REGEX = 285; + public static readonly KW_POWER = 286; + public static readonly KW_PRECEDES = 287; + public static readonly KW_PRECISION = 288; + public static readonly KW_PREPARE = 289; + public static readonly KW_PREV = 290; + public static readonly KW_PRIMARY = 291; + public static readonly KW_PROCEDURE = 292; + public static readonly KW_QUALIFY = 293; + public static readonly KW_QUARTERS = 294; + public static readonly KW_RANGE = 295; + public static readonly KW_RANK = 296; + public static readonly KW_RAW = 297; + public static readonly KW_READS = 298; + public static readonly KW_REAL = 299; + public static readonly KW_RECURSIVE = 300; + public static readonly KW_REF = 301; + public static readonly KW_REFERENCES = 302; + public static readonly KW_REFERENCING = 303; + public static readonly KW_REGR_AVGX = 304; + public static readonly KW_REGR_AVGY = 305; + public static readonly KW_REGR_COUNT = 306; + public static readonly KW_REGR_INTERCEPT = 307; + public static readonly KW_REGR_R2 = 308; + public static readonly KW_REGR_SLOPE = 309; + public static readonly KW_REGR_SXX = 310; + public static readonly KW_REGR_SXY = 311; + public static readonly KW_REGR_SYY = 312; + public static readonly KW_RELEASE = 313; + public static readonly KW_RENAME = 314; + public static readonly KW_RESET = 315; + public static readonly KW_RESULT = 316; + public static readonly KW_RETURN = 317; + public static readonly KW_RETURNS = 318; + public static readonly KW_REVOKE = 319; + public static readonly KW_RIGHT = 320; + public static readonly KW_RLIKE = 321; + public static readonly KW_ROLLBACK = 322; + public static readonly KW_ROLLUP = 323; + public static readonly KW_ROW = 324; + public static readonly KW_ROWS = 325; + public static readonly KW_ROW_NUMBER = 326; + public static readonly KW_RUNNING = 327; + public static readonly KW_SAFE_CAST = 328; + public static readonly KW_SAFE_OFFSET = 329; + public static readonly KW_SAFE_ORDINAL = 330; + public static readonly KW_SATURDAY = 331; + public static readonly KW_SAVEPOINT = 332; + public static readonly KW_SCALA = 333; + public static readonly KW_SCOPE = 334; + public static readonly KW_SCROLL = 335; + public static readonly KW_SEARCH = 336; + public static readonly KW_SECOND = 337; + public static readonly KW_SEEK = 338; + public static readonly KW_SELECT = 339; + public static readonly KW_SENSITIVE = 340; + public static readonly KW_SEPARATOR = 341; + public static readonly KW_SESSION_USER = 342; + public static readonly KW_SET = 343; + public static readonly KW_SHOW = 344; + public static readonly KW_SIMILAR = 345; + public static readonly KW_SKIP = 346; + public static readonly KW_SMALLINT = 347; + public static readonly KW_SOME = 348; + public static readonly KW_SPECIFIC = 349; + public static readonly KW_SPECIFICTYPE = 350; + public static readonly KW_SQL = 351; + public static readonly KW_SQLEXCEPTION = 352; + public static readonly KW_SQLSTATE = 353; + public static readonly KW_SQLWARNING = 354; + public static readonly KW_SQRT = 355; + public static readonly KW_START = 356; + public static readonly KW_STATEMENT = 357; + public static readonly KW_STATIC = 358; + public static readonly KW_STATISTICS = 359; + public static readonly KW_STDDEV_POP = 360; + public static readonly KW_STDDEV_SAMP = 361; + public static readonly KW_STREAM = 362; + public static readonly KW_STRING = 363; + public static readonly KW_STRING_AGG = 364; + public static readonly KW_SUBMULTISET = 365; + public static readonly KW_SUBSET = 366; + public static readonly KW_SUBSTRING = 367; + public static readonly KW_SUBSTRING_REGEX = 368; + public static readonly KW_SUCCEEDS = 369; + public static readonly KW_SUM = 370; + public static readonly KW_SUNDAY = 371; + public static readonly KW_SYMMETRIC = 372; + public static readonly KW_SYSTEM = 373; + public static readonly KW_SYSTEM_TIME = 374; + public static readonly KW_SYSTEM_USER = 375; + public static readonly KW_TABLE = 376; + public static readonly KW_TABLES = 377; + public static readonly KW_TABLESAMPLE = 378; + public static readonly KW_THEN = 379; + public static readonly KW_THURSDAY = 380; + public static readonly KW_TIME = 381; + public static readonly KW_TIMESTAMP = 382; + public static readonly KW_TIMESTAMP_DIFF = 383; + public static readonly KW_TIMESTAMP_LTZ = 384; + public static readonly KW_TIMESTAMP_TRUNC = 385; + public static readonly KW_TIMEZONE_HOUR = 386; + public static readonly KW_TIMEZONE_MINUTE = 387; + public static readonly KW_TIME_DIFF = 388; + public static readonly KW_TIME_TRUNC = 389; + public static readonly KW_TINYINT = 390; + public static readonly KW_TO = 391; + public static readonly KW_TRAILING = 392; + public static readonly KW_TRANSLATE = 393; + public static readonly KW_TRANSLATE_REGEX = 394; + public static readonly KW_TRANSLATION = 395; + public static readonly KW_TREAT = 396; + public static readonly KW_TRIGGER = 397; + public static readonly KW_TRIM = 398; + public static readonly KW_TRIM_ARRAY = 399; + public static readonly KW_TRUE = 400; + public static readonly KW_TRUNCATE = 401; + public static readonly KW_TRY_CAST = 402; + public static readonly KW_TUESDAY = 403; + public static readonly KW_UESCAPE = 404; + public static readonly KW_UNBOUNDED = 405; + public static readonly KW_UNION = 406; + public static readonly KW_UNIQUE = 407; + public static readonly KW_UNKNOWN = 408; + public static readonly KW_UNNEST = 409; + public static readonly KW_UNPIVOT = 410; + public static readonly KW_UPDATE = 411; + public static readonly KW_UPPER = 412; + public static readonly KW_UPSERT = 413; + public static readonly KW_USE = 414; + public static readonly KW_USER = 415; + public static readonly KW_USING = 416; + public static readonly KW_VALUE = 417; + public static readonly KW_VALUES = 418; + public static readonly KW_VALUE_OF = 419; + public static readonly KW_VARBINARY = 420; + public static readonly KW_VARCHAR = 421; + public static readonly KW_VARYING = 422; + public static readonly KW_VAR_POP = 423; + public static readonly KW_VAR_SAMP = 424; + public static readonly KW_VERSIONING = 425; + public static readonly KW_VIEWS = 426; + public static readonly KW_VIRTUAL = 427; + public static readonly KW_WATERMARK = 428; + public static readonly KW_WATERMARKS = 429; + public static readonly KW_WEDNESDAY = 430; + public static readonly KW_WEEKS = 431; + public static readonly KW_WHEN = 432; + public static readonly KW_WHENEVER = 433; + public static readonly KW_WHERE = 434; + public static readonly KW_WIDTH_BUCKET = 435; + public static readonly KW_WINDOW = 436; + public static readonly KW_WITH = 437; + public static readonly KW_WITHIN = 438; + public static readonly KW_WITHOUT = 439; + public static readonly KW_YEAR = 440; + public static readonly KW_ADD = 441; + public static readonly KW_AFTER = 442; + public static readonly KW_ASC = 443; + public static readonly KW_CASCADE = 444; + public static readonly KW_CATALOG = 445; + public static readonly KW_CENTURY = 446; + public static readonly KW_CONFIG = 447; + public static readonly KW_CONSTRAINTS = 448; + public static readonly KW_CUMULATE = 449; + public static readonly KW_DATA = 450; + public static readonly KW_DATABASE = 451; + public static readonly KW_DAYS = 452; + public static readonly KW_DECADE = 453; + public static readonly KW_DESC = 454; + public static readonly KW_DESCRIPTOR = 455; + public static readonly KW_DIV = 456; + public static readonly KW_ENGINE = 457; + public static readonly KW_EPOCH = 458; + public static readonly KW_EXCLUDING = 459; + public static readonly KW_FILE = 460; + public static readonly KW_FIRST = 461; + public static readonly KW_GENERATED = 462; + public static readonly KW_HOP = 463; + public static readonly KW_HOURS = 464; + public static readonly KW_IGNORE = 465; + public static readonly KW_INCLUDING = 466; + public static readonly KW_JAR = 467; + public static readonly KW_JARS = 468; + public static readonly KW_JAVA = 469; + public static readonly KW_KEY = 470; + public static readonly KW_LAST = 471; + public static readonly KW_LOAD = 472; + public static readonly KW_MAP = 473; + public static readonly KW_MICROSECOND = 474; + public static readonly KW_MILLENNIUM = 475; + public static readonly KW_MILLISECOND = 476; + public static readonly KW_MINUTES = 477; + public static readonly KW_MONTHS = 478; + public static readonly KW_NANOSECOND = 479; + public static readonly KW_NULLS = 480; + public static readonly KW_OPTIONS = 481; + public static readonly KW_PAST = 482; + public static readonly KW_PLAN = 483; + public static readonly KW_PRECEDING = 484; + public static readonly KW_PYTHON = 485; + public static readonly KW_PYTHON_ARCHIVES = 486; + public static readonly KW_PYTHON_DEPENDENCIES = 487; + public static readonly KW_PYTHON_FILES = 488; + public static readonly KW_PYTHON_JAR = 489; + public static readonly KW_PYTHON_PARAMETER = 490; + public static readonly KW_PYTHON_REQUIREMENTS = 491; + public static readonly KW_QUARTER = 492; + public static readonly KW_REMOVE = 493; + public static readonly KW_RESTRICT = 494; + public static readonly KW_SECONDS = 495; + public static readonly KW_SESSION = 496; + public static readonly KW_SETS = 497; + public static readonly KW_SIZE = 498; + public static readonly KW_SLIDE = 499; + public static readonly KW_STEP = 500; + public static readonly KW_TEMPORARY = 501; + public static readonly KW_TIMECOL = 502; + public static readonly KW_TUMBLE = 503; + public static readonly KW_UNLOAD = 504; + public static readonly KW_VIEW = 505; + public static readonly KW_WEEK = 506; + public static readonly KW_YEARS = 507; + public static readonly KW_ZONE = 508; + public static readonly EQUAL_SYMBOL = 509; + public static readonly GREATER_SYMBOL = 510; + public static readonly LESS_SYMBOL = 511; + public static readonly EXCLAMATION_SYMBOL = 512; + public static readonly BIT_NOT_OP = 513; + public static readonly BIT_OR_OP = 514; + public static readonly BIT_AND_OP = 515; + public static readonly BIT_XOR_OP = 516; + public static readonly DOT = 517; + public static readonly LS_BRACKET = 518; + public static readonly RS_BRACKET = 519; + public static readonly LR_BRACKET = 520; + public static readonly RR_BRACKET = 521; + public static readonly LB_BRACKET = 522; + public static readonly RB_BRACKET = 523; + public static readonly COMMA = 524; + public static readonly SEMICOLON = 525; + public static readonly AT_SIGN = 526; + public static readonly SINGLE_QUOTE_SYMB = 527; + public static readonly DOUBLE_QUOTE_SYMB = 528; + public static readonly REVERSE_QUOTE_SYMB = 529; + public static readonly COLON_SYMB = 530; + public static readonly ASTERISK_SIGN = 531; + public static readonly UNDERLINE_SIGN = 532; + public static readonly HYPHEN_SIGN = 533; + public static readonly ADD_SIGN = 534; + public static readonly PERCENT_SIGN = 535; + public static readonly DOUBLE_VERTICAL_SIGN = 536; + public static readonly DOUBLE_HYPHEN_SIGN = 537; + public static readonly SLASH_SIGN = 538; + public static readonly QUESTION_MARK_SIGN = 539; + public static readonly DOUBLE_RIGHT_ARROW = 540; + public static readonly STRING_LITERAL = 541; + public static readonly DIG_LITERAL = 542; + public static readonly REAL_LITERAL = 543; + public static readonly BIT_STRING = 544; + public static readonly ID_LITERAL = 545; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_sqlStatement = 2; @@ -687,71 +690,74 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_patternVariablesDefinition = 125; public static readonly RULE_windowFrame = 126; public static readonly RULE_frameBound = 127; - public static readonly RULE_withinClause = 128; - public static readonly RULE_expression = 129; - public static readonly RULE_booleanExpression = 130; - public static readonly RULE_predicate = 131; - public static readonly RULE_likePredicate = 132; - public static readonly RULE_valueExpression = 133; - public static readonly RULE_functionCallExpression = 134; - public static readonly RULE_primaryExpression = 135; - public static readonly RULE_functionNameCreate = 136; - public static readonly RULE_functionName = 137; - public static readonly RULE_functionNameAndParams = 138; - public static readonly RULE_functionNameWithParams = 139; - public static readonly RULE_functionParam = 140; - public static readonly RULE_dereferenceDefinition = 141; - public static readonly RULE_correlationName = 142; - public static readonly RULE_qualifiedName = 143; - public static readonly RULE_timeIntervalExpression = 144; - public static readonly RULE_errorCapturingMultiUnitsInterval = 145; - public static readonly RULE_multiUnitsInterval = 146; - public static readonly RULE_errorCapturingUnitToUnitInterval = 147; - public static readonly RULE_unitToUnitInterval = 148; - public static readonly RULE_intervalValue = 149; - public static readonly RULE_tableAlias = 150; - public static readonly RULE_errorCapturingIdentifier = 151; - public static readonly RULE_errorCapturingIdentifierExtra = 152; - public static readonly RULE_identifierList = 153; - public static readonly RULE_identifierSeq = 154; - public static readonly RULE_identifier = 155; - public static readonly RULE_unquotedIdentifier = 156; - public static readonly RULE_quotedIdentifier = 157; - public static readonly RULE_whenClause = 158; - public static readonly RULE_catalogPath = 159; - public static readonly RULE_catalogPathCreate = 160; - public static readonly RULE_databasePath = 161; - public static readonly RULE_databasePathCreate = 162; - public static readonly RULE_tablePathCreate = 163; - public static readonly RULE_tablePath = 164; - public static readonly RULE_viewPath = 165; - public static readonly RULE_viewPathCreate = 166; - public static readonly RULE_uid = 167; - public static readonly RULE_withOption = 168; - public static readonly RULE_ifNotExists = 169; - public static readonly RULE_ifExists = 170; - public static readonly RULE_tablePropertyList = 171; - public static readonly RULE_tableProperty = 172; - public static readonly RULE_tablePropertyKey = 173; - public static readonly RULE_tablePropertyValue = 174; - public static readonly RULE_logicalOperator = 175; - public static readonly RULE_comparisonOperator = 176; - public static readonly RULE_bitOperator = 177; - public static readonly RULE_mathOperator = 178; - public static readonly RULE_unaryOperator = 179; - public static readonly RULE_constant = 180; - public static readonly RULE_timePointLiteral = 181; - public static readonly RULE_stringLiteral = 182; - public static readonly RULE_decimalLiteral = 183; - public static readonly RULE_booleanLiteral = 184; - public static readonly RULE_setQuantifier = 185; - public static readonly RULE_timePointUnit = 186; - public static readonly RULE_timeIntervalUnit = 187; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 188; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 189; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 190; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 191; - public static readonly RULE_nonReservedKeywords = 192; + public static readonly RULE_frameStart = 128; + public static readonly RULE_frameEnd = 129; + public static readonly RULE_withinClause = 130; + public static readonly RULE_expression = 131; + public static readonly RULE_booleanExpression = 132; + public static readonly RULE_predicate = 133; + public static readonly RULE_likePredicate = 134; + public static readonly RULE_valueExpression = 135; + public static readonly RULE_functionCallExpression = 136; + public static readonly RULE_primaryExpression = 137; + public static readonly RULE_jsonValueExpression = 138; + public static readonly RULE_functionNameCreate = 139; + public static readonly RULE_functionName = 140; + public static readonly RULE_functionNameAndParams = 141; + public static readonly RULE_functionNameWithParams = 142; + public static readonly RULE_functionParam = 143; + public static readonly RULE_dereferenceDefinition = 144; + public static readonly RULE_correlationName = 145; + public static readonly RULE_qualifiedName = 146; + public static readonly RULE_timeIntervalExpression = 147; + public static readonly RULE_errorCapturingMultiUnitsInterval = 148; + public static readonly RULE_multiUnitsInterval = 149; + public static readonly RULE_errorCapturingUnitToUnitInterval = 150; + public static readonly RULE_unitToUnitInterval = 151; + public static readonly RULE_intervalValue = 152; + public static readonly RULE_tableAlias = 153; + public static readonly RULE_errorCapturingIdentifier = 154; + public static readonly RULE_errorCapturingIdentifierExtra = 155; + public static readonly RULE_identifierList = 156; + public static readonly RULE_identifierSeq = 157; + public static readonly RULE_identifier = 158; + public static readonly RULE_unquotedIdentifier = 159; + public static readonly RULE_quotedIdentifier = 160; + public static readonly RULE_whenClause = 161; + public static readonly RULE_catalogPath = 162; + public static readonly RULE_catalogPathCreate = 163; + public static readonly RULE_databasePath = 164; + public static readonly RULE_databasePathCreate = 165; + public static readonly RULE_tablePathCreate = 166; + public static readonly RULE_tablePath = 167; + public static readonly RULE_viewPath = 168; + public static readonly RULE_viewPathCreate = 169; + public static readonly RULE_uid = 170; + public static readonly RULE_withOption = 171; + public static readonly RULE_ifNotExists = 172; + public static readonly RULE_ifExists = 173; + public static readonly RULE_tablePropertyList = 174; + public static readonly RULE_tableProperty = 175; + public static readonly RULE_tablePropertyKey = 176; + public static readonly RULE_tablePropertyValue = 177; + public static readonly RULE_logicalOperator = 178; + public static readonly RULE_comparisonOperator = 179; + public static readonly RULE_bitOperator = 180; + public static readonly RULE_mathOperator = 181; + public static readonly RULE_unaryOperator = 182; + public static readonly RULE_constant = 183; + public static readonly RULE_timePointLiteral = 184; + public static readonly RULE_stringLiteral = 185; + public static readonly RULE_decimalLiteral = 186; + public static readonly RULE_booleanLiteral = 187; + public static readonly RULE_setQuantifier = 188; + public static readonly RULE_timePointUnit = 189; + public static readonly RULE_timeIntervalUnit = 190; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 191; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 192; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 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'", @@ -781,13 +787,13 @@ export class FlinkSqlParser extends SQLParserBase { "'ENFORCED'", "'EQUALS'", "'ESCAPE'", "'ESTIMATED_COST'", "'EVERY'", "'EXCEPT'", "'EXEC'", "'EXECUTE'", "'EXISTS'", "'EXP'", "'EXPLAIN'", "'EXTEND'", "'EXTENDED'", "'EXTERNAL'", "'EXTRACT'", "'FALSE'", - "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOR'", - "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", "'FULL'", - "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", "'GRANT'", - "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", "'HAVING'", - "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", "'IMPORT'", - "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", "'INOUT'", - "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", + "'FETCH'", "'FILTER'", "'FIRST_VALUE'", "'FLOAT'", "'FLOOR'", "'FOLLOWING'", + "'FOR'", "'FOREIGN'", "'FRAME_ROW'", "'FREE'", "'FRIDAY'", "'FROM'", + "'FULL'", "'FUNCTION'", "'FUNCTIONS'", "'FUSION'", "'GET'", "'GLOBAL'", + "'GRANT'", "'GROUP'", "'GROUPING'", "'GROUPS'", "'GROUP_CONCAT'", + "'HAVING'", "'HOLD'", "'HOUR'", "'IDENTITY'", "'IF'", "'ILIKE'", + "'IMPORT'", "'IN'", "'INCLUDE'", "'INDICATOR'", "'INITIAL'", "'INNER'", + "'INOUT'", "'INSENSITIVE'", "'INSERT'", "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERSECTION'", "'INTERVAL'", "'INTO'", "'IS'", "'JOIN'", "'JSON'", "'JSON_ARRAY'", "'JSON_ARRAYAGG'", "'JSON_EXECUTION_PLAN'", "'JSON_EXISTS'", "'JSON_OBJECT'", "'JSON_OBJECTAGG'", "'JSON_QUERY'", "'JSON_VALUE'", @@ -806,8 +812,8 @@ export class FlinkSqlParser extends SQLParserBase { "'OVERWRITE'", "'OVERWRITING'", "'PARAMETER'", "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PATTERN'", "'PER'", "'PERCENT'", "'PERCENTILE_CONT'", "'PERCENTILE_DISC'", "'PERCENT_RANK'", "'PERIOD'", "'PERMUTE'", - "'PIVOT'", "'PORTION'", "'POSITION'", "'POSITION_REGEX'", "'POWER'", - "'PRECEDES'", "'PRECISION'", "'PREPARE'", "'PREV'", "'PRIMARY'", + "'RETURNING'", "'PIVOT'", "'PORTION'", "'POSITION'", "'POSITION_REGEX'", + "'POWER'", "'PRECEDES'", "'PRECISION'", "'PREPARE'", "'PREV'", "'PRIMARY'", "'PROCEDURE'", "'QUALIFY'", "'QUARTERS'", "'RANGE'", "'RANK'", "'RAW'", "'READS'", "'REAL'", "'RECURSIVE'", "'REF'", "'REFERENCES'", "'REFERENCING'", "'REGR_AVGX'", "'REGR_AVGY'", "'REGR_COUNT'", "'REGR_INTERCEPT'", @@ -830,28 +836,29 @@ export class FlinkSqlParser extends SQLParserBase { "'TIME_TRUNC'", "'TINYINT'", "'TO'", "'TRAILING'", "'TRANSLATE'", "'TRANSLATE_REGEX'", "'TRANSLATION'", "'TREAT'", "'TRIGGER'", "'TRIM'", "'TRIM_ARRAY'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TUESDAY'", - "'UESCAPE'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", "'UNNEST'", "'UNPIVOT'", - "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", "'USER'", "'USING'", - "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", "'VARCHAR'", - "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", "'VIEWS'", - "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", "'WEEKS'", - "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", "'WINDOW'", - "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", "'AFTER'", - "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", "'CONSTRAINTS'", - "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", "'DECADE'", "'DESC'", - "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", "'EXCLUDING'", "'FILE'", - "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", "'IGNORE'", "'INCLUDING'", - "'JAR'", "'JARS'", "'JAVA'", "'KEY'", "'LAST'", "'LOAD'", "'MAP'", - "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", "'MINUTES'", "'MONTHS'", - "'NANOSECOND'", "'NULLS'", "'OPTIONS'", "'PAST'", "'PLAN'", "'PRECEDING'", - "'PYTHON'", "'PYTHON_ARCHIVES'", "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", - "'PYTHON_JAR'", "'PYTHON_PARAMETER'", "'PYTHON_REQUIREMENTS'", "'QUARTER'", - "'REMOVE'", "'RESTRICT'", "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", - "'SLIDE'", "'STEP'", "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", - "'VIEW'", "'WEEK'", "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", - "'}'", "','", "';'", "'@'", "'''", "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" + "'UESCAPE'", "'UNBOUNDED'", "'UNION'", "'UNIQUE'", "'UNKNOWN'", + "'UNNEST'", "'UNPIVOT'", "'UPDATE'", "'UPPER'", "'UPSERT'", "'USE'", + "'USER'", "'USING'", "'VALUE'", "'VALUES'", "'VALUE_OF'", "'VARBINARY'", + "'VARCHAR'", "'VARYING'", "'VAR_POP'", "'VAR_SAMP'", "'VERSIONING'", + "'VIEWS'", "'VIRTUAL'", "'WATERMARK'", "'WATERMARKS'", "'WEDNESDAY'", + "'WEEKS'", "'WHEN'", "'WHENEVER'", "'WHERE'", "'WIDTH_BUCKET'", + "'WINDOW'", "'WITH'", "'WITHIN'", "'WITHOUT'", "'YEAR'", "'ADD'", + "'AFTER'", "'ASC'", "'CASCADE'", "'CATALOG'", "'CENTURY'", "'CONFIG'", + "'CONSTRAINTS'", "'CUMULATE'", "'DATA'", "'DATABASE'", "'DAYS'", + "'DECADE'", "'DESC'", "'DESCRIPTOR'", "'DIV'", "'ENGINE'", "'EPOCH'", + "'EXCLUDING'", "'FILE'", "'FIRST'", "'GENERATED'", "'HOP'", "'HOURS'", + "'IGNORE'", "'INCLUDING'", "'JAR'", "'JARS'", "'JAVA'", "'KEY'", + "'LAST'", "'LOAD'", "'MAP'", "'MICROSECOND'", "'MILLENNIUM'", "'MILLISECOND'", + "'MINUTES'", "'MONTHS'", "'NANOSECOND'", "'NULLS'", "'OPTIONS'", + "'PAST'", "'PLAN'", "'PRECEDING'", "'PYTHON'", "'PYTHON_ARCHIVES'", + "'PYTHON_DEPENDENCIES'", "'PYTHON_FILES'", "'PYTHON_JAR'", "'PYTHON_PARAMETER'", + "'PYTHON_REQUIREMENTS'", "'QUARTER'", "'REMOVE'", "'RESTRICT'", + "'SECONDS'", "'SESSION'", "'SETS'", "'SIZE'", "'SLIDE'", "'STEP'", + "'TEMPORARY'", "'TIMECOL'", "'TUMBLE'", "'UNLOAD'", "'VIEW'", "'WEEK'", + "'YEARS'", "'ZONE'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", + "'^'", "'.'", "'['", "']'", "'('", "')'", "'{'", "'}'", "','", "';'", + "'@'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", + "'%'", "'||'", "'--'", "'/'", "'?'", "'=>'" ]; public static readonly symbolicNames = [ @@ -885,57 +892,59 @@ export class FlinkSqlParser extends SQLParserBase { "KW_EXCEPT", "KW_EXEC", "KW_EXECUTE", "KW_EXISTS", "KW_EXP", "KW_EXPLAIN", "KW_EXTEND", "KW_EXTENDED", "KW_EXTERNAL", "KW_EXTRACT", "KW_FALSE", "KW_FETCH", "KW_FILTER", "KW_FIRST_VALUE", "KW_FLOAT", "KW_FLOOR", - "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", "KW_FRIDAY", - "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", "KW_FUSION", - "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", "KW_GROUPS", - "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", "KW_IDENTITY", - "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", "KW_INDICATOR", - "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", "KW_INSERT", - "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", "KW_INTERVAL", - "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", "KW_JSON_ARRAYAGG", - "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", - "KW_JSON_QUERY", "KW_JSON_VALUE", "KW_LAG", "KW_LANGUAGE", "KW_LARGE", - "KW_LAST_VALUE", "KW_LATERAL", "KW_LEAD", "KW_LEADING", "KW_LEFT", - "KW_LIKE", "KW_LIKE_REGEX", "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", - "KW_LOCALTIMESTAMP", "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", - "KW_MATCH_RECOGNIZE", "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", - "KW_METADATA", "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", - "KW_MODIFIES", "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", - "KW_MONTH", "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", - "KW_NCHAR", "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", - "KW_NORMALIZE", "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", - "KW_NULLIF", "KW_NUMERIC", "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", - "KW_OF", "KW_OFFSET", "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", - "KW_OPEN", "KW_OR", "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", - "KW_PARAMETER", "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", - "KW_PATTERN", "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", - "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_PIVOT", "KW_PORTION", - "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", "KW_PRECISION", - "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", "KW_QUALIFY", - "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", "KW_REAL", - "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", "KW_REGR_AVGX", - "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", "KW_REGR_R2", - "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", "KW_RELEASE", - "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", "KW_RETURNS", - "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", "KW_SAFE_CAST", - "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", "KW_SAVEPOINT", - "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", "KW_SECOND", "KW_SEEK", - "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", "KW_SESSION_USER", - "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", "KW_SMALLINT", "KW_SOME", - "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", "KW_SQLEXCEPTION", "KW_SQLSTATE", - "KW_SQLWARNING", "KW_SQRT", "KW_START", "KW_STATEMENT", "KW_STATIC", - "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", "KW_STREAM", - "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", "KW_SUBSTRING", - "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", "KW_SYMMETRIC", - "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", "KW_TABLE", "KW_TABLES", - "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", "KW_TIME", "KW_TIMESTAMP", - "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", - "KW_TIMEZONE_MINUTE", "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", - "KW_TO", "KW_TRAILING", "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", - "KW_TREAT", "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", - "KW_TRUNCATE", "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNION", + "KW_FOLLOWING", "KW_FOR", "KW_FOREIGN", "KW_FRAME_ROW", "KW_FREE", + "KW_FRIDAY", "KW_FROM", "KW_FULL", "KW_FUNCTION", "KW_FUNCTIONS", + "KW_FUSION", "KW_GET", "KW_GLOBAL", "KW_GRANT", "KW_GROUP", "KW_GROUPING", + "KW_GROUPS", "KW_GROUP_CONCAT", "KW_HAVING", "KW_HOLD", "KW_HOUR", + "KW_IDENTITY", "KW_IF", "KW_ILIKE", "KW_IMPORT", "KW_IN", "KW_INCLUDE", + "KW_INDICATOR", "KW_INITIAL", "KW_INNER", "KW_INOUT", "KW_INSENSITIVE", + "KW_INSERT", "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERSECTION", + "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_JOIN", "KW_JSON", "KW_JSON_ARRAY", + "KW_JSON_ARRAYAGG", "KW_JSON_EXECUTION_PLAN", "KW_JSON_EXISTS", + "KW_JSON_OBJECT", "KW_JSON_OBJECTAGG", "KW_JSON_QUERY", "KW_JSON_VALUE", + "KW_LAG", "KW_LANGUAGE", "KW_LARGE", "KW_LAST_VALUE", "KW_LATERAL", + "KW_LEAD", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_LIKE_REGEX", + "KW_LIMIT", "KW_LN", "KW_LOCAL", "KW_LOCALTIME", "KW_LOCALTIMESTAMP", + "KW_LOWER", "KW_MATCH", "KW_MATCHES", "KW_MATCH_NUMBER", "KW_MATCH_RECOGNIZE", + "KW_MAX", "KW_MEASURES", "KW_MEMBER", "KW_MERGE", "KW_METADATA", + "KW_METHOD", "KW_MIN", "KW_MINUS", "KW_MINUTE", "KW_MOD", "KW_MODIFIES", + "KW_MODIFY", "KW_MODULE", "KW_MODULES", "KW_MONDAY", "KW_MONTH", + "KW_MORE", "KW_MULTISET", "KW_NATIONAL", "KW_NATURAL", "KW_NCHAR", + "KW_NCLOB", "KW_NEW", "KW_NEXT", "KW_NO", "KW_NONE", "KW_NORMALIZE", + "KW_NOT", "KW_NTH_VALUE", "KW_NTILE", "KW_NULL", "KW_NULLIF", "KW_NUMERIC", + "KW_OCCURRENCES_REGEX", "KW_OCTET_LENGTH", "KW_OF", "KW_OFFSET", + "KW_OLD", "KW_OMIT", "KW_ON", "KW_ONE", "KW_ONLY", "KW_OPEN", "KW_OR", + "KW_ORDER", "KW_ORDINAL", "KW_OUT", "KW_OUTER", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_OVERWRITING", "KW_PARAMETER", + "KW_PARTITION", "KW_PARTITIONED", "KW_PARTITIONS", "KW_PATTERN", + "KW_PER", "KW_PERCENT", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", + "KW_PERCENT_RANK", "KW_PERIOD", "KW_PERMUTE", "KW_RETURNING", "KW_PIVOT", + "KW_PORTION", "KW_POSITION", "KW_POSITION_REGEX", "KW_POWER", "KW_PRECEDES", + "KW_PRECISION", "KW_PREPARE", "KW_PREV", "KW_PRIMARY", "KW_PROCEDURE", + "KW_QUALIFY", "KW_QUARTERS", "KW_RANGE", "KW_RANK", "KW_RAW", "KW_READS", + "KW_REAL", "KW_RECURSIVE", "KW_REF", "KW_REFERENCES", "KW_REFERENCING", + "KW_REGR_AVGX", "KW_REGR_AVGY", "KW_REGR_COUNT", "KW_REGR_INTERCEPT", + "KW_REGR_R2", "KW_REGR_SLOPE", "KW_REGR_SXX", "KW_REGR_SXY", "KW_REGR_SYY", + "KW_RELEASE", "KW_RENAME", "KW_RESET", "KW_RESULT", "KW_RETURN", + "KW_RETURNS", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_ROLLBACK", + "KW_ROLLUP", "KW_ROW", "KW_ROWS", "KW_ROW_NUMBER", "KW_RUNNING", + "KW_SAFE_CAST", "KW_SAFE_OFFSET", "KW_SAFE_ORDINAL", "KW_SATURDAY", + "KW_SAVEPOINT", "KW_SCALA", "KW_SCOPE", "KW_SCROLL", "KW_SEARCH", + "KW_SECOND", "KW_SEEK", "KW_SELECT", "KW_SENSITIVE", "KW_SEPARATOR", + "KW_SESSION_USER", "KW_SET", "KW_SHOW", "KW_SIMILAR", "KW_SKIP", + "KW_SMALLINT", "KW_SOME", "KW_SPECIFIC", "KW_SPECIFICTYPE", "KW_SQL", + "KW_SQLEXCEPTION", "KW_SQLSTATE", "KW_SQLWARNING", "KW_SQRT", "KW_START", + "KW_STATEMENT", "KW_STATIC", "KW_STATISTICS", "KW_STDDEV_POP", "KW_STDDEV_SAMP", + "KW_STREAM", "KW_STRING", "KW_STRING_AGG", "KW_SUBMULTISET", "KW_SUBSET", + "KW_SUBSTRING", "KW_SUBSTRING_REGEX", "KW_SUCCEEDS", "KW_SUM", "KW_SUNDAY", + "KW_SYMMETRIC", "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_USER", + "KW_TABLE", "KW_TABLES", "KW_TABLESAMPLE", "KW_THEN", "KW_THURSDAY", + "KW_TIME", "KW_TIMESTAMP", "KW_TIMESTAMP_DIFF", "KW_TIMESTAMP_LTZ", + "KW_TIMESTAMP_TRUNC", "KW_TIMEZONE_HOUR", "KW_TIMEZONE_MINUTE", + "KW_TIME_DIFF", "KW_TIME_TRUNC", "KW_TINYINT", "KW_TO", "KW_TRAILING", + "KW_TRANSLATE", "KW_TRANSLATE_REGEX", "KW_TRANSLATION", "KW_TREAT", + "KW_TRIGGER", "KW_TRIM", "KW_TRIM_ARRAY", "KW_TRUE", "KW_TRUNCATE", + "KW_TRY_CAST", "KW_TUESDAY", "KW_UESCAPE", "KW_UNBOUNDED", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNNEST", "KW_UNPIVOT", "KW_UPDATE", "KW_UPPER", "KW_UPSERT", "KW_USE", "KW_USER", "KW_USING", "KW_VALUE", "KW_VALUES", "KW_VALUE_OF", "KW_VARBINARY", "KW_VARCHAR", "KW_VARYING", @@ -998,9 +1007,10 @@ export class FlinkSqlParser extends SQLParserBase { "orderByClause", "orderItemDefinition", "limitClause", "partitionByClause", "quantifiers", "measuresClause", "patternDefinition", "patternVariable", "outputMode", "afterMatchStrategy", "patternVariablesDefinition", - "windowFrame", "frameBound", "withinClause", "expression", "booleanExpression", - "predicate", "likePredicate", "valueExpression", "functionCallExpression", - "primaryExpression", "functionNameCreate", "functionName", "functionNameAndParams", + "windowFrame", "frameBound", "frameStart", "frameEnd", "withinClause", + "expression", "booleanExpression", "predicate", "likePredicate", + "valueExpression", "functionCallExpression", "primaryExpression", + "jsonValueExpression", "functionNameCreate", "functionName", "functionNameAndParams", "functionNameWithParams", "functionParam", "dereferenceDefinition", "correlationName", "qualifiedName", "timeIntervalExpression", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", @@ -1039,21 +1049,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 389; + 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 - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { + while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 178 || ((((_la - 315)) & ~0x1F) === 0 && ((1 << (_la - 315)) & 822083585) !== 0) || ((((_la - 414)) & ~0x1F) === 0 && ((1 << (_la - 414)) & 142606353) !== 0) || _la === 454 || _la === 472 || ((((_la - 493)) & ~0x1F) === 0 && ((1 << (_la - 493)) & 134219777) !== 0) || _la === 525) { { { - this.state = 386; + this.state = 392; this.singleStatement(); } } - this.state = 391; + this.state = 397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 392; + this.state = 398; this.match(FlinkSqlParser.EOF); } } @@ -1075,7 +1085,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 399; + this.state = 405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1101,14 +1111,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 394; + this.state = 400; this.sqlStatement(); - this.state = 396; + this.state = 402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 395; + this.state = 401; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1118,7 +1128,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 398; + this.state = 404; this.emptyStatement(); } break; @@ -1144,90 +1154,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 413; + this.state = 419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 401; + this.state = 407; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 402; + this.state = 408; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 403; + this.state = 409; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 404; + this.state = 410; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 405; + this.state = 411; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 406; + this.state = 412; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 407; + this.state = 413; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 408; + this.state = 414; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 409; + this.state = 415; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 410; + this.state = 416; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 411; + this.state = 417; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 412; + this.state = 418; this.dtAddStatement(); } break; @@ -1253,7 +1263,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 415; + this.state = 421; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1275,104 +1285,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 431; + this.state = 437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 423; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 418; + this.state = 424; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 419; + this.state = 425; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 420; + this.state = 426; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 421; + this.state = 427; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 422; + this.state = 428; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 423; + this.state = 429; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 424; + this.state = 430; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 425; + this.state = 431; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 426; + this.state = 432; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 427; + this.state = 433; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 428; + this.state = 434; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 429; + this.state = 435; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 430; + this.state = 436; this.dropFunction(); } break; @@ -1396,7 +1406,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 435; + this.state = 441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1405,7 +1415,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 433; + this.state = 439; this.queryStatement(0); } break; @@ -1414,7 +1424,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 434; + this.state = 440; this.insertStatement(); } break; @@ -1443,16 +1453,16 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 437; + this.state = 443; _la = this.tokenStream.LA(1); - if(!(_la === 109 || _la === 451)) { + if(!(_la === 109 || _la === 454)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 444; this.tablePath(); } } @@ -1476,24 +1486,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 440; + this.state = 446; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 444; + 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 = 441; + this.state = 447; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 442; + this.state = 448; this.match(FlinkSqlParser.KW_PLAN); - this.state = 443; + this.state = 449; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1509,24 +1519,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 449; + this.state = 455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 446; + this.state = 452; this.dmlStatement(); } break; case 2: { - this.state = 447; + this.state = 453; this.insertSimpleStatement(); } break; case 3: { - this.state = 448; + this.state = 454; this.insertMulStatement(); } break; @@ -1554,21 +1564,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 451; + this.state = 457; this.explainDetail(); - this.state = 456; + this.state = 462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 452; + this.state = 458; this.match(FlinkSqlParser.COMMA); - this.state = 453; + this.state = 459; this.explainDetail(); } } - this.state = 458; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1595,9 +1605,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 459; + this.state = 465; _la = this.tokenStream.LA(1); - if(!(_la === 45 || _la === 128 || _la === 189)) { + if(!(_la === 45 || _la === 128 || _la === 190)) { this.errorHandler.recoverInline(this); } else { @@ -1624,33 +1634,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 467; + this.state = 473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 461; + this.state = 467; this.match(FlinkSqlParser.KW_USE); - this.state = 462; + this.state = 468; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 463; + this.state = 469; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 464; + this.state = 470; this.match(FlinkSqlParser.KW_USE); - this.state = 465; + this.state = 471; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 466; + this.state = 472; this.useModuleStatement(); } break; @@ -1677,25 +1687,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 469; + this.state = 475; this.match(FlinkSqlParser.KW_USE); - this.state = 470; + this.state = 476; this.match(FlinkSqlParser.KW_MODULES); - this.state = 471; + this.state = 477; this.uid(); - this.state = 476; + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 472; + this.state = 478; this.match(FlinkSqlParser.COMMA); - this.state = 473; + this.state = 479; this.uid(); } } - this.state = 478; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1720,17 +1730,17 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 521; + this.state = 527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 479; + this.state = 485; this.match(FlinkSqlParser.KW_SHOW); - this.state = 480; + this.state = 486; _la = this.tokenStream.LA(1); - if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { + if(!(_la === 42 || _la === 90 || _la === 426 || _la === 468)) { this.errorHandler.recoverInline(this); } else { @@ -1742,13 +1752,13 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 481; + this.state = 487; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 488; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 483; + this.state = 489; _la = this.tokenStream.LA(1); - if(!(_la === 442 || _la === 448)) { + if(!(_la === 445 || _la === 451)) { this.errorHandler.recoverInline(this); } else { @@ -1760,35 +1770,35 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 484; + this.state = 490; this.match(FlinkSqlParser.KW_SHOW); - this.state = 485; + this.state = 491; this.match(FlinkSqlParser.KW_TABLES); - this.state = 488; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151 || _la === 170) { + if (_la === 152 || _la === 171) { { - this.state = 486; + this.state = 492; _la = this.tokenStream.LA(1); - if(!(_la === 151 || _la === 170)) { + if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 487; + this.state = 493; this.databasePath(); } } - this.state = 491; + this.state = 497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203 || _la === 242) { + if (_la === 204 || _la === 243) { { - this.state = 490; + this.state = 496; this.likePredicate(); } } @@ -1798,41 +1808,41 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 493; + this.state = 499; this.match(FlinkSqlParser.KW_SHOW); - this.state = 494; + this.state = 500; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 495; + this.state = 501; _la = this.tokenStream.LA(1); - if(!(_la === 151 || _la === 170)) { + if(!(_la === 152 || _la === 171)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 498; + this.state = 504; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 496; + this.state = 502; this.viewPath(); } break; case 2: { - this.state = 497; + this.state = 503; this.tablePath(); } break; } - this.state = 501; + this.state = 507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203 || _la === 242) { + if (_la === 204 || _la === 243) { { - this.state = 500; + this.state = 506; this.likePredicate(); } } @@ -1842,26 +1852,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 503; + this.state = 509; this.match(FlinkSqlParser.KW_SHOW); - this.state = 504; + this.state = 510; this.match(FlinkSqlParser.KW_CREATE); - this.state = 509; + this.state = 515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 505; + this.state = 511; this.match(FlinkSqlParser.KW_TABLE); - this.state = 506; + this.state = 512; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 507; + this.state = 513; this.match(FlinkSqlParser.KW_VIEW); - this.state = 508; + this.state = 514; this.viewPath(); } break; @@ -1873,38 +1883,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 511; + this.state = 517; this.match(FlinkSqlParser.KW_SHOW); - this.state = 513; + this.state = 519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 412) { + if (_la === 415) { { - this.state = 512; + this.state = 518; this.match(FlinkSqlParser.KW_USER); } } - this.state = 515; + this.state = 521; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 516; + this.state = 522; this.match(FlinkSqlParser.KW_SHOW); - this.state = 518; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 152) { + if (_la === 153) { { - this.state = 517; + this.state = 523; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 520; + this.state = 526; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1930,20 +1940,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 523; + this.state = 529; this.match(FlinkSqlParser.KW_LOAD); - this.state = 524; + this.state = 530; this.match(FlinkSqlParser.KW_MODULE); - this.state = 525; + this.state = 531; this.uid(); - this.state = 528; + this.state = 534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 526; + this.state = 532; this.match(FlinkSqlParser.KW_WITH); - this.state = 527; + this.state = 533; this.tablePropertyList(); } break; @@ -1970,11 +1980,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 530; + this.state = 536; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 531; + this.state = 537; this.match(FlinkSqlParser.KW_MODULE); - this.state = 532; + this.state = 538; this.uid(); } } @@ -1998,14 +2008,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 540; this.match(FlinkSqlParser.KW_SET); - this.state = 536; + this.state = 542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 535; + this.state = 541; this.tableProperty(); } break; @@ -2032,14 +2042,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 538; + this.state = 544; this.match(FlinkSqlParser.KW_RESET); - this.state = 540; + this.state = 546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 539; + this.state = 545; this.tablePropertyKey(); } break; @@ -2067,18 +2077,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 542; + this.state = 548; _la = this.tokenStream.LA(1); - if(!(_la === 438 || _la === 490)) { + if(!(_la === 441 || _la === 493)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 543; + this.state = 549; this.match(FlinkSqlParser.KW_JAR); - this.state = 544; + this.state = 550; this.jarFileName(); } } @@ -2101,28 +2111,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 596; + this.state = 602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 546; + this.state = 552; this.match(FlinkSqlParser.KW_ADD); - this.state = 547; + this.state = 553; this.match(FlinkSqlParser.KW_JAR); - this.state = 548; + this.state = 554; this.match(FlinkSqlParser.KW_WITH); - this.state = 549; + this.state = 555; this.dtFilePath(); - this.state = 552; + this.state = 558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 550; + this.state = 556; this.match(FlinkSqlParser.KW_AS); - this.state = 551; + this.state = 557; this.uid(); } } @@ -2132,34 +2142,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 554; + this.state = 560; this.match(FlinkSqlParser.KW_ADD); - this.state = 555; + this.state = 561; this.match(FlinkSqlParser.KW_FILE); - this.state = 556; + this.state = 562; this.match(FlinkSqlParser.KW_WITH); - this.state = 557; + this.state = 563; this.dtFilePath(); - this.state = 560; + this.state = 566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 558; + this.state = 564; this.match(FlinkSqlParser.KW_AS); - this.state = 559; + this.state = 565; this.uid(); } } - this.state = 564; + this.state = 570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 312) { + if (_la === 314) { { - this.state = 562; + this.state = 568; this.match(FlinkSqlParser.KW_RENAME); - this.state = 563; + this.state = 569; this.uid(); } } @@ -2169,81 +2179,81 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 566; + this.state = 572; this.match(FlinkSqlParser.KW_ADD); - this.state = 567; + this.state = 573; _la = this.tokenStream.LA(1); - if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { + if(!(((((_la - 486)) & ~0x1F) === 0 && ((1 << (_la - 486)) & 47) !== 0))) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 568; + this.state = 574; this.match(FlinkSqlParser.KW_WITH); - this.state = 569; + this.state = 575; this.dtFilePath(); - this.state = 570; + this.state = 576; this.match(FlinkSqlParser.KW_RENAME); - this.state = 571; + this.state = 577; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 573; + this.state = 579; this.match(FlinkSqlParser.KW_ADD); - this.state = 574; + this.state = 580; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 575; + this.state = 581; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 576; + this.state = 582; this.match(FlinkSqlParser.KW_ADD); - this.state = 577; + this.state = 583; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 578; + this.state = 584; this.match(FlinkSqlParser.KW_FILE); - this.state = 579; + this.state = 585; this.match(FlinkSqlParser.KW_WITH); - this.state = 580; + this.state = 586; this.dtFilePath(); - this.state = 581; + this.state = 587; this.match(FlinkSqlParser.KW_RENAME); - this.state = 582; + this.state = 588; this.uid(); - this.state = 583; + this.state = 589; this.match(FlinkSqlParser.KW_KEY); - this.state = 584; + this.state = 590; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 586; + this.state = 592; this.match(FlinkSqlParser.KW_ADD); - this.state = 587; + this.state = 593; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 588; + this.state = 594; this.match(FlinkSqlParser.KW_FILE); - this.state = 589; + this.state = 595; this.match(FlinkSqlParser.KW_WITH); - this.state = 590; + this.state = 596; this.dtFilePath(); - this.state = 591; + this.state = 597; this.match(FlinkSqlParser.KW_FOR); - this.state = 592; + this.state = 598; this.uid(); - this.state = 593; + this.state = 599; this.match(FlinkSqlParser.KW_AS); - this.state = 594; + this.state = 600; this.uid(); } break; @@ -2271,7 +2281,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 602; + this.state = 608; this.errorHandler.sync(this); alternative = 1; do { @@ -2279,17 +2289,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 599; + this.state = 605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 535) { + if (_la === 538) { { - this.state = 598; + this.state = 604; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 601; + this.state = 607; this.uid(); } } @@ -2297,7 +2307,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 604; + 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); @@ -2323,18 +2333,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 608; + this.state = 614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 606; + this.state = 612; this.simpleCreateTable(); } break; case 2: { - this.state = 607; + this.state = 613; this.createTableAsSelect(); } break; @@ -2363,122 +2373,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 610; + this.state = 616; this.match(FlinkSqlParser.KW_CREATE); - this.state = 612; + this.state = 618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 501) { { - this.state = 611; + this.state = 617; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 614; + this.state = 620; this.match(FlinkSqlParser.KW_TABLE); - this.state = 616; + this.state = 622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 615; + this.state = 621; this.ifNotExists(); } } - this.state = 618; + this.state = 624; this.tablePathCreate(); - this.state = 619; + this.state = 625; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 620; + this.state = 626; this.columnOptionDefinition(); - this.state = 625; + 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 = 621; + this.state = 627; this.match(FlinkSqlParser.COMMA); - this.state = 622; + this.state = 628; this.columnOptionDefinition(); } } } - this.state = 627; + this.state = 633; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 630; + this.state = 636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 628; + this.state = 634; this.match(FlinkSqlParser.COMMA); - this.state = 629; + this.state = 635; this.watermarkDefinition(); } break; } - this.state = 634; + this.state = 640; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 632; + this.state = 638; this.match(FlinkSqlParser.COMMA); - this.state = 633; + this.state = 639; this.tableConstraint(); } break; } - this.state = 638; + this.state = 644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 524) { { - this.state = 636; + this.state = 642; this.match(FlinkSqlParser.COMMA); - this.state = 637; + this.state = 643; this.selfDefinitionClause(); } } - this.state = 640; + this.state = 646; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 643; + this.state = 649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 641; + this.state = 647; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 642; + this.state = 648; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 646; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 270) { + if (_la === 271) { { - this.state = 645; + this.state = 651; this.partitionDefinition(); } } - this.state = 648; + this.state = 654; this.withOption(); - this.state = 650; + this.state = 656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203) { + if (_la === 204) { { - this.state = 649; + this.state = 655; this.likeDefinition(); } } @@ -2506,32 +2516,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 652; + this.state = 658; this.match(FlinkSqlParser.KW_CREATE); - this.state = 653; + this.state = 659; this.match(FlinkSqlParser.KW_TABLE); - this.state = 655; + this.state = 661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 654; + this.state = 660; this.ifNotExists(); } } - this.state = 657; + this.state = 663; this.tablePathCreate(); - this.state = 658; + this.state = 664; this.withOption(); - this.state = 661; + this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 659; + this.state = 665; this.match(FlinkSqlParser.KW_AS); - this.state = 660; + this.state = 666; this.queryStatement(0); } } @@ -2556,27 +2566,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 666; + this.state = 672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 663; + this.state = 669; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 664; + this.state = 670; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 665; + this.state = 671; this.computedColumnDefinition(); } break; @@ -2603,28 +2613,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 668; + this.state = 674; this.columnNameCreate(); - this.state = 669; + this.state = 675; this.columnType(); - this.state = 671; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { + if (_la === 64 || _la === 243 || _la === 246 || _la === 291) { { - this.state = 670; + this.state = 676; this.columnConstraint(); } } - this.state = 675; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 673; + this.state = 679; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 674; + this.state = 680; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2649,20 +2659,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 679; + this.state = 685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 677; + this.state = 683; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 678; + this.state = 684; this.expression(); } break; @@ -2686,20 +2696,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 683; + this.state = 689; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 681; + this.state = 687; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 682; + this.state = 688; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2727,7 +2737,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 685; + this.state = 691; this.uid(); } } @@ -2752,27 +2762,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 687; + this.state = 693; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 688; + this.state = 694; this.columnName(); - this.state = 693; + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 689; + this.state = 695; this.match(FlinkSqlParser.COMMA); - this.state = 690; + this.state = 696; this.columnName(); } } - this.state = 695; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 696; + this.state = 702; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2795,7 +2805,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 735; + this.state = 741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2803,10 +2813,10 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 698; + this.state = 704; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 32 || _la === 91 || _la === 245)) { + if(!(_la === 32 || _la === 91 || _la === 246)) { localContext._colType = this.errorHandler.recoverInline(this); } else { @@ -2831,22 +2841,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 699; + this.state = 705; 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 === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { + if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 179 || _la === 180 || _la === 347 || _la === 363 || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 521) !== 0) || _la === 420 || _la === 421)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 701; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 700; + this.state = 706; this.lengthOneDimension(); } } @@ -2856,45 +2866,45 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 703; + this.state = 709; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 705; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 704; + this.state = 710; this.lengthOneDimension(); } } - this.state = 713; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 434 || _la === 436) { + if (_la === 437 || _la === 439) { { - this.state = 707; + this.state = 713; _la = this.tokenStream.LA(1); - if(!(_la === 434 || _la === 436)) { + if(!(_la === 437 || _la === 439)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 709; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 207) { + if (_la === 208) { { - this.state = 708; + this.state = 714; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 711; + this.state = 717; this.match(FlinkSqlParser.KW_TIME); - this.state = 712; + this.state = 718; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2908,22 +2918,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 715; + this.state = 721; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { + if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 248)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 717; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 716; + this.state = 722; this.lengthTwoOptionalDimension(); } } @@ -2934,22 +2944,22 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 719; + this.state = 725; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 13 || _la === 232)) { + if(!(_la === 13 || _la === 233)) { localContext._colType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 721; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508) { + if (_la === 511) { { - this.state = 720; + this.state = 726; this.lengthOneTypeDimension(); } } @@ -2959,14 +2969,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 723; + this.state = 729; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 725; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508) { + if (_la === 511) { { - this.state = 724; + this.state = 730; this.mapTypeDimension(); } } @@ -2976,14 +2986,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 727; + this.state = 733; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 729; + this.state = 735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 508 || _la === 517) { + if (_la === 511 || _la === 520) { { - this.state = 728; + this.state = 734; this.rowTypeDimension(); } } @@ -2993,14 +3003,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 731; + this.state = 737; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 733; + this.state = 739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 732; + this.state = 738; this.lengthTwoStringDimension(); } } @@ -3031,11 +3041,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 743; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 738; + this.state = 744; this.decimalLiteral(); - this.state = 739; + this.state = 745; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3060,23 +3070,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 741; + this.state = 747; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 742; + this.state = 748; this.decimalLiteral(); - this.state = 745; + this.state = 751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 524) { { - this.state = 743; + this.state = 749; this.match(FlinkSqlParser.COMMA); - this.state = 744; + this.state = 750; this.decimalLiteral(); } } - this.state = 747; + this.state = 753; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3101,23 +3111,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 749; + this.state = 755; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 750; + this.state = 756; this.stringLiteral(); - this.state = 753; + this.state = 759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 521) { + if (_la === 524) { { - this.state = 751; + this.state = 757; this.match(FlinkSqlParser.COMMA); - this.state = 752; + this.state = 758; this.stringLiteral(); } } - this.state = 755; + this.state = 761; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3141,11 +3151,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 757; + this.state = 763; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 758; + this.state = 764; this.columnType(); - this.state = 759; + this.state = 765; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3169,17 +3179,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 761; + this.state = 767; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 762; + this.state = 768; this.columnType(); { - this.state = 763; + this.state = 769; this.match(FlinkSqlParser.COMMA); - this.state = 764; + this.state = 770; this.columnType(); } - this.state = 766; + this.state = 772; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3202,68 +3212,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 796; + this.state = 802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 768; + this.state = 774; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 769; + this.state = 775; this.columnName(); - this.state = 770; + this.state = 776; this.columnType(); - this.state = 777; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 771; + this.state = 777; this.match(FlinkSqlParser.COMMA); - this.state = 772; + this.state = 778; this.columnName(); - this.state = 773; + this.state = 779; this.columnType(); } } - this.state = 779; + this.state = 785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 780; + this.state = 786; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 782; + this.state = 788; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 783; + this.state = 789; this.columnName(); - this.state = 784; + this.state = 790; this.columnType(); - this.state = 791; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 785; + this.state = 791; this.match(FlinkSqlParser.COMMA); - this.state = 786; + this.state = 792; this.columnName(); - this.state = 787; + this.state = 793; this.columnType(); } } - this.state = 793; + this.state = 799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 794; + this.state = 800; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3290,37 +3300,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 812; + this.state = 818; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 800; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 798; + this.state = 804; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 799; + this.state = 805; this.constraintName(); } } - this.state = 802; + this.state = 808; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 803; + this.state = 809; this.match(FlinkSqlParser.KW_KEY); - this.state = 806; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 804; + this.state = 810; this.match(FlinkSqlParser.KW_NOT); - this.state = 805; + this.state = 811; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3331,17 +3341,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 809; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 808; + this.state = 814; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 811; + this.state = 817; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3370,30 +3380,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 814; + this.state = 820; this.columnNameCreate(); - this.state = 815; + this.state = 821; this.columnType(); - this.state = 816; + this.state = 822; this.match(FlinkSqlParser.KW_METADATA); - this.state = 819; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151) { + if (_la === 152) { { - this.state = 817; + this.state = 823; this.match(FlinkSqlParser.KW_FROM); - this.state = 818; + this.state = 824; this.metadataKey(); } } - this.state = 822; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 424) { + if (_la === 427) { { - this.state = 821; + this.state = 827; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3420,7 +3430,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 824; + this.state = 830; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3445,20 +3455,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 832; this.columnNameCreate(); - this.state = 827; + this.state = 833; this.match(FlinkSqlParser.KW_AS); - this.state = 828; + this.state = 834; this.computedColumnExpression(); - this.state = 831; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 829; + this.state = 835; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 830; + this.state = 836; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3485,7 +3495,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 839; this.expression(); } } @@ -3509,15 +3519,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 841; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 836; + this.state = 842; this.match(FlinkSqlParser.KW_FOR); - this.state = 837; + this.state = 843; this.columnName(); - this.state = 838; + this.state = 844; this.match(FlinkSqlParser.KW_AS); - this.state = 839; + this.state = 845; this.expression(); } } @@ -3542,27 +3552,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 841; + this.state = 847; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 842; + this.state = 848; this.constraintName(); } } - this.state = 845; + this.state = 851; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 846; + this.state = 852; this.match(FlinkSqlParser.KW_KEY); - this.state = 847; + this.state = 853; this.columnNameList(); - this.state = 848; + this.state = 854; this.match(FlinkSqlParser.KW_NOT); - this.state = 849; + this.state = 855; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3586,7 +3596,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 857; this.identifier(); } } @@ -3610,11 +3620,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 859; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 854; + this.state = 860; this.match(FlinkSqlParser.KW_FOR); - this.state = 855; + this.state = 861; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3638,11 +3648,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 857; + this.state = 863; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 858; + this.state = 864; this.match(FlinkSqlParser.KW_BY); - this.state = 859; + this.state = 865; this.transformList(); } } @@ -3667,27 +3677,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 861; + this.state = 867; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 862; + this.state = 868; this.transform(); - this.state = 867; + this.state = 873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 863; + this.state = 869; this.match(FlinkSqlParser.COMMA); - this.state = 864; + this.state = 870; this.transform(); } } - this.state = 869; + this.state = 875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 870; + this.state = 876; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3710,14 +3720,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 884; + this.state = 890; 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 = 872; + this.state = 878; this.columnName(); } break; @@ -3725,27 +3735,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 873; + this.state = 879; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 874; + this.state = 880; this.transformArgument(); - this.state = 879; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 875; + this.state = 881; this.match(FlinkSqlParser.COMMA); - this.state = 876; + this.state = 882; this.transformArgument(); } } - this.state = 881; + this.state = 887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 882; + this.state = 888; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3769,20 +3779,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 888; + this.state = 894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 892; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 887; + this.state = 893; this.constant(); } break; @@ -3809,32 +3819,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 890; + this.state = 896; this.match(FlinkSqlParser.KW_LIKE); - this.state = 891; + this.state = 897; this.tablePath(); - this.state = 900; + this.state = 906; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 892; + this.state = 898; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 896; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 267 || _la === 456 || _la === 463) { + while (_la === 268 || _la === 459 || _la === 466) { { { - this.state = 893; + this.state = 899; this.likeOption(); } } - this.state = 898; + this.state = 904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 899; + this.state = 905; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3860,25 +3870,25 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 906; + this.state = 912; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 902; + this.state = 908; _la = this.tokenStream.LA(1); - if(!(_la === 456 || _la === 463)) { + if(!(_la === 459 || _la === 466)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 903; + this.state = 909; _la = this.tokenStream.LA(1); - if(!(_la === 5 || _la === 271 || _la === 445)) { + if(!(_la === 5 || _la === 272 || _la === 448)) { this.errorHandler.recoverInline(this); } else { @@ -3892,18 +3902,18 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 904; + this.state = 910; _la = this.tokenStream.LA(1); - if(!(_la === 267 || _la === 456 || _la === 463)) { + if(!(_la === 268 || _la === 459 || _la === 466)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 905; + this.state = 911; _la = this.tokenStream.LA(1); - if(!(_la === 426 || _la === 459 || _la === 478)) { + if(!(_la === 429 || _la === 462 || _la === 481)) { this.errorHandler.recoverInline(this); } else { @@ -3935,13 +3945,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 908; + this.state = 914; this.match(FlinkSqlParser.KW_CREATE); - this.state = 909; + this.state = 915; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 910; + this.state = 916; this.catalogPathCreate(); - this.state = 911; + this.state = 917; this.withOption(); } } @@ -3966,35 +3976,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 913; + this.state = 919; this.match(FlinkSqlParser.KW_CREATE); - this.state = 914; + this.state = 920; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 916; + this.state = 922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 915; + this.state = 921; this.ifNotExists(); } } - this.state = 918; + this.state = 924; this.databasePathCreate(); - this.state = 921; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 919; + this.state = 925; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 920; + this.state = 926; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 923; + this.state = 929; this.withOption(); } } @@ -4019,57 +4029,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 931; this.match(FlinkSqlParser.KW_CREATE); - this.state = 927; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 501) { { - this.state = 926; + this.state = 932; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 929; + this.state = 935; this.match(FlinkSqlParser.KW_VIEW); - this.state = 931; + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 930; + this.state = 936; this.ifNotExists(); } } - this.state = 933; + this.state = 939; this.viewPathCreate(); - this.state = 935; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 934; + this.state = 940; this.columnNameList(); } } - this.state = 939; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 937; + this.state = 943; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 938; + this.state = 944; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 941; + this.state = 947; this.match(FlinkSqlParser.KW_AS); - this.state = 942; + this.state = 948; this.queryStatement(0); } } @@ -4094,54 +4104,54 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 944; + this.state = 950; this.match(FlinkSqlParser.KW_CREATE); - this.state = 948; + this.state = 954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 945; + this.state = 951; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 946; + this.state = 952; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 947; + this.state = 953; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 950; + this.state = 956; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 952; + this.state = 958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 951; + this.state = 957; this.ifNotExists(); } } - this.state = 954; + this.state = 960; this.functionNameCreate(); - this.state = 955; + this.state = 961; this.match(FlinkSqlParser.KW_AS); - this.state = 956; + this.state = 962; this.identifier(); - this.state = 959; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 957; + this.state = 963; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 958; + this.state = 964; _la = this.tokenStream.LA(1); - if(!(_la === 331 || _la === 466 || _la === 482)) { + if(!(_la === 333 || _la === 469 || _la === 485)) { this.errorHandler.recoverInline(this); } else { @@ -4151,12 +4161,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 413) { + if (_la === 416) { { - this.state = 961; + this.state = 967; this.usingClause(); } } @@ -4184,27 +4194,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 964; + this.state = 970; this.match(FlinkSqlParser.KW_USING); - this.state = 965; + this.state = 971; this.match(FlinkSqlParser.KW_JAR); - this.state = 966; - this.jarFileName(); this.state = 972; + this.jarFileName(); + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 967; + this.state = 973; this.match(FlinkSqlParser.COMMA); - this.state = 968; + this.state = 974; this.match(FlinkSqlParser.KW_JAR); - this.state = 969; + this.state = 975; this.jarFileName(); } } - this.state = 974; + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4230,7 +4240,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 981; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4255,52 +4265,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 983; this.match(FlinkSqlParser.KW_ALTER); - this.state = 978; + this.state = 984; this.match(FlinkSqlParser.KW_TABLE); - this.state = 980; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 979; + this.state = 985; this.ifExists(); } } - this.state = 982; - this.tablePath(); this.state = 988; + this.tablePath(); + this.state = 994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 983; + this.state = 989; this.renameDefinition(); } break; case 2: { - this.state = 984; + this.state = 990; this.setKeyValueDefinition(); } break; case 3: { - this.state = 985; + this.state = 991; this.addConstraint(); } break; case 4: { - this.state = 986; + this.state = 992; this.dropConstraint(); } break; case 5: { - this.state = 987; + this.state = 993; this.addUnique(); } break; @@ -4328,21 +4338,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 990; + this.state = 996; this.match(FlinkSqlParser.KW_RENAME); - this.state = 992; + this.state = 998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (((((_la - 441)) & ~0x1F) === 0 && ((1 << (_la - 441)) & 4294967295) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 4294967295) !== 0) || ((((_la - 505)) & ~0x1F) === 0 && ((1 << (_la - 505)) & 15) !== 0) || ((((_la - 541)) & ~0x1F) === 0 && ((1 << (_la - 541)) & 19) !== 0)) { { - this.state = 991; + this.state = 997; this.uid(); } } - this.state = 994; + this.state = 1000; this.match(FlinkSqlParser.KW_TO); - this.state = 995; + this.state = 1001; this.uid(); } } @@ -4366,9 +4376,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 997; + this.state = 1003; this.match(FlinkSqlParser.KW_SET); - this.state = 998; + this.state = 1004; this.tablePropertyList(); } } @@ -4393,24 +4403,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1000; + this.state = 1006; this.match(FlinkSqlParser.KW_ADD); - this.state = 1001; + this.state = 1007; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1002; + this.state = 1008; this.constraintName(); - this.state = 1003; + this.state = 1009; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1004; + this.state = 1010; this.match(FlinkSqlParser.KW_KEY); - this.state = 1005; + this.state = 1011; this.columnNameList(); - this.state = 1007; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1006; + this.state = 1012; this.notForced(); } } @@ -4437,11 +4447,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1009; + this.state = 1015; this.match(FlinkSqlParser.KW_DROP); - this.state = 1010; + this.state = 1016; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1011; + this.state = 1017; this.constraintName(); } } @@ -4465,11 +4475,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1013; + this.state = 1019; this.match(FlinkSqlParser.KW_ADD); - this.state = 1014; + this.state = 1020; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1015; + this.state = 1021; this.columnNameList(); } } @@ -4493,9 +4503,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1017; + this.state = 1023; this.match(FlinkSqlParser.KW_NOT); - this.state = 1018; + this.state = 1024; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4519,26 +4529,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1026; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1021; + this.state = 1027; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1022; + this.state = 1028; this.viewPath(); - this.state = 1026; + this.state = 1032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1023; + this.state = 1029; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1024; + this.state = 1030; this.match(FlinkSqlParser.KW_AS); - this.state = 1025; + this.state = 1031; this.queryStatement(0); } break; @@ -4567,13 +4577,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1028; + this.state = 1034; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1029; + this.state = 1035; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1030; + this.state = 1036; this.databasePath(); - this.state = 1031; + this.state = 1037; this.setKeyValueDefinition(); } } @@ -4598,54 +4608,54 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1033; + this.state = 1039; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1037; + this.state = 1043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1034; + this.state = 1040; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1035; + this.state = 1041; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1036; + this.state = 1042; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1039; + this.state = 1045; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1041; + this.state = 1047; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1040; + this.state = 1046; this.ifExists(); } break; } - this.state = 1043; + this.state = 1049; this.functionName(); - this.state = 1044; + this.state = 1050; this.match(FlinkSqlParser.KW_AS); - this.state = 1045; + this.state = 1051; this.identifier(); - this.state = 1048; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 1046; + this.state = 1052; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1047; + this.state = 1053; _la = this.tokenStream.LA(1); - if(!(_la === 331 || _la === 466 || _la === 482)) { + if(!(_la === 333 || _la === 469 || _la === 485)) { this.errorHandler.recoverInline(this); } else { @@ -4678,21 +4688,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1056; this.match(FlinkSqlParser.KW_DROP); - this.state = 1051; + this.state = 1057; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1053; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1052; + this.state = 1058; this.ifExists(); } } - this.state = 1055; + this.state = 1061; this.catalogPath(); } } @@ -4717,31 +4727,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1063; this.match(FlinkSqlParser.KW_DROP); - this.state = 1059; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 501) { { - this.state = 1058; + this.state = 1064; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1061; + this.state = 1067; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1063; + this.state = 1069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1062; + this.state = 1068; this.ifExists(); } } - this.state = 1065; + this.state = 1071; this.tablePath(); } } @@ -4766,31 +4776,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1073; this.match(FlinkSqlParser.KW_DROP); - this.state = 1068; + this.state = 1074; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1070; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1069; + this.state = 1075; this.ifExists(); } } - this.state = 1072; + this.state = 1078; this.databasePath(); - this.state = 1074; + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 441 || _la === 491) { + if (_la === 444 || _la === 494) { { - this.state = 1073; + this.state = 1079; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 441 || _la === 491)) { + if(!(_la === 444 || _la === 494)) { localContext._dropType = this.errorHandler.recoverInline(this); } else { @@ -4823,31 +4833,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1076; + this.state = 1082; this.match(FlinkSqlParser.KW_DROP); - this.state = 1078; + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 498) { + if (_la === 501) { { - this.state = 1077; + this.state = 1083; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1080; + this.state = 1086; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1082; + this.state = 1088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 168) { { - this.state = 1081; + this.state = 1087; this.ifExists(); } } - this.state = 1084; + this.state = 1090; this.viewPath(); } } @@ -4871,39 +4881,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1086; + this.state = 1092; this.match(FlinkSqlParser.KW_DROP); - this.state = 1090; + this.state = 1096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1087; + this.state = 1093; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1088; + this.state = 1094; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1089; + this.state = 1095; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1092; + this.state = 1098; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1094; + this.state = 1100; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1093; + this.state = 1099; this.ifExists(); } break; } - this.state = 1096; + this.state = 1102; this.functionName(); } } @@ -4926,24 +4936,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1105; + this.state = 1111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1099; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1098; + this.state = 1104; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1101; + this.state = 1107; this.insertSimpleStatement(); } } @@ -4951,7 +4961,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1102; + this.state = 1108; this.insertMulStatementCompatibility(); } break; @@ -4959,9 +4969,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1103; + this.state = 1109; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1104; + this.state = 1110; this.insertMulStatement(); } } @@ -4989,51 +4999,51 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1107; + this.state = 1113; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1108; + this.state = 1114; _la = this.tokenStream.LA(1); - if(!(_la === 183 || _la === 266)) { + if(!(_la === 184 || _la === 267)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1115; this.tablePath(); - this.state = 1118; + this.state = 1124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1111; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1110; + this.state = 1116; this.insertPartitionDefinition(); } } - this.state = 1114; + this.state = 1120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1113; + this.state = 1119; this.columnNameList(); } break; } - this.state = 1116; + this.state = 1122; this.queryStatement(0); } break; case 2: { - this.state = 1117; + this.state = 1123; this.valuesDefinition(); } break; @@ -5060,9 +5070,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1120; + this.state = 1126; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1121; + this.state = 1127; this.tablePropertyList(); } } @@ -5087,23 +5097,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1129; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1124; + this.state = 1130; this.valuesRowDefinition(); - this.state = 1129; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1125; + this.state = 1131; this.match(FlinkSqlParser.COMMA); - this.state = 1126; + this.state = 1132; this.valuesRowDefinition(); } } - this.state = 1131; + this.state = 1137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5130,27 +5140,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1132; + this.state = 1138; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1133; + this.state = 1139; this.constant(); - this.state = 1138; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1134; + this.state = 1140; this.match(FlinkSqlParser.COMMA); - this.state = 1135; + this.state = 1141; this.constant(); } } - this.state = 1140; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1141; + this.state = 1147; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5175,31 +5185,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1149; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1144; + this.state = 1150; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1145; + this.state = 1151; this.match(FlinkSqlParser.KW_SET); - this.state = 1146; + this.state = 1152; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1150; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1147; + this.state = 1153; this.insertSimpleStatement(); - this.state = 1148; + this.state = 1154; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1152; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 177); - this.state = 1154; + } while (_la === 178); + this.state = 1160; this.match(FlinkSqlParser.KW_END); } } @@ -5224,29 +5234,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1156; + this.state = 1162; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1157; + this.state = 1163; this.match(FlinkSqlParser.KW_SET); - this.state = 1158; + this.state = 1164; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1162; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1159; + this.state = 1165; this.insertSimpleStatement(); - this.state = 1160; + this.state = 1166; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1164; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 177); - this.state = 1166; + } while (_la === 178); + this.state = 1172; this.match(FlinkSqlParser.KW_END); } } @@ -5283,53 +5293,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1191; + this.state = 1197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1169; + this.state = 1175; this.valuesClause(); } break; case 2: { - this.state = 1170; + this.state = 1176; this.withClause(); - this.state = 1171; + this.state = 1177; this.queryStatement(5); } break; case 3: { - this.state = 1173; + this.state = 1179; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1174; + this.state = 1180; this.queryStatement(0); - this.state = 1175; + this.state = 1181; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1177; + this.state = 1183; this.selectClause(); - this.state = 1179; + this.state = 1185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1178; + this.state = 1184; this.orderByClause(); } break; } - this.state = 1182; + this.state = 1188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1181; + this.state = 1187; this.limitClause(); } break; @@ -5338,24 +5348,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1184; + this.state = 1190; this.selectStatement(); - this.state = 1186; + this.state = 1192; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1185; + this.state = 1191; this.orderByClause(); } break; } - this.state = 1189; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1188; + this.state = 1194; this.limitClause(); } break; @@ -5364,7 +5374,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1207; + this.state = 1213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5378,48 +5388,48 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1193; + this.state = 1199; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1194; + this.state = 1200; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 130 || _la === 180 || _la === 403)) { + if(!(_la === 130 || _la === 181 || _la === 406)) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1196; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1195; + this.state = 1201; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1198; + this.state = 1204; localContext._right = this.queryStatement(0); - this.state = 1200; + this.state = 1206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1199; + this.state = 1205; this.orderByClause(); } break; } - this.state = 1203; + this.state = 1209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1202; + this.state = 1208; this.limitClause(); } break; @@ -5427,7 +5437,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1209; + this.state = 1215; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -5454,25 +5464,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1210; + this.state = 1216; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1211; + this.state = 1217; this.expression(); - this.state = 1216; + this.state = 1222; 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 = 1212; + this.state = 1218; this.match(FlinkSqlParser.COMMA); - this.state = 1213; + this.state = 1219; this.expression(); } } } - this.state = 1218; + this.state = 1224; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5499,23 +5509,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1219; + this.state = 1225; this.match(FlinkSqlParser.KW_WITH); - this.state = 1220; + this.state = 1226; this.withItem(); - this.state = 1225; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1221; + this.state = 1227; this.match(FlinkSqlParser.COMMA); - this.state = 1222; + this.state = 1228; this.withItem(); } } - this.state = 1227; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5542,45 +5552,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1228; + this.state = 1234; this.withItemName(); - this.state = 1240; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 517) { + if (_la === 520) { { - this.state = 1229; + this.state = 1235; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1230; + this.state = 1236; this.columnName(); - this.state = 1235; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1231; + this.state = 1237; this.match(FlinkSqlParser.COMMA); - this.state = 1232; + this.state = 1238; this.columnName(); } } - this.state = 1237; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1238; + this.state = 1244; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1242; + this.state = 1248; this.match(FlinkSqlParser.KW_AS); - this.state = 1243; + this.state = 1249; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1244; + this.state = 1250; this.queryStatement(0); - this.state = 1245; + this.state = 1251; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5604,7 +5614,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1247; + this.state = 1253; this.identifier(); } } @@ -5626,60 +5636,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1269; + this.state = 1275; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1249; + this.state = 1255; this.selectClause(); - this.state = 1251; + this.state = 1257; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1250; + this.state = 1256; this.fromClause(); } break; } - this.state = 1254; + this.state = 1260; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1253; + this.state = 1259; this.whereClause(); } break; } - this.state = 1257; + this.state = 1263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1256; + this.state = 1262; this.groupByClause(); } break; } - this.state = 1260; + this.state = 1266; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1259; + this.state = 1265; this.havingClause(); } break; } - this.state = 1263; + this.state = 1269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1262; + this.state = 1268; this.windowClause(); } break; @@ -5689,11 +5699,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1265; + this.state = 1271; this.selectClause(); - this.state = 1266; + this.state = 1272; this.fromClause(); - this.state = 1267; + this.state = 1273; this.matchRecognizeClause(); } break; @@ -5720,46 +5730,46 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1277; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1273; + this.state = 1279; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1272; + this.state = 1278; this.setQuantifier(); } break; } - this.state = 1284; + this.state = 1290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1275; + this.state = 1281; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1276; + this.state = 1282; this.projectItemDefinition(); - this.state = 1281; + this.state = 1287; 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 = 1277; + this.state = 1283; this.match(FlinkSqlParser.COMMA); - this.state = 1278; + this.state = 1284; this.projectItemDefinition(); } } } - this.state = 1283; + this.state = 1289; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } @@ -5787,37 +5797,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 172, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1301; + this.state = 1307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1286; + this.state = 1292; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1287; + this.state = 1293; this.expression(); - this.state = 1292; + this.state = 1298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1289; + this.state = 1295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1288; + this.state = 1294; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1291; + this.state = 1297; this.columnName(); } break; @@ -5827,24 +5837,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1294; + this.state = 1300; this.columnName(); - this.state = 1299; + this.state = 1305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1296; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1295; + this.state = 1301; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1298; + this.state = 1304; this.expression(); } break; @@ -5871,37 +5881,53 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 174, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1315; + this.state = 1323; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1303; + this.state = 1309; this.primaryExpression(0); - this.state = 1304; + this.state = 1310; this.match(FlinkSqlParser.KW_OVER); - this.state = 1305; + this.state = 1311; this.windowSpec(); - this.state = 1306; - this.match(FlinkSqlParser.KW_AS); - this.state = 1307; - this.identifier(); + this.state = 1314; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + case 1: + { + this.state = 1312; + this.match(FlinkSqlParser.KW_AS); + this.state = 1313; + this.identifier(); + } + break; + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1309; + this.state = 1316; this.primaryExpression(0); - this.state = 1310; + this.state = 1317; this.match(FlinkSqlParser.KW_OVER); - this.state = 1311; + this.state = 1318; this.errorCapturingIdentifier(); - this.state = 1312; - this.match(FlinkSqlParser.KW_AS); - this.state = 1313; - this.identifier(); + this.state = 1321; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { + case 1: + { + this.state = 1319; + this.match(FlinkSqlParser.KW_AS); + this.state = 1320; + this.identifier(); + } + break; + } } break; } @@ -5926,9 +5952,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1317; + this.state = 1325; this.match(FlinkSqlParser.KW_FROM); - this.state = 1318; + this.state = 1326; this.tableExpression(0); } } @@ -5965,50 +5991,50 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1331; + this.state = 1339; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1321; + this.state = 1329; this.tableReference(); - this.state = 1326; + this.state = 1334; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1322; + this.state = 1330; this.match(FlinkSqlParser.COMMA); - this.state = 1323; + this.state = 1331; this.tableReference(); } } } - this.state = 1328; + this.state = 1336; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } } break; case 2: { - this.state = 1329; + this.state = 1337; this.inlineDataValueClause(); } break; case 3: { - this.state = 1330; + this.state = 1338; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1354; + this.state = 1362; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -6016,22 +6042,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1352; + this.state = 1360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1333; + this.state = 1341; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1334; + this.state = 1342; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1335; + this.state = 1343; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1336; + this.state = 1344; this.tableExpression(4); } break; @@ -6039,28 +6065,28 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1337; + this.state = 1345; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1339; + this.state = 1347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 234) { + if (_la === 235) { { - this.state = 1338; + this.state = 1346; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1342; + this.state = 1350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { + if (_la === 153 || _la === 175 || _la === 203 || _la === 320) { { - this.state = 1341; + this.state = 1349; _la = this.tokenStream.LA(1); - if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { + if(!(_la === 153 || _la === 175 || _la === 203 || _la === 320)) { this.errorHandler.recoverInline(this); } else { @@ -6070,26 +6096,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1345; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 262) { + if (_la === 263) { { - this.state = 1344; + this.state = 1352; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1347; + this.state = 1355; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1348; + this.state = 1356; this.tableExpression(0); - this.state = 1350; + this.state = 1358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1349; + this.state = 1357; this.joinCondition(); } break; @@ -6099,9 +6125,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1356; + this.state = 1364; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } } } @@ -6125,14 +6151,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1365; this.tablePrimary(); - this.state = 1359; + this.state = 1367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: { - this.state = 1358; + this.state = 1366; this.tableAlias(); } break; @@ -6158,30 +6184,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 182, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1390; + this.state = 1398; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1362; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 374) { + if (_la === 376) { { - this.state = 1361; + this.state = 1369; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1364; + this.state = 1372; this.tablePath(); - this.state = 1366; + this.state = 1374; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1365; + this.state = 1373; this.systemTimePeriod(); } break; @@ -6191,14 +6217,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1368; + this.state = 1376; this.viewPath(); - this.state = 1370; + this.state = 1378; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: { - this.state = 1369; + this.state = 1377; this.systemTimePeriod(); } break; @@ -6208,49 +6234,49 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1372; + this.state = 1380; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1373; + this.state = 1381; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1374; + this.state = 1382; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1375; + this.state = 1383; this.functionCallExpression(); - this.state = 1376; + this.state = 1384; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1379; + this.state = 1387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 199) { + if (_la === 200) { { - this.state = 1378; + this.state = 1386; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1381; + this.state = 1389; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1382; + this.state = 1390; this.queryStatement(0); - this.state = 1383; + this.state = 1391; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1385; + this.state = 1393; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1386; + this.state = 1394; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1387; + this.state = 1395; this.expression(); - this.state = 1388; + this.state = 1396; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6276,15 +6302,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1400; this.match(FlinkSqlParser.KW_FOR); - this.state = 1393; + this.state = 1401; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1394; + this.state = 1402; this.match(FlinkSqlParser.KW_AS); - this.state = 1395; + this.state = 1403; this.match(FlinkSqlParser.KW_OF); - this.state = 1396; + this.state = 1404; this.dateTimeExpression(); } } @@ -6308,7 +6334,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1398; + this.state = 1406; this.expression(); } } @@ -6332,13 +6358,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1408; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1401; + this.state = 1409; this.valuesDefinition(); - this.state = 1402; + this.state = 1410; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1403; + this.state = 1411; this.tableAlias(); } } @@ -6362,13 +6388,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1413; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1406; + this.state = 1414; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1407; + this.state = 1415; this.windowTVFExpression(); - this.state = 1408; + this.state = 1416; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6393,29 +6419,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1410; + this.state = 1418; this.windowTVFName(); - this.state = 1411; + this.state = 1419; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1412; + this.state = 1420; this.windowTVFParam(); - this.state = 1417; + this.state = 1425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1413; + this.state = 1421; this.match(FlinkSqlParser.COMMA); - this.state = 1414; + this.state = 1422; this.windowTVFParam(); } } - this.state = 1419; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1428; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6440,9 +6466,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1422; + this.state = 1430; _la = this.tokenStream.LA(1); - if(!(_la === 446 || _la === 460 || _la === 500)) { + if(!(_la === 449 || _la === 463 || _la === 503)) { this.errorHandler.recoverInline(this); } else { @@ -6469,64 +6495,64 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowTVFParamContext(this.context, this.state); this.enterRule(localContext, 196, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1439; + this.state = 1447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1424; + this.state = 1432; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1425; + this.state = 1433; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1426; + this.state = 1434; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1427; + this.state = 1435; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1428; + this.state = 1436; this.match(FlinkSqlParser.KW_DATA); - this.state = 1429; + this.state = 1437; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1430; + this.state = 1438; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1431; + this.state = 1439; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1432; + this.state = 1440; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1433; + this.state = 1441; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1434; + this.state = 1442; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1435; + this.state = 1443; this.timeIntervalParamName(); - this.state = 1436; + this.state = 1444; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1437; + this.state = 1445; this.timeIntervalExpression(); } break; @@ -6553,9 +6579,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1441; + this.state = 1449; _la = this.tokenStream.LA(1); - if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { + if(!(_la === 252 || _la === 450 || ((((_la - 498)) & ~0x1F) === 0 && ((1 << (_la - 498)) & 23) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -6584,13 +6610,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1451; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1444; + this.state = 1452; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1445; + this.state = 1453; this.columnName(); - this.state = 1446; + this.state = 1454; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6612,24 +6638,24 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new JoinConditionContext(this.context, this.state); this.enterRule(localContext, 202, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1452; + this.state = 1460; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1456; this.match(FlinkSqlParser.KW_ON); - this.state = 1449; + this.state = 1457; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1450; + this.state = 1458; this.match(FlinkSqlParser.KW_USING); - this.state = 1451; + this.state = 1459; this.columnNameList(); } break; @@ -6657,9 +6683,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1462; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1455; + this.state = 1463; this.booleanExpression(0); } } @@ -6684,29 +6710,29 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1465; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1458; + this.state = 1466; this.match(FlinkSqlParser.KW_BY); - this.state = 1459; + this.state = 1467; this.groupItemDefinition(); - this.state = 1464; + this.state = 1472; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1460; + this.state = 1468; this.match(FlinkSqlParser.COMMA); - this.state = 1461; + this.state = 1469; this.groupItemDefinition(); } } } - this.state = 1466; + this.state = 1474; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } } } @@ -6729,121 +6755,121 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1507; + this.state = 1515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1467; + this.state = 1475; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1468; + this.state = 1476; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1469; + this.state = 1477; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1470; + this.state = 1478; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1471; + this.state = 1479; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1472; + this.state = 1480; this.expression(); - this.state = 1477; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1473; + this.state = 1481; this.match(FlinkSqlParser.COMMA); - this.state = 1474; + this.state = 1482; this.expression(); } } - this.state = 1479; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1480; + this.state = 1488; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1482; + this.state = 1490; this.groupingSetsNotationName(); - this.state = 1483; + this.state = 1491; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1484; + this.state = 1492; this.expression(); - this.state = 1489; + this.state = 1497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1485; + this.state = 1493; this.match(FlinkSqlParser.COMMA); - this.state = 1486; + this.state = 1494; this.expression(); } } - this.state = 1491; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1492; + this.state = 1500; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1494; + this.state = 1502; this.groupingSets(); - this.state = 1495; + this.state = 1503; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1496; + this.state = 1504; this.groupItemDefinition(); - this.state = 1501; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1497; + this.state = 1505; this.match(FlinkSqlParser.COMMA); - this.state = 1498; + this.state = 1506; this.groupItemDefinition(); } } - this.state = 1503; + this.state = 1511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1504; + this.state = 1512; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1506; + this.state = 1514; this.expression(); } break; @@ -6869,9 +6895,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1509; + this.state = 1517; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1510; + this.state = 1518; this.match(FlinkSqlParser.KW_SETS); } } @@ -6896,9 +6922,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1512; + this.state = 1520; _la = this.tokenStream.LA(1); - if(!(_la === 74 || _la === 321)) { + if(!(_la === 74 || _la === 323)) { this.errorHandler.recoverInline(this); } else { @@ -6927,17 +6953,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1522; this.groupWindowFunctionName(); - this.state = 1515; + this.state = 1523; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1516; + this.state = 1524; this.timeAttrColumn(); - this.state = 1517; + this.state = 1525; this.match(FlinkSqlParser.COMMA); - this.state = 1518; + this.state = 1526; this.timeIntervalExpression(); - this.state = 1519; + this.state = 1527; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6962,9 +6988,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1521; + this.state = 1529; _la = this.tokenStream.LA(1); - if(!(_la === 460 || _la === 493 || _la === 500)) { + if(!(_la === 463 || _la === 496 || _la === 503)) { this.errorHandler.recoverInline(this); } else { @@ -6993,7 +7019,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1523; + this.state = 1531; this.uid(); } } @@ -7017,9 +7043,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1533; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1526; + this.state = 1534; this.booleanExpression(0); } } @@ -7044,27 +7070,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1528; + this.state = 1536; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1529; + this.state = 1537; this.namedWindow(); - this.state = 1534; + this.state = 1542; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1530; + this.state = 1538; this.match(FlinkSqlParser.COMMA); - this.state = 1531; + this.state = 1539; this.namedWindow(); } } } - this.state = 1536; + this.state = 1544; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } } } @@ -7088,11 +7114,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1545; localContext._name = this.errorCapturingIdentifier(); - this.state = 1538; + this.state = 1546; this.match(FlinkSqlParser.KW_AS); - this.state = 1539; + this.state = 1547; this.windowSpec(); } } @@ -7117,49 +7143,49 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1542; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + if (((((_la - 441)) & ~0x1F) === 0 && ((1 << (_la - 441)) & 4294967295) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 4294967295) !== 0) || ((((_la - 505)) & ~0x1F) === 0 && ((1 << (_la - 505)) & 15) !== 0) || ((((_la - 541)) & ~0x1F) === 0 && ((1 << (_la - 541)) & 19) !== 0)) { { - this.state = 1541; + this.state = 1549; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1544; + this.state = 1552; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1546; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1545; + this.state = 1553; this.partitionByClause(); } } - this.state = 1549; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 259) { + if (_la === 260) { { - this.state = 1548; + this.state = 1556; this.orderByClause(); } } - this.state = 1552; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 293 || _la === 323) { + if (_la === 295 || _la === 325) { { - this.state = 1551; + this.state = 1559; this.windowFrame(); } } - this.state = 1554; + this.state = 1562; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7184,90 +7210,90 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1556; + this.state = 1564; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1557; + this.state = 1565; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1559; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 269) { + if (_la === 270) { { - this.state = 1558; + this.state = 1566; this.partitionByClause(); } } - this.state = 1562; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 259) { + if (_la === 260) { { - this.state = 1561; + this.state = 1569; this.orderByClause(); } } - this.state = 1565; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1564; + this.state = 1572; this.measuresClause(); } } - this.state = 1568; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 5 || _la === 255) { + if (_la === 5 || _la === 256) { { - this.state = 1567; + this.state = 1575; this.outputMode(); } } - this.state = 1571; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 439) { + if (_la === 442) { { - this.state = 1570; + this.state = 1578; this.afterMatchStrategy(); } } - this.state = 1574; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 272) { + if (_la === 273) { { - this.state = 1573; + this.state = 1581; this.patternDefinition(); } } - this.state = 1576; + this.state = 1584; this.patternVariablesDefinition(); - this.state = 1577; + this.state = 1585; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1582; + this.state = 1590; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1579; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1578; + this.state = 1586; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1581; + this.state = 1589; this.identifier(); } break; @@ -7295,29 +7321,29 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1592; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1585; + this.state = 1593; this.match(FlinkSqlParser.KW_BY); - this.state = 1586; + this.state = 1594; this.orderItemDefinition(); - this.state = 1591; + this.state = 1599; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 178, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1587; + this.state = 1595; this.match(FlinkSqlParser.COMMA); - this.state = 1588; + this.state = 1596; this.orderItemDefinition(); } } } - this.state = 1593; + this.state = 1601; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 178, this.context); } } } @@ -7342,17 +7368,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; - this.columnName(); - this.state = 1596; + this.state = 1604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + case 1: + { + this.state = 1602; + this.columnName(); + } + break; + case 2: + { + this.state = 1603; + this.valueExpression(0); + } + break; + } + this.state = 1607; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 1595; + this.state = 1606; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 440 || _la === 451)) { + if(!(_la === 443 || _la === 454)) { localContext._ordering = this.errorHandler.recoverInline(this); } else { @@ -7362,17 +7402,17 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1600; + this.state = 1611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1598; + this.state = 1609; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1599; + this.state = 1610; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 458 || _la === 468)) { + if(!(_la === 461 || _la === 471)) { localContext._nullOrder = this.errorHandler.recoverInline(this); } else { @@ -7404,14 +7444,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1602; + this.state = 1613; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1605; + this.state = 1616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1603; + this.state = 1614; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7574,7 +7614,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1604; + this.state = 1615; localContext._limit = this.expression(); } break; @@ -7604,53 +7644,53 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1607; + this.state = 1618; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1608; + this.state = 1619; this.match(FlinkSqlParser.KW_BY); - this.state = 1611; + this.state = 1622; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1609; + this.state = 1620; this.columnName(); } break; case 2: { - this.state = 1610; + this.state = 1621; this.primaryExpression(0); } break; } - this.state = 1620; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1613; + this.state = 1624; this.match(FlinkSqlParser.COMMA); - this.state = 1616; + this.state = 1627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: { - this.state = 1614; + this.state = 1625; this.columnName(); } break; case 2: { - this.state = 1615; + this.state = 1626; this.primaryExpression(0); } break; } } } - this.state = 1622; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7674,14 +7714,14 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new QuantifiersContext(this.context, this.state); this.enterRule(localContext, 238, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1639; + this.state = 1650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1623; + this.state = 1634; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7690,7 +7730,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1624; + this.state = 1635; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7699,7 +7739,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1625; + this.state = 1636; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7708,15 +7748,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1626; + this.state = 1637; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1627; + this.state = 1638; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1628; + this.state = 1639; this.match(FlinkSqlParser.COMMA); - this.state = 1629; + this.state = 1640; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1630; + this.state = 1641; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7725,13 +7765,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1631; + this.state = 1642; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1632; + this.state = 1643; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1633; + this.state = 1644; this.match(FlinkSqlParser.COMMA); - this.state = 1634; + this.state = 1645; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7740,13 +7780,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1635; + this.state = 1646; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1636; + this.state = 1647; this.match(FlinkSqlParser.COMMA); - this.state = 1637; + this.state = 1648; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1638; + this.state = 1649; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7774,23 +7814,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1652; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1642; + this.state = 1653; this.projectItemDefinition(); - this.state = 1647; + this.state = 1658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1643; + this.state = 1654; this.match(FlinkSqlParser.COMMA); - this.state = 1644; + this.state = 1655; this.projectItemDefinition(); } } - this.state = 1649; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7817,32 +7857,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1650; + this.state = 1661; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1651; + this.state = 1662; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1653; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1652; + this.state = 1663; this.patternVariable(); } } - this.state = 1655; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 539 || _la === 542); - this.state = 1657; + } while (_la === 542 || _la === 545); + this.state = 1668; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1659; + this.state = 1670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 435) { + if (_la === 438) { { - this.state = 1658; + this.state = 1669; this.withinClause(); } } @@ -7870,14 +7910,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1672; this.unquotedIdentifier(); - this.state = 1663; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { + if (((((_la - 522)) & ~0x1F) === 0 && ((1 << (_la - 522)) & 135681) !== 0)) { { - this.state = 1662; + this.state = 1673; this.quantifiers(); } } @@ -7902,32 +7942,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OutputModeContext(this.context, this.state); this.enterRule(localContext, 246, FlinkSqlParser.RULE_outputMode); try { - this.state = 1673; + this.state = 1684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1665; + this.state = 1676; this.match(FlinkSqlParser.KW_ALL); - this.state = 1666; + this.state = 1677; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1667; + this.state = 1678; this.match(FlinkSqlParser.KW_PER); - this.state = 1668; + this.state = 1679; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1680; this.match(FlinkSqlParser.KW_ONE); - this.state = 1670; + this.state = 1681; this.match(FlinkSqlParser.KW_ROW); - this.state = 1671; + this.state = 1682; this.match(FlinkSqlParser.KW_PER); - this.state = 1672; + this.state = 1683; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7953,74 +7993,74 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new AfterMatchStrategyContext(this.context, this.state); this.enterRule(localContext, 248, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1699; + this.state = 1710; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1686; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1676; + this.state = 1687; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1677; + this.state = 1688; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1678; + this.state = 1689; this.match(FlinkSqlParser.KW_PAST); - this.state = 1679; + this.state = 1690; this.match(FlinkSqlParser.KW_LAST); - this.state = 1680; + this.state = 1691; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1681; + this.state = 1692; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1682; + this.state = 1693; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1683; + this.state = 1694; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1684; + this.state = 1695; this.match(FlinkSqlParser.KW_TO); - this.state = 1685; + this.state = 1696; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1686; + this.state = 1697; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1687; + this.state = 1698; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1688; + this.state = 1699; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1689; + this.state = 1700; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1690; + this.state = 1701; this.match(FlinkSqlParser.KW_TO); - this.state = 1691; + this.state = 1702; this.match(FlinkSqlParser.KW_LAST); - this.state = 1692; + this.state = 1703; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1693; + this.state = 1704; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1694; + this.state = 1705; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1695; + this.state = 1706; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1696; + this.state = 1707; this.match(FlinkSqlParser.KW_TO); - this.state = 1697; + this.state = 1708; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1698; + this.state = 1709; this.unquotedIdentifier(); } break; @@ -8047,23 +8087,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1701; + this.state = 1712; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1702; + this.state = 1713; this.projectItemDefinition(); - this.state = 1707; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1703; + this.state = 1714; this.match(FlinkSqlParser.COMMA); - this.state = 1704; + this.state = 1715; this.projectItemDefinition(); } } - this.state = 1709; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8086,38 +8126,59 @@ export class FlinkSqlParser extends SQLParserBase { public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 252, FlinkSqlParser.RULE_windowFrame); + let _la: number; try { - this.state = 1719; + this.state = 1736; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case FlinkSqlParser.KW_RANGE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1710; + this.state = 1721; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1711; + this.state = 1722; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1712; + this.state = 1723; this.timeIntervalExpression(); - this.state = 1713; + this.state = 1724; this.frameBound(); } break; - case FlinkSqlParser.KW_ROWS: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1715; + this.state = 1726; + _la = this.tokenStream.LA(1); + if(!(_la === 295 || _la === 325)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1727; + this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1728; + this.frameStart(); + this.state = 1729; + this.match(FlinkSqlParser.KW_AND); + this.state = 1730; + this.frameEnd(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1732; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1716; + this.state = 1733; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1717; + this.state = 1734; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1718; + this.state = 1735; this.frameBound(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8140,13 +8201,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1721; + this.state = 1738; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1722; + this.state = 1739; this.match(FlinkSqlParser.KW_AND); - this.state = 1723; + this.state = 1740; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1724; + this.state = 1741; this.match(FlinkSqlParser.KW_ROW); } } @@ -8164,15 +8225,119 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public frameStart(): FrameStartContext { + let localContext = new FrameStartContext(this.context, this.state); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_frameStart); + try { + this.state = 1749; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_UNBOUNDED: + this.enterOuterAlt(localContext, 1); + { + this.state = 1743; + this.match(FlinkSqlParser.KW_UNBOUNDED); + this.state = 1744; + this.match(FlinkSqlParser.KW_PRECEDING); + } + break; + case FlinkSqlParser.DIG_LITERAL: + this.enterOuterAlt(localContext, 2); + { + this.state = 1745; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1746; + this.match(FlinkSqlParser.KW_PRECEDING); + } + break; + case FlinkSqlParser.KW_CURRENT: + this.enterOuterAlt(localContext, 3); + { + this.state = 1747; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1748; + this.match(FlinkSqlParser.KW_ROW); + } + 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 frameEnd(): FrameEndContext { + let localContext = new FrameEndContext(this.context, this.state); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_frameEnd); + try { + this.state = 1757; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_CURRENT: + this.enterOuterAlt(localContext, 1); + { + this.state = 1751; + this.match(FlinkSqlParser.KW_CURRENT); + this.state = 1752; + this.match(FlinkSqlParser.KW_ROW); + } + break; + case FlinkSqlParser.DIG_LITERAL: + this.enterOuterAlt(localContext, 2); + { + this.state = 1753; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1754; + this.match(FlinkSqlParser.KW_FOLLOWING); + } + break; + case FlinkSqlParser.KW_UNBOUNDED: + this.enterOuterAlt(localContext, 3); + { + this.state = 1755; + this.match(FlinkSqlParser.KW_UNBOUNDED); + this.state = 1756; + this.match(FlinkSqlParser.KW_FOLLOWING); + } + 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 withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1726; + this.state = 1759; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1727; + this.state = 1760; this.timeIntervalExpression(); } } @@ -8192,11 +8357,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 258, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1729; + this.state = 1762; this.booleanExpression(0); } } @@ -8226,25 +8391,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 260; - this.enterRecursionRule(localContext, 260, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 264; + this.enterRecursionRule(localContext, 264, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1776; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1732; + this.state = 1765; this.match(FlinkSqlParser.KW_NOT); - this.state = 1733; + this.state = 1766; this.booleanExpression(6); } break; @@ -8253,13 +8418,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1734; + this.state = 1767; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1735; + this.state = 1768; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1736; + this.state = 1769; this.queryStatement(0); - this.state = 1737; + this.state = 1770; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8268,14 +8433,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1739; + this.state = 1772; this.valueExpression(0); - this.state = 1741; + this.state = 1774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1740; + this.state = 1773; this.predicate(); } break; @@ -8284,9 +8449,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1759; + this.state = 1792; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 201, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8294,21 +8459,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1757; + this.state = 1790; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 200, 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 = 1745; + this.state = 1778; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1746; + this.state = 1779; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1747; + this.state = 1780; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8317,13 +8482,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 = 1748; + this.state = 1781; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1749; + this.state = 1782; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1750; + this.state = 1783; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8331,26 +8496,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1751; + this.state = 1784; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1752; + this.state = 1785; this.match(FlinkSqlParser.KW_IS); - this.state = 1754; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1753; + this.state = 1786; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1756; + this.state = 1789; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { + if(!(_la === 140 || _la === 246 || _la === 400 || _la === 408)) { (localContext as LogicalNestedContext)._kind = this.errorHandler.recoverInline(this); } else { @@ -8362,9 +8527,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1761; + this.state = 1794; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 201, this.context); } } } @@ -8384,35 +8549,35 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1836; + this.state = 1869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1763; + this.state = 1796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1762; + this.state = 1795; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1765; + this.state = 1798; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1767; + this.state = 1800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 19 || _la === 370) { + if (_la === 19 || _la === 372) { { - this.state = 1766; + this.state = 1799; _la = this.tokenStream.LA(1); - if(!(_la === 19 || _la === 370)) { + if(!(_la === 19 || _la === 372)) { this.errorHandler.recoverInline(this); } else { @@ -8422,134 +8587,134 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1769; + this.state = 1802; localContext._lower = this.valueExpression(0); - this.state = 1770; + this.state = 1803; this.match(FlinkSqlParser.KW_AND); - this.state = 1771; + this.state = 1804; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1773; + this.state = 1806; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1776; + this.state = 1809; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1777; + this.state = 1810; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1778; + this.state = 1811; this.expression(); - this.state = 1783; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1779; + this.state = 1812; this.match(FlinkSqlParser.COMMA); - this.state = 1780; + this.state = 1813; this.expression(); } } - this.state = 1785; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1786; + this.state = 1819; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1789; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1788; + this.state = 1821; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1791; + this.state = 1824; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1792; + this.state = 1825; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1793; + this.state = 1826; this.queryStatement(0); - this.state = 1794; + this.state = 1827; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1796; + this.state = 1829; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1797; + this.state = 1830; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1798; + this.state = 1831; this.queryStatement(0); - this.state = 1799; + this.state = 1832; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1802; + this.state = 1835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1801; + this.state = 1834; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1804; + this.state = 1837; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1805; + this.state = 1838; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1806; + this.state = 1839; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1807; + this.state = 1840; this.match(FlinkSqlParser.KW_IS); - this.state = 1809; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1808; + this.state = 1841; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1811; + this.state = 1844; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { + if(!(_la === 140 || _la === 246 || _la === 400 || _la === 408)) { localContext._kind = this.errorHandler.recoverInline(this); } else { @@ -8561,53 +8726,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1812; + this.state = 1845; this.match(FlinkSqlParser.KW_IS); - this.state = 1814; + this.state = 1847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1813; + this.state = 1846; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1816; + this.state = 1849; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1817; + this.state = 1850; this.match(FlinkSqlParser.KW_FROM); - this.state = 1818; + this.state = 1851; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1820; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1819; + this.state = 1852; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1822; + this.state = 1855; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1823; + this.state = 1856; this.match(FlinkSqlParser.KW_TO); - this.state = 1824; + this.state = 1857; localContext._right = this.valueExpression(0); - this.state = 1827; + this.state = 1860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1825; + this.state = 1858; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1826; + this.state = 1859; this.stringLiteral(); } break; @@ -8617,28 +8782,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1829; + this.state = 1862; this.match(FlinkSqlParser.KW_IS); - this.state = 1830; + this.state = 1863; this.match(FlinkSqlParser.KW_JSON); - this.state = 1834; + this.state = 1867; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 1831; + this.state = 1864; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1832; + this.state = 1865; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1833; + this.state = 1866; this.identifier(); } break; @@ -8663,28 +8828,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 264, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1867; + this.state = 1900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1839; + this.state = 1872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1838; + this.state = 1871; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1841; + this.state = 1874; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1842; + this.state = 1875; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8694,40 +8859,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1856; + this.state = 1889; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1843; + this.state = 1876; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1844; + this.state = 1877; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1845; + this.state = 1878; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1846; + this.state = 1879; this.expression(); - this.state = 1851; + this.state = 1884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1847; + this.state = 1880; this.match(FlinkSqlParser.COMMA); - this.state = 1848; + this.state = 1881; this.expression(); } } - this.state = 1853; + this.state = 1886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1854; + this.state = 1887; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8737,28 +8902,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1859; + this.state = 1892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 1858; + this.state = 1891; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1861; + this.state = 1894; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1862; + this.state = 1895; localContext._pattern = this.valueExpression(0); - this.state = 1865; + this.state = 1898; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 1863; + this.state = 1896; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1864; + this.state = 1897; this.stringLiteral(); } break; @@ -8793,23 +8958,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1873; + this.state = 1906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1870; + this.state = 1903; this.primaryExpression(0); } break; @@ -8818,25 +8983,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1871; + this.state = 1904; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { + if(!(((((_la - 513)) & ~0x1F) === 0 && ((1 << (_la - 513)) & 3145729) !== 0))) { (localContext as ArithmeticUnaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1872; + this.state = 1905; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1896; + this.state = 1929; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8844,29 +9009,29 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1894; + this.state = 1927; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, 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 = 1875; + this.state = 1908; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1876; + this.state = 1909; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { + if(!(_la === 456 || ((((_la - 531)) & ~0x1F) === 0 && ((1 << (_la - 531)) & 145) !== 0))) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1877; + this.state = 1910; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8875,21 +9040,21 @@ 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 = 1878; + this.state = 1911; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1879; + this.state = 1912; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { + if(!(((((_la - 533)) & ~0x1F) === 0 && ((1 << (_la - 533)) & 11) !== 0))) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1880; + this.state = 1913; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8898,13 +9063,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 = 1881; + this.state = 1914; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1882; + this.state = 1915; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1883; + this.state = 1916; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8913,13 +9078,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 = 1884; + this.state = 1917; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1885; + this.state = 1918; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1886; + this.state = 1919; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8928,13 +9093,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 = 1887; + this.state = 1920; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1888; + this.state = 1921; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1889; + this.state = 1922; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8943,22 +9108,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 = 1890; + this.state = 1923; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1891; + this.state = 1924; this.comparisonOperator(); - this.state = 1892; + this.state = 1925; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1898; + this.state = 1931; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } } } @@ -8978,10 +9143,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1918; + this.state = 1951; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -8991,7 +9156,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1932; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9001,7 +9166,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1900; + this.state = 1933; this.functionNameAndParams(); } break; @@ -9142,47 +9307,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1901; + this.state = 1934; this.functionNameWithParams(); - this.state = 1902; + this.state = 1935; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1914; + this.state = 1947; 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)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { + 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)) & 675283027) !== 0) || ((((_la - 183)) & ~0x1F) === 0 && ((1 << (_la - 183)) & 488456033) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 3892347713) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 1075056641) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 131185) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 14681219) !== 0) || ((((_la - 392)) & ~0x1F) === 0 && ((1 << (_la - 392)) & 2182088513) !== 0) || ((((_la - 424)) & ~0x1F) === 0 && ((1 << (_la - 424)) & 4294901889) !== 0) || ((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 4294967295) !== 0) || ((((_la - 488)) & ~0x1F) === 0 && ((1 << (_la - 488)) & 35651583) !== 0) || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 65038337) !== 0)) { { - this.state = 1904; + this.state = 1937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1903; + this.state = 1936; this.setQuantifier(); } break; } - this.state = 1906; + this.state = 1939; this.functionParam(); - this.state = 1911; + this.state = 1944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 1907; + this.state = 1940; this.match(FlinkSqlParser.COMMA); - this.state = 1908; + this.state = 1941; this.functionParam(); } } - this.state = 1913; + this.state = 1946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1916; + this.state = 1949; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9216,51 +9381,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 270; - this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 274; + this.enterRecursionRule(localContext, 274, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1995; + this.state = 2036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1921; + this.state = 1954; this.match(FlinkSqlParser.KW_CASE); - this.state = 1923; + this.state = 1956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1922; + this.state = 1955; this.whenClause(); } } - this.state = 1925; + this.state = 1958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 429); - this.state = 1929; + } while (_la === 432); + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1927; + this.state = 1960; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1928; + this.state = 1961; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1931; + this.state = 1964; this.match(FlinkSqlParser.KW_END); } break; @@ -9269,37 +9434,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1933; + this.state = 1966; this.match(FlinkSqlParser.KW_CASE); - this.state = 1934; + this.state = 1967; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1936; + this.state = 1969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1935; + this.state = 1968; this.whenClause(); } } - this.state = 1938; + this.state = 1971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 429); - this.state = 1942; + } while (_la === 432); + this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1940; + this.state = 1973; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1941; + this.state = 1974; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1944; + this.state = 1977; this.match(FlinkSqlParser.KW_END); } break; @@ -9308,17 +9473,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 1979; this.match(FlinkSqlParser.KW_CAST); - this.state = 1947; + this.state = 1980; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1948; + this.state = 1981; this.expression(); - this.state = 1949; + this.state = 1982; this.match(FlinkSqlParser.KW_AS); - this.state = 1950; + this.state = 1983; this.columnType(); - this.state = 1951; + this.state = 1984; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9327,25 +9492,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1953; + this.state = 1986; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1954; + this.state = 1987; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1955; + this.state = 1988; this.expression(); - this.state = 1958; + this.state = 1991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 462) { + if (_la === 465) { { - this.state = 1956; + this.state = 1989; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1957; + this.state = 1990; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1960; + this.state = 1993; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9354,25 +9519,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1962; + this.state = 1995; this.match(FlinkSqlParser.KW_LAST); - this.state = 1963; + this.state = 1996; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1964; + this.state = 1997; this.expression(); - this.state = 1967; + this.state = 2000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 462) { + if (_la === 465) { { - this.state = 1965; + this.state = 1998; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1966; + this.state = 1999; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1969; + this.state = 2002; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9381,17 +9546,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1971; + this.state = 2004; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1972; + this.state = 2005; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1973; + this.state = 2006; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1974; + this.state = 2007; this.match(FlinkSqlParser.KW_IN); - this.state = 1975; + this.state = 2008; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1976; + this.state = 2009; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9400,7 +9565,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1978; + this.state = 2011; this.constant(); } break; @@ -9409,7 +9574,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1979; + this.state = 2012; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9418,11 +9583,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1980; + this.state = 2013; this.uid(); - this.state = 1981; + this.state = 2014; this.match(FlinkSqlParser.DOT); - this.state = 1982; + this.state = 2015; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9431,11 +9596,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1984; + this.state = 2017; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1985; + this.state = 2018; this.queryStatement(0); - this.state = 1986; + this.state = 2019; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9444,7 +9609,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1988; + this.state = 2021; this.functionCallExpression(); } break; @@ -9453,7 +9618,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1989; + this.state = 2022; this.columnNamePath(); } break; @@ -9462,7 +9627,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1990; + this.state = 2023; this.dereferenceDefinition(); } break; @@ -9471,19 +9636,47 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1991; + this.state = 2024; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1992; + this.state = 2025; this.expression(); - this.state = 1993; + this.state = 2026; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; + case 15: + { + localContext = new ExtractContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2028; + this.match(FlinkSqlParser.KW_EXTRACT); + this.state = 2029; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 2030; + (localContext as ExtractContext)._field = this.identifier(); + this.state = 2031; + this.match(FlinkSqlParser.KW_FROM); + this.state = 2032; + (localContext as ExtractContext)._source = this.valueExpression(0); + this.state = 2033; this.match(FlinkSqlParser.RR_BRACKET); } break; + case 16: + { + localContext = new JsonValueContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2035; + this.jsonValueExpression(); + } + break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2004; + this.state = 2045; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9495,22 +9688,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 = 1997; - if (!(this.precpred(this.context, 4))) { - throw this.createFailedPredicateException("this.precpred(this.context, 4)"); + this.state = 2038; + if (!(this.precpred(this.context, 6))) { + throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1998; + this.state = 2039; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1999; + this.state = 2040; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2000; + this.state = 2041; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2006; + this.state = 2047; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 229, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } } } @@ -9528,13 +9721,60 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public jsonValueExpression(): JsonValueExpressionContext { + let localContext = new JsonValueExpressionContext(this.context, this.state); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_jsonValueExpression); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2048; + this.match(FlinkSqlParser.KW_JSON_VALUE); + this.state = 2049; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 2050; + this.expression(); + this.state = 2051; + this.match(FlinkSqlParser.COMMA); + this.state = 2052; + this.stringLiteral(); + this.state = 2055; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 281) { + { + this.state = 2053; + this.match(FlinkSqlParser.KW_RETURNING); + this.state = 2054; + this.columnType(); + } + } + + this.state = 2057; + 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 functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2007; + this.state = 2059; this.uid(); } } @@ -9554,36 +9794,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionName); try { - this.state = 2013; + this.state = 2065; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2009; + this.state = 2061; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2010; + this.state = 2062; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2011; + this.state = 2063; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2012; + this.state = 2064; this.uid(); } break; @@ -9605,9 +9845,9 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameAndParams(): FunctionNameAndParamsContext { let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameAndParams); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2019; + this.state = 2071; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -9615,16 +9855,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2015; + this.state = 2067; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2016; + this.state = 2068; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2018; + this.state = 2070; this.timeIntervalExpression(); } break; @@ -9648,22 +9888,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameWithParams(): FunctionNameWithParamsContext { let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameWithParams); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2023; + this.state = 2075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2021; + this.state = 2073; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2022; + this.state = 2074; this.uid(); } break; @@ -9685,36 +9925,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_functionParam); try { - this.state = 2029; + this.state = 2081; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2025; + this.state = 2077; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2026; + this.state = 2078; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2027; + this.state = 2079; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2028; + this.state = 2080; this.expression(); } break; @@ -9736,11 +9976,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2083; this.uid(); } } @@ -9760,11 +10000,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2085; this.identifier(); } } @@ -9784,22 +10024,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2037; + this.state = 2089; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2035; + this.state = 2087; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2036; + this.state = 2088; this.dereferenceDefinition(); } break; @@ -9821,24 +10061,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2091; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2042; + this.state = 2094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2040; + this.state = 2092; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2041; + this.state = 2093; this.errorCapturingUnitToUnitInterval(); } break; @@ -9861,18 +10101,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2044; + this.state = 2096; this.multiUnitsInterval(); - this.state = 2046; + this.state = 2098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2045; + this.state = 2097; this.unitToUnitInterval(); } break; @@ -9895,12 +10135,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2103; this.errorHandler.sync(this); alternative = 1; do { @@ -9908,9 +10148,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2048; + this.state = 2100; this.intervalValue(); - this.state = 2049; + this.state = 2101; this.timeIntervalUnit(); } } @@ -9918,9 +10158,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2053; + this.state = 2105; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9940,24 +10180,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2107; localContext._body = this.unitToUnitInterval(); - this.state = 2058; + this.state = 2110; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2056; + this.state = 2108; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2057; + this.state = 2109; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9980,17 +10220,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2060; + this.state = 2112; localContext._value = this.intervalValue(); - this.state = 2061; + this.state = 2113; localContext._from_ = this.timeIntervalUnit(); - this.state = 2062; + this.state = 2114; this.match(FlinkSqlParser.KW_TO); - this.state = 2063; + this.state = 2115; localContext._to = this.timeIntervalUnit(); } } @@ -10010,10 +10250,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2070; + this.state = 2122; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10022,14 +10262,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 530 || _la === 531) { + if (_la === 533 || _la === 534) { { - this.state = 2065; + this.state = 2117; _la = this.tokenStream.LA(1); - if(!(_la === 530 || _la === 531)) { + if(!(_la === 533 || _la === 534)) { this.errorHandler.recoverInline(this); } else { @@ -10039,9 +10279,9 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2068; + this.state = 2120; _la = this.tokenStream.LA(1); - if(!(_la === 539 || _la === 540)) { + if(!(_la === 542 || _la === 543)) { this.errorHandler.recoverInline(this); } else { @@ -10053,7 +10293,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2069; + this.state = 2121; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10077,29 +10317,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2073; + this.state = 2125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2072; + this.state = 2124; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2075; + this.state = 2127; localContext._alias = this.identifier(); - this.state = 2077; + this.state = 2129; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2076; + this.state = 2128; this.identifierList(); } break; @@ -10122,13 +10362,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2131; this.identifier(); - this.state = 2080; + this.state = 2132; this.errorCapturingIdentifierExtra(); } } @@ -10148,44 +10388,47 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); - let _la: number; + this.enterRule(localContext, 310, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); try { - this.state = 2089; + let alternative: number; + this.state = 2141; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case FlinkSqlParser.KW_MINUS: + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + case 1: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2136; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = 1; do { - { - { - this.state = 2082; - this.match(FlinkSqlParser.KW_MINUS); - this.state = 2083; - this.identifier(); - } + switch (alternative) { + case 1: + { + { + this.state = 2134; + this.match(FlinkSqlParser.KW_MINUS); + this.state = 2135; + this.identifier(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2086; + this.state = 2138; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 222); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 249, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; - case FlinkSqlParser.KW_AS: - case FlinkSqlParser.LR_BRACKET: + case 2: localContext = new RealIdentContext(localContext); this.enterOuterAlt(localContext, 2); // tslint:disable-next-line:no-empty { } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -10204,15 +10447,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2091; + this.state = 2143; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2092; + this.state = 2144; this.identifierSeq(); - this.state = 2093; + this.state = 2145; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10232,26 +10475,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2095; + this.state = 2147; this.identifier(); - this.state = 2100; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 2096; + this.state = 2148; this.match(FlinkSqlParser.COMMA); - this.state = 2097; + this.state = 2149; this.identifier(); } } - this.state = 2102; + this.state = 2154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10273,9 +10516,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_identifier); try { - this.state = 2106; + this.state = 2158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10283,7 +10526,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2103; + this.state = 2155; this.unquotedIdentifier(); } break; @@ -10291,7 +10534,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2104; + this.state = 2156; this.quotedIdentifier(); } break; @@ -10366,7 +10609,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2105; + this.state = 2157; this.nonReservedKeywords(); } break; @@ -10390,14 +10633,14 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2160; _la = this.tokenStream.LA(1); - if(!(_la === 539 || _la === 542)) { + if(!(_la === 542 || _la === 545)) { this.errorHandler.recoverInline(this); } else { @@ -10422,11 +10665,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2110; + this.state = 2162; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10446,17 +10689,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 2164; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2113; + this.state = 2165; localContext._condition = this.expression(); - this.state = 2114; + this.state = 2166; this.match(FlinkSqlParser.KW_THEN); - this.state = 2115; + this.state = 2167; localContext._result = this.expression(); } } @@ -10476,11 +10719,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2169; this.identifier(); } } @@ -10500,11 +10743,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2119; + this.state = 2171; this.identifier(); } } @@ -10524,21 +10767,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2121; + this.state = 2173; this.identifier(); - this.state = 2124; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2122; + this.state = 2174; this.match(FlinkSqlParser.DOT); - this.state = 2123; + this.state = 2175; this.identifier(); } } @@ -10561,21 +10804,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2178; this.identifier(); - this.state = 2129; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2127; + this.state = 2179; this.match(FlinkSqlParser.DOT); - this.state = 2128; + this.state = 2180; this.identifier(); } } @@ -10598,25 +10841,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2143; + this.state = 2195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2131; + this.state = 2183; this.identifier(); - this.state = 2134; + this.state = 2186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2132; + this.state = 2184; this.match(FlinkSqlParser.DOT); - this.state = 2133; + this.state = 2185; this.identifier(); } } @@ -10626,20 +10869,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2136; + this.state = 2188; this.identifier(); - this.state = 2137; + this.state = 2189; this.match(FlinkSqlParser.DOT); - this.state = 2138; + this.state = 2190; this.identifier(); - this.state = 2141; + this.state = 2193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2139; + this.state = 2191; this.match(FlinkSqlParser.DOT); - this.state = 2140; + this.state = 2192; this.identifier(); } } @@ -10664,24 +10907,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_tablePath); try { - this.state = 2157; + this.state = 2209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2197; this.identifier(); - this.state = 2148; + this.state = 2200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2146; + this.state = 2198; this.match(FlinkSqlParser.DOT); - this.state = 2147; + this.state = 2199; this.identifier(); } break; @@ -10691,20 +10934,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2150; + this.state = 2202; this.identifier(); - this.state = 2151; + this.state = 2203; this.match(FlinkSqlParser.DOT); - this.state = 2152; + this.state = 2204; this.identifier(); - this.state = 2155; + this.state = 2207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2153; + this.state = 2205; this.match(FlinkSqlParser.DOT); - this.state = 2154; + this.state = 2206; this.identifier(); } break; @@ -10729,24 +10972,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_viewPath); try { - this.state = 2171; + this.state = 2223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2159; + this.state = 2211; this.identifier(); - this.state = 2162; + this.state = 2214; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2160; + this.state = 2212; this.match(FlinkSqlParser.DOT); - this.state = 2161; + this.state = 2213; this.identifier(); } break; @@ -10756,20 +10999,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2164; + this.state = 2216; this.identifier(); - this.state = 2165; + this.state = 2217; this.match(FlinkSqlParser.DOT); - this.state = 2166; + this.state = 2218; this.identifier(); - this.state = 2169; + this.state = 2221; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2167; + this.state = 2219; this.match(FlinkSqlParser.DOT); - this.state = 2168; + this.state = 2220; this.identifier(); } break; @@ -10794,25 +11037,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2185; + this.state = 2237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2225; this.identifier(); - this.state = 2176; + this.state = 2228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2174; + this.state = 2226; this.match(FlinkSqlParser.DOT); - this.state = 2175; + this.state = 2227; this.identifier(); } } @@ -10822,20 +11065,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2178; + this.state = 2230; this.identifier(); - this.state = 2179; + this.state = 2231; this.match(FlinkSqlParser.DOT); - this.state = 2180; + this.state = 2232; this.identifier(); - this.state = 2183; + this.state = 2235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 514) { + if (_la === 517) { { - this.state = 2181; + this.state = 2233; this.match(FlinkSqlParser.DOT); - this.state = 2182; + this.state = 2234; this.identifier(); } } @@ -10860,30 +11103,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2187; + this.state = 2239; this.identifier(); - this.state = 2192; + this.state = 2244; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2188; + this.state = 2240; this.match(FlinkSqlParser.DOT); - this.state = 2189; + this.state = 2241; this.identifier(); } } } - this.state = 2194; + this.state = 2246; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 261, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } } } @@ -10903,13 +11146,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2195; + this.state = 2247; this.match(FlinkSqlParser.KW_WITH); - this.state = 2196; + this.state = 2248; this.tablePropertyList(); } } @@ -10929,15 +11172,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2198; + this.state = 2250; this.match(FlinkSqlParser.KW_IF); - this.state = 2199; + this.state = 2251; this.match(FlinkSqlParser.KW_NOT); - this.state = 2200; + this.state = 2252; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10957,13 +11200,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2202; + this.state = 2254; this.match(FlinkSqlParser.KW_IF); - this.state = 2203; + this.state = 2255; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10983,32 +11226,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2257; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2206; + this.state = 2258; this.tableProperty(); - this.state = 2211; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 521) { + while (_la === 524) { { { - this.state = 2207; + this.state = 2259; this.match(FlinkSqlParser.COMMA); - this.state = 2208; + this.state = 2260; this.tableProperty(); } } - this.state = 2213; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2266; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11028,29 +11271,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2216; + this.state = 2268; localContext._key = this.tablePropertyKey(); - this.state = 2221; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { + if (_la === 140 || _la === 400 || _la === 509 || ((((_la - 541)) & ~0x1F) === 0 && ((1 << (_la - 541)) & 7) !== 0)) { { - this.state = 2218; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 506) { + if (_la === 509) { { - this.state = 2217; + this.state = 2269; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2220; + this.state = 2272; localContext._value = this.tablePropertyValue(); } } @@ -11073,29 +11316,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2226; + this.state = 2278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2275; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2224; + this.state = 2276; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2225; + this.state = 2277; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11117,22 +11360,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2232; + this.state = 2284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2228; + this.state = 2280; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2229; + this.state = 2281; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11140,14 +11383,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2230; + this.state = 2282; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2231; + this.state = 2283; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11171,40 +11414,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2240; + this.state = 2292; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2286; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2287; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2236; + this.state = 2288; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2237; + this.state = 2289; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2238; + this.state = 2290; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2239; + this.state = 2291; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11228,76 +11471,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2256; + this.state = 2308; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2294; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2243; + this.state = 2295; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2244; + this.state = 2296; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2245; + this.state = 2297; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2246; + this.state = 2298; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2247; + this.state = 2299; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2248; + this.state = 2300; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2249; + this.state = 2301; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2250; + this.state = 2302; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2251; + this.state = 2303; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2252; + this.state = 2304; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2253; + this.state = 2305; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2254; + this.state = 2306; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2255; + this.state = 2307; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11319,47 +11562,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2265; + this.state = 2317; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2310; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2259; + this.state = 2311; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2260; + this.state = 2312; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2261; + this.state = 2313; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2262; + this.state = 2314; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2263; + this.state = 2315; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2264; + this.state = 2316; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11383,14 +11626,14 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2319; _la = this.tokenStream.LA(1); - if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { + if(!(_la === 456 || ((((_la - 531)) & ~0x1F) === 0 && ((1 << (_la - 531)) & 221) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -11415,14 +11658,14 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2321; _la = this.tokenStream.LA(1); - if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { + if(!(_la === 243 || ((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -11447,16 +11690,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2285; + this.state = 2337; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2323; this.timeIntervalExpression(); } break; @@ -11472,14 +11715,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2272; + this.state = 2324; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2273; + this.state = 2325; this.stringLiteral(); } break; @@ -11487,17 +11730,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2275; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 530) { + if (_la === 533) { { - this.state = 2274; + this.state = 2326; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2277; + this.state = 2329; this.decimalLiteral(); } break; @@ -11505,21 +11748,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2278; + this.state = 2330; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2279; + this.state = 2331; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2280; + this.state = 2332; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11527,17 +11770,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2282; + this.state = 2334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 242) { + if (_la === 243) { { - this.state = 2281; + this.state = 2333; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2284; + this.state = 2336; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11561,13 +11804,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2287; + this.state = 2339; this.timePointUnit(); - this.state = 2288; + this.state = 2340; this.stringLiteral(); } } @@ -11587,11 +11830,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2342; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11611,11 +11854,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2292; + this.state = 2344; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11635,14 +11878,14 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2294; + this.state = 2346; _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 398)) { + if(!(_la === 140 || _la === 400)) { this.errorHandler.recoverInline(this); } else { @@ -11667,12 +11910,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2348; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11699,14 +11942,14 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2350; _la = this.tokenStream.LA(1); - if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { + if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 337 || _la === 440 || ((((_la - 474)) & ~0x1F) === 0 && ((1 << (_la - 474)) & 262149) !== 0) || _la === 506)) { this.errorHandler.recoverInline(this); } else { @@ -11731,14 +11974,14 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2352; _la = this.tokenStream.LA(1); - if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { + if(!(_la === 97 || _la === 166 || _la === 224 || _la === 231 || _la === 337 || ((((_la - 431)) & ~0x1F) === 0 && ((1 << (_la - 431)) & 140542465) !== 0) || ((((_la - 464)) & ~0x1F) === 0 && ((1 << (_la - 464)) & 2415983617) !== 0) || _la === 506 || _la === 507)) { this.errorHandler.recoverInline(this); } else { @@ -11763,14 +12006,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2354; _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 - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { + if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 385) !== 0) || _la === 392 || _la === 417 || _la === 531)) { this.errorHandler.recoverInline(this); } else { @@ -11795,14 +12038,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2356; _la = this.tokenStream.LA(1); - if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { + if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 209 || _la === 210)) { this.errorHandler.recoverInline(this); } else { @@ -11827,14 +12070,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2358; _la = this.tokenStream.LA(1); - if(!(_la === 91 || _la === 379 || _la === 380)) { + if(!(_la === 91 || _la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); } else { @@ -11859,14 +12102,14 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2308; + this.state = 2360; _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)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 675283025) !== 0) || ((((_la - 188)) & ~0x1F) === 0 && ((1 << (_la - 188)) & 277391867) !== 0) || ((((_la - 222)) & ~0x1F) === 0 && ((1 << (_la - 222)) & 41943565) !== 0) || ((((_la - 266)) & ~0x1F) === 0 && ((1 << (_la - 266)) & 1075056641) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 131185) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 8389763) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 100679705) !== 0) || _la === 440 || _la === 473 || _la === 492 || _la === 506)) { this.errorHandler.recoverInline(this); } else { @@ -11891,14 +12134,14 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2362; _la = this.tokenStream.LA(1); - if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { + if(!(((((_la - 441)) & ~0x1F) === 0 && ((1 << (_la - 441)) & 4294967295) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 4294967295) !== 0) || ((((_la - 505)) & ~0x1F) === 0 && ((1 << (_la - 505)) & 15) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -11930,11 +12173,11 @@ export class FlinkSqlParser extends SQLParserBase { return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); case 89: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 130: + case 132: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 133: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 135: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 137: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11993,13 +12236,13 @@ export class FlinkSqlParser extends SQLParserBase { private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 13: - return this.precpred(this.context, 4); + return this.precpred(this.context, 6); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,542,2313,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,545,2365,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, @@ -12031,956 +12274,980 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,388,8,0,10,0,12,0,391,9,0,1,0,1,0,1,1,1,1,3, - 1,397,8,1,1,1,3,1,400,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,414,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,432,8,4,1,5,1,5,3,5,436,8,5,1,6,1,6,1, - 6,1,7,1,7,1,7,1,7,3,7,445,8,7,1,7,1,7,1,7,3,7,450,8,7,1,8,1,8,1, - 8,5,8,455,8,8,10,8,12,8,458,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10, - 1,10,3,10,468,8,10,1,11,1,11,1,11,1,11,1,11,5,11,475,8,11,10,11, - 12,11,478,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12, - 489,8,12,1,12,3,12,492,8,12,1,12,1,12,1,12,1,12,1,12,3,12,499,8, - 12,1,12,3,12,502,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,510,8,12, - 1,12,1,12,3,12,514,8,12,1,12,1,12,1,12,3,12,519,8,12,1,12,3,12,522, - 8,12,1,13,1,13,1,13,1,13,1,13,3,13,529,8,13,1,14,1,14,1,14,1,14, - 1,15,1,15,3,15,537,8,15,1,16,1,16,3,16,541,8,16,1,17,1,17,1,17,1, - 17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,553,8,18,1,18,1,18,1,18,1, - 18,1,18,1,18,3,18,561,8,18,1,18,1,18,3,18,565,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, + 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,3,18,597,8,18,1,19,3,19,600,8,19,1,19,4,19,603,8,19,11,19,12, - 19,604,1,20,1,20,3,20,609,8,20,1,21,1,21,3,21,613,8,21,1,21,1,21, - 3,21,617,8,21,1,21,1,21,1,21,1,21,1,21,5,21,624,8,21,10,21,12,21, - 627,9,21,1,21,1,21,3,21,631,8,21,1,21,1,21,3,21,635,8,21,1,21,1, - 21,3,21,639,8,21,1,21,1,21,1,21,3,21,644,8,21,1,21,3,21,647,8,21, - 1,21,1,21,3,21,651,8,21,1,22,1,22,1,22,3,22,656,8,22,1,22,1,22,1, - 22,1,22,3,22,662,8,22,1,23,1,23,1,23,3,23,667,8,23,1,24,1,24,1,24, - 3,24,672,8,24,1,24,1,24,3,24,676,8,24,1,25,1,25,3,25,680,8,25,1, - 26,1,26,3,26,684,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,692,8,28, - 10,28,12,28,695,9,28,1,28,1,28,1,29,1,29,1,29,3,29,702,8,29,1,29, - 1,29,3,29,706,8,29,1,29,1,29,3,29,710,8,29,1,29,1,29,3,29,714,8, - 29,1,29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29, - 726,8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,3,29,736, - 8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,746,8,31,1,31, - 1,31,1,32,1,32,1,32,1,32,3,32,754,8,32,1,32,1,32,1,33,1,33,1,33, - 1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35, - 1,35,1,35,5,35,776,8,35,10,35,12,35,779,9,35,1,35,1,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,5,35,790,8,35,10,35,12,35,793,9,35,1,35, - 1,35,3,35,797,8,35,1,36,1,36,3,36,801,8,36,1,36,1,36,1,36,1,36,3, - 36,807,8,36,1,36,3,36,810,8,36,1,36,3,36,813,8,36,1,37,1,37,1,37, - 1,37,1,37,3,37,820,8,37,1,37,3,37,823,8,37,1,38,1,38,1,39,1,39,1, - 39,1,39,1,39,3,39,832,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1, - 41,1,42,1,42,3,42,844,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1, - 43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5, - 46,866,8,46,10,46,12,46,869,9,46,1,46,1,46,1,47,1,47,1,47,1,47,1, - 47,5,47,878,8,47,10,47,12,47,881,9,47,1,47,1,47,3,47,885,8,47,1, - 48,1,48,3,48,889,8,48,1,49,1,49,1,49,1,49,5,49,895,8,49,10,49,12, - 49,898,9,49,1,49,3,49,901,8,49,1,50,1,50,1,50,1,50,3,50,907,8,50, - 1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,917,8,52,1,52,1,52, - 1,52,3,52,922,8,52,1,52,1,52,1,53,1,53,3,53,928,8,53,1,53,1,53,3, - 53,932,8,53,1,53,1,53,3,53,936,8,53,1,53,1,53,3,53,940,8,53,1,53, - 1,53,1,53,1,54,1,54,1,54,1,54,3,54,949,8,54,1,54,1,54,3,54,953,8, - 54,1,54,1,54,1,54,1,54,1,54,3,54,960,8,54,1,54,3,54,963,8,54,1,55, - 1,55,1,55,1,55,1,55,1,55,5,55,971,8,55,10,55,12,55,974,9,55,1,56, - 1,56,1,57,1,57,1,57,3,57,981,8,57,1,57,1,57,1,57,1,57,1,57,1,57, - 3,57,989,8,57,1,58,1,58,3,58,993,8,58,1,58,1,58,1,58,1,59,1,59,1, - 59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1008,8,60,1,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1, - 64,1,64,3,64,1027,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1, - 66,3,66,1038,8,66,1,66,1,66,3,66,1042,8,66,1,66,1,66,1,66,1,66,1, - 66,3,66,1049,8,66,1,67,1,67,1,67,3,67,1054,8,67,1,67,1,67,1,68,1, - 68,3,68,1060,8,68,1,68,1,68,3,68,1064,8,68,1,68,1,68,1,69,1,69,1, - 69,3,69,1071,8,69,1,69,1,69,3,69,1075,8,69,1,70,1,70,3,70,1079,8, - 70,1,70,1,70,3,70,1083,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71,1091, - 8,71,1,71,1,71,3,71,1095,8,71,1,71,1,71,1,72,3,72,1100,8,72,1,72, - 1,72,1,72,1,72,3,72,1106,8,72,1,73,1,73,1,73,1,73,3,73,1112,8,73, - 1,73,3,73,1115,8,73,1,73,1,73,3,73,1119,8,73,1,74,1,74,1,74,1,75, - 1,75,1,75,1,75,5,75,1128,8,75,10,75,12,75,1131,9,75,1,76,1,76,1, - 76,1,76,5,76,1137,8,76,10,76,12,76,1140,9,76,1,76,1,76,1,77,1,77, - 1,77,1,77,1,77,1,77,1,77,4,77,1151,8,77,11,77,12,77,1152,1,77,1, - 77,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1163,8,78,11,78,12,78,1164, - 1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, - 3,79,1180,8,79,1,79,3,79,1183,8,79,1,79,1,79,3,79,1187,8,79,1,79, - 3,79,1190,8,79,3,79,1192,8,79,1,79,1,79,1,79,3,79,1197,8,79,1,79, - 1,79,3,79,1201,8,79,1,79,3,79,1204,8,79,5,79,1206,8,79,10,79,12, - 79,1209,9,79,1,80,1,80,1,80,1,80,5,80,1215,8,80,10,80,12,80,1218, - 9,80,1,81,1,81,1,81,1,81,5,81,1224,8,81,10,81,12,81,1227,9,81,1, - 82,1,82,1,82,1,82,1,82,5,82,1234,8,82,10,82,12,82,1237,9,82,1,82, - 1,82,3,82,1241,8,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84, - 3,84,1252,8,84,1,84,3,84,1255,8,84,1,84,3,84,1258,8,84,1,84,3,84, - 1261,8,84,1,84,3,84,1264,8,84,1,84,1,84,1,84,1,84,3,84,1270,8,84, - 1,85,1,85,3,85,1274,8,85,1,85,1,85,1,85,1,85,5,85,1280,8,85,10,85, - 12,85,1283,9,85,3,85,1285,8,85,1,86,1,86,1,86,3,86,1290,8,86,1,86, - 3,86,1293,8,86,1,86,1,86,3,86,1297,8,86,1,86,3,86,1300,8,86,3,86, - 1302,8,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,3,87,1316,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1325, - 8,89,10,89,12,89,1328,9,89,1,89,1,89,3,89,1332,8,89,1,89,1,89,1, - 89,1,89,1,89,1,89,3,89,1340,8,89,1,89,3,89,1343,8,89,1,89,3,89,1346, - 8,89,1,89,1,89,1,89,3,89,1351,8,89,5,89,1353,8,89,10,89,12,89,1356, - 9,89,1,90,1,90,3,90,1360,8,90,1,91,3,91,1363,8,91,1,91,1,91,3,91, - 1367,8,91,1,91,1,91,3,91,1371,8,91,1,91,1,91,1,91,1,91,1,91,1,91, - 1,91,3,91,1380,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, - 3,91,1391,8,91,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,94,1,94, + 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,28,1,28,1,28,1,28,5,28,698,8,28,10,28,12,28,701,9,28,1,28,1, + 28,1,29,1,29,1,29,3,29,708,8,29,1,29,1,29,3,29,712,8,29,1,29,1,29, + 3,29,716,8,29,1,29,1,29,3,29,720,8,29,1,29,1,29,3,29,724,8,29,1, + 29,1,29,3,29,728,8,29,1,29,1,29,3,29,732,8,29,1,29,1,29,3,29,736, + 8,29,1,29,1,29,3,29,740,8,29,3,29,742,8,29,1,30,1,30,1,30,1,30,1, + 31,1,31,1,31,1,31,3,31,752,8,31,1,31,1,31,1,32,1,32,1,32,1,32,3, + 32,760,8,32,1,32,1,32,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1, + 34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,782,8,35,10, + 35,12,35,785,9,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,5, + 35,796,8,35,10,35,12,35,799,9,35,1,35,1,35,3,35,803,8,35,1,36,1, + 36,3,36,807,8,36,1,36,1,36,1,36,1,36,3,36,813,8,36,1,36,3,36,816, + 8,36,1,36,3,36,819,8,36,1,37,1,37,1,37,1,37,1,37,3,37,826,8,37,1, + 37,3,37,829,8,37,1,38,1,38,1,39,1,39,1,39,1,39,1,39,3,39,838,8,39, + 1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,3,42,850,8,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,45, + 1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46,872,8,46,10,46,12,46,875, + 9,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,5,47,884,8,47,10,47,12,47, + 887,9,47,1,47,1,47,3,47,891,8,47,1,48,1,48,3,48,895,8,48,1,49,1, + 49,1,49,1,49,5,49,901,8,49,10,49,12,49,904,9,49,1,49,3,49,907,8, + 49,1,50,1,50,1,50,1,50,3,50,913,8,50,1,51,1,51,1,51,1,51,1,51,1, + 52,1,52,1,52,3,52,923,8,52,1,52,1,52,1,52,3,52,928,8,52,1,52,1,52, + 1,53,1,53,3,53,934,8,53,1,53,1,53,3,53,938,8,53,1,53,1,53,3,53,942, + 8,53,1,53,1,53,3,53,946,8,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54, + 3,54,955,8,54,1,54,1,54,3,54,959,8,54,1,54,1,54,1,54,1,54,1,54,3, + 54,966,8,54,1,54,3,54,969,8,54,1,55,1,55,1,55,1,55,1,55,1,55,5,55, + 977,8,55,10,55,12,55,980,9,55,1,56,1,56,1,57,1,57,1,57,3,57,987, + 8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,995,8,57,1,58,1,58,3,58, + 999,8,58,1,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,3,60,1014,8,60,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, + 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64,3,64,1033,8,64,1,65, + 1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,3,66,1044,8,66,1,66,1,66, + 3,66,1048,8,66,1,66,1,66,1,66,1,66,1,66,3,66,1055,8,66,1,67,1,67, + 1,67,3,67,1060,8,67,1,67,1,67,1,68,1,68,3,68,1066,8,68,1,68,1,68, + 3,68,1070,8,68,1,68,1,68,1,69,1,69,1,69,3,69,1077,8,69,1,69,1,69, + 3,69,1081,8,69,1,70,1,70,3,70,1085,8,70,1,70,1,70,3,70,1089,8,70, + 1,70,1,70,1,71,1,71,1,71,1,71,3,71,1097,8,71,1,71,1,71,3,71,1101, + 8,71,1,71,1,71,1,72,3,72,1106,8,72,1,72,1,72,1,72,1,72,3,72,1112, + 8,72,1,73,1,73,1,73,1,73,3,73,1118,8,73,1,73,3,73,1121,8,73,1,73, + 1,73,3,73,1125,8,73,1,74,1,74,1,74,1,75,1,75,1,75,1,75,5,75,1134, + 8,75,10,75,12,75,1137,9,75,1,76,1,76,1,76,1,76,5,76,1143,8,76,10, + 76,12,76,1146,9,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77, + 4,77,1157,8,77,11,77,12,77,1158,1,77,1,77,1,78,1,78,1,78,1,78,1, + 78,1,78,4,78,1169,8,78,11,78,12,78,1170,1,78,1,78,1,79,1,79,1,79, + 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,1186,8,79,1,79,3,79, + 1189,8,79,1,79,1,79,3,79,1193,8,79,1,79,3,79,1196,8,79,3,79,1198, + 8,79,1,79,1,79,1,79,3,79,1203,8,79,1,79,1,79,3,79,1207,8,79,1,79, + 3,79,1210,8,79,5,79,1212,8,79,10,79,12,79,1215,9,79,1,80,1,80,1, + 80,1,80,5,80,1221,8,80,10,80,12,80,1224,9,80,1,81,1,81,1,81,1,81, + 5,81,1230,8,81,10,81,12,81,1233,9,81,1,82,1,82,1,82,1,82,1,82,5, + 82,1240,8,82,10,82,12,82,1243,9,82,1,82,1,82,3,82,1247,8,82,1,82, + 1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84,3,84,1258,8,84,1,84,3,84, + 1261,8,84,1,84,3,84,1264,8,84,1,84,3,84,1267,8,84,1,84,3,84,1270, + 8,84,1,84,1,84,1,84,1,84,3,84,1276,8,84,1,85,1,85,3,85,1280,8,85, + 1,85,1,85,1,85,1,85,5,85,1286,8,85,10,85,12,85,1289,9,85,3,85,1291, + 8,85,1,86,1,86,1,86,3,86,1296,8,86,1,86,3,86,1299,8,86,1,86,1,86, + 3,86,1303,8,86,1,86,3,86,1306,8,86,3,86,1308,8,86,1,87,1,87,1,87, + 1,87,1,87,3,87,1315,8,87,1,87,1,87,1,87,1,87,1,87,3,87,1322,8,87, + 3,87,1324,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,1333,8,89, + 10,89,12,89,1336,9,89,1,89,1,89,3,89,1340,8,89,1,89,1,89,1,89,1, + 89,1,89,1,89,3,89,1348,8,89,1,89,3,89,1351,8,89,1,89,3,89,1354,8, + 89,1,89,1,89,1,89,3,89,1359,8,89,5,89,1361,8,89,10,89,12,89,1364, + 9,89,1,90,1,90,3,90,1368,8,90,1,91,3,91,1371,8,91,1,91,1,91,3,91, + 1375,8,91,1,91,1,91,3,91,1379,8,91,1,91,1,91,1,91,1,91,1,91,1,91, + 1,91,3,91,1388,8,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, + 3,91,1399,8,91,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,94,1,94, 1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96, - 5,96,1416,8,96,10,96,12,96,1419,9,96,1,96,1,96,1,97,1,97,1,98,1, + 5,96,1424,8,96,10,96,12,96,1427,9,96,1,96,1,96,1,97,1,97,1,98,1, 98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1, - 98,3,98,1440,8,98,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,101, - 1,101,1,101,1,101,3,101,1453,8,101,1,102,1,102,1,102,1,103,1,103, - 1,103,1,103,1,103,5,103,1463,8,103,10,103,12,103,1466,9,103,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104,1476,8,104,10,104, - 12,104,1479,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104, - 1488,8,104,10,104,12,104,1491,9,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,5,104,1500,8,104,10,104,12,104,1503,9,104,1,104,1,104, - 1,104,3,104,1508,8,104,1,105,1,105,1,105,1,106,1,106,1,107,1,107, + 98,3,98,1448,8,98,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,101, + 1,101,1,101,1,101,3,101,1461,8,101,1,102,1,102,1,102,1,103,1,103, + 1,103,1,103,1,103,5,103,1471,8,103,10,103,12,103,1474,9,103,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104,1484,8,104,10,104, + 12,104,1487,9,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,5,104, + 1496,8,104,10,104,12,104,1499,9,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,5,104,1508,8,104,10,104,12,104,1511,9,104,1,104,1,104, + 1,104,3,104,1516,8,104,1,105,1,105,1,105,1,106,1,106,1,107,1,107, 1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,109,1,109,1,110,1,110, - 1,110,1,111,1,111,1,111,1,111,5,111,1533,8,111,10,111,12,111,1536, - 9,111,1,112,1,112,1,112,1,112,1,113,3,113,1543,8,113,1,113,1,113, - 3,113,1547,8,113,1,113,3,113,1550,8,113,1,113,3,113,1553,8,113,1, - 113,1,113,1,114,1,114,1,114,3,114,1560,8,114,1,114,3,114,1563,8, - 114,1,114,3,114,1566,8,114,1,114,3,114,1569,8,114,1,114,3,114,1572, - 8,114,1,114,3,114,1575,8,114,1,114,1,114,1,114,3,114,1580,8,114, - 1,114,3,114,1583,8,114,1,115,1,115,1,115,1,115,1,115,5,115,1590, - 8,115,10,115,12,115,1593,9,115,1,116,1,116,3,116,1597,8,116,1,116, - 1,116,3,116,1601,8,116,1,117,1,117,1,117,3,117,1606,8,117,1,118, - 1,118,1,118,1,118,3,118,1612,8,118,1,118,1,118,1,118,3,118,1617, - 8,118,5,118,1619,8,118,10,118,12,118,1622,9,118,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,3,119,1640,8,119,1,120,1,120,1,120,1,120,5,120,1646, - 8,120,10,120,12,120,1649,9,120,1,121,1,121,1,121,4,121,1654,8,121, - 11,121,12,121,1655,1,121,1,121,3,121,1660,8,121,1,122,1,122,3,122, - 1664,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, - 1674,8,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,110,1,111,1,111,1,111,1,111,5,111,1541,8,111,10,111,12,111,1544, + 9,111,1,112,1,112,1,112,1,112,1,113,3,113,1551,8,113,1,113,1,113, + 3,113,1555,8,113,1,113,3,113,1558,8,113,1,113,3,113,1561,8,113,1, + 113,1,113,1,114,1,114,1,114,3,114,1568,8,114,1,114,3,114,1571,8, + 114,1,114,3,114,1574,8,114,1,114,3,114,1577,8,114,1,114,3,114,1580, + 8,114,1,114,3,114,1583,8,114,1,114,1,114,1,114,3,114,1588,8,114, + 1,114,3,114,1591,8,114,1,115,1,115,1,115,1,115,1,115,5,115,1598, + 8,115,10,115,12,115,1601,9,115,1,116,1,116,3,116,1605,8,116,1,116, + 3,116,1608,8,116,1,116,1,116,3,116,1612,8,116,1,117,1,117,1,117, + 3,117,1617,8,117,1,118,1,118,1,118,1,118,3,118,1623,8,118,1,118, + 1,118,1,118,3,118,1628,8,118,5,118,1630,8,118,10,118,12,118,1633, + 9,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,3,119,1651,8,119,1,120,1,120, + 1,120,1,120,5,120,1657,8,120,10,120,12,120,1660,9,120,1,121,1,121, + 1,121,4,121,1665,8,121,11,121,12,121,1666,1,121,1,121,3,121,1671, + 8,121,1,122,1,122,3,122,1675,8,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,3,123,1685,8,123,1,124,1,124,1,124,1,124,1,124, 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,3,124,1700,8,124,1,125,1,125,1,125,1,125, - 5,125,1706,8,125,10,125,12,125,1709,9,125,1,126,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,3,126,1720,8,126,1,127,1,127,1,127, - 1,127,1,127,1,128,1,128,1,128,1,129,1,129,1,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,3,130,1742,8,130,3,130,1744, - 8,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, - 1755,8,130,1,130,5,130,1758,8,130,10,130,12,130,1761,9,130,1,131, - 3,131,1764,8,131,1,131,1,131,3,131,1768,8,131,1,131,1,131,1,131, - 1,131,1,131,3,131,1775,8,131,1,131,1,131,1,131,1,131,1,131,5,131, - 1782,8,131,10,131,12,131,1785,9,131,1,131,1,131,1,131,3,131,1790, - 8,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1803,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1810, - 8,131,1,131,1,131,1,131,3,131,1815,8,131,1,131,1,131,1,131,1,131, - 3,131,1821,8,131,1,131,1,131,1,131,1,131,1,131,3,131,1828,8,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1835,8,131,3,131,1837,8,131, - 1,132,3,132,1840,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,5,132,1850,8,132,10,132,12,132,1853,9,132,1,132,1,132,3,132, - 1857,8,132,1,132,3,132,1860,8,132,1,132,1,132,1,132,1,132,3,132, - 1866,8,132,3,132,1868,8,132,1,133,1,133,1,133,1,133,3,133,1874,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,5,133,1895, - 8,133,10,133,12,133,1898,9,133,1,134,1,134,1,134,1,134,1,134,3,134, - 1905,8,134,1,134,1,134,1,134,5,134,1910,8,134,10,134,12,134,1913, - 9,134,3,134,1915,8,134,1,134,1,134,3,134,1919,8,134,1,135,1,135, - 1,135,4,135,1924,8,135,11,135,12,135,1925,1,135,1,135,3,135,1930, - 8,135,1,135,1,135,1,135,1,135,1,135,4,135,1937,8,135,11,135,12,135, - 1938,1,135,1,135,3,135,1943,8,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1959, - 8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,1968,8,135, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1711,8,124, + 1,125,1,125,1,125,1,125,5,125,1717,8,125,10,125,12,125,1720,9,125, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,3,126,1737,8,126,1,127,1,127,1,127,1,127, + 1,127,1,128,1,128,1,128,1,128,1,128,1,128,3,128,1750,8,128,1,129, + 1,129,1,129,1,129,1,129,1,129,3,129,1758,8,129,1,130,1,130,1,130, + 1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, + 1,132,3,132,1775,8,132,3,132,1777,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,3,132,1788,8,132,1,132,5,132,1791, + 8,132,10,132,12,132,1794,9,132,1,133,3,133,1797,8,133,1,133,1,133, + 3,133,1801,8,133,1,133,1,133,1,133,1,133,1,133,3,133,1808,8,133, + 1,133,1,133,1,133,1,133,1,133,5,133,1815,8,133,10,133,12,133,1818, + 9,133,1,133,1,133,1,133,3,133,1823,8,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,1836,8,133,1,133, + 1,133,1,133,1,133,1,133,3,133,1843,8,133,1,133,1,133,1,133,3,133, + 1848,8,133,1,133,1,133,1,133,1,133,3,133,1854,8,133,1,133,1,133, + 1,133,1,133,1,133,3,133,1861,8,133,1,133,1,133,1,133,1,133,1,133, + 3,133,1868,8,133,3,133,1870,8,133,1,134,3,134,1873,8,134,1,134,1, + 134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1883,8,134,10,134, + 12,134,1886,9,134,1,134,1,134,3,134,1890,8,134,1,134,3,134,1893, + 8,134,1,134,1,134,1,134,1,134,3,134,1899,8,134,3,134,1901,8,134, + 1,135,1,135,1,135,1,135,3,135,1907,8,135,1,135,1,135,1,135,1,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,3,135,1996,8,135,1,135,1,135,1,135,1,135, - 1,135,5,135,2003,8,135,10,135,12,135,2006,9,135,1,136,1,136,1,137, - 1,137,1,137,1,137,3,137,2014,8,137,1,138,1,138,1,138,1,138,3,138, - 2020,8,138,1,139,1,139,3,139,2024,8,139,1,140,1,140,1,140,1,140, - 3,140,2030,8,140,1,141,1,141,1,142,1,142,1,143,1,143,3,143,2038, - 8,143,1,144,1,144,1,144,3,144,2043,8,144,1,145,1,145,3,145,2047, - 8,145,1,146,1,146,1,146,4,146,2052,8,146,11,146,12,146,2053,1,147, - 1,147,1,147,3,147,2059,8,147,1,148,1,148,1,148,1,148,1,148,1,149, - 3,149,2067,8,149,1,149,1,149,3,149,2071,8,149,1,150,3,150,2074,8, - 150,1,150,1,150,3,150,2078,8,150,1,151,1,151,1,151,1,152,1,152,4, - 152,2085,8,152,11,152,12,152,2086,1,152,3,152,2090,8,152,1,153,1, - 153,1,153,1,153,1,154,1,154,1,154,5,154,2099,8,154,10,154,12,154, - 2102,9,154,1,155,1,155,1,155,3,155,2107,8,155,1,156,1,156,1,157, - 1,157,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,160,1,160,1,161, - 1,161,1,161,3,161,2125,8,161,1,162,1,162,1,162,3,162,2130,8,162, - 1,163,1,163,1,163,3,163,2135,8,163,1,163,1,163,1,163,1,163,1,163, - 3,163,2142,8,163,3,163,2144,8,163,1,164,1,164,1,164,3,164,2149,8, - 164,1,164,1,164,1,164,1,164,1,164,3,164,2156,8,164,3,164,2158,8, - 164,1,165,1,165,1,165,3,165,2163,8,165,1,165,1,165,1,165,1,165,1, - 165,3,165,2170,8,165,3,165,2172,8,165,1,166,1,166,1,166,3,166,2177, - 8,166,1,166,1,166,1,166,1,166,1,166,3,166,2184,8,166,3,166,2186, - 8,166,1,167,1,167,1,167,5,167,2191,8,167,10,167,12,167,2194,9,167, - 1,168,1,168,1,168,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,171, - 1,171,1,171,1,171,5,171,2210,8,171,10,171,12,171,2213,9,171,1,171, - 1,171,1,172,1,172,3,172,2219,8,172,1,172,3,172,2222,8,172,1,173, - 1,173,1,173,3,173,2227,8,173,1,174,1,174,1,174,1,174,3,174,2233, - 8,174,1,175,1,175,1,175,1,175,1,175,1,175,3,175,2241,8,175,1,176, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,3,176,2257,8,176,1,177,1,177,1,177,1,177,1,177,1,177, - 1,177,3,177,2266,8,177,1,178,1,178,1,179,1,179,1,180,1,180,1,180, - 1,180,3,180,2276,8,180,1,180,1,180,1,180,1,180,1,180,3,180,2283, - 8,180,1,180,3,180,2286,8,180,1,181,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,187,1,187,1,188,1,188, - 1,189,1,189,1,190,1,190,1,191,1,191,1,192,1,192,1,192,1,2192,5,158, - 178,260,266,270,193,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,0,47,2,0,109,109,451,451,3,0,45,45,128, - 128,189,189,4,0,42,42,90,90,423,423,465,465,2,0,442,442,448,448, - 2,0,151,151,170,170,2,0,438,438,490,490,2,0,483,486,488,488,3,0, - 32,32,91,91,245,245,11,0,28,29,35,35,46,46,92,92,178,179,345,345, - 361,361,379,379,382,382,388,388,417,418,2,0,434,434,436,436,4,0, - 101,102,115,115,144,144,247,247,2,0,13,13,232,232,2,0,456,456,463, - 463,3,0,5,5,271,271,445,445,3,0,267,267,456,456,463,463,3,0,426, - 426,459,459,478,478,3,0,331,331,466,466,482,482,2,0,441,441,491, - 491,2,0,183,183,266,266,3,0,130,130,180,180,403,403,4,0,152,152, - 174,174,202,202,318,318,3,0,446,446,460,460,500,500,4,0,251,251, - 447,447,495,497,499,499,2,0,74,74,321,321,3,0,460,460,493,493,500, - 500,2,0,440,440,451,451,2,0,458,458,468,468,4,0,140,140,245,245, - 398,398,405,405,2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530, - 531,4,0,453,453,528,528,532,532,535,535,2,0,530,531,533,533,1,0, - 530,531,1,0,539,540,2,0,539,539,542,542,4,0,453,453,528,528,530, - 532,534,535,3,0,242,242,509,510,530,531,2,0,140,140,398,398,2,0, - 5,5,113,113,10,0,97,97,165,165,223,223,230,230,335,335,437,437,471, - 471,473,473,489,489,503,503,15,0,97,97,165,165,223,223,230,230,335, - 335,428,428,437,437,443,443,449,450,455,455,461,461,471,476,489, - 489,492,492,503,504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201, - 201,208,209,390,390,414,414,528,528,3,0,78,78,84,85,208,209,2,0, - 91,91,379,380,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56, - 69,69,75,75,98,99,107,107,119,119,134,134,139,139,143,143,145,145, - 160,160,165,165,167,167,187,188,190,195,198,198,200,200,202,202, - 206,206,210,210,215,215,221,221,223,224,230,230,244,244,246,246, - 265,265,277,277,282,282,284,284,294,294,318,318,322,324,335,335, - 358,359,365,365,368,368,381,381,396,396,399,400,409,409,420,421, - 437,437,470,470,489,489,503,503,1,0,438,505,2519,0,389,1,0,0,0,2, - 399,1,0,0,0,4,413,1,0,0,0,6,415,1,0,0,0,8,431,1,0,0,0,10,435,1,0, - 0,0,12,437,1,0,0,0,14,440,1,0,0,0,16,451,1,0,0,0,18,459,1,0,0,0, - 20,467,1,0,0,0,22,469,1,0,0,0,24,521,1,0,0,0,26,523,1,0,0,0,28,530, - 1,0,0,0,30,534,1,0,0,0,32,538,1,0,0,0,34,542,1,0,0,0,36,596,1,0, - 0,0,38,602,1,0,0,0,40,608,1,0,0,0,42,610,1,0,0,0,44,652,1,0,0,0, - 46,666,1,0,0,0,48,668,1,0,0,0,50,679,1,0,0,0,52,683,1,0,0,0,54,685, - 1,0,0,0,56,687,1,0,0,0,58,735,1,0,0,0,60,737,1,0,0,0,62,741,1,0, - 0,0,64,749,1,0,0,0,66,757,1,0,0,0,68,761,1,0,0,0,70,796,1,0,0,0, - 72,812,1,0,0,0,74,814,1,0,0,0,76,824,1,0,0,0,78,826,1,0,0,0,80,833, - 1,0,0,0,82,835,1,0,0,0,84,843,1,0,0,0,86,851,1,0,0,0,88,853,1,0, - 0,0,90,857,1,0,0,0,92,861,1,0,0,0,94,884,1,0,0,0,96,888,1,0,0,0, - 98,890,1,0,0,0,100,906,1,0,0,0,102,908,1,0,0,0,104,913,1,0,0,0,106, - 925,1,0,0,0,108,944,1,0,0,0,110,964,1,0,0,0,112,975,1,0,0,0,114, - 977,1,0,0,0,116,990,1,0,0,0,118,997,1,0,0,0,120,1000,1,0,0,0,122, - 1009,1,0,0,0,124,1013,1,0,0,0,126,1017,1,0,0,0,128,1020,1,0,0,0, - 130,1028,1,0,0,0,132,1033,1,0,0,0,134,1050,1,0,0,0,136,1057,1,0, - 0,0,138,1067,1,0,0,0,140,1076,1,0,0,0,142,1086,1,0,0,0,144,1105, - 1,0,0,0,146,1107,1,0,0,0,148,1120,1,0,0,0,150,1123,1,0,0,0,152,1132, - 1,0,0,0,154,1143,1,0,0,0,156,1156,1,0,0,0,158,1191,1,0,0,0,160,1210, - 1,0,0,0,162,1219,1,0,0,0,164,1228,1,0,0,0,166,1247,1,0,0,0,168,1269, - 1,0,0,0,170,1271,1,0,0,0,172,1301,1,0,0,0,174,1315,1,0,0,0,176,1317, - 1,0,0,0,178,1331,1,0,0,0,180,1357,1,0,0,0,182,1390,1,0,0,0,184,1392, - 1,0,0,0,186,1398,1,0,0,0,188,1400,1,0,0,0,190,1405,1,0,0,0,192,1410, - 1,0,0,0,194,1422,1,0,0,0,196,1439,1,0,0,0,198,1441,1,0,0,0,200,1443, - 1,0,0,0,202,1452,1,0,0,0,204,1454,1,0,0,0,206,1457,1,0,0,0,208,1507, - 1,0,0,0,210,1509,1,0,0,0,212,1512,1,0,0,0,214,1514,1,0,0,0,216,1521, - 1,0,0,0,218,1523,1,0,0,0,220,1525,1,0,0,0,222,1528,1,0,0,0,224,1537, - 1,0,0,0,226,1542,1,0,0,0,228,1556,1,0,0,0,230,1584,1,0,0,0,232,1594, - 1,0,0,0,234,1602,1,0,0,0,236,1607,1,0,0,0,238,1639,1,0,0,0,240,1641, - 1,0,0,0,242,1650,1,0,0,0,244,1661,1,0,0,0,246,1673,1,0,0,0,248,1699, - 1,0,0,0,250,1701,1,0,0,0,252,1719,1,0,0,0,254,1721,1,0,0,0,256,1726, - 1,0,0,0,258,1729,1,0,0,0,260,1743,1,0,0,0,262,1836,1,0,0,0,264,1867, - 1,0,0,0,266,1873,1,0,0,0,268,1918,1,0,0,0,270,1995,1,0,0,0,272,2007, - 1,0,0,0,274,2013,1,0,0,0,276,2019,1,0,0,0,278,2023,1,0,0,0,280,2029, - 1,0,0,0,282,2031,1,0,0,0,284,2033,1,0,0,0,286,2037,1,0,0,0,288,2039, - 1,0,0,0,290,2044,1,0,0,0,292,2051,1,0,0,0,294,2055,1,0,0,0,296,2060, - 1,0,0,0,298,2070,1,0,0,0,300,2073,1,0,0,0,302,2079,1,0,0,0,304,2089, - 1,0,0,0,306,2091,1,0,0,0,308,2095,1,0,0,0,310,2106,1,0,0,0,312,2108, - 1,0,0,0,314,2110,1,0,0,0,316,2112,1,0,0,0,318,2117,1,0,0,0,320,2119, - 1,0,0,0,322,2121,1,0,0,0,324,2126,1,0,0,0,326,2143,1,0,0,0,328,2157, - 1,0,0,0,330,2171,1,0,0,0,332,2185,1,0,0,0,334,2187,1,0,0,0,336,2195, - 1,0,0,0,338,2198,1,0,0,0,340,2202,1,0,0,0,342,2205,1,0,0,0,344,2216, - 1,0,0,0,346,2226,1,0,0,0,348,2232,1,0,0,0,350,2240,1,0,0,0,352,2256, - 1,0,0,0,354,2265,1,0,0,0,356,2267,1,0,0,0,358,2269,1,0,0,0,360,2285, - 1,0,0,0,362,2287,1,0,0,0,364,2290,1,0,0,0,366,2292,1,0,0,0,368,2294, - 1,0,0,0,370,2296,1,0,0,0,372,2298,1,0,0,0,374,2300,1,0,0,0,376,2302, - 1,0,0,0,378,2304,1,0,0,0,380,2306,1,0,0,0,382,2308,1,0,0,0,384,2310, - 1,0,0,0,386,388,3,2,1,0,387,386,1,0,0,0,388,391,1,0,0,0,389,387, - 1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,389,1,0,0,0,392,393, - 5,0,0,1,393,1,1,0,0,0,394,396,3,4,2,0,395,397,5,522,0,0,396,395, - 1,0,0,0,396,397,1,0,0,0,397,400,1,0,0,0,398,400,3,6,3,0,399,394, - 1,0,0,0,399,398,1,0,0,0,400,3,1,0,0,0,401,414,3,8,4,0,402,414,3, - 10,5,0,403,414,3,12,6,0,404,414,3,14,7,0,405,414,3,20,10,0,406,414, - 3,24,12,0,407,414,3,26,13,0,408,414,3,28,14,0,409,414,3,30,15,0, - 410,414,3,32,16,0,411,414,3,34,17,0,412,414,3,36,18,0,413,401,1, - 0,0,0,413,402,1,0,0,0,413,403,1,0,0,0,413,404,1,0,0,0,413,405,1, - 0,0,0,413,406,1,0,0,0,413,407,1,0,0,0,413,408,1,0,0,0,413,409,1, - 0,0,0,413,410,1,0,0,0,413,411,1,0,0,0,413,412,1,0,0,0,414,5,1,0, - 0,0,415,416,5,522,0,0,416,7,1,0,0,0,417,432,3,40,20,0,418,432,3, - 104,52,0,419,432,3,106,53,0,420,432,3,108,54,0,421,432,3,102,51, - 0,422,432,3,114,57,0,423,432,3,128,64,0,424,432,3,130,65,0,425,432, - 3,132,66,0,426,432,3,134,67,0,427,432,3,136,68,0,428,432,3,138,69, - 0,429,432,3,140,70,0,430,432,3,142,71,0,431,417,1,0,0,0,431,418, - 1,0,0,0,431,419,1,0,0,0,431,420,1,0,0,0,431,421,1,0,0,0,431,422, - 1,0,0,0,431,423,1,0,0,0,431,424,1,0,0,0,431,425,1,0,0,0,431,426, - 1,0,0,0,431,427,1,0,0,0,431,428,1,0,0,0,431,429,1,0,0,0,431,430, - 1,0,0,0,432,9,1,0,0,0,433,436,3,158,79,0,434,436,3,144,72,0,435, - 433,1,0,0,0,435,434,1,0,0,0,436,11,1,0,0,0,437,438,7,0,0,0,438,439, - 3,328,164,0,439,13,1,0,0,0,440,444,5,135,0,0,441,445,3,16,8,0,442, - 443,5,480,0,0,443,445,5,146,0,0,444,441,1,0,0,0,444,442,1,0,0,0, - 444,445,1,0,0,0,445,449,1,0,0,0,446,450,3,10,5,0,447,450,3,146,73, - 0,448,450,3,156,78,0,449,446,1,0,0,0,449,447,1,0,0,0,449,448,1,0, - 0,0,450,15,1,0,0,0,451,456,3,18,9,0,452,453,5,521,0,0,453,455,3, - 18,9,0,454,452,1,0,0,0,455,458,1,0,0,0,456,454,1,0,0,0,456,457,1, - 0,0,0,457,17,1,0,0,0,458,456,1,0,0,0,459,460,7,1,0,0,460,19,1,0, - 0,0,461,462,5,411,0,0,462,463,5,442,0,0,463,468,3,318,159,0,464, - 465,5,411,0,0,465,468,3,322,161,0,466,468,3,22,11,0,467,461,1,0, - 0,0,467,464,1,0,0,0,467,466,1,0,0,0,468,21,1,0,0,0,469,470,5,411, - 0,0,470,471,5,228,0,0,471,476,3,334,167,0,472,473,5,521,0,0,473, - 475,3,334,167,0,474,472,1,0,0,0,475,478,1,0,0,0,476,474,1,0,0,0, - 476,477,1,0,0,0,477,23,1,0,0,0,478,476,1,0,0,0,479,480,5,342,0,0, - 480,522,7,2,0,0,481,482,5,342,0,0,482,483,5,76,0,0,483,522,7,3,0, - 0,484,485,5,342,0,0,485,488,5,375,0,0,486,487,7,4,0,0,487,489,3, - 322,161,0,488,486,1,0,0,0,488,489,1,0,0,0,489,491,1,0,0,0,490,492, - 3,264,132,0,491,490,1,0,0,0,491,492,1,0,0,0,492,522,1,0,0,0,493, - 494,5,342,0,0,494,495,5,58,0,0,495,498,7,4,0,0,496,499,3,330,165, - 0,497,499,3,328,164,0,498,496,1,0,0,0,498,497,1,0,0,0,499,501,1, - 0,0,0,500,502,3,264,132,0,501,500,1,0,0,0,501,502,1,0,0,0,502,522, - 1,0,0,0,503,504,5,342,0,0,504,509,5,72,0,0,505,506,5,374,0,0,506, - 510,3,328,164,0,507,508,5,502,0,0,508,510,3,330,165,0,509,505,1, - 0,0,0,509,507,1,0,0,0,510,522,1,0,0,0,511,513,5,342,0,0,512,514, - 5,412,0,0,513,512,1,0,0,0,513,514,1,0,0,0,514,515,1,0,0,0,515,522, - 5,154,0,0,516,518,5,342,0,0,517,519,5,152,0,0,518,517,1,0,0,0,518, - 519,1,0,0,0,519,520,1,0,0,0,520,522,5,228,0,0,521,479,1,0,0,0,521, - 481,1,0,0,0,521,484,1,0,0,0,521,493,1,0,0,0,521,503,1,0,0,0,521, - 511,1,0,0,0,521,516,1,0,0,0,522,25,1,0,0,0,523,524,5,469,0,0,524, - 525,5,227,0,0,525,528,3,334,167,0,526,527,5,434,0,0,527,529,3,342, - 171,0,528,526,1,0,0,0,528,529,1,0,0,0,529,27,1,0,0,0,530,531,5,501, - 0,0,531,532,5,227,0,0,532,533,3,334,167,0,533,29,1,0,0,0,534,536, - 5,341,0,0,535,537,3,344,172,0,536,535,1,0,0,0,536,537,1,0,0,0,537, - 31,1,0,0,0,538,540,5,313,0,0,539,541,3,346,173,0,540,539,1,0,0,0, - 540,541,1,0,0,0,541,33,1,0,0,0,542,543,7,5,0,0,543,544,5,464,0,0, - 544,545,3,112,56,0,545,35,1,0,0,0,546,547,5,438,0,0,547,548,5,464, - 0,0,548,549,5,434,0,0,549,552,3,38,19,0,550,551,5,17,0,0,551,553, - 3,334,167,0,552,550,1,0,0,0,552,553,1,0,0,0,553,597,1,0,0,0,554, - 555,5,438,0,0,555,556,5,457,0,0,556,557,5,434,0,0,557,560,3,38,19, - 0,558,559,5,17,0,0,559,561,3,334,167,0,560,558,1,0,0,0,560,561,1, - 0,0,0,561,564,1,0,0,0,562,563,5,312,0,0,563,565,3,334,167,0,564, - 562,1,0,0,0,564,565,1,0,0,0,565,597,1,0,0,0,566,567,5,438,0,0,567, - 568,7,6,0,0,568,569,5,434,0,0,569,570,3,38,19,0,570,571,5,312,0, - 0,571,572,3,334,167,0,572,597,1,0,0,0,573,574,5,438,0,0,574,575, - 5,487,0,0,575,597,3,38,19,0,576,577,5,438,0,0,577,578,5,454,0,0, - 578,579,5,457,0,0,579,580,5,434,0,0,580,581,3,38,19,0,581,582,5, - 312,0,0,582,583,3,334,167,0,583,584,5,467,0,0,584,585,3,334,167, - 0,585,597,1,0,0,0,586,587,5,438,0,0,587,588,5,444,0,0,588,589,5, - 457,0,0,589,590,5,434,0,0,590,591,3,38,19,0,591,592,5,146,0,0,592, - 593,3,334,167,0,593,594,5,17,0,0,594,595,3,334,167,0,595,597,1,0, - 0,0,596,546,1,0,0,0,596,554,1,0,0,0,596,566,1,0,0,0,596,573,1,0, - 0,0,596,576,1,0,0,0,596,586,1,0,0,0,597,37,1,0,0,0,598,600,5,535, - 0,0,599,598,1,0,0,0,599,600,1,0,0,0,600,601,1,0,0,0,601,603,3,334, - 167,0,602,599,1,0,0,0,603,604,1,0,0,0,604,602,1,0,0,0,604,605,1, - 0,0,0,605,39,1,0,0,0,606,609,3,42,21,0,607,609,3,44,22,0,608,606, - 1,0,0,0,608,607,1,0,0,0,609,41,1,0,0,0,610,612,5,72,0,0,611,613, - 5,498,0,0,612,611,1,0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,616, - 5,374,0,0,615,617,3,338,169,0,616,615,1,0,0,0,616,617,1,0,0,0,617, - 618,1,0,0,0,618,619,3,326,163,0,619,620,5,517,0,0,620,625,3,46,23, - 0,621,622,5,521,0,0,622,624,3,46,23,0,623,621,1,0,0,0,624,627,1, - 0,0,0,625,623,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,625,1, - 0,0,0,628,629,5,521,0,0,629,631,3,82,41,0,630,628,1,0,0,0,630,631, - 1,0,0,0,631,634,1,0,0,0,632,633,5,521,0,0,633,635,3,84,42,0,634, - 632,1,0,0,0,634,635,1,0,0,0,635,638,1,0,0,0,636,637,5,521,0,0,637, - 639,3,88,44,0,638,636,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640, - 643,5,518,0,0,641,642,5,59,0,0,642,644,5,538,0,0,643,641,1,0,0,0, - 643,644,1,0,0,0,644,646,1,0,0,0,645,647,3,90,45,0,646,645,1,0,0, - 0,646,647,1,0,0,0,647,648,1,0,0,0,648,650,3,336,168,0,649,651,3, - 98,49,0,650,649,1,0,0,0,650,651,1,0,0,0,651,43,1,0,0,0,652,653,5, - 72,0,0,653,655,5,374,0,0,654,656,3,338,169,0,655,654,1,0,0,0,655, - 656,1,0,0,0,656,657,1,0,0,0,657,658,3,326,163,0,658,661,3,336,168, - 0,659,660,5,17,0,0,660,662,3,158,79,0,661,659,1,0,0,0,661,662,1, - 0,0,0,662,45,1,0,0,0,663,667,3,48,24,0,664,667,3,74,37,0,665,667, - 3,78,39,0,666,663,1,0,0,0,666,664,1,0,0,0,666,665,1,0,0,0,667,47, - 1,0,0,0,668,669,3,50,25,0,669,671,3,58,29,0,670,672,3,72,36,0,671, - 670,1,0,0,0,671,672,1,0,0,0,672,675,1,0,0,0,673,674,5,59,0,0,674, - 676,5,538,0,0,675,673,1,0,0,0,675,676,1,0,0,0,676,49,1,0,0,0,677, - 680,3,334,167,0,678,680,3,258,129,0,679,677,1,0,0,0,679,678,1,0, - 0,0,680,51,1,0,0,0,681,684,3,334,167,0,682,684,4,26,0,0,683,681, - 1,0,0,0,683,682,1,0,0,0,684,53,1,0,0,0,685,686,3,334,167,0,686,55, - 1,0,0,0,687,688,5,517,0,0,688,693,3,52,26,0,689,690,5,521,0,0,690, - 692,3,52,26,0,691,689,1,0,0,0,692,695,1,0,0,0,693,691,1,0,0,0,693, - 694,1,0,0,0,694,696,1,0,0,0,695,693,1,0,0,0,696,697,5,518,0,0,697, - 57,1,0,0,0,698,736,7,7,0,0,699,701,7,8,0,0,700,702,3,60,30,0,701, - 700,1,0,0,0,701,702,1,0,0,0,702,736,1,0,0,0,703,705,5,380,0,0,704, - 706,3,60,30,0,705,704,1,0,0,0,705,706,1,0,0,0,706,713,1,0,0,0,707, - 709,7,9,0,0,708,710,5,207,0,0,709,708,1,0,0,0,709,710,1,0,0,0,710, - 711,1,0,0,0,711,712,5,379,0,0,712,714,5,505,0,0,713,707,1,0,0,0, - 713,714,1,0,0,0,714,736,1,0,0,0,715,717,7,10,0,0,716,718,3,62,31, - 0,717,716,1,0,0,0,717,718,1,0,0,0,718,736,1,0,0,0,719,721,7,11,0, - 0,720,722,3,66,33,0,721,720,1,0,0,0,721,722,1,0,0,0,722,736,1,0, - 0,0,723,725,5,470,0,0,724,726,3,68,34,0,725,724,1,0,0,0,725,726, - 1,0,0,0,726,736,1,0,0,0,727,729,5,322,0,0,728,730,3,70,35,0,729, - 728,1,0,0,0,729,730,1,0,0,0,730,736,1,0,0,0,731,733,5,295,0,0,732, - 734,3,64,32,0,733,732,1,0,0,0,733,734,1,0,0,0,734,736,1,0,0,0,735, - 698,1,0,0,0,735,699,1,0,0,0,735,703,1,0,0,0,735,715,1,0,0,0,735, - 719,1,0,0,0,735,723,1,0,0,0,735,727,1,0,0,0,735,731,1,0,0,0,736, - 59,1,0,0,0,737,738,5,517,0,0,738,739,3,366,183,0,739,740,5,518,0, - 0,740,61,1,0,0,0,741,742,5,517,0,0,742,745,3,366,183,0,743,744,5, - 521,0,0,744,746,3,366,183,0,745,743,1,0,0,0,745,746,1,0,0,0,746, - 747,1,0,0,0,747,748,5,518,0,0,748,63,1,0,0,0,749,750,5,517,0,0,750, - 753,3,364,182,0,751,752,5,521,0,0,752,754,3,364,182,0,753,751,1, - 0,0,0,753,754,1,0,0,0,754,755,1,0,0,0,755,756,5,518,0,0,756,65,1, - 0,0,0,757,758,5,508,0,0,758,759,3,58,29,0,759,760,5,507,0,0,760, - 67,1,0,0,0,761,762,5,508,0,0,762,763,3,58,29,0,763,764,5,521,0,0, - 764,765,3,58,29,0,765,766,1,0,0,0,766,767,5,507,0,0,767,69,1,0,0, - 0,768,769,5,508,0,0,769,770,3,52,26,0,770,777,3,58,29,0,771,772, - 5,521,0,0,772,773,3,52,26,0,773,774,3,58,29,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,507,0,0,781,797,1,0,0,0,782, - 783,5,517,0,0,783,784,3,52,26,0,784,791,3,58,29,0,785,786,5,521, - 0,0,786,787,3,52,26,0,787,788,3,58,29,0,788,790,1,0,0,0,789,785, - 1,0,0,0,790,793,1,0,0,0,791,789,1,0,0,0,791,792,1,0,0,0,792,794, - 1,0,0,0,793,791,1,0,0,0,794,795,5,518,0,0,795,797,1,0,0,0,796,768, - 1,0,0,0,796,782,1,0,0,0,797,71,1,0,0,0,798,799,5,64,0,0,799,801, - 3,86,43,0,800,798,1,0,0,0,800,801,1,0,0,0,801,802,1,0,0,0,802,803, - 5,289,0,0,803,806,5,467,0,0,804,805,5,242,0,0,805,807,5,125,0,0, - 806,804,1,0,0,0,806,807,1,0,0,0,807,813,1,0,0,0,808,810,5,242,0, - 0,809,808,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811,813,5,245, - 0,0,812,800,1,0,0,0,812,809,1,0,0,0,813,73,1,0,0,0,814,815,3,50, - 25,0,815,816,3,58,29,0,816,819,5,219,0,0,817,818,5,151,0,0,818,820, - 3,76,38,0,819,817,1,0,0,0,819,820,1,0,0,0,820,822,1,0,0,0,821,823, - 5,424,0,0,822,821,1,0,0,0,822,823,1,0,0,0,823,75,1,0,0,0,824,825, - 5,538,0,0,825,77,1,0,0,0,826,827,3,50,25,0,827,828,5,17,0,0,828, - 831,3,80,40,0,829,830,5,59,0,0,830,832,5,538,0,0,831,829,1,0,0,0, - 831,832,1,0,0,0,832,79,1,0,0,0,833,834,3,258,129,0,834,81,1,0,0, - 0,835,836,5,425,0,0,836,837,5,146,0,0,837,838,3,52,26,0,838,839, - 5,17,0,0,839,840,3,258,129,0,840,83,1,0,0,0,841,842,5,64,0,0,842, - 844,3,86,43,0,843,841,1,0,0,0,843,844,1,0,0,0,844,845,1,0,0,0,845, - 846,5,289,0,0,846,847,5,467,0,0,847,848,3,56,28,0,848,849,5,242, - 0,0,849,850,5,125,0,0,850,85,1,0,0,0,851,852,3,310,155,0,852,87, - 1,0,0,0,853,854,5,278,0,0,854,855,5,146,0,0,855,856,5,372,0,0,856, - 89,1,0,0,0,857,858,5,270,0,0,858,859,5,34,0,0,859,860,3,92,46,0, - 860,91,1,0,0,0,861,862,5,517,0,0,862,867,3,94,47,0,863,864,5,521, - 0,0,864,866,3,94,47,0,865,863,1,0,0,0,866,869,1,0,0,0,867,865,1, - 0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,867,1,0,0,0,870,871,5, - 518,0,0,871,93,1,0,0,0,872,885,3,52,26,0,873,874,5,517,0,0,874,879, - 3,96,48,0,875,876,5,521,0,0,876,878,3,96,48,0,877,875,1,0,0,0,878, - 881,1,0,0,0,879,877,1,0,0,0,879,880,1,0,0,0,880,882,1,0,0,0,881, - 879,1,0,0,0,882,883,5,518,0,0,883,885,1,0,0,0,884,872,1,0,0,0,884, - 873,1,0,0,0,885,95,1,0,0,0,886,889,3,286,143,0,887,889,3,360,180, - 0,888,886,1,0,0,0,888,887,1,0,0,0,889,97,1,0,0,0,890,891,5,203,0, - 0,891,900,3,328,164,0,892,896,5,517,0,0,893,895,3,100,50,0,894,893, - 1,0,0,0,895,898,1,0,0,0,896,894,1,0,0,0,896,897,1,0,0,0,897,899, - 1,0,0,0,898,896,1,0,0,0,899,901,5,518,0,0,900,892,1,0,0,0,900,901, - 1,0,0,0,901,99,1,0,0,0,902,903,7,12,0,0,903,907,7,13,0,0,904,905, - 7,14,0,0,905,907,7,15,0,0,906,902,1,0,0,0,906,904,1,0,0,0,907,101, - 1,0,0,0,908,909,5,72,0,0,909,910,5,442,0,0,910,911,3,320,160,0,911, - 912,3,336,168,0,912,103,1,0,0,0,913,914,5,72,0,0,914,916,5,448,0, - 0,915,917,3,338,169,0,916,915,1,0,0,0,916,917,1,0,0,0,917,918,1, - 0,0,0,918,921,3,324,162,0,919,920,5,59,0,0,920,922,5,538,0,0,921, - 919,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,336,168,0, - 924,105,1,0,0,0,925,927,5,72,0,0,926,928,5,498,0,0,927,926,1,0,0, - 0,927,928,1,0,0,0,928,929,1,0,0,0,929,931,5,502,0,0,930,932,3,338, - 169,0,931,930,1,0,0,0,931,932,1,0,0,0,932,933,1,0,0,0,933,935,3, - 332,166,0,934,936,3,56,28,0,935,934,1,0,0,0,935,936,1,0,0,0,936, - 939,1,0,0,0,937,938,5,59,0,0,938,940,5,538,0,0,939,937,1,0,0,0,939, - 940,1,0,0,0,940,941,1,0,0,0,941,942,5,17,0,0,942,943,3,158,79,0, - 943,107,1,0,0,0,944,948,5,72,0,0,945,949,5,498,0,0,946,947,5,498, - 0,0,947,949,5,371,0,0,948,945,1,0,0,0,948,946,1,0,0,0,948,949,1, - 0,0,0,949,950,1,0,0,0,950,952,5,153,0,0,951,953,3,338,169,0,952, - 951,1,0,0,0,952,953,1,0,0,0,953,954,1,0,0,0,954,955,3,272,136,0, - 955,956,5,17,0,0,956,959,3,310,155,0,957,958,5,196,0,0,958,960,7, - 16,0,0,959,957,1,0,0,0,959,960,1,0,0,0,960,962,1,0,0,0,961,963,3, - 110,55,0,962,961,1,0,0,0,962,963,1,0,0,0,963,109,1,0,0,0,964,965, - 5,413,0,0,965,966,5,464,0,0,966,972,3,112,56,0,967,968,5,521,0,0, - 968,969,5,464,0,0,969,971,3,112,56,0,970,967,1,0,0,0,971,974,1,0, - 0,0,972,970,1,0,0,0,972,973,1,0,0,0,973,111,1,0,0,0,974,972,1,0, - 0,0,975,976,5,538,0,0,976,113,1,0,0,0,977,978,5,8,0,0,978,980,5, - 374,0,0,979,981,3,340,170,0,980,979,1,0,0,0,980,981,1,0,0,0,981, - 982,1,0,0,0,982,988,3,328,164,0,983,989,3,116,58,0,984,989,3,118, - 59,0,985,989,3,120,60,0,986,989,3,122,61,0,987,989,3,124,62,0,988, - 983,1,0,0,0,988,984,1,0,0,0,988,985,1,0,0,0,988,986,1,0,0,0,988, - 987,1,0,0,0,989,115,1,0,0,0,990,992,5,312,0,0,991,993,3,334,167, - 0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,995,5,389, - 0,0,995,996,3,334,167,0,996,117,1,0,0,0,997,998,5,341,0,0,998,999, - 3,342,171,0,999,119,1,0,0,0,1000,1001,5,438,0,0,1001,1002,5,64,0, - 0,1002,1003,3,86,43,0,1003,1004,5,289,0,0,1004,1005,5,467,0,0,1005, - 1007,3,56,28,0,1006,1008,3,126,63,0,1007,1006,1,0,0,0,1007,1008, - 1,0,0,0,1008,121,1,0,0,0,1009,1010,5,116,0,0,1010,1011,5,64,0,0, - 1011,1012,3,86,43,0,1012,123,1,0,0,0,1013,1014,5,438,0,0,1014,1015, - 5,404,0,0,1015,1016,3,56,28,0,1016,125,1,0,0,0,1017,1018,5,242,0, - 0,1018,1019,5,125,0,0,1019,127,1,0,0,0,1020,1021,5,8,0,0,1021,1022, - 5,502,0,0,1022,1026,3,330,165,0,1023,1027,3,116,58,0,1024,1025,5, - 17,0,0,1025,1027,3,158,79,0,1026,1023,1,0,0,0,1026,1024,1,0,0,0, - 1027,129,1,0,0,0,1028,1029,5,8,0,0,1029,1030,5,448,0,0,1030,1031, - 3,322,161,0,1031,1032,3,118,59,0,1032,131,1,0,0,0,1033,1037,5,8, - 0,0,1034,1038,5,498,0,0,1035,1036,5,498,0,0,1036,1038,5,371,0,0, - 1037,1034,1,0,0,0,1037,1035,1,0,0,0,1037,1038,1,0,0,0,1038,1039, - 1,0,0,0,1039,1041,5,153,0,0,1040,1042,3,340,170,0,1041,1040,1,0, - 0,0,1041,1042,1,0,0,0,1042,1043,1,0,0,0,1043,1044,3,274,137,0,1044, - 1045,5,17,0,0,1045,1048,3,310,155,0,1046,1047,5,196,0,0,1047,1049, - 7,16,0,0,1048,1046,1,0,0,0,1048,1049,1,0,0,0,1049,133,1,0,0,0,1050, - 1051,5,116,0,0,1051,1053,5,442,0,0,1052,1054,3,340,170,0,1053,1052, - 1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0,0,1055,1056,3,318,159, - 0,1056,135,1,0,0,0,1057,1059,5,116,0,0,1058,1060,5,498,0,0,1059, - 1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1063,5,374, - 0,0,1062,1064,3,340,170,0,1063,1062,1,0,0,0,1063,1064,1,0,0,0,1064, - 1065,1,0,0,0,1065,1066,3,328,164,0,1066,137,1,0,0,0,1067,1068,5, - 116,0,0,1068,1070,5,448,0,0,1069,1071,3,340,170,0,1070,1069,1,0, - 0,0,1070,1071,1,0,0,0,1071,1072,1,0,0,0,1072,1074,3,322,161,0,1073, - 1075,7,17,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,139,1,0,0, - 0,1076,1078,5,116,0,0,1077,1079,5,498,0,0,1078,1077,1,0,0,0,1078, - 1079,1,0,0,0,1079,1080,1,0,0,0,1080,1082,5,502,0,0,1081,1083,3,340, - 170,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0,1084, - 1085,3,330,165,0,1085,141,1,0,0,0,1086,1090,5,116,0,0,1087,1091, - 5,498,0,0,1088,1089,5,498,0,0,1089,1091,5,371,0,0,1090,1087,1,0, - 0,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1094, - 5,153,0,0,1093,1095,3,340,170,0,1094,1093,1,0,0,0,1094,1095,1,0, - 0,0,1095,1096,1,0,0,0,1096,1097,3,274,137,0,1097,143,1,0,0,0,1098, - 1100,5,132,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0, - 0,0,1101,1106,3,146,73,0,1102,1106,3,154,77,0,1103,1104,5,132,0, - 0,1104,1106,3,156,78,0,1105,1099,1,0,0,0,1105,1102,1,0,0,0,1105, - 1103,1,0,0,0,1106,145,1,0,0,0,1107,1108,5,177,0,0,1108,1109,7,18, - 0,0,1109,1118,3,328,164,0,1110,1112,3,148,74,0,1111,1110,1,0,0,0, - 1111,1112,1,0,0,0,1112,1114,1,0,0,0,1113,1115,3,56,28,0,1114,1113, - 1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1119,3,158,79,0, - 1117,1119,3,150,75,0,1118,1111,1,0,0,0,1118,1117,1,0,0,0,1119,147, - 1,0,0,0,1120,1121,5,269,0,0,1121,1122,3,342,171,0,1122,149,1,0,0, - 0,1123,1124,5,415,0,0,1124,1129,3,152,76,0,1125,1126,5,521,0,0,1126, - 1128,3,152,76,0,1127,1125,1,0,0,0,1128,1131,1,0,0,0,1129,1127,1, - 0,0,0,1129,1130,1,0,0,0,1130,151,1,0,0,0,1131,1129,1,0,0,0,1132, - 1133,5,517,0,0,1133,1138,3,360,180,0,1134,1135,5,521,0,0,1135,1137, - 3,360,180,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,1141,1,0,0,0,1140,1138,1,0,0,0,1141,1142, - 5,518,0,0,1142,153,1,0,0,0,1143,1144,5,24,0,0,1144,1145,5,355,0, - 0,1145,1146,5,341,0,0,1146,1150,5,522,0,0,1147,1148,3,146,73,0,1148, - 1149,5,522,0,0,1149,1151,1,0,0,0,1150,1147,1,0,0,0,1151,1152,1,0, - 0,0,1152,1150,1,0,0,0,1152,1153,1,0,0,0,1153,1154,1,0,0,0,1154,1155, - 5,122,0,0,1155,155,1,0,0,0,1156,1157,5,355,0,0,1157,1158,5,341,0, - 0,1158,1162,5,24,0,0,1159,1160,3,146,73,0,1160,1161,5,522,0,0,1161, - 1163,1,0,0,0,1162,1159,1,0,0,0,1163,1164,1,0,0,0,1164,1162,1,0,0, - 0,1164,1165,1,0,0,0,1165,1166,1,0,0,0,1166,1167,5,122,0,0,1167,157, - 1,0,0,0,1168,1169,6,79,-1,0,1169,1192,3,160,80,0,1170,1171,3,162, - 81,0,1171,1172,3,158,79,5,1172,1192,1,0,0,0,1173,1174,5,517,0,0, - 1174,1175,3,158,79,0,1175,1176,5,518,0,0,1176,1192,1,0,0,0,1177, - 1179,3,170,85,0,1178,1180,3,230,115,0,1179,1178,1,0,0,0,1179,1180, - 1,0,0,0,1180,1182,1,0,0,0,1181,1183,3,234,117,0,1182,1181,1,0,0, - 0,1182,1183,1,0,0,0,1183,1192,1,0,0,0,1184,1186,3,168,84,0,1185, - 1187,3,230,115,0,1186,1185,1,0,0,0,1186,1187,1,0,0,0,1187,1189,1, - 0,0,0,1188,1190,3,234,117,0,1189,1188,1,0,0,0,1189,1190,1,0,0,0, - 1190,1192,1,0,0,0,1191,1168,1,0,0,0,1191,1170,1,0,0,0,1191,1173, - 1,0,0,0,1191,1177,1,0,0,0,1191,1184,1,0,0,0,1192,1207,1,0,0,0,1193, - 1194,10,3,0,0,1194,1196,7,19,0,0,1195,1197,5,5,0,0,1196,1195,1,0, - 0,0,1196,1197,1,0,0,0,1197,1198,1,0,0,0,1198,1200,3,158,79,0,1199, - 1201,3,230,115,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1203,1, - 0,0,0,1202,1204,3,234,117,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0, - 1204,1206,1,0,0,0,1205,1193,1,0,0,0,1206,1209,1,0,0,0,1207,1205, - 1,0,0,0,1207,1208,1,0,0,0,1208,159,1,0,0,0,1209,1207,1,0,0,0,1210, - 1211,5,415,0,0,1211,1216,3,258,129,0,1212,1213,5,521,0,0,1213,1215, - 3,258,129,0,1214,1212,1,0,0,0,1215,1218,1,0,0,0,1216,1214,1,0,0, - 0,1216,1217,1,0,0,0,1217,161,1,0,0,0,1218,1216,1,0,0,0,1219,1220, - 5,434,0,0,1220,1225,3,164,82,0,1221,1222,5,521,0,0,1222,1224,3,164, - 82,0,1223,1221,1,0,0,0,1224,1227,1,0,0,0,1225,1223,1,0,0,0,1225, - 1226,1,0,0,0,1226,163,1,0,0,0,1227,1225,1,0,0,0,1228,1240,3,166, - 83,0,1229,1230,5,517,0,0,1230,1235,3,52,26,0,1231,1232,5,521,0,0, - 1232,1234,3,52,26,0,1233,1231,1,0,0,0,1234,1237,1,0,0,0,1235,1233, - 1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1235,1,0,0,0,1238, - 1239,5,518,0,0,1239,1241,1,0,0,0,1240,1229,1,0,0,0,1240,1241,1,0, - 0,0,1241,1242,1,0,0,0,1242,1243,5,17,0,0,1243,1244,5,517,0,0,1244, - 1245,3,158,79,0,1245,1246,5,518,0,0,1246,165,1,0,0,0,1247,1248,3, - 310,155,0,1248,167,1,0,0,0,1249,1251,3,170,85,0,1250,1252,3,176, - 88,0,1251,1250,1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253, - 1255,3,204,102,0,1254,1253,1,0,0,0,1254,1255,1,0,0,0,1255,1257,1, - 0,0,0,1256,1258,3,206,103,0,1257,1256,1,0,0,0,1257,1258,1,0,0,0, - 1258,1260,1,0,0,0,1259,1261,3,220,110,0,1260,1259,1,0,0,0,1260,1261, - 1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,222,111,0,1263,1262,1,0,0, - 0,1263,1264,1,0,0,0,1264,1270,1,0,0,0,1265,1266,3,170,85,0,1266, - 1267,3,176,88,0,1267,1268,3,228,114,0,1268,1270,1,0,0,0,1269,1249, - 1,0,0,0,1269,1265,1,0,0,0,1270,169,1,0,0,0,1271,1273,5,337,0,0,1272, - 1274,3,370,185,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1284,1, - 0,0,0,1275,1285,5,528,0,0,1276,1281,3,172,86,0,1277,1278,5,521,0, - 0,1278,1280,3,172,86,0,1279,1277,1,0,0,0,1280,1283,1,0,0,0,1281, - 1279,1,0,0,0,1281,1282,1,0,0,0,1282,1285,1,0,0,0,1283,1281,1,0,0, - 0,1284,1275,1,0,0,0,1284,1276,1,0,0,0,1285,171,1,0,0,0,1286,1302, - 3,174,87,0,1287,1292,3,258,129,0,1288,1290,5,17,0,0,1289,1288,1, - 0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1293,3,52,26,0,1292, - 1289,1,0,0,0,1292,1293,1,0,0,0,1293,1302,1,0,0,0,1294,1299,3,52, - 26,0,1295,1297,5,17,0,0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297, - 1298,1,0,0,0,1298,1300,3,258,129,0,1299,1296,1,0,0,0,1299,1300,1, - 0,0,0,1300,1302,1,0,0,0,1301,1286,1,0,0,0,1301,1287,1,0,0,0,1301, - 1294,1,0,0,0,1302,173,1,0,0,0,1303,1304,3,270,135,0,1304,1305,5, - 263,0,0,1305,1306,3,226,113,0,1306,1307,5,17,0,0,1307,1308,3,310, - 155,0,1308,1316,1,0,0,0,1309,1310,3,270,135,0,1310,1311,5,263,0, - 0,1311,1312,3,302,151,0,1312,1313,5,17,0,0,1313,1314,3,310,155,0, - 1314,1316,1,0,0,0,1315,1303,1,0,0,0,1315,1309,1,0,0,0,1316,175,1, - 0,0,0,1317,1318,5,151,0,0,1318,1319,3,178,89,0,1319,177,1,0,0,0, - 1320,1321,6,89,-1,0,1321,1326,3,180,90,0,1322,1323,5,521,0,0,1323, - 1325,3,180,90,0,1324,1322,1,0,0,0,1325,1328,1,0,0,0,1326,1324,1, - 0,0,0,1326,1327,1,0,0,0,1327,1332,1,0,0,0,1328,1326,1,0,0,0,1329, - 1332,3,188,94,0,1330,1332,3,190,95,0,1331,1320,1,0,0,0,1331,1329, - 1,0,0,0,1331,1330,1,0,0,0,1332,1354,1,0,0,0,1333,1334,10,3,0,0,1334, - 1335,5,73,0,0,1335,1336,5,185,0,0,1336,1353,3,178,89,4,1337,1339, - 10,4,0,0,1338,1340,5,234,0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0, - 1340,1342,1,0,0,0,1341,1343,7,20,0,0,1342,1341,1,0,0,0,1342,1343, - 1,0,0,0,1343,1345,1,0,0,0,1344,1346,5,262,0,0,1345,1344,1,0,0,0, - 1345,1346,1,0,0,0,1346,1347,1,0,0,0,1347,1348,5,185,0,0,1348,1350, - 3,178,89,0,1349,1351,3,202,101,0,1350,1349,1,0,0,0,1350,1351,1,0, - 0,0,1351,1353,1,0,0,0,1352,1333,1,0,0,0,1352,1337,1,0,0,0,1353,1356, - 1,0,0,0,1354,1352,1,0,0,0,1354,1355,1,0,0,0,1355,179,1,0,0,0,1356, - 1354,1,0,0,0,1357,1359,3,182,91,0,1358,1360,3,300,150,0,1359,1358, - 1,0,0,0,1359,1360,1,0,0,0,1360,181,1,0,0,0,1361,1363,5,374,0,0,1362, - 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0,0,0,1364,1366,3,328, - 164,0,1365,1367,3,184,92,0,1366,1365,1,0,0,0,1366,1367,1,0,0,0,1367, - 1391,1,0,0,0,1368,1370,3,330,165,0,1369,1371,3,184,92,0,1370,1369, - 1,0,0,0,1370,1371,1,0,0,0,1371,1391,1,0,0,0,1372,1373,5,199,0,0, - 1373,1374,5,374,0,0,1374,1375,5,517,0,0,1375,1376,3,268,134,0,1376, - 1377,5,518,0,0,1377,1391,1,0,0,0,1378,1380,5,199,0,0,1379,1378,1, - 0,0,0,1379,1380,1,0,0,0,1380,1381,1,0,0,0,1381,1382,5,517,0,0,1382, - 1383,3,158,79,0,1383,1384,5,518,0,0,1384,1391,1,0,0,0,1385,1386, - 5,406,0,0,1386,1387,5,517,0,0,1387,1388,3,258,129,0,1388,1389,5, - 518,0,0,1389,1391,1,0,0,0,1390,1362,1,0,0,0,1390,1368,1,0,0,0,1390, - 1372,1,0,0,0,1390,1379,1,0,0,0,1390,1385,1,0,0,0,1391,183,1,0,0, - 0,1392,1393,5,146,0,0,1393,1394,5,372,0,0,1394,1395,5,17,0,0,1395, - 1396,5,250,0,0,1396,1397,3,186,93,0,1397,185,1,0,0,0,1398,1399,3, - 258,129,0,1399,187,1,0,0,0,1400,1401,5,517,0,0,1401,1402,3,150,75, - 0,1402,1403,5,518,0,0,1403,1404,3,300,150,0,1404,189,1,0,0,0,1405, - 1406,5,374,0,0,1406,1407,5,517,0,0,1407,1408,3,192,96,0,1408,1409, - 5,518,0,0,1409,191,1,0,0,0,1410,1411,3,194,97,0,1411,1412,5,517, - 0,0,1412,1417,3,196,98,0,1413,1414,5,521,0,0,1414,1416,3,196,98, - 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,518,0,0, - 1421,193,1,0,0,0,1422,1423,7,21,0,0,1423,195,1,0,0,0,1424,1425,5, - 374,0,0,1425,1440,3,218,109,0,1426,1440,3,200,100,0,1427,1440,3, - 288,144,0,1428,1429,5,447,0,0,1429,1430,5,537,0,0,1430,1431,5,374, - 0,0,1431,1440,3,218,109,0,1432,1433,5,499,0,0,1433,1434,5,537,0, - 0,1434,1440,3,200,100,0,1435,1436,3,198,99,0,1436,1437,5,537,0,0, - 1437,1438,3,288,144,0,1438,1440,1,0,0,0,1439,1424,1,0,0,0,1439,1426, - 1,0,0,0,1439,1427,1,0,0,0,1439,1428,1,0,0,0,1439,1432,1,0,0,0,1439, - 1435,1,0,0,0,1440,197,1,0,0,0,1441,1442,7,22,0,0,1442,199,1,0,0, - 0,1443,1444,5,452,0,0,1444,1445,5,517,0,0,1445,1446,3,52,26,0,1446, - 1447,5,518,0,0,1447,201,1,0,0,0,1448,1449,5,254,0,0,1449,1453,3, - 260,130,0,1450,1451,5,413,0,0,1451,1453,3,56,28,0,1452,1448,1,0, - 0,0,1452,1450,1,0,0,0,1453,203,1,0,0,0,1454,1455,5,431,0,0,1455, - 1456,3,260,130,0,1456,205,1,0,0,0,1457,1458,5,159,0,0,1458,1459, - 5,34,0,0,1459,1464,3,208,104,0,1460,1461,5,521,0,0,1461,1463,3,208, - 104,0,1462,1460,1,0,0,0,1463,1466,1,0,0,0,1464,1462,1,0,0,0,1464, - 1465,1,0,0,0,1465,207,1,0,0,0,1466,1464,1,0,0,0,1467,1508,3,52,26, - 0,1468,1508,3,214,107,0,1469,1470,5,517,0,0,1470,1508,5,518,0,0, - 1471,1472,5,517,0,0,1472,1477,3,258,129,0,1473,1474,5,521,0,0,1474, - 1476,3,258,129,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,518,0,0,1481,1508,1,0,0,0,1482,1483,3,212,106,0,1483,1484, - 5,517,0,0,1484,1489,3,258,129,0,1485,1486,5,521,0,0,1486,1488,3, - 258,129,0,1487,1485,1,0,0,0,1488,1491,1,0,0,0,1489,1487,1,0,0,0, - 1489,1490,1,0,0,0,1490,1492,1,0,0,0,1491,1489,1,0,0,0,1492,1493, - 5,518,0,0,1493,1508,1,0,0,0,1494,1495,3,210,105,0,1495,1496,5,517, - 0,0,1496,1501,3,208,104,0,1497,1498,5,521,0,0,1498,1500,3,208,104, - 0,1499,1497,1,0,0,0,1500,1503,1,0,0,0,1501,1499,1,0,0,0,1501,1502, - 1,0,0,0,1502,1504,1,0,0,0,1503,1501,1,0,0,0,1504,1505,5,518,0,0, - 1505,1508,1,0,0,0,1506,1508,3,258,129,0,1507,1467,1,0,0,0,1507,1468, - 1,0,0,0,1507,1469,1,0,0,0,1507,1471,1,0,0,0,1507,1482,1,0,0,0,1507, - 1494,1,0,0,0,1507,1506,1,0,0,0,1508,209,1,0,0,0,1509,1510,5,160, - 0,0,1510,1511,5,494,0,0,1511,211,1,0,0,0,1512,1513,7,23,0,0,1513, - 213,1,0,0,0,1514,1515,3,216,108,0,1515,1516,5,517,0,0,1516,1517, - 3,218,109,0,1517,1518,5,521,0,0,1518,1519,3,288,144,0,1519,1520, - 5,518,0,0,1520,215,1,0,0,0,1521,1522,7,24,0,0,1522,217,1,0,0,0,1523, - 1524,3,334,167,0,1524,219,1,0,0,0,1525,1526,5,163,0,0,1526,1527, - 3,260,130,0,1527,221,1,0,0,0,1528,1529,5,433,0,0,1529,1534,3,224, - 112,0,1530,1531,5,521,0,0,1531,1533,3,224,112,0,1532,1530,1,0,0, - 0,1533,1536,1,0,0,0,1534,1532,1,0,0,0,1534,1535,1,0,0,0,1535,223, - 1,0,0,0,1536,1534,1,0,0,0,1537,1538,3,302,151,0,1538,1539,5,17,0, - 0,1539,1540,3,226,113,0,1540,225,1,0,0,0,1541,1543,3,302,151,0,1542, - 1541,1,0,0,0,1542,1543,1,0,0,0,1543,1544,1,0,0,0,1544,1546,5,517, - 0,0,1545,1547,3,236,118,0,1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547, - 1549,1,0,0,0,1548,1550,3,230,115,0,1549,1548,1,0,0,0,1549,1550,1, - 0,0,0,1550,1552,1,0,0,0,1551,1553,3,252,126,0,1552,1551,1,0,0,0, - 1552,1553,1,0,0,0,1553,1554,1,0,0,0,1554,1555,5,518,0,0,1555,227, - 1,0,0,0,1556,1557,5,214,0,0,1557,1559,5,517,0,0,1558,1560,3,236, - 118,0,1559,1558,1,0,0,0,1559,1560,1,0,0,0,1560,1562,1,0,0,0,1561, - 1563,3,230,115,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1, - 0,0,0,1564,1566,3,240,120,0,1565,1564,1,0,0,0,1565,1566,1,0,0,0, - 1566,1568,1,0,0,0,1567,1569,3,246,123,0,1568,1567,1,0,0,0,1568,1569, - 1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,248,124,0,1571,1570,1,0,0, - 0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575,3,242,121,0,1574, - 1573,1,0,0,0,1574,1575,1,0,0,0,1575,1576,1,0,0,0,1576,1577,3,250, - 125,0,1577,1582,5,518,0,0,1578,1580,5,17,0,0,1579,1578,1,0,0,0,1579, - 1580,1,0,0,0,1580,1581,1,0,0,0,1581,1583,3,310,155,0,1582,1579,1, - 0,0,0,1582,1583,1,0,0,0,1583,229,1,0,0,0,1584,1585,5,259,0,0,1585, - 1586,5,34,0,0,1586,1591,3,232,116,0,1587,1588,5,521,0,0,1588,1590, - 3,232,116,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1,0,0, - 0,1591,1592,1,0,0,0,1592,231,1,0,0,0,1593,1591,1,0,0,0,1594,1596, - 3,52,26,0,1595,1597,7,25,0,0,1596,1595,1,0,0,0,1596,1597,1,0,0,0, - 1597,1600,1,0,0,0,1598,1599,5,477,0,0,1599,1601,7,26,0,0,1600,1598, - 1,0,0,0,1600,1601,1,0,0,0,1601,233,1,0,0,0,1602,1605,5,205,0,0,1603, - 1606,5,5,0,0,1604,1606,3,258,129,0,1605,1603,1,0,0,0,1605,1604,1, - 0,0,0,1606,235,1,0,0,0,1607,1608,5,269,0,0,1608,1611,5,34,0,0,1609, - 1612,3,52,26,0,1610,1612,3,270,135,0,1611,1609,1,0,0,0,1611,1610, - 1,0,0,0,1612,1620,1,0,0,0,1613,1616,5,521,0,0,1614,1617,3,52,26, - 0,1615,1617,3,270,135,0,1616,1614,1,0,0,0,1616,1615,1,0,0,0,1617, - 1619,1,0,0,0,1618,1613,1,0,0,0,1619,1622,1,0,0,0,1620,1618,1,0,0, - 0,1620,1621,1,0,0,0,1621,237,1,0,0,0,1622,1620,1,0,0,0,1623,1640, - 5,528,0,0,1624,1640,5,531,0,0,1625,1640,5,536,0,0,1626,1627,5,519, - 0,0,1627,1628,5,539,0,0,1628,1629,5,521,0,0,1629,1630,5,539,0,0, - 1630,1640,5,520,0,0,1631,1632,5,519,0,0,1632,1633,5,539,0,0,1633, - 1634,5,521,0,0,1634,1640,5,520,0,0,1635,1636,5,519,0,0,1636,1637, - 5,521,0,0,1637,1638,5,539,0,0,1638,1640,5,520,0,0,1639,1623,1,0, - 0,0,1639,1624,1,0,0,0,1639,1625,1,0,0,0,1639,1626,1,0,0,0,1639,1631, - 1,0,0,0,1639,1635,1,0,0,0,1640,239,1,0,0,0,1641,1642,5,216,0,0,1642, - 1647,3,172,86,0,1643,1644,5,521,0,0,1644,1646,3,172,86,0,1645,1643, - 1,0,0,0,1646,1649,1,0,0,0,1647,1645,1,0,0,0,1647,1648,1,0,0,0,1648, - 241,1,0,0,0,1649,1647,1,0,0,0,1650,1651,5,272,0,0,1651,1653,5,517, - 0,0,1652,1654,3,244,122,0,1653,1652,1,0,0,0,1654,1655,1,0,0,0,1655, - 1653,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1659,5,518, - 0,0,1658,1660,3,256,128,0,1659,1658,1,0,0,0,1659,1660,1,0,0,0,1660, - 243,1,0,0,0,1661,1663,3,312,156,0,1662,1664,3,238,119,0,1663,1662, - 1,0,0,0,1663,1664,1,0,0,0,1664,245,1,0,0,0,1665,1666,5,5,0,0,1666, - 1667,5,323,0,0,1667,1668,5,273,0,0,1668,1674,5,211,0,0,1669,1670, - 5,255,0,0,1670,1671,5,322,0,0,1671,1672,5,273,0,0,1672,1674,5,211, - 0,0,1673,1665,1,0,0,0,1673,1669,1,0,0,0,1674,247,1,0,0,0,1675,1676, - 5,439,0,0,1676,1677,5,211,0,0,1677,1678,5,344,0,0,1678,1679,5,479, - 0,0,1679,1680,5,468,0,0,1680,1700,5,322,0,0,1681,1682,5,439,0,0, - 1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,389,0,0,1685, - 1686,5,238,0,0,1686,1700,5,322,0,0,1687,1688,5,439,0,0,1688,1689, - 5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692,5,468, - 0,0,1692,1700,3,312,156,0,1693,1694,5,439,0,0,1694,1695,5,211,0, - 0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,458,0,0,1698, - 1700,3,312,156,0,1699,1675,1,0,0,0,1699,1681,1,0,0,0,1699,1687,1, - 0,0,0,1699,1693,1,0,0,0,1700,249,1,0,0,0,1701,1702,5,105,0,0,1702, - 1707,3,172,86,0,1703,1704,5,521,0,0,1704,1706,3,172,86,0,1705,1703, - 1,0,0,0,1706,1709,1,0,0,0,1707,1705,1,0,0,0,1707,1708,1,0,0,0,1708, - 251,1,0,0,0,1709,1707,1,0,0,0,1710,1711,5,293,0,0,1711,1712,5,27, - 0,0,1712,1713,3,288,144,0,1713,1714,3,254,127,0,1714,1720,1,0,0, - 0,1715,1716,5,323,0,0,1716,1717,5,27,0,0,1717,1718,5,539,0,0,1718, - 1720,3,254,127,0,1719,1710,1,0,0,0,1719,1715,1,0,0,0,1720,253,1, - 0,0,0,1721,1722,5,481,0,0,1722,1723,5,10,0,0,1723,1724,5,76,0,0, - 1724,1725,5,322,0,0,1725,255,1,0,0,0,1726,1727,5,435,0,0,1727,1728, - 3,288,144,0,1728,257,1,0,0,0,1729,1730,3,260,130,0,1730,259,1,0, - 0,0,1731,1732,6,130,-1,0,1732,1733,5,242,0,0,1733,1744,3,260,130, - 6,1734,1735,5,133,0,0,1735,1736,5,517,0,0,1736,1737,3,158,79,0,1737, - 1738,5,518,0,0,1738,1744,1,0,0,0,1739,1741,3,266,133,0,1740,1742, - 3,262,131,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1744,1,0,0, - 0,1743,1731,1,0,0,0,1743,1734,1,0,0,0,1743,1739,1,0,0,0,1744,1759, - 1,0,0,0,1745,1746,10,3,0,0,1746,1747,5,10,0,0,1747,1758,3,260,130, - 4,1748,1749,10,2,0,0,1749,1750,5,258,0,0,1750,1758,3,260,130,3,1751, - 1752,10,1,0,0,1752,1754,5,184,0,0,1753,1755,5,242,0,0,1754,1753, - 1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0,0,0,1756,1758,7,27,0,0,1757, - 1745,1,0,0,0,1757,1748,1,0,0,0,1757,1751,1,0,0,0,1758,1761,1,0,0, - 0,1759,1757,1,0,0,0,1759,1760,1,0,0,0,1760,261,1,0,0,0,1761,1759, - 1,0,0,0,1762,1764,5,242,0,0,1763,1762,1,0,0,0,1763,1764,1,0,0,0, - 1764,1765,1,0,0,0,1765,1767,5,27,0,0,1766,1768,7,28,0,0,1767,1766, - 1,0,0,0,1767,1768,1,0,0,0,1768,1769,1,0,0,0,1769,1770,3,266,133, - 0,1770,1771,5,10,0,0,1771,1772,3,266,133,0,1772,1837,1,0,0,0,1773, - 1775,5,242,0,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775,1776,1,0, - 0,0,1776,1777,5,170,0,0,1777,1778,5,517,0,0,1778,1783,3,258,129, - 0,1779,1780,5,521,0,0,1780,1782,3,258,129,0,1781,1779,1,0,0,0,1782, - 1785,1,0,0,0,1783,1781,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0, - 0,1785,1783,1,0,0,0,1786,1787,5,518,0,0,1787,1837,1,0,0,0,1788,1790, - 5,242,0,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0, - 1791,1792,5,170,0,0,1792,1793,5,517,0,0,1793,1794,3,158,79,0,1794, - 1795,5,518,0,0,1795,1837,1,0,0,0,1796,1797,5,133,0,0,1797,1798,5, - 517,0,0,1798,1799,3,158,79,0,1799,1800,5,518,0,0,1800,1837,1,0,0, - 0,1801,1803,5,242,0,0,1802,1801,1,0,0,0,1802,1803,1,0,0,0,1803,1804, - 1,0,0,0,1804,1805,5,319,0,0,1805,1837,3,266,133,0,1806,1837,3,264, - 132,0,1807,1809,5,184,0,0,1808,1810,5,242,0,0,1809,1808,1,0,0,0, - 1809,1810,1,0,0,0,1810,1811,1,0,0,0,1811,1837,7,27,0,0,1812,1814, - 5,184,0,0,1813,1815,5,242,0,0,1814,1813,1,0,0,0,1814,1815,1,0,0, - 0,1815,1816,1,0,0,0,1816,1817,5,113,0,0,1817,1818,5,151,0,0,1818, - 1837,3,266,133,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821, - 1,0,0,0,1821,1822,1,0,0,0,1822,1823,5,343,0,0,1823,1824,5,389,0, - 0,1824,1827,3,266,133,0,1825,1826,5,127,0,0,1826,1828,3,364,182, - 0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828,1837,1,0,0,0,1829,1830, - 5,184,0,0,1830,1834,5,186,0,0,1831,1835,5,414,0,0,1832,1835,5,13, - 0,0,1833,1835,3,310,155,0,1834,1831,1,0,0,0,1834,1832,1,0,0,0,1834, - 1833,1,0,0,0,1834,1835,1,0,0,0,1835,1837,1,0,0,0,1836,1763,1,0,0, - 0,1836,1774,1,0,0,0,1836,1789,1,0,0,0,1836,1796,1,0,0,0,1836,1802, - 1,0,0,0,1836,1806,1,0,0,0,1836,1807,1,0,0,0,1836,1812,1,0,0,0,1836, - 1820,1,0,0,0,1836,1829,1,0,0,0,1837,263,1,0,0,0,1838,1840,5,242, - 0,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841,1,0,0,0,1841,1842, - 5,203,0,0,1842,1856,7,29,0,0,1843,1844,5,517,0,0,1844,1857,5,518, - 0,0,1845,1846,5,517,0,0,1846,1851,3,258,129,0,1847,1848,5,521,0, - 0,1848,1850,3,258,129,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,1854,1,0,0,0,1853,1851,1,0,0, - 0,1854,1855,5,518,0,0,1855,1857,1,0,0,0,1856,1843,1,0,0,0,1856,1845, - 1,0,0,0,1857,1868,1,0,0,0,1858,1860,5,242,0,0,1859,1858,1,0,0,0, - 1859,1860,1,0,0,0,1860,1861,1,0,0,0,1861,1862,5,203,0,0,1862,1865, - 3,266,133,0,1863,1864,5,127,0,0,1864,1866,3,364,182,0,1865,1863, - 1,0,0,0,1865,1866,1,0,0,0,1866,1868,1,0,0,0,1867,1839,1,0,0,0,1867, - 1859,1,0,0,0,1868,265,1,0,0,0,1869,1870,6,133,-1,0,1870,1874,3,270, - 135,0,1871,1872,7,30,0,0,1872,1874,3,266,133,7,1873,1869,1,0,0,0, - 1873,1871,1,0,0,0,1874,1896,1,0,0,0,1875,1876,10,6,0,0,1876,1877, - 7,31,0,0,1877,1895,3,266,133,7,1878,1879,10,5,0,0,1879,1880,7,32, - 0,0,1880,1895,3,266,133,6,1881,1882,10,4,0,0,1882,1883,5,512,0,0, - 1883,1895,3,266,133,5,1884,1885,10,3,0,0,1885,1886,5,513,0,0,1886, - 1895,3,266,133,4,1887,1888,10,2,0,0,1888,1889,5,511,0,0,1889,1895, - 3,266,133,3,1890,1891,10,1,0,0,1891,1892,3,352,176,0,1892,1893,3, - 266,133,2,1893,1895,1,0,0,0,1894,1875,1,0,0,0,1894,1878,1,0,0,0, - 1894,1881,1,0,0,0,1894,1884,1,0,0,0,1894,1887,1,0,0,0,1894,1890, - 1,0,0,0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897, - 267,1,0,0,0,1898,1896,1,0,0,0,1899,1919,3,378,189,0,1900,1919,3, - 276,138,0,1901,1902,3,278,139,0,1902,1914,5,517,0,0,1903,1905,3, - 370,185,0,1904,1903,1,0,0,0,1904,1905,1,0,0,0,1905,1906,1,0,0,0, - 1906,1911,3,280,140,0,1907,1908,5,521,0,0,1908,1910,3,280,140,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,1915,1,0,0,0,1913,1911,1,0,0,0,1914,1904,1,0,0,0,1914, - 1915,1,0,0,0,1915,1916,1,0,0,0,1916,1917,5,518,0,0,1917,1919,1,0, - 0,0,1918,1899,1,0,0,0,1918,1900,1,0,0,0,1918,1901,1,0,0,0,1919,269, - 1,0,0,0,1920,1921,6,135,-1,0,1921,1923,5,40,0,0,1922,1924,3,316, - 158,0,1923,1922,1,0,0,0,1924,1925,1,0,0,0,1925,1923,1,0,0,0,1925, - 1926,1,0,0,0,1926,1929,1,0,0,0,1927,1928,5,120,0,0,1928,1930,3,258, - 129,0,1929,1927,1,0,0,0,1929,1930,1,0,0,0,1930,1931,1,0,0,0,1931, - 1932,5,122,0,0,1932,1996,1,0,0,0,1933,1934,5,40,0,0,1934,1936,3, - 258,129,0,1935,1937,3,316,158,0,1936,1935,1,0,0,0,1937,1938,1,0, - 0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1942,1,0,0,0,1940,1941, - 5,120,0,0,1941,1943,3,258,129,0,1942,1940,1,0,0,0,1942,1943,1,0, - 0,0,1943,1944,1,0,0,0,1944,1945,5,122,0,0,1945,1996,1,0,0,0,1946, - 1947,5,41,0,0,1947,1948,5,517,0,0,1948,1949,3,258,129,0,1949,1950, - 5,17,0,0,1950,1951,3,58,29,0,1951,1952,5,518,0,0,1952,1996,1,0,0, - 0,1953,1954,5,458,0,0,1954,1955,5,517,0,0,1955,1958,3,258,129,0, - 1956,1957,5,462,0,0,1957,1959,5,477,0,0,1958,1956,1,0,0,0,1958,1959, - 1,0,0,0,1959,1960,1,0,0,0,1960,1961,5,518,0,0,1961,1996,1,0,0,0, - 1962,1963,5,468,0,0,1963,1964,5,517,0,0,1964,1967,3,258,129,0,1965, - 1966,5,462,0,0,1966,1968,5,477,0,0,1967,1965,1,0,0,0,1967,1968,1, - 0,0,0,1968,1969,1,0,0,0,1969,1970,5,518,0,0,1970,1996,1,0,0,0,1971, - 1972,5,282,0,0,1972,1973,5,517,0,0,1973,1974,3,266,133,0,1974,1975, - 5,170,0,0,1975,1976,3,266,133,0,1976,1977,5,518,0,0,1977,1996,1, - 0,0,0,1978,1996,3,360,180,0,1979,1996,5,528,0,0,1980,1981,3,334, - 167,0,1981,1982,5,514,0,0,1982,1983,5,528,0,0,1983,1996,1,0,0,0, - 1984,1985,5,517,0,0,1985,1986,3,158,79,0,1986,1987,5,518,0,0,1987, - 1996,1,0,0,0,1988,1996,3,268,134,0,1989,1996,3,54,27,0,1990,1996, - 3,282,141,0,1991,1992,5,517,0,0,1992,1993,3,258,129,0,1993,1994, - 5,518,0,0,1994,1996,1,0,0,0,1995,1920,1,0,0,0,1995,1933,1,0,0,0, - 1995,1946,1,0,0,0,1995,1953,1,0,0,0,1995,1962,1,0,0,0,1995,1971, - 1,0,0,0,1995,1978,1,0,0,0,1995,1979,1,0,0,0,1995,1980,1,0,0,0,1995, - 1984,1,0,0,0,1995,1988,1,0,0,0,1995,1989,1,0,0,0,1995,1990,1,0,0, - 0,1995,1991,1,0,0,0,1996,2004,1,0,0,0,1997,1998,10,4,0,0,1998,1999, - 5,515,0,0,1999,2000,3,266,133,0,2000,2001,5,516,0,0,2001,2003,1, - 0,0,0,2002,1997,1,0,0,0,2003,2006,1,0,0,0,2004,2002,1,0,0,0,2004, - 2005,1,0,0,0,2005,271,1,0,0,0,2006,2004,1,0,0,0,2007,2008,3,334, - 167,0,2008,273,1,0,0,0,2009,2014,3,382,191,0,2010,2014,3,378,189, - 0,2011,2014,3,380,190,0,2012,2014,3,334,167,0,2013,2009,1,0,0,0, - 2013,2010,1,0,0,0,2013,2011,1,0,0,0,2013,2012,1,0,0,0,2014,275,1, - 0,0,0,2015,2016,3,380,190,0,2016,2017,5,538,0,0,2017,2020,1,0,0, - 0,2018,2020,3,288,144,0,2019,2015,1,0,0,0,2019,2018,1,0,0,0,2020, - 277,1,0,0,0,2021,2024,3,382,191,0,2022,2024,3,334,167,0,2023,2021, - 1,0,0,0,2023,2022,1,0,0,0,2024,279,1,0,0,0,2025,2030,3,376,188,0, - 2026,2030,3,374,187,0,2027,2030,3,372,186,0,2028,2030,3,258,129, - 0,2029,2025,1,0,0,0,2029,2026,1,0,0,0,2029,2027,1,0,0,0,2029,2028, - 1,0,0,0,2030,281,1,0,0,0,2031,2032,3,334,167,0,2032,283,1,0,0,0, - 2033,2034,3,310,155,0,2034,285,1,0,0,0,2035,2038,3,310,155,0,2036, - 2038,3,282,141,0,2037,2035,1,0,0,0,2037,2036,1,0,0,0,2038,287,1, - 0,0,0,2039,2042,5,182,0,0,2040,2043,3,290,145,0,2041,2043,3,294, - 147,0,2042,2040,1,0,0,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043, - 289,1,0,0,0,2044,2046,3,292,146,0,2045,2047,3,296,148,0,2046,2045, - 1,0,0,0,2046,2047,1,0,0,0,2047,291,1,0,0,0,2048,2049,3,298,149,0, - 2049,2050,3,374,187,0,2050,2052,1,0,0,0,2051,2048,1,0,0,0,2052,2053, - 1,0,0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,293,1,0,0,0,2055, - 2058,3,296,148,0,2056,2059,3,292,146,0,2057,2059,3,296,148,0,2058, - 2056,1,0,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,295,1,0,0, - 0,2060,2061,3,298,149,0,2061,2062,3,374,187,0,2062,2063,5,389,0, - 0,2063,2064,3,374,187,0,2064,297,1,0,0,0,2065,2067,7,33,0,0,2066, - 2065,1,0,0,0,2066,2067,1,0,0,0,2067,2068,1,0,0,0,2068,2071,7,34, - 0,0,2069,2071,5,538,0,0,2070,2066,1,0,0,0,2070,2069,1,0,0,0,2071, - 299,1,0,0,0,2072,2074,5,17,0,0,2073,2072,1,0,0,0,2073,2074,1,0,0, - 0,2074,2075,1,0,0,0,2075,2077,3,310,155,0,2076,2078,3,306,153,0, - 2077,2076,1,0,0,0,2077,2078,1,0,0,0,2078,301,1,0,0,0,2079,2080,3, - 310,155,0,2080,2081,3,304,152,0,2081,303,1,0,0,0,2082,2083,5,222, - 0,0,2083,2085,3,310,155,0,2084,2082,1,0,0,0,2085,2086,1,0,0,0,2086, - 2084,1,0,0,0,2086,2087,1,0,0,0,2087,2090,1,0,0,0,2088,2090,1,0,0, - 0,2089,2084,1,0,0,0,2089,2088,1,0,0,0,2090,305,1,0,0,0,2091,2092, - 5,517,0,0,2092,2093,3,308,154,0,2093,2094,5,518,0,0,2094,307,1,0, - 0,0,2095,2100,3,310,155,0,2096,2097,5,521,0,0,2097,2099,3,310,155, - 0,2098,2096,1,0,0,0,2099,2102,1,0,0,0,2100,2098,1,0,0,0,2100,2101, - 1,0,0,0,2101,309,1,0,0,0,2102,2100,1,0,0,0,2103,2107,3,312,156,0, - 2104,2107,3,314,157,0,2105,2107,3,384,192,0,2106,2103,1,0,0,0,2106, - 2104,1,0,0,0,2106,2105,1,0,0,0,2107,311,1,0,0,0,2108,2109,7,35,0, - 0,2109,313,1,0,0,0,2110,2111,5,538,0,0,2111,315,1,0,0,0,2112,2113, - 5,429,0,0,2113,2114,3,258,129,0,2114,2115,5,377,0,0,2115,2116,3, - 258,129,0,2116,317,1,0,0,0,2117,2118,3,310,155,0,2118,319,1,0,0, - 0,2119,2120,3,310,155,0,2120,321,1,0,0,0,2121,2124,3,310,155,0,2122, - 2123,5,514,0,0,2123,2125,3,310,155,0,2124,2122,1,0,0,0,2124,2125, - 1,0,0,0,2125,323,1,0,0,0,2126,2129,3,310,155,0,2127,2128,5,514,0, - 0,2128,2130,3,310,155,0,2129,2127,1,0,0,0,2129,2130,1,0,0,0,2130, - 325,1,0,0,0,2131,2134,3,310,155,0,2132,2133,5,514,0,0,2133,2135, - 3,310,155,0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2144,1,0,0, - 0,2136,2137,3,310,155,0,2137,2138,5,514,0,0,2138,2141,3,310,155, - 0,2139,2140,5,514,0,0,2140,2142,3,310,155,0,2141,2139,1,0,0,0,2141, - 2142,1,0,0,0,2142,2144,1,0,0,0,2143,2131,1,0,0,0,2143,2136,1,0,0, - 0,2144,327,1,0,0,0,2145,2148,3,310,155,0,2146,2147,5,514,0,0,2147, - 2149,3,310,155,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2158,1, - 0,0,0,2150,2151,3,310,155,0,2151,2152,5,514,0,0,2152,2155,3,310, - 155,0,2153,2154,5,514,0,0,2154,2156,3,310,155,0,2155,2153,1,0,0, - 0,2155,2156,1,0,0,0,2156,2158,1,0,0,0,2157,2145,1,0,0,0,2157,2150, - 1,0,0,0,2158,329,1,0,0,0,2159,2162,3,310,155,0,2160,2161,5,514,0, - 0,2161,2163,3,310,155,0,2162,2160,1,0,0,0,2162,2163,1,0,0,0,2163, - 2172,1,0,0,0,2164,2165,3,310,155,0,2165,2166,5,514,0,0,2166,2169, - 3,310,155,0,2167,2168,5,514,0,0,2168,2170,3,310,155,0,2169,2167, - 1,0,0,0,2169,2170,1,0,0,0,2170,2172,1,0,0,0,2171,2159,1,0,0,0,2171, - 2164,1,0,0,0,2172,331,1,0,0,0,2173,2176,3,310,155,0,2174,2175,5, - 514,0,0,2175,2177,3,310,155,0,2176,2174,1,0,0,0,2176,2177,1,0,0, - 0,2177,2186,1,0,0,0,2178,2179,3,310,155,0,2179,2180,5,514,0,0,2180, - 2183,3,310,155,0,2181,2182,5,514,0,0,2182,2184,3,310,155,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,333,1,0,0,0,2187,2192,3,310,155,0,2188, - 2189,5,514,0,0,2189,2191,3,310,155,0,2190,2188,1,0,0,0,2191,2194, - 1,0,0,0,2192,2193,1,0,0,0,2192,2190,1,0,0,0,2193,335,1,0,0,0,2194, - 2192,1,0,0,0,2195,2196,5,434,0,0,2196,2197,3,342,171,0,2197,337, - 1,0,0,0,2198,2199,5,167,0,0,2199,2200,5,242,0,0,2200,2201,5,133, - 0,0,2201,339,1,0,0,0,2202,2203,5,167,0,0,2203,2204,5,133,0,0,2204, - 341,1,0,0,0,2205,2206,5,517,0,0,2206,2211,3,344,172,0,2207,2208, - 5,521,0,0,2208,2210,3,344,172,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,518,0,0,2215,343,1,0,0,0,2216,2221,3,346,173, - 0,2217,2219,5,506,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220, - 1,0,0,0,2220,2222,3,348,174,0,2221,2218,1,0,0,0,2221,2222,1,0,0, - 0,2222,345,1,0,0,0,2223,2227,3,310,155,0,2224,2227,3,282,141,0,2225, - 2227,5,538,0,0,2226,2223,1,0,0,0,2226,2224,1,0,0,0,2226,2225,1,0, - 0,0,2227,347,1,0,0,0,2228,2233,5,539,0,0,2229,2233,5,540,0,0,2230, - 2233,3,368,184,0,2231,2233,5,538,0,0,2232,2228,1,0,0,0,2232,2229, - 1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0,0,0,2233,349,1,0,0,0,2234, - 2241,5,10,0,0,2235,2236,5,512,0,0,2236,2241,5,512,0,0,2237,2241, - 5,258,0,0,2238,2239,5,511,0,0,2239,2241,5,511,0,0,2240,2234,1,0, - 0,0,2240,2235,1,0,0,0,2240,2237,1,0,0,0,2240,2238,1,0,0,0,2241,351, - 1,0,0,0,2242,2257,5,506,0,0,2243,2257,5,507,0,0,2244,2257,5,508, - 0,0,2245,2246,5,508,0,0,2246,2257,5,506,0,0,2247,2248,5,507,0,0, - 2248,2257,5,506,0,0,2249,2250,5,508,0,0,2250,2257,5,507,0,0,2251, - 2252,5,509,0,0,2252,2257,5,506,0,0,2253,2254,5,508,0,0,2254,2255, - 5,506,0,0,2255,2257,5,507,0,0,2256,2242,1,0,0,0,2256,2243,1,0,0, - 0,2256,2244,1,0,0,0,2256,2245,1,0,0,0,2256,2247,1,0,0,0,2256,2249, - 1,0,0,0,2256,2251,1,0,0,0,2256,2253,1,0,0,0,2257,353,1,0,0,0,2258, - 2259,5,508,0,0,2259,2266,5,508,0,0,2260,2261,5,507,0,0,2261,2266, - 5,507,0,0,2262,2266,5,512,0,0,2263,2266,5,513,0,0,2264,2266,5,511, - 0,0,2265,2258,1,0,0,0,2265,2260,1,0,0,0,2265,2262,1,0,0,0,2265,2263, - 1,0,0,0,2265,2264,1,0,0,0,2266,355,1,0,0,0,2267,2268,7,36,0,0,2268, - 357,1,0,0,0,2269,2270,7,37,0,0,2270,359,1,0,0,0,2271,2286,3,288, - 144,0,2272,2286,3,362,181,0,2273,2286,3,364,182,0,2274,2276,5,530, - 0,0,2275,2274,1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2286, - 3,366,183,0,2278,2286,3,368,184,0,2279,2286,5,540,0,0,2280,2286, - 5,541,0,0,2281,2283,5,242,0,0,2282,2281,1,0,0,0,2282,2283,1,0,0, - 0,2283,2284,1,0,0,0,2284,2286,5,245,0,0,2285,2271,1,0,0,0,2285,2272, - 1,0,0,0,2285,2273,1,0,0,0,2285,2275,1,0,0,0,2285,2278,1,0,0,0,2285, - 2279,1,0,0,0,2285,2280,1,0,0,0,2285,2282,1,0,0,0,2286,361,1,0,0, - 0,2287,2288,3,372,186,0,2288,2289,3,364,182,0,2289,363,1,0,0,0,2290, - 2291,5,538,0,0,2291,365,1,0,0,0,2292,2293,5,539,0,0,2293,367,1,0, - 0,0,2294,2295,7,38,0,0,2295,369,1,0,0,0,2296,2297,7,39,0,0,2297, - 371,1,0,0,0,2298,2299,7,40,0,0,2299,373,1,0,0,0,2300,2301,7,41,0, - 0,2301,375,1,0,0,0,2302,2303,7,42,0,0,2303,377,1,0,0,0,2304,2305, - 7,43,0,0,2305,379,1,0,0,0,2306,2307,7,44,0,0,2307,381,1,0,0,0,2308, - 2309,7,45,0,0,2309,383,1,0,0,0,2310,2311,7,46,0,0,2311,385,1,0,0, - 0,273,389,396,399,413,431,435,444,449,456,467,476,488,491,498,501, - 509,513,518,521,528,536,540,552,560,564,596,599,604,608,612,616, - 625,630,634,638,643,646,650,655,661,666,671,675,679,683,693,701, - 705,709,713,717,721,725,729,733,735,745,753,777,791,796,800,806, - 809,812,819,822,831,843,867,879,884,888,896,900,906,916,921,927, - 931,935,939,948,952,959,962,972,980,988,992,1007,1026,1037,1041, - 1048,1053,1059,1063,1070,1074,1078,1082,1090,1094,1099,1105,1111, - 1114,1118,1129,1138,1152,1164,1179,1182,1186,1189,1191,1196,1200, - 1203,1207,1216,1225,1235,1240,1251,1254,1257,1260,1263,1269,1273, - 1281,1284,1289,1292,1296,1299,1301,1315,1326,1331,1339,1342,1345, - 1350,1352,1354,1359,1362,1366,1370,1379,1390,1417,1439,1452,1464, - 1477,1489,1501,1507,1534,1542,1546,1549,1552,1559,1562,1565,1568, - 1571,1574,1579,1582,1591,1596,1600,1605,1611,1616,1620,1639,1647, - 1655,1659,1663,1673,1699,1707,1719,1741,1743,1754,1757,1759,1763, - 1767,1774,1783,1789,1802,1809,1814,1820,1827,1834,1836,1839,1851, - 1856,1859,1865,1867,1873,1894,1896,1904,1911,1914,1918,1925,1929, - 1938,1942,1958,1967,1995,2004,2013,2019,2023,2029,2037,2042,2046, - 2053,2058,2066,2070,2073,2077,2086,2089,2100,2106,2124,2129,2134, - 2141,2143,2148,2155,2157,2162,2169,2171,2176,2183,2185,2192,2211, - 2218,2221,2226,2232,2240,2256,2265,2275,2282,2285 + 1,135,1,135,1,135,1,135,5,135,1928,8,135,10,135,12,135,1931,9,135, + 1,136,1,136,1,136,1,136,1,136,3,136,1938,8,136,1,136,1,136,1,136, + 5,136,1943,8,136,10,136,12,136,1946,9,136,3,136,1948,8,136,1,136, + 1,136,3,136,1952,8,136,1,137,1,137,1,137,4,137,1957,8,137,11,137, + 12,137,1958,1,137,1,137,3,137,1963,8,137,1,137,1,137,1,137,1,137, + 1,137,4,137,1970,8,137,11,137,12,137,1971,1,137,1,137,3,137,1976, + 8,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,3,137,1992,8,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,3,137,2001,8,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,2037,8,137,1,137, + 1,137,1,137,1,137,1,137,5,137,2044,8,137,10,137,12,137,2047,9,137, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,2056,8,138,1,138, + 1,138,1,139,1,139,1,140,1,140,1,140,1,140,3,140,2066,8,140,1,141, + 1,141,1,141,1,141,3,141,2072,8,141,1,142,1,142,3,142,2076,8,142, + 1,143,1,143,1,143,1,143,3,143,2082,8,143,1,144,1,144,1,145,1,145, + 1,146,1,146,3,146,2090,8,146,1,147,1,147,1,147,3,147,2095,8,147, + 1,148,1,148,3,148,2099,8,148,1,149,1,149,1,149,4,149,2104,8,149, + 11,149,12,149,2105,1,150,1,150,1,150,3,150,2111,8,150,1,151,1,151, + 1,151,1,151,1,151,1,152,3,152,2119,8,152,1,152,1,152,3,152,2123, + 8,152,1,153,3,153,2126,8,153,1,153,1,153,3,153,2130,8,153,1,154, + 1,154,1,154,1,155,1,155,4,155,2137,8,155,11,155,12,155,2138,1,155, + 3,155,2142,8,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157,5,157, + 2151,8,157,10,157,12,157,2154,9,157,1,158,1,158,1,158,3,158,2159, + 8,158,1,159,1,159,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,162, + 1,162,1,163,1,163,1,164,1,164,1,164,3,164,2177,8,164,1,165,1,165, + 1,165,3,165,2182,8,165,1,166,1,166,1,166,3,166,2187,8,166,1,166, + 1,166,1,166,1,166,1,166,3,166,2194,8,166,3,166,2196,8,166,1,167, + 1,167,1,167,3,167,2201,8,167,1,167,1,167,1,167,1,167,1,167,3,167, + 2208,8,167,3,167,2210,8,167,1,168,1,168,1,168,3,168,2215,8,168,1, + 168,1,168,1,168,1,168,1,168,3,168,2222,8,168,3,168,2224,8,168,1, + 169,1,169,1,169,3,169,2229,8,169,1,169,1,169,1,169,1,169,1,169,3, + 169,2236,8,169,3,169,2238,8,169,1,170,1,170,1,170,5,170,2243,8,170, + 10,170,12,170,2246,9,170,1,171,1,171,1,171,1,172,1,172,1,172,1,172, + 1,173,1,173,1,173,1,174,1,174,1,174,1,174,5,174,2262,8,174,10,174, + 12,174,2265,9,174,1,174,1,174,1,175,1,175,3,175,2271,8,175,1,175, + 3,175,2274,8,175,1,176,1,176,1,176,3,176,2279,8,176,1,177,1,177, + 1,177,1,177,3,177,2285,8,177,1,178,1,178,1,178,1,178,1,178,1,178, + 3,178,2293,8,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,3,179,2309,8,179,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,3,180,2318,8,180,1,181,1,181,1,182, + 1,182,1,183,1,183,1,183,1,183,3,183,2328,8,183,1,183,1,183,1,183, + 1,183,1,183,3,183,2335,8,183,1,183,3,183,2338,8,183,1,184,1,184, + 1,184,1,185,1,185,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,1,2244,5,158,178,264,270,274,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,48,2,0,109,109,454,454,3,0,45,45,128,128,190,190,4,0,42,42, + 90,90,426,426,468,468,2,0,445,445,451,451,2,0,152,152,171,171,2, + 0,441,441,493,493,2,0,486,489,491,491,3,0,32,32,91,91,246,246,11, + 0,28,29,35,35,46,46,92,92,179,180,347,347,363,363,381,381,384,384, + 390,390,420,421,2,0,437,437,439,439,4,0,101,102,115,115,144,144, + 248,248,2,0,13,13,233,233,2,0,459,459,466,466,3,0,5,5,272,272,448, + 448,3,0,268,268,459,459,466,466,3,0,429,429,462,462,481,481,3,0, + 333,333,469,469,485,485,2,0,444,444,494,494,2,0,184,184,267,267, + 3,0,130,130,181,181,406,406,4,0,153,153,175,175,203,203,320,320, + 3,0,449,449,463,463,503,503,4,0,252,252,450,450,498,500,502,502, + 2,0,74,74,323,323,3,0,463,463,496,496,503,503,2,0,443,443,454,454, + 2,0,461,461,471,471,2,0,295,295,325,325,4,0,140,140,246,246,400, + 400,408,408,2,0,19,19,372,372,2,0,5,5,11,11,2,0,513,513,533,534, + 4,0,456,456,531,531,535,535,538,538,2,0,533,534,536,536,1,0,533, + 534,1,0,542,543,2,0,542,542,545,545,4,0,456,456,531,531,533,535, + 537,538,3,0,243,243,512,513,533,534,2,0,140,140,400,400,2,0,5,5, + 113,113,10,0,97,97,166,166,224,224,231,231,337,337,440,440,474,474, + 476,476,492,492,506,506,15,0,97,97,166,166,224,224,231,231,337,337, + 431,431,440,440,446,446,452,453,458,458,464,464,474,479,492,492, + 495,495,506,507,11,0,5,5,13,13,33,33,78,78,84,85,113,113,202,202, + 209,210,392,392,417,417,531,531,3,0,78,78,84,85,209,210,2,0,91,91, + 381,382,53,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69, + 75,75,98,99,107,107,119,119,134,134,139,139,143,143,145,145,161, + 161,166,166,168,168,188,189,191,196,199,199,201,201,203,203,207, + 207,211,211,216,216,222,222,224,225,231,231,245,245,247,247,266, + 266,278,278,284,284,286,286,296,296,320,320,324,326,337,337,360, + 361,367,367,370,370,383,383,398,398,401,402,412,412,423,424,440, + 440,473,473,492,492,506,506,1,0,441,508,2579,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,693,1,0,0,0,58,741,1,0,0,0,60,743,1,0,0,0,62,747,1,0,0,0, + 64,755,1,0,0,0,66,763,1,0,0,0,68,767,1,0,0,0,70,802,1,0,0,0,72,818, + 1,0,0,0,74,820,1,0,0,0,76,830,1,0,0,0,78,832,1,0,0,0,80,839,1,0, + 0,0,82,841,1,0,0,0,84,849,1,0,0,0,86,857,1,0,0,0,88,859,1,0,0,0, + 90,863,1,0,0,0,92,867,1,0,0,0,94,890,1,0,0,0,96,894,1,0,0,0,98,896, + 1,0,0,0,100,912,1,0,0,0,102,914,1,0,0,0,104,919,1,0,0,0,106,931, + 1,0,0,0,108,950,1,0,0,0,110,970,1,0,0,0,112,981,1,0,0,0,114,983, + 1,0,0,0,116,996,1,0,0,0,118,1003,1,0,0,0,120,1006,1,0,0,0,122,1015, + 1,0,0,0,124,1019,1,0,0,0,126,1023,1,0,0,0,128,1026,1,0,0,0,130,1034, + 1,0,0,0,132,1039,1,0,0,0,134,1056,1,0,0,0,136,1063,1,0,0,0,138,1073, + 1,0,0,0,140,1082,1,0,0,0,142,1092,1,0,0,0,144,1111,1,0,0,0,146,1113, + 1,0,0,0,148,1126,1,0,0,0,150,1129,1,0,0,0,152,1138,1,0,0,0,154,1149, + 1,0,0,0,156,1162,1,0,0,0,158,1197,1,0,0,0,160,1216,1,0,0,0,162,1225, + 1,0,0,0,164,1234,1,0,0,0,166,1253,1,0,0,0,168,1275,1,0,0,0,170,1277, + 1,0,0,0,172,1307,1,0,0,0,174,1323,1,0,0,0,176,1325,1,0,0,0,178,1339, + 1,0,0,0,180,1365,1,0,0,0,182,1398,1,0,0,0,184,1400,1,0,0,0,186,1406, + 1,0,0,0,188,1408,1,0,0,0,190,1413,1,0,0,0,192,1418,1,0,0,0,194,1430, + 1,0,0,0,196,1447,1,0,0,0,198,1449,1,0,0,0,200,1451,1,0,0,0,202,1460, + 1,0,0,0,204,1462,1,0,0,0,206,1465,1,0,0,0,208,1515,1,0,0,0,210,1517, + 1,0,0,0,212,1520,1,0,0,0,214,1522,1,0,0,0,216,1529,1,0,0,0,218,1531, + 1,0,0,0,220,1533,1,0,0,0,222,1536,1,0,0,0,224,1545,1,0,0,0,226,1550, + 1,0,0,0,228,1564,1,0,0,0,230,1592,1,0,0,0,232,1604,1,0,0,0,234,1613, + 1,0,0,0,236,1618,1,0,0,0,238,1650,1,0,0,0,240,1652,1,0,0,0,242,1661, + 1,0,0,0,244,1672,1,0,0,0,246,1684,1,0,0,0,248,1710,1,0,0,0,250,1712, + 1,0,0,0,252,1736,1,0,0,0,254,1738,1,0,0,0,256,1749,1,0,0,0,258,1757, + 1,0,0,0,260,1759,1,0,0,0,262,1762,1,0,0,0,264,1776,1,0,0,0,266,1869, + 1,0,0,0,268,1900,1,0,0,0,270,1906,1,0,0,0,272,1951,1,0,0,0,274,2036, + 1,0,0,0,276,2048,1,0,0,0,278,2059,1,0,0,0,280,2065,1,0,0,0,282,2071, + 1,0,0,0,284,2075,1,0,0,0,286,2081,1,0,0,0,288,2083,1,0,0,0,290,2085, + 1,0,0,0,292,2089,1,0,0,0,294,2091,1,0,0,0,296,2096,1,0,0,0,298,2103, + 1,0,0,0,300,2107,1,0,0,0,302,2112,1,0,0,0,304,2122,1,0,0,0,306,2125, + 1,0,0,0,308,2131,1,0,0,0,310,2141,1,0,0,0,312,2143,1,0,0,0,314,2147, + 1,0,0,0,316,2158,1,0,0,0,318,2160,1,0,0,0,320,2162,1,0,0,0,322,2164, + 1,0,0,0,324,2169,1,0,0,0,326,2171,1,0,0,0,328,2173,1,0,0,0,330,2178, + 1,0,0,0,332,2195,1,0,0,0,334,2209,1,0,0,0,336,2223,1,0,0,0,338,2237, + 1,0,0,0,340,2239,1,0,0,0,342,2247,1,0,0,0,344,2250,1,0,0,0,346,2254, + 1,0,0,0,348,2257,1,0,0,0,350,2268,1,0,0,0,352,2278,1,0,0,0,354,2284, + 1,0,0,0,356,2292,1,0,0,0,358,2308,1,0,0,0,360,2317,1,0,0,0,362,2319, + 1,0,0,0,364,2321,1,0,0,0,366,2337,1,0,0,0,368,2339,1,0,0,0,370,2342, + 1,0,0,0,372,2344,1,0,0,0,374,2346,1,0,0,0,376,2348,1,0,0,0,378,2350, + 1,0,0,0,380,2352,1,0,0,0,382,2354,1,0,0,0,384,2356,1,0,0,0,386,2358, + 1,0,0,0,388,2360,1,0,0,0,390,2362,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,525,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,525,0,0,422,7,1,0,0, + 0,423,438,3,40,20,0,424,438,3,104,52,0,425,438,3,106,53,0,426,438, + 3,108,54,0,427,438,3,102,51,0,428,438,3,114,57,0,429,438,3,128,64, + 0,430,438,3,130,65,0,431,438,3,132,66,0,432,438,3,134,67,0,433,438, + 3,136,68,0,434,438,3,138,69,0,435,438,3,140,70,0,436,438,3,142,71, + 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,158,79, + 0,440,442,3,144,72,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,334,167,0,445,13,1,0,0,0,446,450,5, + 135,0,0,447,451,3,16,8,0,448,449,5,483,0,0,449,451,5,147,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,146,73,0,454,456,3,156,78,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,524,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,414,0,0,468,469,5,445, + 0,0,469,474,3,324,162,0,470,471,5,414,0,0,471,474,3,328,164,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,414,0,0,476,477,5,229,0,0,477,482,3,340,170, + 0,478,479,5,524,0,0,479,481,3,340,170,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,344,0,0,486,528,7,2,0,0,487,488,5,344,0,0,488,489, + 5,76,0,0,489,528,7,3,0,0,490,491,5,344,0,0,491,494,5,377,0,0,492, + 493,7,4,0,0,493,495,3,328,164,0,494,492,1,0,0,0,494,495,1,0,0,0, + 495,497,1,0,0,0,496,498,3,268,134,0,497,496,1,0,0,0,497,498,1,0, + 0,0,498,528,1,0,0,0,499,500,5,344,0,0,500,501,5,58,0,0,501,504,7, + 4,0,0,502,505,3,336,168,0,503,505,3,334,167,0,504,502,1,0,0,0,504, + 503,1,0,0,0,505,507,1,0,0,0,506,508,3,268,134,0,507,506,1,0,0,0, + 507,508,1,0,0,0,508,528,1,0,0,0,509,510,5,344,0,0,510,515,5,72,0, + 0,511,512,5,376,0,0,512,516,3,334,167,0,513,514,5,505,0,0,514,516, + 3,336,168,0,515,511,1,0,0,0,515,513,1,0,0,0,516,528,1,0,0,0,517, + 519,5,344,0,0,518,520,5,415,0,0,519,518,1,0,0,0,519,520,1,0,0,0, + 520,521,1,0,0,0,521,528,5,155,0,0,522,524,5,344,0,0,523,525,5,153, + 0,0,524,523,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526,528,5,229, + 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,472,0,0,530,531,5,228,0,0,531,534,3,340,170,0,532,533, + 5,437,0,0,533,535,3,348,174,0,534,532,1,0,0,0,534,535,1,0,0,0,535, + 27,1,0,0,0,536,537,5,504,0,0,537,538,5,228,0,0,538,539,3,340,170, + 0,539,29,1,0,0,0,540,542,5,343,0,0,541,543,3,350,175,0,542,541,1, + 0,0,0,542,543,1,0,0,0,543,31,1,0,0,0,544,546,5,315,0,0,545,547,3, + 352,176,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,467,0,0,550,551,3,112,56,0,551,35,1,0,0,0,552, + 553,5,441,0,0,553,554,5,467,0,0,554,555,5,437,0,0,555,558,3,38,19, + 0,556,557,5,17,0,0,557,559,3,340,170,0,558,556,1,0,0,0,558,559,1, + 0,0,0,559,603,1,0,0,0,560,561,5,441,0,0,561,562,5,460,0,0,562,563, + 5,437,0,0,563,566,3,38,19,0,564,565,5,17,0,0,565,567,3,340,170,0, + 566,564,1,0,0,0,566,567,1,0,0,0,567,570,1,0,0,0,568,569,5,314,0, + 0,569,571,3,340,170,0,570,568,1,0,0,0,570,571,1,0,0,0,571,603,1, + 0,0,0,572,573,5,441,0,0,573,574,7,6,0,0,574,575,5,437,0,0,575,576, + 3,38,19,0,576,577,5,314,0,0,577,578,3,340,170,0,578,603,1,0,0,0, + 579,580,5,441,0,0,580,581,5,490,0,0,581,603,3,38,19,0,582,583,5, + 441,0,0,583,584,5,457,0,0,584,585,5,460,0,0,585,586,5,437,0,0,586, + 587,3,38,19,0,587,588,5,314,0,0,588,589,3,340,170,0,589,590,5,470, + 0,0,590,591,3,340,170,0,591,603,1,0,0,0,592,593,5,441,0,0,593,594, + 5,447,0,0,594,595,5,460,0,0,595,596,5,437,0,0,596,597,3,38,19,0, + 597,598,5,147,0,0,598,599,3,340,170,0,599,600,5,17,0,0,600,601,3, + 340,170,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,538,0,0,605,604,1,0,0,0,605,606,1,0,0,0,606,607, + 1,0,0,0,607,609,3,340,170,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,501,0,0,618,617,1,0,0,0,618,619,1,0,0,0,619, + 620,1,0,0,0,620,622,5,376,0,0,621,623,3,344,172,0,622,621,1,0,0, + 0,622,623,1,0,0,0,623,624,1,0,0,0,624,625,3,332,166,0,625,626,5, + 520,0,0,626,631,3,46,23,0,627,628,5,524,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,524,0,0,635,637,3,82,41,0, + 636,634,1,0,0,0,636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,524,0, + 0,639,641,3,84,42,0,640,638,1,0,0,0,640,641,1,0,0,0,641,644,1,0, + 0,0,642,643,5,524,0,0,643,645,3,88,44,0,644,642,1,0,0,0,644,645, + 1,0,0,0,645,646,1,0,0,0,646,649,5,521,0,0,647,648,5,59,0,0,648,650, + 5,541,0,0,649,647,1,0,0,0,649,650,1,0,0,0,650,652,1,0,0,0,651,653, + 3,90,45,0,652,651,1,0,0,0,652,653,1,0,0,0,653,654,1,0,0,0,654,656, + 3,342,171,0,655,657,3,98,49,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,376,0,0,660,662,3,344,172, + 0,661,660,1,0,0,0,661,662,1,0,0,0,662,663,1,0,0,0,663,664,3,332, + 166,0,664,667,3,342,171,0,665,666,5,17,0,0,666,668,3,158,79,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,74,37,0,671,673,3,78,39,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,58,29, + 0,676,678,3,72,36,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,541,0,0,681,679,1,0,0,0,681,682,1, + 0,0,0,682,49,1,0,0,0,683,686,3,340,170,0,684,686,3,262,131,0,685, + 683,1,0,0,0,685,684,1,0,0,0,686,51,1,0,0,0,687,690,3,340,170,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,3,340,170,0,692,55,1,0,0,0,693,694,5,520,0,0,694,699,3,52,26, + 0,695,696,5,524,0,0,696,698,3,52,26,0,697,695,1,0,0,0,698,701,1, + 0,0,0,699,697,1,0,0,0,699,700,1,0,0,0,700,702,1,0,0,0,701,699,1, + 0,0,0,702,703,5,521,0,0,703,57,1,0,0,0,704,742,7,7,0,0,705,707,7, + 8,0,0,706,708,3,60,30,0,707,706,1,0,0,0,707,708,1,0,0,0,708,742, + 1,0,0,0,709,711,5,382,0,0,710,712,3,60,30,0,711,710,1,0,0,0,711, + 712,1,0,0,0,712,719,1,0,0,0,713,715,7,9,0,0,714,716,5,208,0,0,715, + 714,1,0,0,0,715,716,1,0,0,0,716,717,1,0,0,0,717,718,5,381,0,0,718, + 720,5,508,0,0,719,713,1,0,0,0,719,720,1,0,0,0,720,742,1,0,0,0,721, + 723,7,10,0,0,722,724,3,62,31,0,723,722,1,0,0,0,723,724,1,0,0,0,724, + 742,1,0,0,0,725,727,7,11,0,0,726,728,3,66,33,0,727,726,1,0,0,0,727, + 728,1,0,0,0,728,742,1,0,0,0,729,731,5,473,0,0,730,732,3,68,34,0, + 731,730,1,0,0,0,731,732,1,0,0,0,732,742,1,0,0,0,733,735,5,324,0, + 0,734,736,3,70,35,0,735,734,1,0,0,0,735,736,1,0,0,0,736,742,1,0, + 0,0,737,739,5,297,0,0,738,740,3,64,32,0,739,738,1,0,0,0,739,740, + 1,0,0,0,740,742,1,0,0,0,741,704,1,0,0,0,741,705,1,0,0,0,741,709, + 1,0,0,0,741,721,1,0,0,0,741,725,1,0,0,0,741,729,1,0,0,0,741,733, + 1,0,0,0,741,737,1,0,0,0,742,59,1,0,0,0,743,744,5,520,0,0,744,745, + 3,372,186,0,745,746,5,521,0,0,746,61,1,0,0,0,747,748,5,520,0,0,748, + 751,3,372,186,0,749,750,5,524,0,0,750,752,3,372,186,0,751,749,1, + 0,0,0,751,752,1,0,0,0,752,753,1,0,0,0,753,754,5,521,0,0,754,63,1, + 0,0,0,755,756,5,520,0,0,756,759,3,370,185,0,757,758,5,524,0,0,758, + 760,3,370,185,0,759,757,1,0,0,0,759,760,1,0,0,0,760,761,1,0,0,0, + 761,762,5,521,0,0,762,65,1,0,0,0,763,764,5,511,0,0,764,765,3,58, + 29,0,765,766,5,510,0,0,766,67,1,0,0,0,767,768,5,511,0,0,768,769, + 3,58,29,0,769,770,5,524,0,0,770,771,3,58,29,0,771,772,1,0,0,0,772, + 773,5,510,0,0,773,69,1,0,0,0,774,775,5,511,0,0,775,776,3,52,26,0, + 776,783,3,58,29,0,777,778,5,524,0,0,778,779,3,52,26,0,779,780,3, + 58,29,0,780,782,1,0,0,0,781,777,1,0,0,0,782,785,1,0,0,0,783,781, + 1,0,0,0,783,784,1,0,0,0,784,786,1,0,0,0,785,783,1,0,0,0,786,787, + 5,510,0,0,787,803,1,0,0,0,788,789,5,520,0,0,789,790,3,52,26,0,790, + 797,3,58,29,0,791,792,5,524,0,0,792,793,3,52,26,0,793,794,3,58,29, + 0,794,796,1,0,0,0,795,791,1,0,0,0,796,799,1,0,0,0,797,795,1,0,0, + 0,797,798,1,0,0,0,798,800,1,0,0,0,799,797,1,0,0,0,800,801,5,521, + 0,0,801,803,1,0,0,0,802,774,1,0,0,0,802,788,1,0,0,0,803,71,1,0,0, + 0,804,805,5,64,0,0,805,807,3,86,43,0,806,804,1,0,0,0,806,807,1,0, + 0,0,807,808,1,0,0,0,808,809,5,291,0,0,809,812,5,470,0,0,810,811, + 5,243,0,0,811,813,5,125,0,0,812,810,1,0,0,0,812,813,1,0,0,0,813, + 819,1,0,0,0,814,816,5,243,0,0,815,814,1,0,0,0,815,816,1,0,0,0,816, + 817,1,0,0,0,817,819,5,246,0,0,818,806,1,0,0,0,818,815,1,0,0,0,819, + 73,1,0,0,0,820,821,3,50,25,0,821,822,3,58,29,0,822,825,5,220,0,0, + 823,824,5,152,0,0,824,826,3,76,38,0,825,823,1,0,0,0,825,826,1,0, + 0,0,826,828,1,0,0,0,827,829,5,427,0,0,828,827,1,0,0,0,828,829,1, + 0,0,0,829,75,1,0,0,0,830,831,5,541,0,0,831,77,1,0,0,0,832,833,3, + 50,25,0,833,834,5,17,0,0,834,837,3,80,40,0,835,836,5,59,0,0,836, + 838,5,541,0,0,837,835,1,0,0,0,837,838,1,0,0,0,838,79,1,0,0,0,839, + 840,3,262,131,0,840,81,1,0,0,0,841,842,5,428,0,0,842,843,5,147,0, + 0,843,844,3,52,26,0,844,845,5,17,0,0,845,846,3,262,131,0,846,83, + 1,0,0,0,847,848,5,64,0,0,848,850,3,86,43,0,849,847,1,0,0,0,849,850, + 1,0,0,0,850,851,1,0,0,0,851,852,5,291,0,0,852,853,5,470,0,0,853, + 854,3,56,28,0,854,855,5,243,0,0,855,856,5,125,0,0,856,85,1,0,0,0, + 857,858,3,316,158,0,858,87,1,0,0,0,859,860,5,279,0,0,860,861,5,147, + 0,0,861,862,5,374,0,0,862,89,1,0,0,0,863,864,5,271,0,0,864,865,5, + 34,0,0,865,866,3,92,46,0,866,91,1,0,0,0,867,868,5,520,0,0,868,873, + 3,94,47,0,869,870,5,524,0,0,870,872,3,94,47,0,871,869,1,0,0,0,872, + 875,1,0,0,0,873,871,1,0,0,0,873,874,1,0,0,0,874,876,1,0,0,0,875, + 873,1,0,0,0,876,877,5,521,0,0,877,93,1,0,0,0,878,891,3,52,26,0,879, + 880,5,520,0,0,880,885,3,96,48,0,881,882,5,524,0,0,882,884,3,96,48, + 0,883,881,1,0,0,0,884,887,1,0,0,0,885,883,1,0,0,0,885,886,1,0,0, + 0,886,888,1,0,0,0,887,885,1,0,0,0,888,889,5,521,0,0,889,891,1,0, + 0,0,890,878,1,0,0,0,890,879,1,0,0,0,891,95,1,0,0,0,892,895,3,292, + 146,0,893,895,3,366,183,0,894,892,1,0,0,0,894,893,1,0,0,0,895,97, + 1,0,0,0,896,897,5,204,0,0,897,906,3,334,167,0,898,902,5,520,0,0, + 899,901,3,100,50,0,900,899,1,0,0,0,901,904,1,0,0,0,902,900,1,0,0, + 0,902,903,1,0,0,0,903,905,1,0,0,0,904,902,1,0,0,0,905,907,5,521, + 0,0,906,898,1,0,0,0,906,907,1,0,0,0,907,99,1,0,0,0,908,909,7,12, + 0,0,909,913,7,13,0,0,910,911,7,14,0,0,911,913,7,15,0,0,912,908,1, + 0,0,0,912,910,1,0,0,0,913,101,1,0,0,0,914,915,5,72,0,0,915,916,5, + 445,0,0,916,917,3,326,163,0,917,918,3,342,171,0,918,103,1,0,0,0, + 919,920,5,72,0,0,920,922,5,451,0,0,921,923,3,344,172,0,922,921,1, + 0,0,0,922,923,1,0,0,0,923,924,1,0,0,0,924,927,3,330,165,0,925,926, + 5,59,0,0,926,928,5,541,0,0,927,925,1,0,0,0,927,928,1,0,0,0,928,929, + 1,0,0,0,929,930,3,342,171,0,930,105,1,0,0,0,931,933,5,72,0,0,932, + 934,5,501,0,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935, + 937,5,505,0,0,936,938,3,344,172,0,937,936,1,0,0,0,937,938,1,0,0, + 0,938,939,1,0,0,0,939,941,3,338,169,0,940,942,3,56,28,0,941,940, + 1,0,0,0,941,942,1,0,0,0,942,945,1,0,0,0,943,944,5,59,0,0,944,946, + 5,541,0,0,945,943,1,0,0,0,945,946,1,0,0,0,946,947,1,0,0,0,947,948, + 5,17,0,0,948,949,3,158,79,0,949,107,1,0,0,0,950,954,5,72,0,0,951, + 955,5,501,0,0,952,953,5,501,0,0,953,955,5,373,0,0,954,951,1,0,0, + 0,954,952,1,0,0,0,954,955,1,0,0,0,955,956,1,0,0,0,956,958,5,154, + 0,0,957,959,3,344,172,0,958,957,1,0,0,0,958,959,1,0,0,0,959,960, + 1,0,0,0,960,961,3,278,139,0,961,962,5,17,0,0,962,965,3,316,158,0, + 963,964,5,197,0,0,964,966,7,16,0,0,965,963,1,0,0,0,965,966,1,0,0, + 0,966,968,1,0,0,0,967,969,3,110,55,0,968,967,1,0,0,0,968,969,1,0, + 0,0,969,109,1,0,0,0,970,971,5,416,0,0,971,972,5,467,0,0,972,978, + 3,112,56,0,973,974,5,524,0,0,974,975,5,467,0,0,975,977,3,112,56, + 0,976,973,1,0,0,0,977,980,1,0,0,0,978,976,1,0,0,0,978,979,1,0,0, + 0,979,111,1,0,0,0,980,978,1,0,0,0,981,982,5,541,0,0,982,113,1,0, + 0,0,983,984,5,8,0,0,984,986,5,376,0,0,985,987,3,346,173,0,986,985, + 1,0,0,0,986,987,1,0,0,0,987,988,1,0,0,0,988,994,3,334,167,0,989, + 995,3,116,58,0,990,995,3,118,59,0,991,995,3,120,60,0,992,995,3,122, + 61,0,993,995,3,124,62,0,994,989,1,0,0,0,994,990,1,0,0,0,994,991, + 1,0,0,0,994,992,1,0,0,0,994,993,1,0,0,0,995,115,1,0,0,0,996,998, + 5,314,0,0,997,999,3,340,170,0,998,997,1,0,0,0,998,999,1,0,0,0,999, + 1000,1,0,0,0,1000,1001,5,391,0,0,1001,1002,3,340,170,0,1002,117, + 1,0,0,0,1003,1004,5,343,0,0,1004,1005,3,348,174,0,1005,119,1,0,0, + 0,1006,1007,5,441,0,0,1007,1008,5,64,0,0,1008,1009,3,86,43,0,1009, + 1010,5,291,0,0,1010,1011,5,470,0,0,1011,1013,3,56,28,0,1012,1014, + 3,126,63,0,1013,1012,1,0,0,0,1013,1014,1,0,0,0,1014,121,1,0,0,0, + 1015,1016,5,116,0,0,1016,1017,5,64,0,0,1017,1018,3,86,43,0,1018, + 123,1,0,0,0,1019,1020,5,441,0,0,1020,1021,5,407,0,0,1021,1022,3, + 56,28,0,1022,125,1,0,0,0,1023,1024,5,243,0,0,1024,1025,5,125,0,0, + 1025,127,1,0,0,0,1026,1027,5,8,0,0,1027,1028,5,505,0,0,1028,1032, + 3,336,168,0,1029,1033,3,116,58,0,1030,1031,5,17,0,0,1031,1033,3, + 158,79,0,1032,1029,1,0,0,0,1032,1030,1,0,0,0,1033,129,1,0,0,0,1034, + 1035,5,8,0,0,1035,1036,5,451,0,0,1036,1037,3,328,164,0,1037,1038, + 3,118,59,0,1038,131,1,0,0,0,1039,1043,5,8,0,0,1040,1044,5,501,0, + 0,1041,1042,5,501,0,0,1042,1044,5,373,0,0,1043,1040,1,0,0,0,1043, + 1041,1,0,0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1047,5,154, + 0,0,1046,1048,3,346,173,0,1047,1046,1,0,0,0,1047,1048,1,0,0,0,1048, + 1049,1,0,0,0,1049,1050,3,280,140,0,1050,1051,5,17,0,0,1051,1054, + 3,316,158,0,1052,1053,5,197,0,0,1053,1055,7,16,0,0,1054,1052,1,0, + 0,0,1054,1055,1,0,0,0,1055,133,1,0,0,0,1056,1057,5,116,0,0,1057, + 1059,5,445,0,0,1058,1060,3,346,173,0,1059,1058,1,0,0,0,1059,1060, + 1,0,0,0,1060,1061,1,0,0,0,1061,1062,3,324,162,0,1062,135,1,0,0,0, + 1063,1065,5,116,0,0,1064,1066,5,501,0,0,1065,1064,1,0,0,0,1065,1066, + 1,0,0,0,1066,1067,1,0,0,0,1067,1069,5,376,0,0,1068,1070,3,346,173, + 0,1069,1068,1,0,0,0,1069,1070,1,0,0,0,1070,1071,1,0,0,0,1071,1072, + 3,334,167,0,1072,137,1,0,0,0,1073,1074,5,116,0,0,1074,1076,5,451, + 0,0,1075,1077,3,346,173,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077, + 1078,1,0,0,0,1078,1080,3,328,164,0,1079,1081,7,17,0,0,1080,1079, + 1,0,0,0,1080,1081,1,0,0,0,1081,139,1,0,0,0,1082,1084,5,116,0,0,1083, + 1085,5,501,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1086,1,0, + 0,0,1086,1088,5,505,0,0,1087,1089,3,346,173,0,1088,1087,1,0,0,0, + 1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1091,3,336,168,0,1091,141, + 1,0,0,0,1092,1096,5,116,0,0,1093,1097,5,501,0,0,1094,1095,5,501, + 0,0,1095,1097,5,373,0,0,1096,1093,1,0,0,0,1096,1094,1,0,0,0,1096, + 1097,1,0,0,0,1097,1098,1,0,0,0,1098,1100,5,154,0,0,1099,1101,3,346, + 173,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1102,1,0,0,0,1102, + 1103,3,280,140,0,1103,143,1,0,0,0,1104,1106,5,132,0,0,1105,1104, + 1,0,0,0,1105,1106,1,0,0,0,1106,1107,1,0,0,0,1107,1112,3,146,73,0, + 1108,1112,3,154,77,0,1109,1110,5,132,0,0,1110,1112,3,156,78,0,1111, + 1105,1,0,0,0,1111,1108,1,0,0,0,1111,1109,1,0,0,0,1112,145,1,0,0, + 0,1113,1114,5,178,0,0,1114,1115,7,18,0,0,1115,1124,3,334,167,0,1116, + 1118,3,148,74,0,1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1120,1, + 0,0,0,1119,1121,3,56,28,0,1120,1119,1,0,0,0,1120,1121,1,0,0,0,1121, + 1122,1,0,0,0,1122,1125,3,158,79,0,1123,1125,3,150,75,0,1124,1117, + 1,0,0,0,1124,1123,1,0,0,0,1125,147,1,0,0,0,1126,1127,5,270,0,0,1127, + 1128,3,348,174,0,1128,149,1,0,0,0,1129,1130,5,418,0,0,1130,1135, + 3,152,76,0,1131,1132,5,524,0,0,1132,1134,3,152,76,0,1133,1131,1, + 0,0,0,1134,1137,1,0,0,0,1135,1133,1,0,0,0,1135,1136,1,0,0,0,1136, + 151,1,0,0,0,1137,1135,1,0,0,0,1138,1139,5,520,0,0,1139,1144,3,366, + 183,0,1140,1141,5,524,0,0,1141,1143,3,366,183,0,1142,1140,1,0,0, + 0,1143,1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,1147, + 1,0,0,0,1146,1144,1,0,0,0,1147,1148,5,521,0,0,1148,153,1,0,0,0,1149, + 1150,5,24,0,0,1150,1151,5,357,0,0,1151,1152,5,343,0,0,1152,1156, + 5,525,0,0,1153,1154,3,146,73,0,1154,1155,5,525,0,0,1155,1157,1,0, + 0,0,1156,1153,1,0,0,0,1157,1158,1,0,0,0,1158,1156,1,0,0,0,1158,1159, + 1,0,0,0,1159,1160,1,0,0,0,1160,1161,5,122,0,0,1161,155,1,0,0,0,1162, + 1163,5,357,0,0,1163,1164,5,343,0,0,1164,1168,5,24,0,0,1165,1166, + 3,146,73,0,1166,1167,5,525,0,0,1167,1169,1,0,0,0,1168,1165,1,0,0, + 0,1169,1170,1,0,0,0,1170,1168,1,0,0,0,1170,1171,1,0,0,0,1171,1172, + 1,0,0,0,1172,1173,5,122,0,0,1173,157,1,0,0,0,1174,1175,6,79,-1,0, + 1175,1198,3,160,80,0,1176,1177,3,162,81,0,1177,1178,3,158,79,5,1178, + 1198,1,0,0,0,1179,1180,5,520,0,0,1180,1181,3,158,79,0,1181,1182, + 5,521,0,0,1182,1198,1,0,0,0,1183,1185,3,170,85,0,1184,1186,3,230, + 115,0,1185,1184,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187, + 1189,3,234,117,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1198,1, + 0,0,0,1190,1192,3,168,84,0,1191,1193,3,230,115,0,1192,1191,1,0,0, + 0,1192,1193,1,0,0,0,1193,1195,1,0,0,0,1194,1196,3,234,117,0,1195, + 1194,1,0,0,0,1195,1196,1,0,0,0,1196,1198,1,0,0,0,1197,1174,1,0,0, + 0,1197,1176,1,0,0,0,1197,1179,1,0,0,0,1197,1183,1,0,0,0,1197,1190, + 1,0,0,0,1198,1213,1,0,0,0,1199,1200,10,3,0,0,1200,1202,7,19,0,0, + 1201,1203,5,5,0,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1204, + 1,0,0,0,1204,1206,3,158,79,0,1205,1207,3,230,115,0,1206,1205,1,0, + 0,0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208,1210,3,234,117,0,1209, + 1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0,1211,1199,1,0,0, + 0,1212,1215,1,0,0,0,1213,1211,1,0,0,0,1213,1214,1,0,0,0,1214,159, + 1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,418,0,0,1217,1222,3,262,131, + 0,1218,1219,5,524,0,0,1219,1221,3,262,131,0,1220,1218,1,0,0,0,1221, + 1224,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223,161,1,0,0, + 0,1224,1222,1,0,0,0,1225,1226,5,437,0,0,1226,1231,3,164,82,0,1227, + 1228,5,524,0,0,1228,1230,3,164,82,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,163,1,0,0,0,1233, + 1231,1,0,0,0,1234,1246,3,166,83,0,1235,1236,5,520,0,0,1236,1241, + 3,52,26,0,1237,1238,5,524,0,0,1238,1240,3,52,26,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,1244, + 1,0,0,0,1243,1241,1,0,0,0,1244,1245,5,521,0,0,1245,1247,1,0,0,0, + 1246,1235,1,0,0,0,1246,1247,1,0,0,0,1247,1248,1,0,0,0,1248,1249, + 5,17,0,0,1249,1250,5,520,0,0,1250,1251,3,158,79,0,1251,1252,5,521, + 0,0,1252,165,1,0,0,0,1253,1254,3,316,158,0,1254,167,1,0,0,0,1255, + 1257,3,170,85,0,1256,1258,3,176,88,0,1257,1256,1,0,0,0,1257,1258, + 1,0,0,0,1258,1260,1,0,0,0,1259,1261,3,204,102,0,1260,1259,1,0,0, + 0,1260,1261,1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,206,103,0,1263, + 1262,1,0,0,0,1263,1264,1,0,0,0,1264,1266,1,0,0,0,1265,1267,3,220, + 110,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1269,1,0,0,0,1268, + 1270,3,222,111,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270,1276,1, + 0,0,0,1271,1272,3,170,85,0,1272,1273,3,176,88,0,1273,1274,3,228, + 114,0,1274,1276,1,0,0,0,1275,1255,1,0,0,0,1275,1271,1,0,0,0,1276, + 169,1,0,0,0,1277,1279,5,339,0,0,1278,1280,3,376,188,0,1279,1278, + 1,0,0,0,1279,1280,1,0,0,0,1280,1290,1,0,0,0,1281,1291,5,531,0,0, + 1282,1287,3,172,86,0,1283,1284,5,524,0,0,1284,1286,3,172,86,0,1285, + 1283,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1287,1288,1,0,0, + 0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1290,1281,1,0,0,0,1290,1282, + 1,0,0,0,1291,171,1,0,0,0,1292,1308,3,174,87,0,1293,1298,3,262,131, + 0,1294,1296,5,17,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297, + 1,0,0,0,1297,1299,3,52,26,0,1298,1295,1,0,0,0,1298,1299,1,0,0,0, + 1299,1308,1,0,0,0,1300,1305,3,52,26,0,1301,1303,5,17,0,0,1302,1301, + 1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1306,3,262,131, + 0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1292, + 1,0,0,0,1307,1293,1,0,0,0,1307,1300,1,0,0,0,1308,173,1,0,0,0,1309, + 1310,3,274,137,0,1310,1311,5,264,0,0,1311,1314,3,226,113,0,1312, + 1313,5,17,0,0,1313,1315,3,316,158,0,1314,1312,1,0,0,0,1314,1315, + 1,0,0,0,1315,1324,1,0,0,0,1316,1317,3,274,137,0,1317,1318,5,264, + 0,0,1318,1321,3,308,154,0,1319,1320,5,17,0,0,1320,1322,3,316,158, + 0,1321,1319,1,0,0,0,1321,1322,1,0,0,0,1322,1324,1,0,0,0,1323,1309, + 1,0,0,0,1323,1316,1,0,0,0,1324,175,1,0,0,0,1325,1326,5,152,0,0,1326, + 1327,3,178,89,0,1327,177,1,0,0,0,1328,1329,6,89,-1,0,1329,1334,3, + 180,90,0,1330,1331,5,524,0,0,1331,1333,3,180,90,0,1332,1330,1,0, + 0,0,1333,1336,1,0,0,0,1334,1332,1,0,0,0,1334,1335,1,0,0,0,1335,1340, + 1,0,0,0,1336,1334,1,0,0,0,1337,1340,3,188,94,0,1338,1340,3,190,95, + 0,1339,1328,1,0,0,0,1339,1337,1,0,0,0,1339,1338,1,0,0,0,1340,1362, + 1,0,0,0,1341,1342,10,3,0,0,1342,1343,5,73,0,0,1343,1344,5,186,0, + 0,1344,1361,3,178,89,4,1345,1347,10,4,0,0,1346,1348,5,235,0,0,1347, + 1346,1,0,0,0,1347,1348,1,0,0,0,1348,1350,1,0,0,0,1349,1351,7,20, + 0,0,1350,1349,1,0,0,0,1350,1351,1,0,0,0,1351,1353,1,0,0,0,1352,1354, + 5,263,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0, + 1355,1356,5,186,0,0,1356,1358,3,178,89,0,1357,1359,3,202,101,0,1358, + 1357,1,0,0,0,1358,1359,1,0,0,0,1359,1361,1,0,0,0,1360,1341,1,0,0, + 0,1360,1345,1,0,0,0,1361,1364,1,0,0,0,1362,1360,1,0,0,0,1362,1363, + 1,0,0,0,1363,179,1,0,0,0,1364,1362,1,0,0,0,1365,1367,3,182,91,0, + 1366,1368,3,306,153,0,1367,1366,1,0,0,0,1367,1368,1,0,0,0,1368,181, + 1,0,0,0,1369,1371,5,376,0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0, + 1371,1372,1,0,0,0,1372,1374,3,334,167,0,1373,1375,3,184,92,0,1374, + 1373,1,0,0,0,1374,1375,1,0,0,0,1375,1399,1,0,0,0,1376,1378,3,336, + 168,0,1377,1379,3,184,92,0,1378,1377,1,0,0,0,1378,1379,1,0,0,0,1379, + 1399,1,0,0,0,1380,1381,5,200,0,0,1381,1382,5,376,0,0,1382,1383,5, + 520,0,0,1383,1384,3,272,136,0,1384,1385,5,521,0,0,1385,1399,1,0, + 0,0,1386,1388,5,200,0,0,1387,1386,1,0,0,0,1387,1388,1,0,0,0,1388, + 1389,1,0,0,0,1389,1390,5,520,0,0,1390,1391,3,158,79,0,1391,1392, + 5,521,0,0,1392,1399,1,0,0,0,1393,1394,5,409,0,0,1394,1395,5,520, + 0,0,1395,1396,3,262,131,0,1396,1397,5,521,0,0,1397,1399,1,0,0,0, + 1398,1370,1,0,0,0,1398,1376,1,0,0,0,1398,1380,1,0,0,0,1398,1387, + 1,0,0,0,1398,1393,1,0,0,0,1399,183,1,0,0,0,1400,1401,5,147,0,0,1401, + 1402,5,374,0,0,1402,1403,5,17,0,0,1403,1404,5,251,0,0,1404,1405, + 3,186,93,0,1405,185,1,0,0,0,1406,1407,3,262,131,0,1407,187,1,0,0, + 0,1408,1409,5,520,0,0,1409,1410,3,150,75,0,1410,1411,5,521,0,0,1411, + 1412,3,306,153,0,1412,189,1,0,0,0,1413,1414,5,376,0,0,1414,1415, + 5,520,0,0,1415,1416,3,192,96,0,1416,1417,5,521,0,0,1417,191,1,0, + 0,0,1418,1419,3,194,97,0,1419,1420,5,520,0,0,1420,1425,3,196,98, + 0,1421,1422,5,524,0,0,1422,1424,3,196,98,0,1423,1421,1,0,0,0,1424, + 1427,1,0,0,0,1425,1423,1,0,0,0,1425,1426,1,0,0,0,1426,1428,1,0,0, + 0,1427,1425,1,0,0,0,1428,1429,5,521,0,0,1429,193,1,0,0,0,1430,1431, + 7,21,0,0,1431,195,1,0,0,0,1432,1433,5,376,0,0,1433,1448,3,218,109, + 0,1434,1448,3,200,100,0,1435,1448,3,294,147,0,1436,1437,5,450,0, + 0,1437,1438,5,540,0,0,1438,1439,5,376,0,0,1439,1448,3,218,109,0, + 1440,1441,5,502,0,0,1441,1442,5,540,0,0,1442,1448,3,200,100,0,1443, + 1444,3,198,99,0,1444,1445,5,540,0,0,1445,1446,3,294,147,0,1446,1448, + 1,0,0,0,1447,1432,1,0,0,0,1447,1434,1,0,0,0,1447,1435,1,0,0,0,1447, + 1436,1,0,0,0,1447,1440,1,0,0,0,1447,1443,1,0,0,0,1448,197,1,0,0, + 0,1449,1450,7,22,0,0,1450,199,1,0,0,0,1451,1452,5,455,0,0,1452,1453, + 5,520,0,0,1453,1454,3,52,26,0,1454,1455,5,521,0,0,1455,201,1,0,0, + 0,1456,1457,5,255,0,0,1457,1461,3,264,132,0,1458,1459,5,416,0,0, + 1459,1461,3,56,28,0,1460,1456,1,0,0,0,1460,1458,1,0,0,0,1461,203, + 1,0,0,0,1462,1463,5,434,0,0,1463,1464,3,264,132,0,1464,205,1,0,0, + 0,1465,1466,5,160,0,0,1466,1467,5,34,0,0,1467,1472,3,208,104,0,1468, + 1469,5,524,0,0,1469,1471,3,208,104,0,1470,1468,1,0,0,0,1471,1474, + 1,0,0,0,1472,1470,1,0,0,0,1472,1473,1,0,0,0,1473,207,1,0,0,0,1474, + 1472,1,0,0,0,1475,1516,3,52,26,0,1476,1516,3,214,107,0,1477,1478, + 5,520,0,0,1478,1516,5,521,0,0,1479,1480,5,520,0,0,1480,1485,3,262, + 131,0,1481,1482,5,524,0,0,1482,1484,3,262,131,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,521,0,0,1489,1516,1,0,0,0, + 1490,1491,3,212,106,0,1491,1492,5,520,0,0,1492,1497,3,262,131,0, + 1493,1494,5,524,0,0,1494,1496,3,262,131,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,521,0,0,1501,1516,1,0,0,0,1502,1503, + 3,210,105,0,1503,1504,5,520,0,0,1504,1509,3,208,104,0,1505,1506, + 5,524,0,0,1506,1508,3,208,104,0,1507,1505,1,0,0,0,1508,1511,1,0, + 0,0,1509,1507,1,0,0,0,1509,1510,1,0,0,0,1510,1512,1,0,0,0,1511,1509, + 1,0,0,0,1512,1513,5,521,0,0,1513,1516,1,0,0,0,1514,1516,3,262,131, + 0,1515,1475,1,0,0,0,1515,1476,1,0,0,0,1515,1477,1,0,0,0,1515,1479, + 1,0,0,0,1515,1490,1,0,0,0,1515,1502,1,0,0,0,1515,1514,1,0,0,0,1516, + 209,1,0,0,0,1517,1518,5,161,0,0,1518,1519,5,497,0,0,1519,211,1,0, + 0,0,1520,1521,7,23,0,0,1521,213,1,0,0,0,1522,1523,3,216,108,0,1523, + 1524,5,520,0,0,1524,1525,3,218,109,0,1525,1526,5,524,0,0,1526,1527, + 3,294,147,0,1527,1528,5,521,0,0,1528,215,1,0,0,0,1529,1530,7,24, + 0,0,1530,217,1,0,0,0,1531,1532,3,340,170,0,1532,219,1,0,0,0,1533, + 1534,5,164,0,0,1534,1535,3,264,132,0,1535,221,1,0,0,0,1536,1537, + 5,436,0,0,1537,1542,3,224,112,0,1538,1539,5,524,0,0,1539,1541,3, + 224,112,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,223,1,0,0,0,1544,1542,1,0,0,0,1545,1546,3, + 308,154,0,1546,1547,5,17,0,0,1547,1548,3,226,113,0,1548,225,1,0, + 0,0,1549,1551,3,308,154,0,1550,1549,1,0,0,0,1550,1551,1,0,0,0,1551, + 1552,1,0,0,0,1552,1554,5,520,0,0,1553,1555,3,236,118,0,1554,1553, + 1,0,0,0,1554,1555,1,0,0,0,1555,1557,1,0,0,0,1556,1558,3,230,115, + 0,1557,1556,1,0,0,0,1557,1558,1,0,0,0,1558,1560,1,0,0,0,1559,1561, + 3,252,126,0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1,0,0, + 0,1562,1563,5,521,0,0,1563,227,1,0,0,0,1564,1565,5,215,0,0,1565, + 1567,5,520,0,0,1566,1568,3,236,118,0,1567,1566,1,0,0,0,1567,1568, + 1,0,0,0,1568,1570,1,0,0,0,1569,1571,3,230,115,0,1570,1569,1,0,0, + 0,1570,1571,1,0,0,0,1571,1573,1,0,0,0,1572,1574,3,240,120,0,1573, + 1572,1,0,0,0,1573,1574,1,0,0,0,1574,1576,1,0,0,0,1575,1577,3,246, + 123,0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1579,1,0,0,0,1578, + 1580,3,248,124,0,1579,1578,1,0,0,0,1579,1580,1,0,0,0,1580,1582,1, + 0,0,0,1581,1583,3,242,121,0,1582,1581,1,0,0,0,1582,1583,1,0,0,0, + 1583,1584,1,0,0,0,1584,1585,3,250,125,0,1585,1590,5,521,0,0,1586, + 1588,5,17,0,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588,1589,1,0, + 0,0,1589,1591,3,316,158,0,1590,1587,1,0,0,0,1590,1591,1,0,0,0,1591, + 229,1,0,0,0,1592,1593,5,260,0,0,1593,1594,5,34,0,0,1594,1599,3,232, + 116,0,1595,1596,5,524,0,0,1596,1598,3,232,116,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,231, + 1,0,0,0,1601,1599,1,0,0,0,1602,1605,3,52,26,0,1603,1605,3,270,135, + 0,1604,1602,1,0,0,0,1604,1603,1,0,0,0,1605,1607,1,0,0,0,1606,1608, + 7,25,0,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608,1611,1,0,0,0,1609, + 1610,5,480,0,0,1610,1612,7,26,0,0,1611,1609,1,0,0,0,1611,1612,1, + 0,0,0,1612,233,1,0,0,0,1613,1616,5,206,0,0,1614,1617,5,5,0,0,1615, + 1617,3,262,131,0,1616,1614,1,0,0,0,1616,1615,1,0,0,0,1617,235,1, + 0,0,0,1618,1619,5,270,0,0,1619,1622,5,34,0,0,1620,1623,3,52,26,0, + 1621,1623,3,274,137,0,1622,1620,1,0,0,0,1622,1621,1,0,0,0,1623,1631, + 1,0,0,0,1624,1627,5,524,0,0,1625,1628,3,52,26,0,1626,1628,3,274, + 137,0,1627,1625,1,0,0,0,1627,1626,1,0,0,0,1628,1630,1,0,0,0,1629, + 1624,1,0,0,0,1630,1633,1,0,0,0,1631,1629,1,0,0,0,1631,1632,1,0,0, + 0,1632,237,1,0,0,0,1633,1631,1,0,0,0,1634,1651,5,531,0,0,1635,1651, + 5,534,0,0,1636,1651,5,539,0,0,1637,1638,5,522,0,0,1638,1639,5,542, + 0,0,1639,1640,5,524,0,0,1640,1641,5,542,0,0,1641,1651,5,523,0,0, + 1642,1643,5,522,0,0,1643,1644,5,542,0,0,1644,1645,5,524,0,0,1645, + 1651,5,523,0,0,1646,1647,5,522,0,0,1647,1648,5,524,0,0,1648,1649, + 5,542,0,0,1649,1651,5,523,0,0,1650,1634,1,0,0,0,1650,1635,1,0,0, + 0,1650,1636,1,0,0,0,1650,1637,1,0,0,0,1650,1642,1,0,0,0,1650,1646, + 1,0,0,0,1651,239,1,0,0,0,1652,1653,5,217,0,0,1653,1658,3,172,86, + 0,1654,1655,5,524,0,0,1655,1657,3,172,86,0,1656,1654,1,0,0,0,1657, + 1660,1,0,0,0,1658,1656,1,0,0,0,1658,1659,1,0,0,0,1659,241,1,0,0, + 0,1660,1658,1,0,0,0,1661,1662,5,273,0,0,1662,1664,5,520,0,0,1663, + 1665,3,244,122,0,1664,1663,1,0,0,0,1665,1666,1,0,0,0,1666,1664,1, + 0,0,0,1666,1667,1,0,0,0,1667,1668,1,0,0,0,1668,1670,5,521,0,0,1669, + 1671,3,260,130,0,1670,1669,1,0,0,0,1670,1671,1,0,0,0,1671,243,1, + 0,0,0,1672,1674,3,318,159,0,1673,1675,3,238,119,0,1674,1673,1,0, + 0,0,1674,1675,1,0,0,0,1675,245,1,0,0,0,1676,1677,5,5,0,0,1677,1678, + 5,325,0,0,1678,1679,5,274,0,0,1679,1685,5,212,0,0,1680,1681,5,256, + 0,0,1681,1682,5,324,0,0,1682,1683,5,274,0,0,1683,1685,5,212,0,0, + 1684,1676,1,0,0,0,1684,1680,1,0,0,0,1685,247,1,0,0,0,1686,1687,5, + 442,0,0,1687,1688,5,212,0,0,1688,1689,5,346,0,0,1689,1690,5,482, + 0,0,1690,1691,5,471,0,0,1691,1711,5,324,0,0,1692,1693,5,442,0,0, + 1693,1694,5,212,0,0,1694,1695,5,346,0,0,1695,1696,5,391,0,0,1696, + 1697,5,239,0,0,1697,1711,5,324,0,0,1698,1699,5,442,0,0,1699,1700, + 5,212,0,0,1700,1701,5,346,0,0,1701,1702,5,391,0,0,1702,1703,5,471, + 0,0,1703,1711,3,318,159,0,1704,1705,5,442,0,0,1705,1706,5,212,0, + 0,1706,1707,5,346,0,0,1707,1708,5,391,0,0,1708,1709,5,461,0,0,1709, + 1711,3,318,159,0,1710,1686,1,0,0,0,1710,1692,1,0,0,0,1710,1698,1, + 0,0,0,1710,1704,1,0,0,0,1711,249,1,0,0,0,1712,1713,5,105,0,0,1713, + 1718,3,172,86,0,1714,1715,5,524,0,0,1715,1717,3,172,86,0,1716,1714, + 1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0,0,1718,1719,1,0,0,0,1719, + 251,1,0,0,0,1720,1718,1,0,0,0,1721,1722,5,295,0,0,1722,1723,5,27, + 0,0,1723,1724,3,294,147,0,1724,1725,3,254,127,0,1725,1737,1,0,0, + 0,1726,1727,7,27,0,0,1727,1728,5,27,0,0,1728,1729,3,256,128,0,1729, + 1730,5,10,0,0,1730,1731,3,258,129,0,1731,1737,1,0,0,0,1732,1733, + 5,325,0,0,1733,1734,5,27,0,0,1734,1735,5,542,0,0,1735,1737,3,254, + 127,0,1736,1721,1,0,0,0,1736,1726,1,0,0,0,1736,1732,1,0,0,0,1737, + 253,1,0,0,0,1738,1739,5,484,0,0,1739,1740,5,10,0,0,1740,1741,5,76, + 0,0,1741,1742,5,324,0,0,1742,255,1,0,0,0,1743,1744,5,405,0,0,1744, + 1750,5,484,0,0,1745,1746,5,542,0,0,1746,1750,5,484,0,0,1747,1748, + 5,76,0,0,1748,1750,5,324,0,0,1749,1743,1,0,0,0,1749,1745,1,0,0,0, + 1749,1747,1,0,0,0,1750,257,1,0,0,0,1751,1752,5,76,0,0,1752,1758, + 5,324,0,0,1753,1754,5,542,0,0,1754,1758,5,146,0,0,1755,1756,5,405, + 0,0,1756,1758,5,146,0,0,1757,1751,1,0,0,0,1757,1753,1,0,0,0,1757, + 1755,1,0,0,0,1758,259,1,0,0,0,1759,1760,5,438,0,0,1760,1761,3,294, + 147,0,1761,261,1,0,0,0,1762,1763,3,264,132,0,1763,263,1,0,0,0,1764, + 1765,6,132,-1,0,1765,1766,5,243,0,0,1766,1777,3,264,132,6,1767,1768, + 5,133,0,0,1768,1769,5,520,0,0,1769,1770,3,158,79,0,1770,1771,5,521, + 0,0,1771,1777,1,0,0,0,1772,1774,3,270,135,0,1773,1775,3,266,133, + 0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775,1777,1,0,0,0,1776,1764, + 1,0,0,0,1776,1767,1,0,0,0,1776,1772,1,0,0,0,1777,1792,1,0,0,0,1778, + 1779,10,3,0,0,1779,1780,5,10,0,0,1780,1791,3,264,132,4,1781,1782, + 10,2,0,0,1782,1783,5,259,0,0,1783,1791,3,264,132,3,1784,1785,10, + 1,0,0,1785,1787,5,185,0,0,1786,1788,5,243,0,0,1787,1786,1,0,0,0, + 1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1791,7,28,0,0,1790,1778, + 1,0,0,0,1790,1781,1,0,0,0,1790,1784,1,0,0,0,1791,1794,1,0,0,0,1792, + 1790,1,0,0,0,1792,1793,1,0,0,0,1793,265,1,0,0,0,1794,1792,1,0,0, + 0,1795,1797,5,243,0,0,1796,1795,1,0,0,0,1796,1797,1,0,0,0,1797,1798, + 1,0,0,0,1798,1800,5,27,0,0,1799,1801,7,29,0,0,1800,1799,1,0,0,0, + 1800,1801,1,0,0,0,1801,1802,1,0,0,0,1802,1803,3,270,135,0,1803,1804, + 5,10,0,0,1804,1805,3,270,135,0,1805,1870,1,0,0,0,1806,1808,5,243, + 0,0,1807,1806,1,0,0,0,1807,1808,1,0,0,0,1808,1809,1,0,0,0,1809,1810, + 5,171,0,0,1810,1811,5,520,0,0,1811,1816,3,262,131,0,1812,1813,5, + 524,0,0,1813,1815,3,262,131,0,1814,1812,1,0,0,0,1815,1818,1,0,0, + 0,1816,1814,1,0,0,0,1816,1817,1,0,0,0,1817,1819,1,0,0,0,1818,1816, + 1,0,0,0,1819,1820,5,521,0,0,1820,1870,1,0,0,0,1821,1823,5,243,0, + 0,1822,1821,1,0,0,0,1822,1823,1,0,0,0,1823,1824,1,0,0,0,1824,1825, + 5,171,0,0,1825,1826,5,520,0,0,1826,1827,3,158,79,0,1827,1828,5,521, + 0,0,1828,1870,1,0,0,0,1829,1830,5,133,0,0,1830,1831,5,520,0,0,1831, + 1832,3,158,79,0,1832,1833,5,521,0,0,1833,1870,1,0,0,0,1834,1836, + 5,243,0,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1837,1,0,0,0, + 1837,1838,5,321,0,0,1838,1870,3,270,135,0,1839,1870,3,268,134,0, + 1840,1842,5,185,0,0,1841,1843,5,243,0,0,1842,1841,1,0,0,0,1842,1843, + 1,0,0,0,1843,1844,1,0,0,0,1844,1870,7,28,0,0,1845,1847,5,185,0,0, + 1846,1848,5,243,0,0,1847,1846,1,0,0,0,1847,1848,1,0,0,0,1848,1849, + 1,0,0,0,1849,1850,5,113,0,0,1850,1851,5,152,0,0,1851,1870,3,270, + 135,0,1852,1854,5,243,0,0,1853,1852,1,0,0,0,1853,1854,1,0,0,0,1854, + 1855,1,0,0,0,1855,1856,5,345,0,0,1856,1857,5,391,0,0,1857,1860,3, + 270,135,0,1858,1859,5,127,0,0,1859,1861,3,370,185,0,1860,1858,1, + 0,0,0,1860,1861,1,0,0,0,1861,1870,1,0,0,0,1862,1863,5,185,0,0,1863, + 1867,5,187,0,0,1864,1868,5,417,0,0,1865,1868,5,13,0,0,1866,1868, + 3,316,158,0,1867,1864,1,0,0,0,1867,1865,1,0,0,0,1867,1866,1,0,0, + 0,1867,1868,1,0,0,0,1868,1870,1,0,0,0,1869,1796,1,0,0,0,1869,1807, + 1,0,0,0,1869,1822,1,0,0,0,1869,1829,1,0,0,0,1869,1835,1,0,0,0,1869, + 1839,1,0,0,0,1869,1840,1,0,0,0,1869,1845,1,0,0,0,1869,1853,1,0,0, + 0,1869,1862,1,0,0,0,1870,267,1,0,0,0,1871,1873,5,243,0,0,1872,1871, + 1,0,0,0,1872,1873,1,0,0,0,1873,1874,1,0,0,0,1874,1875,5,204,0,0, + 1875,1889,7,30,0,0,1876,1877,5,520,0,0,1877,1890,5,521,0,0,1878, + 1879,5,520,0,0,1879,1884,3,262,131,0,1880,1881,5,524,0,0,1881,1883, + 3,262,131,0,1882,1880,1,0,0,0,1883,1886,1,0,0,0,1884,1882,1,0,0, + 0,1884,1885,1,0,0,0,1885,1887,1,0,0,0,1886,1884,1,0,0,0,1887,1888, + 5,521,0,0,1888,1890,1,0,0,0,1889,1876,1,0,0,0,1889,1878,1,0,0,0, + 1890,1901,1,0,0,0,1891,1893,5,243,0,0,1892,1891,1,0,0,0,1892,1893, + 1,0,0,0,1893,1894,1,0,0,0,1894,1895,5,204,0,0,1895,1898,3,270,135, + 0,1896,1897,5,127,0,0,1897,1899,3,370,185,0,1898,1896,1,0,0,0,1898, + 1899,1,0,0,0,1899,1901,1,0,0,0,1900,1872,1,0,0,0,1900,1892,1,0,0, + 0,1901,269,1,0,0,0,1902,1903,6,135,-1,0,1903,1907,3,274,137,0,1904, + 1905,7,31,0,0,1905,1907,3,270,135,7,1906,1902,1,0,0,0,1906,1904, + 1,0,0,0,1907,1929,1,0,0,0,1908,1909,10,6,0,0,1909,1910,7,32,0,0, + 1910,1928,3,270,135,7,1911,1912,10,5,0,0,1912,1913,7,33,0,0,1913, + 1928,3,270,135,6,1914,1915,10,4,0,0,1915,1916,5,515,0,0,1916,1928, + 3,270,135,5,1917,1918,10,3,0,0,1918,1919,5,516,0,0,1919,1928,3,270, + 135,4,1920,1921,10,2,0,0,1921,1922,5,514,0,0,1922,1928,3,270,135, + 3,1923,1924,10,1,0,0,1924,1925,3,358,179,0,1925,1926,3,270,135,2, + 1926,1928,1,0,0,0,1927,1908,1,0,0,0,1927,1911,1,0,0,0,1927,1914, + 1,0,0,0,1927,1917,1,0,0,0,1927,1920,1,0,0,0,1927,1923,1,0,0,0,1928, + 1931,1,0,0,0,1929,1927,1,0,0,0,1929,1930,1,0,0,0,1930,271,1,0,0, + 0,1931,1929,1,0,0,0,1932,1952,3,384,192,0,1933,1952,3,282,141,0, + 1934,1935,3,284,142,0,1935,1947,5,520,0,0,1936,1938,3,376,188,0, + 1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939,1,0,0,0,1939,1944, + 3,286,143,0,1940,1941,5,524,0,0,1941,1943,3,286,143,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, + 1948,1,0,0,0,1946,1944,1,0,0,0,1947,1937,1,0,0,0,1947,1948,1,0,0, + 0,1948,1949,1,0,0,0,1949,1950,5,521,0,0,1950,1952,1,0,0,0,1951,1932, + 1,0,0,0,1951,1933,1,0,0,0,1951,1934,1,0,0,0,1952,273,1,0,0,0,1953, + 1954,6,137,-1,0,1954,1956,5,40,0,0,1955,1957,3,322,161,0,1956,1955, + 1,0,0,0,1957,1958,1,0,0,0,1958,1956,1,0,0,0,1958,1959,1,0,0,0,1959, + 1962,1,0,0,0,1960,1961,5,120,0,0,1961,1963,3,262,131,0,1962,1960, + 1,0,0,0,1962,1963,1,0,0,0,1963,1964,1,0,0,0,1964,1965,5,122,0,0, + 1965,2037,1,0,0,0,1966,1967,5,40,0,0,1967,1969,3,262,131,0,1968, + 1970,3,322,161,0,1969,1968,1,0,0,0,1970,1971,1,0,0,0,1971,1969,1, + 0,0,0,1971,1972,1,0,0,0,1972,1975,1,0,0,0,1973,1974,5,120,0,0,1974, + 1976,3,262,131,0,1975,1973,1,0,0,0,1975,1976,1,0,0,0,1976,1977,1, + 0,0,0,1977,1978,5,122,0,0,1978,2037,1,0,0,0,1979,1980,5,41,0,0,1980, + 1981,5,520,0,0,1981,1982,3,262,131,0,1982,1983,5,17,0,0,1983,1984, + 3,58,29,0,1984,1985,5,521,0,0,1985,2037,1,0,0,0,1986,1987,5,461, + 0,0,1987,1988,5,520,0,0,1988,1991,3,262,131,0,1989,1990,5,465,0, + 0,1990,1992,5,480,0,0,1991,1989,1,0,0,0,1991,1992,1,0,0,0,1992,1993, + 1,0,0,0,1993,1994,5,521,0,0,1994,2037,1,0,0,0,1995,1996,5,471,0, + 0,1996,1997,5,520,0,0,1997,2000,3,262,131,0,1998,1999,5,465,0,0, + 1999,2001,5,480,0,0,2000,1998,1,0,0,0,2000,2001,1,0,0,0,2001,2002, + 1,0,0,0,2002,2003,5,521,0,0,2003,2037,1,0,0,0,2004,2005,5,284,0, + 0,2005,2006,5,520,0,0,2006,2007,3,270,135,0,2007,2008,5,171,0,0, + 2008,2009,3,270,135,0,2009,2010,5,521,0,0,2010,2037,1,0,0,0,2011, + 2037,3,366,183,0,2012,2037,5,531,0,0,2013,2014,3,340,170,0,2014, + 2015,5,517,0,0,2015,2016,5,531,0,0,2016,2037,1,0,0,0,2017,2018,5, + 520,0,0,2018,2019,3,158,79,0,2019,2020,5,521,0,0,2020,2037,1,0,0, + 0,2021,2037,3,272,136,0,2022,2037,3,54,27,0,2023,2037,3,288,144, + 0,2024,2025,5,520,0,0,2025,2026,3,262,131,0,2026,2027,5,521,0,0, + 2027,2037,1,0,0,0,2028,2029,5,139,0,0,2029,2030,5,520,0,0,2030,2031, + 3,316,158,0,2031,2032,5,152,0,0,2032,2033,3,270,135,0,2033,2034, + 5,521,0,0,2034,2037,1,0,0,0,2035,2037,3,276,138,0,2036,1953,1,0, + 0,0,2036,1966,1,0,0,0,2036,1979,1,0,0,0,2036,1986,1,0,0,0,2036,1995, + 1,0,0,0,2036,2004,1,0,0,0,2036,2011,1,0,0,0,2036,2012,1,0,0,0,2036, + 2013,1,0,0,0,2036,2017,1,0,0,0,2036,2021,1,0,0,0,2036,2022,1,0,0, + 0,2036,2023,1,0,0,0,2036,2024,1,0,0,0,2036,2028,1,0,0,0,2036,2035, + 1,0,0,0,2037,2045,1,0,0,0,2038,2039,10,6,0,0,2039,2040,5,518,0,0, + 2040,2041,3,270,135,0,2041,2042,5,519,0,0,2042,2044,1,0,0,0,2043, + 2038,1,0,0,0,2044,2047,1,0,0,0,2045,2043,1,0,0,0,2045,2046,1,0,0, + 0,2046,275,1,0,0,0,2047,2045,1,0,0,0,2048,2049,5,195,0,0,2049,2050, + 5,520,0,0,2050,2051,3,262,131,0,2051,2052,5,524,0,0,2052,2055,3, + 370,185,0,2053,2054,5,281,0,0,2054,2056,3,58,29,0,2055,2053,1,0, + 0,0,2055,2056,1,0,0,0,2056,2057,1,0,0,0,2057,2058,5,521,0,0,2058, + 277,1,0,0,0,2059,2060,3,340,170,0,2060,279,1,0,0,0,2061,2066,3,388, + 194,0,2062,2066,3,384,192,0,2063,2066,3,386,193,0,2064,2066,3,340, + 170,0,2065,2061,1,0,0,0,2065,2062,1,0,0,0,2065,2063,1,0,0,0,2065, + 2064,1,0,0,0,2066,281,1,0,0,0,2067,2068,3,386,193,0,2068,2069,5, + 541,0,0,2069,2072,1,0,0,0,2070,2072,3,294,147,0,2071,2067,1,0,0, + 0,2071,2070,1,0,0,0,2072,283,1,0,0,0,2073,2076,3,388,194,0,2074, + 2076,3,340,170,0,2075,2073,1,0,0,0,2075,2074,1,0,0,0,2076,285,1, + 0,0,0,2077,2082,3,382,191,0,2078,2082,3,380,190,0,2079,2082,3,378, + 189,0,2080,2082,3,262,131,0,2081,2077,1,0,0,0,2081,2078,1,0,0,0, + 2081,2079,1,0,0,0,2081,2080,1,0,0,0,2082,287,1,0,0,0,2083,2084,3, + 340,170,0,2084,289,1,0,0,0,2085,2086,3,316,158,0,2086,291,1,0,0, + 0,2087,2090,3,316,158,0,2088,2090,3,288,144,0,2089,2087,1,0,0,0, + 2089,2088,1,0,0,0,2090,293,1,0,0,0,2091,2094,5,183,0,0,2092,2095, + 3,296,148,0,2093,2095,3,300,150,0,2094,2092,1,0,0,0,2094,2093,1, + 0,0,0,2094,2095,1,0,0,0,2095,295,1,0,0,0,2096,2098,3,298,149,0,2097, + 2099,3,302,151,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,297,1, + 0,0,0,2100,2101,3,304,152,0,2101,2102,3,380,190,0,2102,2104,1,0, + 0,0,2103,2100,1,0,0,0,2104,2105,1,0,0,0,2105,2103,1,0,0,0,2105,2106, + 1,0,0,0,2106,299,1,0,0,0,2107,2110,3,302,151,0,2108,2111,3,298,149, + 0,2109,2111,3,302,151,0,2110,2108,1,0,0,0,2110,2109,1,0,0,0,2110, + 2111,1,0,0,0,2111,301,1,0,0,0,2112,2113,3,304,152,0,2113,2114,3, + 380,190,0,2114,2115,5,391,0,0,2115,2116,3,380,190,0,2116,303,1,0, + 0,0,2117,2119,7,34,0,0,2118,2117,1,0,0,0,2118,2119,1,0,0,0,2119, + 2120,1,0,0,0,2120,2123,7,35,0,0,2121,2123,5,541,0,0,2122,2118,1, + 0,0,0,2122,2121,1,0,0,0,2123,305,1,0,0,0,2124,2126,5,17,0,0,2125, + 2124,1,0,0,0,2125,2126,1,0,0,0,2126,2127,1,0,0,0,2127,2129,3,316, + 158,0,2128,2130,3,312,156,0,2129,2128,1,0,0,0,2129,2130,1,0,0,0, + 2130,307,1,0,0,0,2131,2132,3,316,158,0,2132,2133,3,310,155,0,2133, + 309,1,0,0,0,2134,2135,5,223,0,0,2135,2137,3,316,158,0,2136,2134, + 1,0,0,0,2137,2138,1,0,0,0,2138,2136,1,0,0,0,2138,2139,1,0,0,0,2139, + 2142,1,0,0,0,2140,2142,1,0,0,0,2141,2136,1,0,0,0,2141,2140,1,0,0, + 0,2142,311,1,0,0,0,2143,2144,5,520,0,0,2144,2145,3,314,157,0,2145, + 2146,5,521,0,0,2146,313,1,0,0,0,2147,2152,3,316,158,0,2148,2149, + 5,524,0,0,2149,2151,3,316,158,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,315,1,0,0,0,2154,2152, + 1,0,0,0,2155,2159,3,318,159,0,2156,2159,3,320,160,0,2157,2159,3, + 390,195,0,2158,2155,1,0,0,0,2158,2156,1,0,0,0,2158,2157,1,0,0,0, + 2159,317,1,0,0,0,2160,2161,7,36,0,0,2161,319,1,0,0,0,2162,2163,5, + 541,0,0,2163,321,1,0,0,0,2164,2165,5,432,0,0,2165,2166,3,262,131, + 0,2166,2167,5,379,0,0,2167,2168,3,262,131,0,2168,323,1,0,0,0,2169, + 2170,3,316,158,0,2170,325,1,0,0,0,2171,2172,3,316,158,0,2172,327, + 1,0,0,0,2173,2176,3,316,158,0,2174,2175,5,517,0,0,2175,2177,3,316, + 158,0,2176,2174,1,0,0,0,2176,2177,1,0,0,0,2177,329,1,0,0,0,2178, + 2181,3,316,158,0,2179,2180,5,517,0,0,2180,2182,3,316,158,0,2181, + 2179,1,0,0,0,2181,2182,1,0,0,0,2182,331,1,0,0,0,2183,2186,3,316, + 158,0,2184,2185,5,517,0,0,2185,2187,3,316,158,0,2186,2184,1,0,0, + 0,2186,2187,1,0,0,0,2187,2196,1,0,0,0,2188,2189,3,316,158,0,2189, + 2190,5,517,0,0,2190,2193,3,316,158,0,2191,2192,5,517,0,0,2192,2194, + 3,316,158,0,2193,2191,1,0,0,0,2193,2194,1,0,0,0,2194,2196,1,0,0, + 0,2195,2183,1,0,0,0,2195,2188,1,0,0,0,2196,333,1,0,0,0,2197,2200, + 3,316,158,0,2198,2199,5,517,0,0,2199,2201,3,316,158,0,2200,2198, + 1,0,0,0,2200,2201,1,0,0,0,2201,2210,1,0,0,0,2202,2203,3,316,158, + 0,2203,2204,5,517,0,0,2204,2207,3,316,158,0,2205,2206,5,517,0,0, + 2206,2208,3,316,158,0,2207,2205,1,0,0,0,2207,2208,1,0,0,0,2208,2210, + 1,0,0,0,2209,2197,1,0,0,0,2209,2202,1,0,0,0,2210,335,1,0,0,0,2211, + 2214,3,316,158,0,2212,2213,5,517,0,0,2213,2215,3,316,158,0,2214, + 2212,1,0,0,0,2214,2215,1,0,0,0,2215,2224,1,0,0,0,2216,2217,3,316, + 158,0,2217,2218,5,517,0,0,2218,2221,3,316,158,0,2219,2220,5,517, + 0,0,2220,2222,3,316,158,0,2221,2219,1,0,0,0,2221,2222,1,0,0,0,2222, + 2224,1,0,0,0,2223,2211,1,0,0,0,2223,2216,1,0,0,0,2224,337,1,0,0, + 0,2225,2228,3,316,158,0,2226,2227,5,517,0,0,2227,2229,3,316,158, + 0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229,2238,1,0,0,0,2230,2231, + 3,316,158,0,2231,2232,5,517,0,0,2232,2235,3,316,158,0,2233,2234, + 5,517,0,0,2234,2236,3,316,158,0,2235,2233,1,0,0,0,2235,2236,1,0, + 0,0,2236,2238,1,0,0,0,2237,2225,1,0,0,0,2237,2230,1,0,0,0,2238,339, + 1,0,0,0,2239,2244,3,316,158,0,2240,2241,5,517,0,0,2241,2243,3,316, + 158,0,2242,2240,1,0,0,0,2243,2246,1,0,0,0,2244,2245,1,0,0,0,2244, + 2242,1,0,0,0,2245,341,1,0,0,0,2246,2244,1,0,0,0,2247,2248,5,437, + 0,0,2248,2249,3,348,174,0,2249,343,1,0,0,0,2250,2251,5,168,0,0,2251, + 2252,5,243,0,0,2252,2253,5,133,0,0,2253,345,1,0,0,0,2254,2255,5, + 168,0,0,2255,2256,5,133,0,0,2256,347,1,0,0,0,2257,2258,5,520,0,0, + 2258,2263,3,350,175,0,2259,2260,5,524,0,0,2260,2262,3,350,175,0, + 2261,2259,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264, + 1,0,0,0,2264,2266,1,0,0,0,2265,2263,1,0,0,0,2266,2267,5,521,0,0, + 2267,349,1,0,0,0,2268,2273,3,352,176,0,2269,2271,5,509,0,0,2270, + 2269,1,0,0,0,2270,2271,1,0,0,0,2271,2272,1,0,0,0,2272,2274,3,354, + 177,0,2273,2270,1,0,0,0,2273,2274,1,0,0,0,2274,351,1,0,0,0,2275, + 2279,3,316,158,0,2276,2279,3,288,144,0,2277,2279,5,541,0,0,2278, + 2275,1,0,0,0,2278,2276,1,0,0,0,2278,2277,1,0,0,0,2279,353,1,0,0, + 0,2280,2285,5,542,0,0,2281,2285,5,543,0,0,2282,2285,3,374,187,0, + 2283,2285,5,541,0,0,2284,2280,1,0,0,0,2284,2281,1,0,0,0,2284,2282, + 1,0,0,0,2284,2283,1,0,0,0,2285,355,1,0,0,0,2286,2293,5,10,0,0,2287, + 2288,5,515,0,0,2288,2293,5,515,0,0,2289,2293,5,259,0,0,2290,2291, + 5,514,0,0,2291,2293,5,514,0,0,2292,2286,1,0,0,0,2292,2287,1,0,0, + 0,2292,2289,1,0,0,0,2292,2290,1,0,0,0,2293,357,1,0,0,0,2294,2309, + 5,509,0,0,2295,2309,5,510,0,0,2296,2309,5,511,0,0,2297,2298,5,511, + 0,0,2298,2309,5,509,0,0,2299,2300,5,510,0,0,2300,2309,5,509,0,0, + 2301,2302,5,511,0,0,2302,2309,5,510,0,0,2303,2304,5,512,0,0,2304, + 2309,5,509,0,0,2305,2306,5,511,0,0,2306,2307,5,509,0,0,2307,2309, + 5,510,0,0,2308,2294,1,0,0,0,2308,2295,1,0,0,0,2308,2296,1,0,0,0, + 2308,2297,1,0,0,0,2308,2299,1,0,0,0,2308,2301,1,0,0,0,2308,2303, + 1,0,0,0,2308,2305,1,0,0,0,2309,359,1,0,0,0,2310,2311,5,511,0,0,2311, + 2318,5,511,0,0,2312,2313,5,510,0,0,2313,2318,5,510,0,0,2314,2318, + 5,515,0,0,2315,2318,5,516,0,0,2316,2318,5,514,0,0,2317,2310,1,0, + 0,0,2317,2312,1,0,0,0,2317,2314,1,0,0,0,2317,2315,1,0,0,0,2317,2316, + 1,0,0,0,2318,361,1,0,0,0,2319,2320,7,37,0,0,2320,363,1,0,0,0,2321, + 2322,7,38,0,0,2322,365,1,0,0,0,2323,2338,3,294,147,0,2324,2338,3, + 368,184,0,2325,2338,3,370,185,0,2326,2328,5,533,0,0,2327,2326,1, + 0,0,0,2327,2328,1,0,0,0,2328,2329,1,0,0,0,2329,2338,3,372,186,0, + 2330,2338,3,374,187,0,2331,2338,5,543,0,0,2332,2338,5,544,0,0,2333, + 2335,5,243,0,0,2334,2333,1,0,0,0,2334,2335,1,0,0,0,2335,2336,1,0, + 0,0,2336,2338,5,246,0,0,2337,2323,1,0,0,0,2337,2324,1,0,0,0,2337, + 2325,1,0,0,0,2337,2327,1,0,0,0,2337,2330,1,0,0,0,2337,2331,1,0,0, + 0,2337,2332,1,0,0,0,2337,2334,1,0,0,0,2338,367,1,0,0,0,2339,2340, + 3,378,189,0,2340,2341,3,370,185,0,2341,369,1,0,0,0,2342,2343,5,541, + 0,0,2343,371,1,0,0,0,2344,2345,5,542,0,0,2345,373,1,0,0,0,2346,2347, + 7,39,0,0,2347,375,1,0,0,0,2348,2349,7,40,0,0,2349,377,1,0,0,0,2350, + 2351,7,41,0,0,2351,379,1,0,0,0,2352,2353,7,42,0,0,2353,381,1,0,0, + 0,2354,2355,7,43,0,0,2355,383,1,0,0,0,2356,2357,7,44,0,0,2357,385, + 1,0,0,0,2358,2359,7,45,0,0,2359,387,1,0,0,0,2360,2361,7,46,0,0,2361, + 389,1,0,0,0,2362,2363,7,47,0,0,2363,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,699,707,711,715,719,723, + 727,731,735,739,741,751,759,783,797,802,806,812,815,818,825,828, + 837,849,873,885,890,894,902,906,912,922,927,933,937,941,945,954, + 958,965,968,978,986,994,998,1013,1032,1043,1047,1054,1059,1065,1069, + 1076,1080,1084,1088,1096,1100,1105,1111,1117,1120,1124,1135,1144, + 1158,1170,1185,1188,1192,1195,1197,1202,1206,1209,1213,1222,1231, + 1241,1246,1257,1260,1263,1266,1269,1275,1279,1287,1290,1295,1298, + 1302,1305,1307,1314,1321,1323,1334,1339,1347,1350,1353,1358,1360, + 1362,1367,1370,1374,1378,1387,1398,1425,1447,1460,1472,1485,1497, + 1509,1515,1542,1550,1554,1557,1560,1567,1570,1573,1576,1579,1582, + 1587,1590,1599,1604,1607,1611,1616,1622,1627,1631,1650,1658,1666, + 1670,1674,1684,1710,1718,1736,1749,1757,1774,1776,1787,1790,1792, + 1796,1800,1807,1816,1822,1835,1842,1847,1853,1860,1867,1869,1872, + 1884,1889,1892,1898,1900,1906,1927,1929,1937,1944,1947,1951,1958, + 1962,1971,1975,1991,2000,2036,2045,2055,2065,2071,2075,2081,2089, + 2094,2098,2105,2110,2118,2122,2125,2129,2138,2141,2152,2158,2176, + 2181,2186,2193,2195,2200,2207,2209,2214,2221,2223,2228,2235,2237, + 2244,2263,2270,2273,2278,2284,2292,2308,2317,2327,2334,2337 ]; private static __ATN: antlr.ATN; @@ -17116,11 +17383,11 @@ export class OverWindowItemContext extends antlr.ParserRuleContext { public windowSpec(): WindowSpecContext | null { return this.getRuleContext(0, WindowSpecContext); } - public KW_AS(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_AS, 0)!; + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext | null { return this.getRuleContext(0, ErrorCapturingIdentifierContext); @@ -18392,8 +18659,11 @@ export class OrderItemDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); + } + public valueExpression(): ValueExpressionContext | null { + return this.getRuleContext(0, ValueExpressionContext); } public KW_NULLS(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_NULLS, 0); @@ -18876,8 +19146,17 @@ export class WindowFrameContext extends antlr.ParserRuleContext { public timeIntervalExpression(): TimeIntervalExpressionContext | null { return this.getRuleContext(0, TimeIntervalExpressionContext); } - public frameBound(): FrameBoundContext { - return this.getRuleContext(0, FrameBoundContext)!; + public frameBound(): FrameBoundContext | null { + return this.getRuleContext(0, FrameBoundContext); + } + public frameStart(): FrameStartContext | null { + return this.getRuleContext(0, FrameStartContext); + } + public KW_AND(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AND, 0); + } + public frameEnd(): FrameEndContext | null { + return this.getRuleContext(0, FrameEndContext); } public KW_ROWS(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_ROWS, 0); @@ -18947,6 +19226,90 @@ export class FrameBoundContext extends antlr.ParserRuleContext { } +export class FrameStartContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_UNBOUNDED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_UNBOUNDED, 0); + } + public KW_PRECEDING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_PRECEDING, 0); + } + public DIG_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT, 0); + } + public KW_ROW(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ROW, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_frameStart; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFrameStart) { + listener.enterFrameStart(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFrameStart) { + listener.exitFrameStart(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFrameStart) { + return visitor.visitFrameStart(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FrameEndContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT, 0); + } + public KW_ROW(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ROW, 0); + } + public DIG_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); + } + public KW_FOLLOWING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_FOLLOWING, 0); + } + public KW_UNBOUNDED(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_UNBOUNDED, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_frameEnd; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFrameEnd) { + listener.enterFrameEnd(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFrameEnd) { + listener.exitFrameEnd(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFrameEnd) { + return visitor.visitFrameEnd(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class WithinClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19882,6 +20245,32 @@ export class SubscriptContext extends PrimaryExpressionContext { } } } +export class JsonValueContext extends PrimaryExpressionContext { + public constructor(ctx: PrimaryExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public jsonValueExpression(): JsonValueExpressionContext { + return this.getRuleContext(0, JsonValueExpressionContext)!; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonValue) { + listener.enterJsonValue(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonValue) { + listener.exitJsonValue(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonValue) { + return visitor.visitJsonValue(this); + } else { + return visitor.visitChildren(this); + } + } +} export class SubqueryExpressionContext extends PrimaryExpressionContext { public constructor(ctx: PrimaryExpressionContext) { super(ctx.parent, ctx.invokingState); @@ -20013,6 +20402,49 @@ export class ParenthesizedExpressionContext extends PrimaryExpressionContext { } } } +export class ExtractContext extends PrimaryExpressionContext { + public _field?: IdentifierContext; + public _source?: ValueExpressionContext; + public constructor(ctx: PrimaryExpressionContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public KW_EXTRACT(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_EXTRACT, 0)!; + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + } + public KW_FROM(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_FROM, 0)!; + } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext)!; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterExtract) { + listener.enterExtract(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitExtract) { + listener.exitExtract(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitExtract) { + return visitor.visitExtract(this); + } else { + return visitor.visitChildren(this); + } + } +} export class FunctionCallContext extends PrimaryExpressionContext { public constructor(ctx: PrimaryExpressionContext) { super(ctx.parent, ctx.invokingState); @@ -20173,6 +20605,57 @@ export class FirstContext extends PrimaryExpressionContext { } +export class JsonValueExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_JSON_VALUE(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_JSON_VALUE, 0)!; + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public COMMA(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.COMMA, 0)!; + } + public stringLiteral(): StringLiteralContext { + return this.getRuleContext(0, StringLiteralContext)!; + } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public KW_RETURNING(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_RETURNING, 0); + } + public columnType(): ColumnTypeContext | null { + return this.getRuleContext(0, ColumnTypeContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonValueExpression; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonValueExpression) { + listener.enterJsonValueExpression(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonValueExpression) { + listener.exitJsonValueExpression(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonValueExpression) { + return visitor.visitJsonValueExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class FunctionNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index 08214fd4..778e4f67 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -137,6 +137,8 @@ import { AfterMatchStrategyContext } from "./FlinkSqlParser.js"; import { PatternVariablesDefinitionContext } from "./FlinkSqlParser.js"; import { WindowFrameContext } from "./FlinkSqlParser.js"; import { FrameBoundContext } from "./FlinkSqlParser.js"; +import { FrameStartContext } from "./FlinkSqlParser.js"; +import { FrameEndContext } from "./FlinkSqlParser.js"; import { WithinClauseContext } from "./FlinkSqlParser.js"; import { ExpressionContext } from "./FlinkSqlParser.js"; import { LogicalNotContext } from "./FlinkSqlParser.js"; @@ -157,14 +159,17 @@ import { ColumnReferenceContext } from "./FlinkSqlParser.js"; import { LastContext } from "./FlinkSqlParser.js"; import { StarContext } from "./FlinkSqlParser.js"; import { SubscriptContext } from "./FlinkSqlParser.js"; +import { JsonValueContext } from "./FlinkSqlParser.js"; import { SubqueryExpressionContext } from "./FlinkSqlParser.js"; import { CastContext } from "./FlinkSqlParser.js"; import { ConstantDefaultContext } from "./FlinkSqlParser.js"; import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; +import { ExtractContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; import { FirstContext } from "./FlinkSqlParser.js"; +import { JsonValueExpressionContext } from "./FlinkSqlParser.js"; import { FunctionNameCreateContext } from "./FlinkSqlParser.js"; import { FunctionNameContext } from "./FlinkSqlParser.js"; import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; @@ -1526,6 +1531,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFrameBound?: (ctx: FrameBoundContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + */ + enterFrameStart?: (ctx: FrameStartContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + */ + exitFrameStart?: (ctx: FrameStartContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + */ + enterFrameEnd?: (ctx: FrameEndContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + */ + exitFrameEnd?: (ctx: FrameEndContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.withinClause`. * @param ctx the parse tree @@ -1756,6 +1781,18 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSubscript?: (ctx: SubscriptContext) => void; + /** + * Enter a parse tree produced by the `jsonValue` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + enterJsonValue?: (ctx: JsonValueContext) => void; + /** + * Exit a parse tree produced by the `jsonValue` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + exitJsonValue?: (ctx: JsonValueContext) => void; /** * Enter a parse tree produced by the `subqueryExpression` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1804,6 +1841,18 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void; + /** + * Enter a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + enterExtract?: (ctx: ExtractContext) => void; + /** + * Exit a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + */ + exitExtract?: (ctx: ExtractContext) => void; /** * Enter a parse tree produced by the `functionCall` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1852,6 +1901,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFirst?: (ctx: FirstContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonValueExpression`. + * @param ctx the parse tree + */ + enterJsonValueExpression?: (ctx: JsonValueExpressionContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonValueExpression`. + * @param ctx the parse tree + */ + exitJsonValueExpression?: (ctx: JsonValueExpressionContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.functionNameCreate`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 073b3883..64926141 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -137,6 +137,8 @@ import { AfterMatchStrategyContext } from "./FlinkSqlParser.js"; import { PatternVariablesDefinitionContext } from "./FlinkSqlParser.js"; import { WindowFrameContext } from "./FlinkSqlParser.js"; import { FrameBoundContext } from "./FlinkSqlParser.js"; +import { FrameStartContext } from "./FlinkSqlParser.js"; +import { FrameEndContext } from "./FlinkSqlParser.js"; import { WithinClauseContext } from "./FlinkSqlParser.js"; import { ExpressionContext } from "./FlinkSqlParser.js"; import { LogicalNotContext } from "./FlinkSqlParser.js"; @@ -157,14 +159,17 @@ import { ColumnReferenceContext } from "./FlinkSqlParser.js"; import { LastContext } from "./FlinkSqlParser.js"; import { StarContext } from "./FlinkSqlParser.js"; import { SubscriptContext } from "./FlinkSqlParser.js"; +import { JsonValueContext } from "./FlinkSqlParser.js"; import { SubqueryExpressionContext } from "./FlinkSqlParser.js"; import { CastContext } from "./FlinkSqlParser.js"; import { ConstantDefaultContext } from "./FlinkSqlParser.js"; import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; +import { ExtractContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; import { FirstContext } from "./FlinkSqlParser.js"; +import { JsonValueExpressionContext } from "./FlinkSqlParser.js"; import { FunctionNameCreateContext } from "./FlinkSqlParser.js"; import { FunctionNameContext } from "./FlinkSqlParser.js"; import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; @@ -1011,6 +1016,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.frameStart`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFrameStart?: (ctx: FrameStartContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.frameEnd`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFrameEnd?: (ctx: FrameEndContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.withinClause`. * @param ctx the parse tree @@ -1146,6 +1163,13 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `jsonValue` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonValue?: (ctx: JsonValueContext) => Result; /** * Visit a parse tree produced by the `subqueryExpression` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1174,6 +1198,13 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `extract` + * labeled alternative in `FlinkSqlParser.primaryExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExtract?: (ctx: ExtractContext) => Result; /** * Visit a parse tree produced by the `functionCall` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1202,6 +1233,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonValueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonValueExpression?: (ctx: JsonValueExpressionContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.functionNameCreate`. * @param ctx the parse tree diff --git a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql index f4ebba0d..adc0073f 100644 --- a/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql +++ b/test/parser/flink/syntax/fixtures/insertFromSelectQueries.sql @@ -68,4 +68,20 @@ select from rocketmq_source ; +INSERT INTO Paimon.iov_paimon_prd.ods_track_vcos_log_prs_hi +SELECT +vin AS vin, -- 车架号 +-- Kafka时间戳转毫秒级(含毫秒精度) +UNIX_TIMESTAMP(DATE_FORMAT(kafka_timestamp, 'yyyy-MM-dd HH:mm:ss')) * 1000 ++ EXTRACT(MILLISECOND FROM kafka_timestamp) AS kafka_ts -- Kafka时间戳(毫秒) +FROM ods_track_vcos_log_prs_rt2 +WHERE JSON_VALUE(parse_track_pb(data), '$.eid') = '1570001000'; +INSERT INTO Paimon.iov_paimon_prd.ods_track_vcos_log_prs_hi +SELECT +vin AS vin, -- 车架号 +-- Kafka时间戳转毫秒级(含毫秒精度) +UNIX_TIMESTAMP(DATE_FORMAT(kafka_timestamp, 'yyyy-MM-dd HH:mm:ss')) * 1000 ++ EXTRACT(MILLISECOND FROM kafka_timestamp) AS kafka_ts -- Kafka时间戳(毫秒) +FROM ods_track_vcos_log_prs_rt2 +WHERE JSON_VALUE(parse_track_pb(data), '$.eid' RETURNING STRING) = '1570001000'; diff --git a/test/parser/flink/syntax/fixtures/select.sql b/test/parser/flink/syntax/fixtures/select.sql index 5cd8b9ca..c865c4ed 100644 --- a/test/parser/flink/syntax/fixtures/select.sql +++ b/test/parser/flink/syntax/fixtures/select.sql @@ -50,4 +50,10 @@ SELECT TIMESTAMP '2019-12-23 09:00:00' as time2, INTERVAL '10 00:00:00.004' DAY TO SECOND as time3 from - MyTable; + MyTable; + +SELECT * FROM orders ORDER BY price * quantity ASC LIMIT 10; +SELECT *, COALESCE(quantity, 0) * price AS total_amount FROM orders ORDER BY (COALESCE(quantity, 0) * price) DESC; +SELECT *, COALESCE(quantity, 0) * price AS total_amount FROM orders ORDER BY customer_id ASC, (COALESCE(quantity, 0) * price) DESC, order_time ASC; +SELECT *, ROW_NUMBER() OVER (PARTITION BY customer_id ORDER BY order_time DESC) AS rn FROM orders ORDER BY rn ASC; +SELECT *, SUM(quantity * price) OVER (PARTITION BY customer_id ORDER BY order_time ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS running_total FROM orders ORDER BY running_total DESC; \ No newline at end of file