From da77180a50456e3cdc165cd6a7e06be563a31f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=90=89=E6=98=93?= Date: Fri, 19 Apr 2024 09:32:10 +0800 Subject: [PATCH] feat: #290 support dtstack SparkSQL/HiveSQL lifecycle (#292) --- src/grammar/hive/HiveSqlLexer.g4 | 1 + src/grammar/hive/HiveSqlParser.g4 | 18 +- src/grammar/spark/SparkSqlLexer.g4 | 1 + src/grammar/spark/SparkSqlParser.g4 | 8 + src/lib/hive/HiveSqlLexer.interp | 5 +- src/lib/hive/HiveSqlLexer.tokens | 992 +- src/lib/hive/HiveSqlLexer.ts | 3579 ++-- src/lib/hive/HiveSqlParser.interp | 5 +- src/lib/hive/HiveSqlParser.tokens | 992 +- src/lib/hive/HiveSqlParser.ts | 14920 ++++++++-------- src/lib/hive/HiveSqlParserListener.ts | 11 + src/lib/hive/HiveSqlParserVisitor.ts | 7 + src/lib/spark/SparkSqlLexer.interp | 5 +- src/lib/spark/SparkSqlLexer.tokens | 886 +- src/lib/spark/SparkSqlLexer.ts | 3245 ++-- src/lib/spark/SparkSqlParser.interp | 5 +- src/lib/spark/SparkSqlParser.tokens | 886 +- src/lib/spark/SparkSqlParser.ts | 10968 ++++++------ src/lib/spark/SparkSqlParserListener.ts | 11 + src/lib/spark/SparkSqlParserVisitor.ts | 7 + .../hive/syntax/fixtures/createTable.sql | 15 +- .../syntax/fixtures/createDataSourceTable.sql | 7 + .../spark/syntax/fixtures/createTableLike.sql | 8 + 23 files changed, 18453 insertions(+), 18129 deletions(-) diff --git a/src/grammar/hive/HiveSqlLexer.g4 b/src/grammar/hive/HiveSqlLexer.g4 index 917cc29..8b38707 100644 --- a/src/grammar/hive/HiveSqlLexer.g4 +++ b/src/grammar/hive/HiveSqlLexer.g4 @@ -214,6 +214,7 @@ KW_LEADING : 'LEADING'; KW_LEFT : 'LEFT'; KW_LESS : 'LESS'; KW_LEVEL : 'LEVEL'; +KW_LIFECYCLE : 'LIFECYCLE'; KW_LIKE : 'LIKE'; KW_LIMIT : 'LIMIT'; KW_LINES : 'LINES'; diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index a73415b..04a37de 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -657,6 +657,11 @@ tableComment : KW_COMMENT comment=StringLiteral ; +// dtstack SparkSQL/HiveSQL lifecycle +tableLifecycle + : KW_LIFECYCLE Number + ; + createTablePartitionSpec : KW_PARTITIONED KW_BY ( LPAREN (opt1=createTablePartitionColumnTypeSpec | opt2=createTablePartitionColumnSpec) @@ -1630,13 +1635,17 @@ Rules for parsing createtable createTableStatement : KW_CREATE temp=KW_TEMPORARY? trans=KW_TRANSACTIONAL? ext=KW_EXTERNAL? KW_TABLE ifNotExists? name=tableNameCreate ( likeTableOrFile createTablePartitionSpec? tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? - tableFileFormat? tableLocation? tablePropertiesPrefixed? (KW_AS selectStatementWithCTE)? + | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? tableLifecycle? createTablePartitionSpec? tableBuckets? tableSkewed? + tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? ( + KW_AS selectStatementWithCTE + )? ) | KW_CREATE mgd=KW_MANAGED KW_TABLE ifNotExists? name=tableNameCreate ( likeTableOrFile tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? - tableFileFormat? tableLocation? tablePropertiesPrefixed? (KW_AS selectStatementWithCTE)? + | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? tableLifecycle? createTablePartitionSpec? tableBuckets? tableSkewed? + tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? ( + KW_AS selectStatementWithCTE + )? ) ; @@ -2685,6 +2694,7 @@ nonReserved | KW_KILL | KW_LAST | KW_LEVEL + | KW_LIFECYCLE | KW_LIMIT | KW_LINES | KW_LOAD diff --git a/src/grammar/spark/SparkSqlLexer.g4 b/src/grammar/spark/SparkSqlLexer.g4 index 8cc813f..89023fc 100644 --- a/src/grammar/spark/SparkSqlLexer.g4 +++ b/src/grammar/spark/SparkSqlLexer.g4 @@ -217,6 +217,7 @@ KW_LATERAL : 'LATERAL'; KW_LAZY : 'LAZY'; KW_LEADING : 'LEADING'; KW_LEFT : 'LEFT'; +KW_LIFECYCLE : 'LIFECYCLE'; KW_LIKE : 'LIKE'; KW_ILIKE : 'ILIKE'; KW_LIMIT : 'LIMIT'; diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index c25fcd3..f87e0f2 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -65,6 +65,7 @@ statement | createFileFormat | locationSpec | (KW_TBLPROPERTIES tableProps=propertyList) + | tableLifecycle )* # createTableLike | replaceTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( KW_AS? query @@ -351,9 +352,15 @@ createTableClauses | locationSpec | commentSpec | (KW_TBLPROPERTIES tableProps=propertyList) + | tableLifecycle )* ; +// dtstack SparkSQL/HiveSQL lifecycle +tableLifecycle + : KW_LIFECYCLE INTEGER_VALUE + ; + propertyList : LEFT_PAREN property (COMMA property)* RIGHT_PAREN ; @@ -1849,6 +1856,7 @@ nonReserved | KW_LAST | KW_LAZY | KW_LEADING + | KW_LIFECYCLE | KW_LIKE | KW_LONG | KW_ILIKE diff --git a/src/lib/hive/HiveSqlLexer.interp b/src/lib/hive/HiveSqlLexer.interp index 445cba9..6a8715b 100644 --- a/src/lib/hive/HiveSqlLexer.interp +++ b/src/lib/hive/HiveSqlLexer.interp @@ -182,6 +182,7 @@ null 'LEFT' 'LESS' 'LEVEL' +'LIFECYCLE' 'LIKE' 'LIMIT' 'LINES' @@ -622,6 +623,7 @@ KW_LEADING KW_LEFT KW_LESS KW_LEVEL +KW_LIFECYCLE KW_LIKE KW_LIMIT KW_LINES @@ -1061,6 +1063,7 @@ KW_LEADING KW_LEFT KW_LESS KW_LEVEL +KW_LIFECYCLE KW_LIKE KW_LIMIT KW_LINES @@ -1331,4 +1334,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 437, 4159, 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, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 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, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 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, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 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, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 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, 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, 27, 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, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 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, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 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, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 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, 45, 1, 45, 1, 45, 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, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 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, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 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, 54, 1, 54, 1, 54, 1, 55, 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, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 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, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 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, 69, 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, 71, 1, 71, 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, 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, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 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, 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, 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, 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, 87, 1, 87, 1, 87, 1, 87, 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, 90, 1, 90, 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, 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, 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, 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, 96, 1, 96, 1, 96, 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, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 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, 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, 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, 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, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 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, 115, 1, 115, 1, 115, 1, 115, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 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, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 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, 128, 1, 128, 1, 128, 1, 128, 1, 128, 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, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 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, 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, 135, 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, 137, 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, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 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, 141, 1, 141, 1, 141, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 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, 153, 1, 153, 1, 153, 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, 155, 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, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 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, 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, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 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, 172, 1, 172, 1, 172, 1, 172, 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, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 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, 183, 1, 183, 1, 183, 1, 184, 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, 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, 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, 191, 1, 191, 1, 191, 1, 191, 1, 191, 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, 194, 1, 194, 1, 194, 1, 194, 1, 194, 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, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 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, 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, 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, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 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, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 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, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 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, 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, 215, 1, 215, 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, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 223, 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, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 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, 230, 1, 230, 1, 230, 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, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 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, 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, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 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, 245, 1, 245, 1, 245, 1, 246, 1, 246, 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, 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, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 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, 260, 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, 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, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 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, 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, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 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, 272, 1, 272, 1, 272, 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, 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, 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, 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, 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, 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, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 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, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 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, 292, 1, 292, 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, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 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, 298, 1, 298, 1, 298, 1, 298, 1, 298, 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, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 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, 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, 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, 307, 1, 307, 1, 307, 1, 307, 1, 307, 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, 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, 315, 1, 315, 1, 315, 1, 315, 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, 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, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 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, 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, 326, 1, 326, 1, 326, 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, 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, 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, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 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, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 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, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 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, 342, 1, 342, 1, 342, 1, 342, 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, 343, 1, 343, 1, 343, 1, 343, 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, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 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, 347, 1, 347, 1, 347, 1, 347, 1, 347, 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, 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, 352, 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, 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, 355, 1, 355, 1, 355, 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, 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, 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, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 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, 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, 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, 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, 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, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 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, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 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, 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, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 3, 403, 3908, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 3918, 8, 405, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 3965, 8, 424, 10, 424, 12, 424, 3968, 9, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 3975, 8, 424, 10, 424, 12, 424, 3978, 9, 424, 1, 424, 4, 424, 3981, 8, 424, 11, 424, 12, 424, 3982, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 4, 425, 3990, 8, 425, 11, 425, 12, 425, 3991, 3, 425, 3994, 8, 425, 1, 426, 4, 426, 3997, 8, 426, 11, 426, 12, 426, 3998, 1, 426, 1, 426, 1, 427, 1, 427, 3, 427, 4005, 8, 427, 1, 427, 1, 427, 1, 428, 4, 428, 4010, 8, 428, 11, 428, 12, 428, 4011, 1, 428, 1, 428, 1, 429, 4, 429, 4017, 8, 429, 11, 429, 12, 429, 4018, 1, 429, 1, 429, 5, 429, 4023, 8, 429, 10, 429, 12, 429, 4026, 9, 429, 1, 429, 3, 429, 4029, 8, 429, 1, 429, 3, 429, 4032, 8, 429, 1, 430, 1, 430, 3, 430, 4036, 8, 430, 1, 430, 1, 430, 1, 430, 5, 430, 4041, 8, 430, 10, 430, 12, 430, 4044, 9, 430, 1, 430, 1, 430, 1, 430, 4, 430, 4049, 8, 430, 11, 430, 12, 430, 4050, 1, 430, 1, 430, 3, 430, 4055, 8, 430, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 4061, 8, 431, 10, 431, 12, 431, 4064, 9, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 433, 1, 433, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 3, 435, 4077, 8, 435, 1, 435, 4, 435, 4080, 8, 435, 11, 435, 12, 435, 4081, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 4100, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 4, 437, 4106, 8, 437, 11, 437, 12, 437, 4107, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 5, 439, 4118, 8, 439, 10, 439, 12, 439, 4121, 9, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 4127, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 5, 441, 4135, 8, 441, 10, 441, 12, 441, 4138, 9, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 4150, 8, 442, 10, 442, 12, 442, 4153, 9, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 2, 4136, 4151, 0, 443, 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, 0, 865, 0, 867, 0, 869, 0, 871, 0, 873, 0, 875, 432, 877, 433, 879, 434, 881, 435, 883, 436, 885, 437, 1, 0, 37, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 79, 79, 111, 111, 2, 0, 82, 82, 114, 114, 2, 0, 84, 84, 116, 116, 2, 0, 67, 67, 99, 99, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 69, 69, 101, 101, 2, 0, 68, 68, 100, 100, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 70, 70, 102, 102, 2, 0, 76, 76, 108, 108, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 80, 80, 112, 112, 2, 0, 72, 72, 104, 104, 2, 0, 83, 83, 115, 115, 2, 0, 85, 85, 117, 117, 2, 0, 87, 87, 119, 119, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 88, 88, 120, 120, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 2, 0, 39, 39, 92, 92, 2, 0, 34, 34, 92, 92, 6, 0, 76, 76, 83, 83, 89, 89, 108, 108, 115, 115, 121, 121, 8, 0, 66, 66, 71, 71, 75, 75, 77, 77, 98, 98, 103, 103, 107, 107, 109, 109, 1, 0, 96, 96, 2, 0, 65, 90, 97, 122, 2, 0, 65, 70, 97, 102, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 45, 46, 58, 58, 95, 95, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 4207, 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, 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, 1, 887, 1, 0, 0, 0, 3, 893, 1, 0, 0, 0, 5, 902, 1, 0, 0, 0, 7, 909, 1, 0, 0, 0, 9, 913, 1, 0, 0, 0, 11, 919, 1, 0, 0, 0, 13, 925, 1, 0, 0, 0, 15, 929, 1, 0, 0, 0, 17, 944, 1, 0, 0, 0, 19, 950, 1, 0, 0, 0, 21, 958, 1, 0, 0, 0, 23, 962, 1, 0, 0, 0, 25, 967, 1, 0, 0, 0, 27, 971, 1, 0, 0, 0, 29, 983, 1, 0, 0, 0, 31, 991, 1, 0, 0, 0, 33, 997, 1, 0, 0, 0, 35, 1000, 1, 0, 0, 0, 37, 1004, 1, 0, 0, 0, 39, 1008, 1, 0, 0, 0, 41, 1011, 1, 0, 0, 0, 43, 1025, 1, 0, 0, 0, 45, 1036, 1, 0, 0, 0, 47, 1042, 1, 0, 0, 0, 49, 1049, 1, 0, 0, 0, 51, 1057, 1, 0, 0, 0, 53, 1064, 1, 0, 0, 0, 55, 1071, 1, 0, 0, 0, 57, 1079, 1, 0, 0, 0, 59, 1084, 1, 0, 0, 0, 61, 1091, 1, 0, 0, 0, 63, 1099, 1, 0, 0, 0, 65, 1102, 1, 0, 0, 0, 67, 1108, 1, 0, 0, 0, 69, 1116, 1, 0, 0, 0, 71, 1121, 1, 0, 0, 0, 73, 1126, 1, 0, 0, 0, 75, 1130, 1, 0, 0, 0, 77, 1137, 1, 0, 0, 0, 79, 1142, 1, 0, 0, 0, 81, 1148, 1, 0, 0, 0, 83, 1156, 1, 0, 0, 0, 85, 1166, 1, 0, 0, 0, 87, 1180, 1, 0, 0, 0, 89, 1191, 1, 0, 0, 0, 91, 1198, 1, 0, 0, 0, 93, 1206, 1, 0, 0, 0, 95, 1214, 1, 0, 0, 0, 97, 1221, 1, 0, 0, 0, 99, 1229, 1, 0, 0, 0, 101, 1241, 1, 0, 0, 0, 103, 1254, 1, 0, 0, 0, 105, 1262, 1, 0, 0, 0, 107, 1274, 1, 0, 0, 0, 109, 1279, 1, 0, 0, 0, 111, 1290, 1, 0, 0, 0, 113, 1299, 1, 0, 0, 0, 115, 1304, 1, 0, 0, 0, 117, 1311, 1, 0, 0, 0, 119, 1316, 1, 0, 0, 0, 121, 1322, 1, 0, 0, 0, 123, 1327, 1, 0, 0, 0, 125, 1335, 1, 0, 0, 0, 127, 1348, 1, 0, 0, 0, 129, 1366, 1, 0, 0, 0, 131, 1373, 1, 0, 0, 0, 133, 1378, 1, 0, 0, 0, 135, 1387, 1, 0, 0, 0, 137, 1397, 1, 0, 0, 0, 139, 1407, 1, 0, 0, 0, 141, 1418, 1, 0, 0, 0, 143, 1423, 1, 0, 0, 0, 145, 1432, 1, 0, 0, 0, 147, 1436, 1, 0, 0, 0, 149, 1441, 1, 0, 0, 0, 151, 1451, 1, 0, 0, 0, 153, 1464, 1, 0, 0, 0, 155, 1477, 1, 0, 0, 0, 157, 1481, 1, 0, 0, 0, 159, 1487, 1, 0, 0, 0, 161, 1491, 1, 0, 0, 0, 163, 1499, 1, 0, 0, 0, 165, 1507, 1, 0, 0, 0, 167, 1515, 1, 0, 0, 0, 169, 1524, 1, 0, 0, 0, 171, 1532, 1, 0, 0, 0, 173, 1539, 1, 0, 0, 0, 175, 1549, 1, 0, 0, 0, 177, 1560, 1, 0, 0, 0, 179, 1565, 1, 0, 0, 0, 181, 1574, 1, 0, 0, 0, 183, 1581, 1, 0, 0, 0, 185, 1593, 1, 0, 0, 0, 187, 1603, 1, 0, 0, 0, 189, 1611, 1, 0, 0, 0, 191, 1620, 1, 0, 0, 0, 193, 1629, 1, 0, 0, 0, 195, 1640, 1, 0, 0, 0, 197, 1652, 1, 0, 0, 0, 199, 1655, 1, 0, 0, 0, 201, 1662, 1, 0, 0, 0, 203, 1667, 1, 0, 0, 0, 205, 1675, 1, 0, 0, 0, 207, 1680, 1, 0, 0, 0, 209, 1687, 1, 0, 0, 0, 211, 1692, 1, 0, 0, 0, 213, 1699, 1, 0, 0, 0, 215, 1707, 1, 0, 0, 0, 217, 1711, 1, 0, 0, 0, 219, 1720, 1, 0, 0, 0, 221, 1728, 1, 0, 0, 0, 223, 1734, 1, 0, 0, 0, 225, 1741, 1, 0, 0, 0, 227, 1750, 1, 0, 0, 0, 229, 1760, 1, 0, 0, 0, 231, 1768, 1, 0, 0, 0, 233, 1777, 1, 0, 0, 0, 235, 1784, 1, 0, 0, 0, 237, 1801, 1, 0, 0, 0, 239, 1809, 1, 0, 0, 0, 241, 1816, 1, 0, 0, 0, 243, 1827, 1, 0, 0, 0, 245, 1836, 1, 0, 0, 0, 247, 1845, 1, 0, 0, 0, 249, 1853, 1, 0, 0, 0, 251, 1859, 1, 0, 0, 0, 253, 1865, 1, 0, 0, 0, 255, 1872, 1, 0, 0, 0, 257, 1877, 1, 0, 0, 0, 259, 1888, 1, 0, 0, 0, 261, 1894, 1, 0, 0, 0, 263, 1900, 1, 0, 0, 0, 265, 1906, 1, 0, 0, 0, 267, 1916, 1, 0, 0, 0, 269, 1920, 1, 0, 0, 0, 271, 1926, 1, 0, 0, 0, 273, 1934, 1, 0, 0, 0, 275, 1941, 1, 0, 0, 0, 277, 1951, 1, 0, 0, 0, 279, 1956, 1, 0, 0, 0, 281, 1961, 1, 0, 0, 0, 283, 1970, 1, 0, 0, 0, 285, 1980, 1, 0, 0, 0, 287, 1986, 1, 0, 0, 0, 289, 1992, 1, 0, 0, 0, 291, 2001, 1, 0, 0, 0, 293, 2008, 1, 0, 0, 0, 295, 2021, 1, 0, 0, 0, 297, 2026, 1, 0, 0, 0, 299, 2032, 1, 0, 0, 0, 301, 2046, 1, 0, 0, 0, 303, 2049, 1, 0, 0, 0, 305, 2056, 1, 0, 0, 0, 307, 2063, 1, 0, 0, 0, 309, 2066, 1, 0, 0, 0, 311, 2072, 1, 0, 0, 0, 313, 2080, 1, 0, 0, 0, 315, 2086, 1, 0, 0, 0, 317, 2093, 1, 0, 0, 0, 319, 2105, 1, 0, 0, 0, 321, 2117, 1, 0, 0, 0, 323, 2124, 1, 0, 0, 0, 325, 2128, 1, 0, 0, 0, 327, 2136, 1, 0, 0, 0, 329, 2146, 1, 0, 0, 0, 331, 2155, 1, 0, 0, 0, 333, 2160, 1, 0, 0, 0, 335, 2163, 1, 0, 0, 0, 337, 2173, 1, 0, 0, 0, 339, 2179, 1, 0, 0, 0, 341, 2183, 1, 0, 0, 0, 343, 2188, 1, 0, 0, 0, 345, 2197, 1, 0, 0, 0, 347, 2201, 1, 0, 0, 0, 349, 2206, 1, 0, 0, 0, 351, 2212, 1, 0, 0, 0, 353, 2217, 1, 0, 0, 0, 355, 2222, 1, 0, 0, 0, 357, 2230, 1, 0, 0, 0, 359, 2238, 1, 0, 0, 0, 361, 2243, 1, 0, 0, 0, 363, 2248, 1, 0, 0, 0, 365, 2254, 1, 0, 0, 0, 367, 2259, 1, 0, 0, 0, 369, 2265, 1, 0, 0, 0, 371, 2271, 1, 0, 0, 0, 373, 2276, 1, 0, 0, 0, 375, 2282, 1, 0, 0, 0, 377, 2291, 1, 0, 0, 0, 379, 2296, 1, 0, 0, 0, 381, 2302, 1, 0, 0, 0, 383, 2310, 1, 0, 0, 0, 385, 2315, 1, 0, 0, 0, 387, 2321, 1, 0, 0, 0, 389, 2329, 1, 0, 0, 0, 391, 2345, 1, 0, 0, 0, 393, 2356, 1, 0, 0, 0, 395, 2360, 1, 0, 0, 0, 397, 2368, 1, 0, 0, 0, 399, 2376, 1, 0, 0, 0, 401, 2384, 1, 0, 0, 0, 403, 2397, 1, 0, 0, 0, 405, 2403, 1, 0, 0, 0, 407, 2412, 1, 0, 0, 0, 409, 2418, 1, 0, 0, 0, 411, 2425, 1, 0, 0, 0, 413, 2433, 1, 0, 0, 0, 415, 2439, 1, 0, 0, 0, 417, 2446, 1, 0, 0, 0, 419, 2451, 1, 0, 0, 0, 421, 2456, 1, 0, 0, 0, 423, 2461, 1, 0, 0, 0, 425, 2466, 1, 0, 0, 0, 427, 2473, 1, 0, 0, 0, 429, 2480, 1, 0, 0, 0, 431, 2484, 1, 0, 0, 0, 433, 2495, 1, 0, 0, 0, 435, 2503, 1, 0, 0, 0, 437, 2508, 1, 0, 0, 0, 439, 2514, 1, 0, 0, 0, 441, 2517, 1, 0, 0, 0, 443, 2525, 1, 0, 0, 0, 445, 2532, 1, 0, 0, 0, 447, 2535, 1, 0, 0, 0, 449, 2540, 1, 0, 0, 0, 451, 2549, 1, 0, 0, 0, 453, 2556, 1, 0, 0, 0, 455, 2559, 1, 0, 0, 0, 457, 2565, 1, 0, 0, 0, 459, 2569, 1, 0, 0, 0, 461, 2575, 1, 0, 0, 0, 463, 2588, 1, 0, 0, 0, 465, 2601, 1, 0, 0, 0, 467, 2606, 1, 0, 0, 0, 469, 2616, 1, 0, 0, 0, 471, 2622, 1, 0, 0, 0, 473, 2632, 1, 0, 0, 0, 475, 2644, 1, 0, 0, 0, 477, 2655, 1, 0, 0, 0, 479, 2660, 1, 0, 0, 0, 481, 2668, 1, 0, 0, 0, 483, 2678, 1, 0, 0, 0, 485, 2683, 1, 0, 0, 0, 487, 2689, 1, 0, 0, 0, 489, 2694, 1, 0, 0, 0, 491, 2699, 1, 0, 0, 0, 493, 2709, 1, 0, 0, 0, 495, 2719, 1, 0, 0, 0, 497, 2727, 1, 0, 0, 0, 499, 2736, 1, 0, 0, 0, 501, 2744, 1, 0, 0, 0, 503, 2755, 1, 0, 0, 0, 505, 2765, 1, 0, 0, 0, 507, 2776, 1, 0, 0, 0, 509, 2782, 1, 0, 0, 0, 511, 2790, 1, 0, 0, 0, 513, 2798, 1, 0, 0, 0, 515, 2804, 1, 0, 0, 0, 517, 2822, 1, 0, 0, 0, 519, 2828, 1, 0, 0, 0, 521, 2833, 1, 0, 0, 0, 523, 2842, 1, 0, 0, 0, 525, 2848, 1, 0, 0, 0, 527, 2853, 1, 0, 0, 0, 529, 2861, 1, 0, 0, 0, 531, 2874, 1, 0, 0, 0, 533, 2887, 1, 0, 0, 0, 535, 2894, 1, 0, 0, 0, 537, 2905, 1, 0, 0, 0, 539, 2912, 1, 0, 0, 0, 541, 2919, 1, 0, 0, 0, 543, 2924, 1, 0, 0, 0, 545, 2931, 1, 0, 0, 0, 547, 2938, 1, 0, 0, 0, 549, 2953, 1, 0, 0, 0, 551, 2960, 1, 0, 0, 0, 553, 2965, 1, 0, 0, 0, 555, 2973, 1, 0, 0, 0, 557, 2985, 1, 0, 0, 0, 559, 2994, 1, 0, 0, 0, 561, 3002, 1, 0, 0, 0, 563, 3011, 1, 0, 0, 0, 565, 3018, 1, 0, 0, 0, 567, 3026, 1, 0, 0, 0, 569, 3032, 1, 0, 0, 0, 571, 3038, 1, 0, 0, 0, 573, 3043, 1, 0, 0, 0, 575, 3049, 1, 0, 0, 0, 577, 3058, 1, 0, 0, 0, 579, 3065, 1, 0, 0, 0, 581, 3069, 1, 0, 0, 0, 583, 3074, 1, 0, 0, 0, 585, 3084, 1, 0, 0, 0, 587, 3102, 1, 0, 0, 0, 589, 3109, 1, 0, 0, 0, 591, 3117, 1, 0, 0, 0, 593, 3124, 1, 0, 0, 0, 595, 3132, 1, 0, 0, 0, 597, 3139, 1, 0, 0, 0, 599, 3144, 1, 0, 0, 0, 601, 3150, 1, 0, 0, 0, 603, 3166, 1, 0, 0, 0, 605, 3173, 1, 0, 0, 0, 607, 3177, 1, 0, 0, 0, 609, 3182, 1, 0, 0, 0, 611, 3203, 1, 0, 0, 0, 613, 3210, 1, 0, 0, 0, 615, 3215, 1, 0, 0, 0, 617, 3229, 1, 0, 0, 0, 619, 3236, 1, 0, 0, 0, 621, 3245, 1, 0, 0, 0, 623, 3254, 1, 0, 0, 0, 625, 3259, 1, 0, 0, 0, 627, 3264, 1, 0, 0, 0, 629, 3271, 1, 0, 0, 0, 631, 3276, 1, 0, 0, 0, 633, 3280, 1, 0, 0, 0, 635, 3286, 1, 0, 0, 0, 637, 3297, 1, 0, 0, 0, 639, 3304, 1, 0, 0, 0, 641, 3311, 1, 0, 0, 0, 643, 3323, 1, 0, 0, 0, 645, 3330, 1, 0, 0, 0, 647, 3337, 1, 0, 0, 0, 649, 3345, 1, 0, 0, 0, 651, 3350, 1, 0, 0, 0, 653, 3362, 1, 0, 0, 0, 655, 3377, 1, 0, 0, 0, 657, 3383, 1, 0, 0, 0, 659, 3390, 1, 0, 0, 0, 661, 3402, 1, 0, 0, 0, 663, 3416, 1, 0, 0, 0, 665, 3426, 1, 0, 0, 0, 667, 3437, 1, 0, 0, 0, 669, 3442, 1, 0, 0, 0, 671, 3447, 1, 0, 0, 0, 673, 3457, 1, 0, 0, 0, 675, 3474, 1, 0, 0, 0, 677, 3486, 1, 0, 0, 0, 679, 3494, 1, 0, 0, 0, 681, 3497, 1, 0, 0, 0, 683, 3503, 1, 0, 0, 0, 685, 3512, 1, 0, 0, 0, 687, 3524, 1, 0, 0, 0, 689, 3538, 1, 0, 0, 0, 691, 3551, 1, 0, 0, 0, 693, 3561, 1, 0, 0, 0, 695, 3569, 1, 0, 0, 0, 697, 3574, 1, 0, 0, 0, 699, 3579, 1, 0, 0, 0, 701, 3588, 1, 0, 0, 0, 703, 3593, 1, 0, 0, 0, 705, 3603, 1, 0, 0, 0, 707, 3613, 1, 0, 0, 0, 709, 3618, 1, 0, 0, 0, 711, 3624, 1, 0, 0, 0, 713, 3634, 1, 0, 0, 0, 715, 3641, 1, 0, 0, 0, 717, 3652, 1, 0, 0, 0, 719, 3660, 1, 0, 0, 0, 721, 3667, 1, 0, 0, 0, 723, 3677, 1, 0, 0, 0, 725, 3683, 1, 0, 0, 0, 727, 3692, 1, 0, 0, 0, 729, 3699, 1, 0, 0, 0, 731, 3703, 1, 0, 0, 0, 733, 3707, 1, 0, 0, 0, 735, 3711, 1, 0, 0, 0, 737, 3716, 1, 0, 0, 0, 739, 3722, 1, 0, 0, 0, 741, 3726, 1, 0, 0, 0, 743, 3739, 1, 0, 0, 0, 745, 3748, 1, 0, 0, 0, 747, 3755, 1, 0, 0, 0, 749, 3763, 1, 0, 0, 0, 751, 3771, 1, 0, 0, 0, 753, 3785, 1, 0, 0, 0, 755, 3790, 1, 0, 0, 0, 757, 3796, 1, 0, 0, 0, 759, 3801, 1, 0, 0, 0, 761, 3806, 1, 0, 0, 0, 763, 3812, 1, 0, 0, 0, 765, 3817, 1, 0, 0, 0, 767, 3823, 1, 0, 0, 0, 769, 3829, 1, 0, 0, 0, 771, 3836, 1, 0, 0, 0, 773, 3841, 1, 0, 0, 0, 775, 3848, 1, 0, 0, 0, 777, 3853, 1, 0, 0, 0, 779, 3862, 1, 0, 0, 0, 781, 3868, 1, 0, 0, 0, 783, 3873, 1, 0, 0, 0, 785, 3879, 1, 0, 0, 0, 787, 3884, 1, 0, 0, 0, 789, 3886, 1, 0, 0, 0, 791, 3888, 1, 0, 0, 0, 793, 3890, 1, 0, 0, 0, 795, 3892, 1, 0, 0, 0, 797, 3894, 1, 0, 0, 0, 799, 3896, 1, 0, 0, 0, 801, 3898, 1, 0, 0, 0, 803, 3900, 1, 0, 0, 0, 805, 3902, 1, 0, 0, 0, 807, 3907, 1, 0, 0, 0, 809, 3909, 1, 0, 0, 0, 811, 3917, 1, 0, 0, 0, 813, 3919, 1, 0, 0, 0, 815, 3922, 1, 0, 0, 0, 817, 3924, 1, 0, 0, 0, 819, 3927, 1, 0, 0, 0, 821, 3929, 1, 0, 0, 0, 823, 3931, 1, 0, 0, 0, 825, 3933, 1, 0, 0, 0, 827, 3935, 1, 0, 0, 0, 829, 3937, 1, 0, 0, 0, 831, 3939, 1, 0, 0, 0, 833, 3943, 1, 0, 0, 0, 835, 3945, 1, 0, 0, 0, 837, 3947, 1, 0, 0, 0, 839, 3949, 1, 0, 0, 0, 841, 3951, 1, 0, 0, 0, 843, 3954, 1, 0, 0, 0, 845, 3956, 1, 0, 0, 0, 847, 3958, 1, 0, 0, 0, 849, 3980, 1, 0, 0, 0, 851, 3993, 1, 0, 0, 0, 853, 3996, 1, 0, 0, 0, 855, 4002, 1, 0, 0, 0, 857, 4009, 1, 0, 0, 0, 859, 4016, 1, 0, 0, 0, 861, 4054, 1, 0, 0, 0, 863, 4056, 1, 0, 0, 0, 865, 4067, 1, 0, 0, 0, 867, 4069, 1, 0, 0, 0, 869, 4071, 1, 0, 0, 0, 871, 4073, 1, 0, 0, 0, 873, 4099, 1, 0, 0, 0, 875, 4101, 1, 0, 0, 0, 877, 4109, 1, 0, 0, 0, 879, 4113, 1, 0, 0, 0, 881, 4126, 1, 0, 0, 0, 883, 4128, 1, 0, 0, 0, 885, 4144, 1, 0, 0, 0, 887, 888, 7, 0, 0, 0, 888, 889, 7, 1, 0, 0, 889, 890, 7, 2, 0, 0, 890, 891, 7, 3, 0, 0, 891, 892, 7, 4, 0, 0, 892, 2, 1, 0, 0, 0, 893, 894, 7, 0, 0, 0, 894, 895, 7, 5, 0, 0, 895, 896, 7, 4, 0, 0, 896, 897, 7, 6, 0, 0, 897, 898, 7, 7, 0, 0, 898, 899, 7, 0, 0, 0, 899, 900, 7, 4, 0, 0, 900, 901, 7, 8, 0, 0, 901, 4, 1, 0, 0, 0, 902, 903, 7, 0, 0, 0, 903, 904, 7, 5, 0, 0, 904, 905, 7, 4, 0, 0, 905, 906, 7, 6, 0, 0, 906, 907, 7, 7, 0, 0, 907, 908, 7, 8, 0, 0, 908, 6, 1, 0, 0, 0, 909, 910, 7, 0, 0, 0, 910, 911, 7, 9, 0, 0, 911, 912, 7, 9, 0, 0, 912, 8, 1, 0, 0, 0, 913, 914, 7, 0, 0, 0, 914, 915, 7, 9, 0, 0, 915, 916, 7, 10, 0, 0, 916, 917, 7, 6, 0, 0, 917, 918, 7, 11, 0, 0, 918, 10, 1, 0, 0, 0, 919, 920, 7, 0, 0, 0, 920, 921, 7, 12, 0, 0, 921, 922, 7, 4, 0, 0, 922, 923, 7, 8, 0, 0, 923, 924, 7, 3, 0, 0, 924, 12, 1, 0, 0, 0, 925, 926, 7, 0, 0, 0, 926, 927, 7, 13, 0, 0, 927, 928, 7, 13, 0, 0, 928, 14, 1, 0, 0, 0, 929, 930, 7, 0, 0, 0, 930, 931, 7, 13, 0, 0, 931, 932, 7, 13, 0, 0, 932, 933, 7, 2, 0, 0, 933, 934, 7, 5, 0, 0, 934, 935, 5, 95, 0, 0, 935, 936, 7, 12, 0, 0, 936, 937, 7, 3, 0, 0, 937, 938, 7, 0, 0, 0, 938, 939, 7, 5, 0, 0, 939, 940, 7, 4, 0, 0, 940, 941, 7, 6, 0, 0, 941, 942, 7, 2, 0, 0, 942, 943, 7, 11, 0, 0, 943, 16, 1, 0, 0, 0, 944, 945, 7, 0, 0, 0, 945, 946, 7, 13, 0, 0, 946, 947, 7, 4, 0, 0, 947, 948, 7, 8, 0, 0, 948, 949, 7, 3, 0, 0, 949, 18, 1, 0, 0, 0, 950, 951, 7, 0, 0, 0, 951, 952, 7, 11, 0, 0, 952, 953, 7, 0, 0, 0, 953, 954, 7, 13, 0, 0, 954, 955, 7, 14, 0, 0, 955, 956, 7, 15, 0, 0, 956, 957, 7, 8, 0, 0, 957, 20, 1, 0, 0, 0, 958, 959, 7, 0, 0, 0, 959, 960, 7, 11, 0, 0, 960, 961, 7, 9, 0, 0, 961, 22, 1, 0, 0, 0, 962, 963, 7, 0, 0, 0, 963, 964, 7, 11, 0, 0, 964, 965, 7, 4, 0, 0, 965, 966, 7, 6, 0, 0, 966, 24, 1, 0, 0, 0, 967, 968, 7, 0, 0, 0, 968, 969, 7, 11, 0, 0, 969, 970, 7, 14, 0, 0, 970, 26, 1, 0, 0, 0, 971, 972, 7, 0, 0, 0, 972, 973, 7, 16, 0, 0, 973, 974, 7, 16, 0, 0, 974, 975, 7, 13, 0, 0, 975, 976, 7, 6, 0, 0, 976, 977, 7, 5, 0, 0, 977, 978, 7, 0, 0, 0, 978, 979, 7, 4, 0, 0, 979, 980, 7, 6, 0, 0, 980, 981, 7, 2, 0, 0, 981, 982, 7, 11, 0, 0, 982, 28, 1, 0, 0, 0, 983, 984, 7, 0, 0, 0, 984, 985, 7, 3, 0, 0, 985, 986, 7, 5, 0, 0, 986, 987, 7, 17, 0, 0, 987, 988, 7, 6, 0, 0, 988, 989, 7, 7, 0, 0, 989, 990, 7, 8, 0, 0, 990, 30, 1, 0, 0, 0, 991, 992, 7, 0, 0, 0, 992, 993, 7, 3, 0, 0, 993, 994, 7, 3, 0, 0, 994, 995, 7, 0, 0, 0, 995, 996, 7, 14, 0, 0, 996, 32, 1, 0, 0, 0, 997, 998, 7, 0, 0, 0, 998, 999, 7, 18, 0, 0, 999, 34, 1, 0, 0, 0, 1000, 1001, 7, 0, 0, 0, 1001, 1002, 7, 18, 0, 0, 1002, 1003, 7, 5, 0, 0, 1003, 36, 1, 0, 0, 0, 1004, 1005, 7, 0, 0, 0, 1005, 1006, 7, 18, 0, 0, 1006, 1007, 7, 4, 0, 0, 1007, 38, 1, 0, 0, 0, 1008, 1009, 7, 0, 0, 0, 1009, 1010, 7, 4, 0, 0, 1010, 40, 1, 0, 0, 0, 1011, 1012, 7, 0, 0, 0, 1012, 1013, 7, 19, 0, 0, 1013, 1014, 7, 4, 0, 0, 1014, 1015, 7, 17, 0, 0, 1015, 1016, 7, 2, 0, 0, 1016, 1017, 7, 3, 0, 0, 1017, 1018, 7, 6, 0, 0, 1018, 1019, 7, 15, 0, 0, 1019, 1020, 7, 0, 0, 0, 1020, 1021, 7, 4, 0, 0, 1021, 1022, 7, 6, 0, 0, 1022, 1023, 7, 2, 0, 0, 1023, 1024, 7, 11, 0, 0, 1024, 42, 1, 0, 0, 0, 1025, 1026, 7, 0, 0, 0, 1026, 1027, 7, 19, 0, 0, 1027, 1028, 7, 4, 0, 0, 1028, 1029, 7, 2, 0, 0, 1029, 1030, 7, 5, 0, 0, 1030, 1031, 7, 2, 0, 0, 1031, 1032, 7, 10, 0, 0, 1032, 1033, 7, 10, 0, 0, 1033, 1034, 7, 6, 0, 0, 1034, 1035, 7, 4, 0, 0, 1035, 44, 1, 0, 0, 0, 1036, 1037, 7, 1, 0, 0, 1037, 1038, 7, 0, 0, 0, 1038, 1039, 7, 4, 0, 0, 1039, 1040, 7, 5, 0, 0, 1040, 1041, 7, 17, 0, 0, 1041, 46, 1, 0, 0, 0, 1042, 1043, 7, 1, 0, 0, 1043, 1044, 7, 8, 0, 0, 1044, 1045, 7, 12, 0, 0, 1045, 1046, 7, 2, 0, 0, 1046, 1047, 7, 3, 0, 0, 1047, 1048, 7, 8, 0, 0, 1048, 48, 1, 0, 0, 0, 1049, 1050, 7, 1, 0, 0, 1050, 1051, 7, 8, 0, 0, 1051, 1052, 7, 4, 0, 0, 1052, 1053, 7, 20, 0, 0, 1053, 1054, 7, 8, 0, 0, 1054, 1055, 7, 8, 0, 0, 1055, 1056, 7, 11, 0, 0, 1056, 50, 1, 0, 0, 0, 1057, 1058, 7, 1, 0, 0, 1058, 1059, 7, 6, 0, 0, 1059, 1060, 7, 21, 0, 0, 1060, 1061, 7, 6, 0, 0, 1061, 1062, 7, 11, 0, 0, 1062, 1063, 7, 4, 0, 0, 1063, 52, 1, 0, 0, 0, 1064, 1065, 7, 1, 0, 0, 1065, 1066, 7, 6, 0, 0, 1066, 1067, 7, 11, 0, 0, 1067, 1068, 7, 0, 0, 0, 1068, 1069, 7, 3, 0, 0, 1069, 1070, 7, 14, 0, 0, 1070, 54, 1, 0, 0, 0, 1071, 1072, 7, 1, 0, 0, 1072, 1073, 7, 2, 0, 0, 1073, 1074, 7, 2, 0, 0, 1074, 1075, 7, 13, 0, 0, 1075, 1076, 7, 8, 0, 0, 1076, 1077, 7, 0, 0, 0, 1077, 1078, 7, 11, 0, 0, 1078, 56, 1, 0, 0, 0, 1079, 1080, 7, 1, 0, 0, 1080, 1081, 7, 2, 0, 0, 1081, 1082, 7, 4, 0, 0, 1082, 1083, 7, 17, 0, 0, 1083, 58, 1, 0, 0, 0, 1084, 1085, 7, 1, 0, 0, 1085, 1086, 7, 19, 0, 0, 1086, 1087, 7, 5, 0, 0, 1087, 1088, 7, 22, 0, 0, 1088, 1089, 7, 8, 0, 0, 1089, 1090, 7, 4, 0, 0, 1090, 60, 1, 0, 0, 0, 1091, 1092, 7, 1, 0, 0, 1092, 1093, 7, 19, 0, 0, 1093, 1094, 7, 5, 0, 0, 1094, 1095, 7, 22, 0, 0, 1095, 1096, 7, 8, 0, 0, 1096, 1097, 7, 4, 0, 0, 1097, 1098, 7, 18, 0, 0, 1098, 62, 1, 0, 0, 0, 1099, 1100, 7, 1, 0, 0, 1100, 1101, 7, 14, 0, 0, 1101, 64, 1, 0, 0, 0, 1102, 1103, 7, 5, 0, 0, 1103, 1104, 7, 0, 0, 0, 1104, 1105, 7, 5, 0, 0, 1105, 1106, 7, 17, 0, 0, 1106, 1107, 7, 8, 0, 0, 1107, 66, 1, 0, 0, 0, 1108, 1109, 7, 5, 0, 0, 1109, 1110, 7, 0, 0, 0, 1110, 1111, 7, 18, 0, 0, 1111, 1112, 7, 5, 0, 0, 1112, 1113, 7, 0, 0, 0, 1113, 1114, 7, 9, 0, 0, 1114, 1115, 7, 8, 0, 0, 1115, 68, 1, 0, 0, 0, 1116, 1117, 7, 5, 0, 0, 1117, 1118, 7, 0, 0, 0, 1118, 1119, 7, 18, 0, 0, 1119, 1120, 7, 8, 0, 0, 1120, 70, 1, 0, 0, 0, 1121, 1122, 7, 5, 0, 0, 1122, 1123, 7, 0, 0, 0, 1123, 1124, 7, 18, 0, 0, 1124, 1125, 7, 4, 0, 0, 1125, 72, 1, 0, 0, 0, 1126, 1127, 7, 5, 0, 0, 1127, 1128, 7, 1, 0, 0, 1128, 1129, 7, 2, 0, 0, 1129, 74, 1, 0, 0, 0, 1130, 1131, 7, 5, 0, 0, 1131, 1132, 7, 17, 0, 0, 1132, 1133, 7, 0, 0, 0, 1133, 1134, 7, 11, 0, 0, 1134, 1135, 7, 21, 0, 0, 1135, 1136, 7, 8, 0, 0, 1136, 76, 1, 0, 0, 0, 1137, 1138, 7, 5, 0, 0, 1138, 1139, 7, 17, 0, 0, 1139, 1140, 7, 0, 0, 0, 1140, 1141, 7, 3, 0, 0, 1141, 78, 1, 0, 0, 0, 1142, 1143, 7, 5, 0, 0, 1143, 1144, 7, 17, 0, 0, 1144, 1145, 7, 8, 0, 0, 1145, 1146, 7, 5, 0, 0, 1146, 1147, 7, 22, 0, 0, 1147, 80, 1, 0, 0, 0, 1148, 1149, 7, 5, 0, 0, 1149, 1150, 7, 13, 0, 0, 1150, 1151, 7, 19, 0, 0, 1151, 1152, 7, 18, 0, 0, 1152, 1153, 7, 4, 0, 0, 1153, 1154, 7, 8, 0, 0, 1154, 1155, 7, 3, 0, 0, 1155, 82, 1, 0, 0, 0, 1156, 1157, 7, 5, 0, 0, 1157, 1158, 7, 13, 0, 0, 1158, 1159, 7, 19, 0, 0, 1159, 1160, 7, 18, 0, 0, 1160, 1161, 7, 4, 0, 0, 1161, 1162, 7, 8, 0, 0, 1162, 1163, 7, 3, 0, 0, 1163, 1164, 7, 8, 0, 0, 1164, 1165, 7, 9, 0, 0, 1165, 84, 1, 0, 0, 0, 1166, 1167, 7, 5, 0, 0, 1167, 1168, 7, 13, 0, 0, 1168, 1169, 7, 19, 0, 0, 1169, 1170, 7, 18, 0, 0, 1170, 1171, 7, 4, 0, 0, 1171, 1172, 7, 8, 0, 0, 1172, 1173, 7, 3, 0, 0, 1173, 1174, 7, 18, 0, 0, 1174, 1175, 7, 4, 0, 0, 1175, 1176, 7, 0, 0, 0, 1176, 1177, 7, 4, 0, 0, 1177, 1178, 7, 19, 0, 0, 1178, 1179, 7, 18, 0, 0, 1179, 86, 1, 0, 0, 0, 1180, 1181, 7, 5, 0, 0, 1181, 1182, 7, 2, 0, 0, 1182, 1183, 7, 13, 0, 0, 1183, 1184, 7, 13, 0, 0, 1184, 1185, 7, 8, 0, 0, 1185, 1186, 7, 5, 0, 0, 1186, 1187, 7, 4, 0, 0, 1187, 1188, 7, 6, 0, 0, 1188, 1189, 7, 2, 0, 0, 1189, 1190, 7, 11, 0, 0, 1190, 88, 1, 0, 0, 0, 1191, 1192, 7, 5, 0, 0, 1192, 1193, 7, 2, 0, 0, 1193, 1194, 7, 13, 0, 0, 1194, 1195, 7, 19, 0, 0, 1195, 1196, 7, 10, 0, 0, 1196, 1197, 7, 11, 0, 0, 1197, 90, 1, 0, 0, 0, 1198, 1199, 7, 5, 0, 0, 1199, 1200, 7, 2, 0, 0, 1200, 1201, 7, 13, 0, 0, 1201, 1202, 7, 19, 0, 0, 1202, 1203, 7, 10, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 18, 0, 0, 1205, 92, 1, 0, 0, 0, 1206, 1207, 7, 5, 0, 0, 1207, 1208, 7, 2, 0, 0, 1208, 1209, 7, 10, 0, 0, 1209, 1210, 7, 10, 0, 0, 1210, 1211, 7, 8, 0, 0, 1211, 1212, 7, 11, 0, 0, 1212, 1213, 7, 4, 0, 0, 1213, 94, 1, 0, 0, 0, 1214, 1215, 7, 5, 0, 0, 1215, 1216, 7, 2, 0, 0, 1216, 1217, 7, 10, 0, 0, 1217, 1218, 7, 10, 0, 0, 1218, 1219, 7, 6, 0, 0, 1219, 1220, 7, 4, 0, 0, 1220, 96, 1, 0, 0, 0, 1221, 1222, 7, 5, 0, 0, 1222, 1223, 7, 2, 0, 0, 1223, 1224, 7, 10, 0, 0, 1224, 1225, 7, 16, 0, 0, 1225, 1226, 7, 0, 0, 0, 1226, 1227, 7, 5, 0, 0, 1227, 1228, 7, 4, 0, 0, 1228, 98, 1, 0, 0, 0, 1229, 1230, 7, 5, 0, 0, 1230, 1231, 7, 2, 0, 0, 1231, 1232, 7, 10, 0, 0, 1232, 1233, 7, 16, 0, 0, 1233, 1234, 7, 0, 0, 0, 1234, 1235, 7, 5, 0, 0, 1235, 1236, 7, 4, 0, 0, 1236, 1237, 7, 6, 0, 0, 1237, 1238, 7, 2, 0, 0, 1238, 1239, 7, 11, 0, 0, 1239, 1240, 7, 18, 0, 0, 1240, 100, 1, 0, 0, 0, 1241, 1242, 7, 5, 0, 0, 1242, 1243, 7, 2, 0, 0, 1243, 1244, 7, 10, 0, 0, 1244, 1245, 7, 16, 0, 0, 1245, 1246, 7, 0, 0, 0, 1246, 1247, 7, 5, 0, 0, 1247, 1248, 7, 4, 0, 0, 1248, 1249, 7, 6, 0, 0, 1249, 1250, 7, 2, 0, 0, 1250, 1251, 7, 11, 0, 0, 1251, 1252, 7, 6, 0, 0, 1252, 1253, 7, 9, 0, 0, 1253, 102, 1, 0, 0, 0, 1254, 1255, 7, 5, 0, 0, 1255, 1256, 7, 2, 0, 0, 1256, 1257, 7, 10, 0, 0, 1257, 1258, 7, 16, 0, 0, 1258, 1259, 7, 19, 0, 0, 1259, 1260, 7, 4, 0, 0, 1260, 1261, 7, 8, 0, 0, 1261, 104, 1, 0, 0, 0, 1262, 1263, 7, 5, 0, 0, 1263, 1264, 7, 2, 0, 0, 1264, 1265, 7, 11, 0, 0, 1265, 1266, 7, 5, 0, 0, 1266, 1267, 7, 0, 0, 0, 1267, 1268, 7, 4, 0, 0, 1268, 1269, 7, 8, 0, 0, 1269, 1270, 7, 11, 0, 0, 1270, 1271, 7, 0, 0, 0, 1271, 1272, 7, 4, 0, 0, 1272, 1273, 7, 8, 0, 0, 1273, 106, 1, 0, 0, 0, 1274, 1275, 7, 5, 0, 0, 1275, 1276, 7, 2, 0, 0, 1276, 1277, 7, 11, 0, 0, 1277, 1278, 7, 12, 0, 0, 1278, 108, 1, 0, 0, 0, 1279, 1280, 7, 5, 0, 0, 1280, 1281, 7, 2, 0, 0, 1281, 1282, 7, 11, 0, 0, 1282, 1283, 7, 18, 0, 0, 1283, 1284, 7, 4, 0, 0, 1284, 1285, 7, 3, 0, 0, 1285, 1286, 7, 0, 0, 0, 1286, 1287, 7, 6, 0, 0, 1287, 1288, 7, 11, 0, 0, 1288, 1289, 7, 4, 0, 0, 1289, 110, 1, 0, 0, 0, 1290, 1291, 7, 5, 0, 0, 1291, 1292, 7, 2, 0, 0, 1292, 1293, 7, 11, 0, 0, 1293, 1294, 7, 4, 0, 0, 1294, 1295, 7, 6, 0, 0, 1295, 1296, 7, 11, 0, 0, 1296, 1297, 7, 19, 0, 0, 1297, 1298, 7, 8, 0, 0, 1298, 112, 1, 0, 0, 0, 1299, 1300, 7, 5, 0, 0, 1300, 1301, 7, 2, 0, 0, 1301, 1302, 7, 18, 0, 0, 1302, 1303, 7, 4, 0, 0, 1303, 114, 1, 0, 0, 0, 1304, 1305, 7, 5, 0, 0, 1305, 1306, 7, 3, 0, 0, 1306, 1307, 7, 8, 0, 0, 1307, 1308, 7, 0, 0, 0, 1308, 1309, 7, 4, 0, 0, 1309, 1310, 7, 8, 0, 0, 1310, 116, 1, 0, 0, 0, 1311, 1312, 7, 5, 0, 0, 1312, 1313, 7, 3, 0, 0, 1313, 1314, 7, 2, 0, 0, 1314, 1315, 7, 11, 0, 0, 1315, 118, 1, 0, 0, 0, 1316, 1317, 7, 5, 0, 0, 1317, 1318, 7, 3, 0, 0, 1318, 1319, 7, 2, 0, 0, 1319, 1320, 7, 18, 0, 0, 1320, 1321, 7, 18, 0, 0, 1321, 120, 1, 0, 0, 0, 1322, 1323, 7, 5, 0, 0, 1323, 1324, 7, 19, 0, 0, 1324, 1325, 7, 1, 0, 0, 1325, 1326, 7, 8, 0, 0, 1326, 122, 1, 0, 0, 0, 1327, 1328, 7, 5, 0, 0, 1328, 1329, 7, 19, 0, 0, 1329, 1330, 7, 3, 0, 0, 1330, 1331, 7, 3, 0, 0, 1331, 1332, 7, 8, 0, 0, 1332, 1333, 7, 11, 0, 0, 1333, 1334, 7, 4, 0, 0, 1334, 124, 1, 0, 0, 0, 1335, 1336, 7, 5, 0, 0, 1336, 1337, 7, 19, 0, 0, 1337, 1338, 7, 3, 0, 0, 1338, 1339, 7, 3, 0, 0, 1339, 1340, 7, 8, 0, 0, 1340, 1341, 7, 11, 0, 0, 1341, 1342, 7, 4, 0, 0, 1342, 1343, 5, 95, 0, 0, 1343, 1344, 7, 9, 0, 0, 1344, 1345, 7, 0, 0, 0, 1345, 1346, 7, 4, 0, 0, 1346, 1347, 7, 8, 0, 0, 1347, 126, 1, 0, 0, 0, 1348, 1349, 7, 5, 0, 0, 1349, 1350, 7, 19, 0, 0, 1350, 1351, 7, 3, 0, 0, 1351, 1352, 7, 3, 0, 0, 1352, 1353, 7, 8, 0, 0, 1353, 1354, 7, 11, 0, 0, 1354, 1355, 7, 4, 0, 0, 1355, 1356, 5, 95, 0, 0, 1356, 1357, 7, 4, 0, 0, 1357, 1358, 7, 6, 0, 0, 1358, 1359, 7, 10, 0, 0, 1359, 1360, 7, 8, 0, 0, 1360, 1361, 7, 18, 0, 0, 1361, 1362, 7, 4, 0, 0, 1362, 1363, 7, 0, 0, 0, 1363, 1364, 7, 10, 0, 0, 1364, 1365, 7, 16, 0, 0, 1365, 128, 1, 0, 0, 0, 1366, 1367, 7, 5, 0, 0, 1367, 1368, 7, 19, 0, 0, 1368, 1369, 7, 3, 0, 0, 1369, 1370, 7, 18, 0, 0, 1370, 1371, 7, 2, 0, 0, 1371, 1372, 7, 3, 0, 0, 1372, 130, 1, 0, 0, 0, 1373, 1374, 7, 9, 0, 0, 1374, 1375, 7, 0, 0, 0, 1375, 1376, 7, 4, 0, 0, 1376, 1377, 7, 0, 0, 0, 1377, 132, 1, 0, 0, 0, 1378, 1379, 7, 9, 0, 0, 1379, 1380, 7, 0, 0, 0, 1380, 1381, 7, 4, 0, 0, 1381, 1382, 7, 0, 0, 0, 1382, 1383, 7, 1, 0, 0, 1383, 1384, 7, 0, 0, 0, 1384, 1385, 7, 18, 0, 0, 1385, 1386, 7, 8, 0, 0, 1386, 134, 1, 0, 0, 0, 1387, 1388, 7, 9, 0, 0, 1388, 1389, 7, 0, 0, 0, 1389, 1390, 7, 4, 0, 0, 1390, 1391, 7, 0, 0, 0, 1391, 1392, 7, 1, 0, 0, 1392, 1393, 7, 0, 0, 0, 1393, 1394, 7, 18, 0, 0, 1394, 1395, 7, 8, 0, 0, 1395, 1396, 7, 18, 0, 0, 1396, 136, 1, 0, 0, 0, 1397, 1398, 7, 5, 0, 0, 1398, 1399, 7, 2, 0, 0, 1399, 1400, 7, 11, 0, 0, 1400, 1401, 7, 11, 0, 0, 1401, 1402, 7, 8, 0, 0, 1402, 1403, 7, 5, 0, 0, 1403, 1404, 7, 4, 0, 0, 1404, 1405, 7, 2, 0, 0, 1405, 1406, 7, 3, 0, 0, 1406, 138, 1, 0, 0, 0, 1407, 1408, 7, 5, 0, 0, 1408, 1409, 7, 2, 0, 0, 1409, 1410, 7, 11, 0, 0, 1410, 1411, 7, 11, 0, 0, 1411, 1412, 7, 8, 0, 0, 1412, 1413, 7, 5, 0, 0, 1413, 1414, 7, 4, 0, 0, 1414, 1415, 7, 2, 0, 0, 1415, 1416, 7, 3, 0, 0, 1416, 1417, 7, 18, 0, 0, 1417, 140, 1, 0, 0, 0, 1418, 1419, 7, 9, 0, 0, 1419, 1420, 7, 0, 0, 0, 1420, 1421, 7, 4, 0, 0, 1421, 1422, 7, 8, 0, 0, 1422, 142, 1, 0, 0, 0, 1423, 1424, 7, 9, 0, 0, 1424, 1425, 7, 0, 0, 0, 1425, 1426, 7, 4, 0, 0, 1426, 1427, 7, 8, 0, 0, 1427, 1428, 7, 4, 0, 0, 1428, 1429, 7, 6, 0, 0, 1429, 1430, 7, 10, 0, 0, 1430, 1431, 7, 8, 0, 0, 1431, 144, 1, 0, 0, 0, 1432, 1433, 7, 9, 0, 0, 1433, 1434, 7, 0, 0, 0, 1434, 1435, 7, 14, 0, 0, 1435, 146, 1, 0, 0, 0, 1436, 1437, 7, 9, 0, 0, 1437, 1438, 7, 0, 0, 0, 1438, 1439, 7, 14, 0, 0, 1439, 1440, 7, 18, 0, 0, 1440, 148, 1, 0, 0, 0, 1441, 1442, 7, 9, 0, 0, 1442, 1443, 7, 0, 0, 0, 1443, 1444, 7, 14, 0, 0, 1444, 1445, 7, 2, 0, 0, 1445, 1446, 7, 12, 0, 0, 1446, 1447, 7, 20, 0, 0, 1447, 1448, 7, 8, 0, 0, 1448, 1449, 7, 8, 0, 0, 1449, 1450, 7, 22, 0, 0, 1450, 150, 1, 0, 0, 0, 1451, 1452, 7, 9, 0, 0, 1452, 1453, 7, 1, 0, 0, 1453, 1454, 7, 16, 0, 0, 1454, 1455, 7, 3, 0, 0, 1455, 1456, 7, 2, 0, 0, 1456, 1457, 7, 16, 0, 0, 1457, 1458, 7, 8, 0, 0, 1458, 1459, 7, 3, 0, 0, 1459, 1460, 7, 4, 0, 0, 1460, 1461, 7, 6, 0, 0, 1461, 1462, 7, 8, 0, 0, 1462, 1463, 7, 18, 0, 0, 1463, 152, 1, 0, 0, 0, 1464, 1465, 7, 9, 0, 0, 1465, 1466, 7, 5, 0, 0, 1466, 1467, 7, 16, 0, 0, 1467, 1468, 7, 3, 0, 0, 1468, 1469, 7, 2, 0, 0, 1469, 1470, 7, 16, 0, 0, 1470, 1471, 7, 8, 0, 0, 1471, 1472, 7, 3, 0, 0, 1472, 1473, 7, 4, 0, 0, 1473, 1474, 7, 6, 0, 0, 1474, 1475, 7, 8, 0, 0, 1475, 1476, 7, 18, 0, 0, 1476, 154, 1, 0, 0, 0, 1477, 1478, 7, 9, 0, 0, 1478, 1479, 7, 9, 0, 0, 1479, 1480, 7, 13, 0, 0, 1480, 156, 1, 0, 0, 0, 1481, 1482, 7, 9, 0, 0, 1482, 1483, 7, 8, 0, 0, 1483, 1484, 7, 1, 0, 0, 1484, 1485, 7, 19, 0, 0, 1485, 1486, 7, 21, 0, 0, 1486, 158, 1, 0, 0, 0, 1487, 1488, 7, 9, 0, 0, 1488, 1489, 7, 8, 0, 0, 1489, 1490, 7, 5, 0, 0, 1490, 160, 1, 0, 0, 0, 1491, 1492, 7, 9, 0, 0, 1492, 1493, 7, 8, 0, 0, 1493, 1494, 7, 5, 0, 0, 1494, 1495, 7, 6, 0, 0, 1495, 1496, 7, 10, 0, 0, 1496, 1497, 7, 0, 0, 0, 1497, 1498, 7, 13, 0, 0, 1498, 162, 1, 0, 0, 0, 1499, 1500, 7, 11, 0, 0, 1500, 1501, 7, 19, 0, 0, 1501, 1502, 7, 10, 0, 0, 1502, 1503, 7, 8, 0, 0, 1503, 1504, 7, 3, 0, 0, 1504, 1505, 7, 6, 0, 0, 1505, 1506, 7, 5, 0, 0, 1506, 164, 1, 0, 0, 0, 1507, 1508, 7, 9, 0, 0, 1508, 1509, 7, 8, 0, 0, 1509, 1510, 7, 12, 0, 0, 1510, 1511, 7, 0, 0, 0, 1511, 1512, 7, 19, 0, 0, 1512, 1513, 7, 13, 0, 0, 1513, 1514, 7, 4, 0, 0, 1514, 166, 1, 0, 0, 0, 1515, 1516, 7, 9, 0, 0, 1516, 1517, 7, 8, 0, 0, 1517, 1518, 7, 12, 0, 0, 1518, 1519, 7, 8, 0, 0, 1519, 1520, 7, 3, 0, 0, 1520, 1521, 7, 3, 0, 0, 1521, 1522, 7, 8, 0, 0, 1522, 1523, 7, 9, 0, 0, 1523, 168, 1, 0, 0, 0, 1524, 1525, 7, 9, 0, 0, 1525, 1526, 7, 8, 0, 0, 1526, 1527, 7, 12, 0, 0, 1527, 1528, 7, 6, 0, 0, 1528, 1529, 7, 11, 0, 0, 1529, 1530, 7, 8, 0, 0, 1530, 1531, 7, 9, 0, 0, 1531, 170, 1, 0, 0, 0, 1532, 1533, 7, 9, 0, 0, 1533, 1534, 7, 8, 0, 0, 1534, 1535, 7, 13, 0, 0, 1535, 1536, 7, 8, 0, 0, 1536, 1537, 7, 4, 0, 0, 1537, 1538, 7, 8, 0, 0, 1538, 172, 1, 0, 0, 0, 1539, 1540, 7, 9, 0, 0, 1540, 1541, 7, 8, 0, 0, 1541, 1542, 7, 13, 0, 0, 1542, 1543, 7, 6, 0, 0, 1543, 1544, 7, 10, 0, 0, 1544, 1545, 7, 6, 0, 0, 1545, 1546, 7, 4, 0, 0, 1546, 1547, 7, 8, 0, 0, 1547, 1548, 7, 9, 0, 0, 1548, 174, 1, 0, 0, 0, 1549, 1550, 7, 9, 0, 0, 1550, 1551, 7, 8, 0, 0, 1551, 1552, 7, 16, 0, 0, 1552, 1553, 7, 8, 0, 0, 1553, 1554, 7, 11, 0, 0, 1554, 1555, 7, 9, 0, 0, 1555, 1556, 7, 8, 0, 0, 1556, 1557, 7, 11, 0, 0, 1557, 1558, 7, 5, 0, 0, 1558, 1559, 7, 14, 0, 0, 1559, 176, 1, 0, 0, 0, 1560, 1561, 7, 9, 0, 0, 1561, 1562, 7, 8, 0, 0, 1562, 1563, 7, 18, 0, 0, 1563, 1564, 7, 5, 0, 0, 1564, 178, 1, 0, 0, 0, 1565, 1566, 7, 9, 0, 0, 1566, 1567, 7, 8, 0, 0, 1567, 1568, 7, 18, 0, 0, 1568, 1569, 7, 5, 0, 0, 1569, 1570, 7, 3, 0, 0, 1570, 1571, 7, 6, 0, 0, 1571, 1572, 7, 1, 0, 0, 1572, 1573, 7, 8, 0, 0, 1573, 180, 1, 0, 0, 0, 1574, 1575, 7, 9, 0, 0, 1575, 1576, 7, 8, 0, 0, 1576, 1577, 7, 4, 0, 0, 1577, 1578, 7, 0, 0, 0, 1578, 1579, 7, 6, 0, 0, 1579, 1580, 7, 13, 0, 0, 1580, 182, 1, 0, 0, 0, 1581, 1582, 7, 9, 0, 0, 1582, 1583, 7, 6, 0, 0, 1583, 1584, 7, 3, 0, 0, 1584, 1585, 7, 8, 0, 0, 1585, 1586, 7, 5, 0, 0, 1586, 1587, 7, 4, 0, 0, 1587, 1588, 7, 2, 0, 0, 1588, 1589, 7, 3, 0, 0, 1589, 1590, 7, 6, 0, 0, 1590, 1591, 7, 8, 0, 0, 1591, 1592, 7, 18, 0, 0, 1592, 184, 1, 0, 0, 0, 1593, 1594, 7, 9, 0, 0, 1594, 1595, 7, 6, 0, 0, 1595, 1596, 7, 3, 0, 0, 1596, 1597, 7, 8, 0, 0, 1597, 1598, 7, 5, 0, 0, 1598, 1599, 7, 4, 0, 0, 1599, 1600, 7, 2, 0, 0, 1600, 1601, 7, 3, 0, 0, 1601, 1602, 7, 14, 0, 0, 1602, 186, 1, 0, 0, 0, 1603, 1604, 7, 9, 0, 0, 1604, 1605, 7, 6, 0, 0, 1605, 1606, 7, 18, 0, 0, 1606, 1607, 7, 0, 0, 0, 1607, 1608, 7, 1, 0, 0, 1608, 1609, 7, 13, 0, 0, 1609, 1610, 7, 8, 0, 0, 1610, 188, 1, 0, 0, 0, 1611, 1612, 7, 9, 0, 0, 1612, 1613, 7, 6, 0, 0, 1613, 1614, 7, 18, 0, 0, 1614, 1615, 7, 0, 0, 0, 1615, 1616, 7, 1, 0, 0, 1616, 1617, 7, 13, 0, 0, 1617, 1618, 7, 8, 0, 0, 1618, 1619, 7, 9, 0, 0, 1619, 190, 1, 0, 0, 0, 1620, 1621, 7, 9, 0, 0, 1621, 1622, 7, 6, 0, 0, 1622, 1623, 7, 18, 0, 0, 1623, 1624, 7, 4, 0, 0, 1624, 1625, 7, 6, 0, 0, 1625, 1626, 7, 11, 0, 0, 1626, 1627, 7, 5, 0, 0, 1627, 1628, 7, 4, 0, 0, 1628, 192, 1, 0, 0, 0, 1629, 1630, 7, 9, 0, 0, 1630, 1631, 7, 6, 0, 0, 1631, 1632, 7, 18, 0, 0, 1632, 1633, 7, 4, 0, 0, 1633, 1634, 7, 3, 0, 0, 1634, 1635, 7, 6, 0, 0, 1635, 1636, 7, 1, 0, 0, 1636, 1637, 7, 19, 0, 0, 1637, 1638, 7, 4, 0, 0, 1638, 1639, 7, 8, 0, 0, 1639, 194, 1, 0, 0, 0, 1640, 1641, 7, 9, 0, 0, 1641, 1642, 7, 6, 0, 0, 1642, 1643, 7, 18, 0, 0, 1643, 1644, 7, 4, 0, 0, 1644, 1645, 7, 3, 0, 0, 1645, 1646, 7, 6, 0, 0, 1646, 1647, 7, 1, 0, 0, 1647, 1648, 7, 19, 0, 0, 1648, 1649, 7, 4, 0, 0, 1649, 1650, 7, 8, 0, 0, 1650, 1651, 7, 9, 0, 0, 1651, 196, 1, 0, 0, 0, 1652, 1653, 7, 9, 0, 0, 1653, 1654, 7, 2, 0, 0, 1654, 198, 1, 0, 0, 0, 1655, 1656, 7, 9, 0, 0, 1656, 1657, 7, 2, 0, 0, 1657, 1658, 7, 19, 0, 0, 1658, 1659, 7, 1, 0, 0, 1659, 1660, 7, 13, 0, 0, 1660, 1661, 7, 8, 0, 0, 1661, 200, 1, 0, 0, 0, 1662, 1663, 7, 9, 0, 0, 1663, 1664, 7, 3, 0, 0, 1664, 1665, 7, 2, 0, 0, 1665, 1666, 7, 16, 0, 0, 1666, 202, 1, 0, 0, 0, 1667, 1668, 7, 3, 0, 0, 1668, 1669, 7, 8, 0, 0, 1669, 1670, 7, 5, 0, 0, 1670, 1671, 7, 2, 0, 0, 1671, 1672, 7, 7, 0, 0, 1672, 1673, 7, 8, 0, 0, 1673, 1674, 7, 3, 0, 0, 1674, 204, 1, 0, 0, 0, 1675, 1676, 7, 9, 0, 0, 1676, 1677, 7, 19, 0, 0, 1677, 1678, 7, 10, 0, 0, 1678, 1679, 7, 16, 0, 0, 1679, 206, 1, 0, 0, 0, 1680, 1681, 5, 36, 0, 0, 1681, 1682, 7, 8, 0, 0, 1682, 1683, 7, 13, 0, 0, 1683, 1684, 7, 8, 0, 0, 1684, 1685, 7, 10, 0, 0, 1685, 1686, 5, 36, 0, 0, 1686, 208, 1, 0, 0, 0, 1687, 1688, 7, 8, 0, 0, 1688, 1689, 7, 13, 0, 0, 1689, 1690, 7, 18, 0, 0, 1690, 1691, 7, 8, 0, 0, 1691, 210, 1, 0, 0, 0, 1692, 1693, 7, 8, 0, 0, 1693, 1694, 7, 11, 0, 0, 1694, 1695, 7, 0, 0, 0, 1695, 1696, 7, 1, 0, 0, 1696, 1697, 7, 13, 0, 0, 1697, 1698, 7, 8, 0, 0, 1698, 212, 1, 0, 0, 0, 1699, 1700, 7, 8, 0, 0, 1700, 1701, 7, 11, 0, 0, 1701, 1702, 7, 0, 0, 0, 1702, 1703, 7, 1, 0, 0, 1703, 1704, 7, 13, 0, 0, 1704, 1705, 7, 8, 0, 0, 1705, 1706, 7, 9, 0, 0, 1706, 214, 1, 0, 0, 0, 1707, 1708, 7, 8, 0, 0, 1708, 1709, 7, 11, 0, 0, 1709, 1710, 7, 9, 0, 0, 1710, 216, 1, 0, 0, 0, 1711, 1712, 7, 8, 0, 0, 1712, 1713, 7, 11, 0, 0, 1713, 1714, 7, 12, 0, 0, 1714, 1715, 7, 2, 0, 0, 1715, 1716, 7, 3, 0, 0, 1716, 1717, 7, 5, 0, 0, 1717, 1718, 7, 8, 0, 0, 1718, 1719, 7, 9, 0, 0, 1719, 218, 1, 0, 0, 0, 1720, 1721, 7, 8, 0, 0, 1721, 1722, 7, 18, 0, 0, 1722, 1723, 7, 5, 0, 0, 1723, 1724, 7, 0, 0, 0, 1724, 1725, 7, 16, 0, 0, 1725, 1726, 7, 8, 0, 0, 1726, 1727, 7, 9, 0, 0, 1727, 220, 1, 0, 0, 0, 1728, 1729, 7, 8, 0, 0, 1729, 1730, 7, 7, 0, 0, 1730, 1731, 7, 8, 0, 0, 1731, 1732, 7, 3, 0, 0, 1732, 1733, 7, 14, 0, 0, 1733, 222, 1, 0, 0, 0, 1734, 1735, 7, 8, 0, 0, 1735, 1736, 7, 23, 0, 0, 1736, 1737, 7, 5, 0, 0, 1737, 1738, 7, 8, 0, 0, 1738, 1739, 7, 16, 0, 0, 1739, 1740, 7, 4, 0, 0, 1740, 224, 1, 0, 0, 0, 1741, 1742, 7, 8, 0, 0, 1742, 1743, 7, 23, 0, 0, 1743, 1744, 7, 5, 0, 0, 1744, 1745, 7, 17, 0, 0, 1745, 1746, 7, 0, 0, 0, 1746, 1747, 7, 11, 0, 0, 1747, 1748, 7, 21, 0, 0, 1748, 1749, 7, 8, 0, 0, 1749, 226, 1, 0, 0, 0, 1750, 1751, 7, 8, 0, 0, 1751, 1752, 7, 23, 0, 0, 1752, 1753, 7, 5, 0, 0, 1753, 1754, 7, 13, 0, 0, 1754, 1755, 7, 19, 0, 0, 1755, 1756, 7, 18, 0, 0, 1756, 1757, 7, 6, 0, 0, 1757, 1758, 7, 7, 0, 0, 1758, 1759, 7, 8, 0, 0, 1759, 228, 1, 0, 0, 0, 1760, 1761, 7, 8, 0, 0, 1761, 1762, 7, 23, 0, 0, 1762, 1763, 7, 8, 0, 0, 1763, 1764, 7, 5, 0, 0, 1764, 1765, 7, 19, 0, 0, 1765, 1766, 7, 4, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 230, 1, 0, 0, 0, 1768, 1769, 7, 8, 0, 0, 1769, 1770, 7, 23, 0, 0, 1770, 1771, 7, 8, 0, 0, 1771, 1772, 7, 5, 0, 0, 1772, 1773, 7, 19, 0, 0, 1773, 1774, 7, 4, 0, 0, 1774, 1775, 7, 8, 0, 0, 1775, 1776, 7, 9, 0, 0, 1776, 232, 1, 0, 0, 0, 1777, 1778, 7, 8, 0, 0, 1778, 1779, 7, 23, 0, 0, 1779, 1780, 7, 6, 0, 0, 1780, 1781, 7, 18, 0, 0, 1781, 1782, 7, 4, 0, 0, 1782, 1783, 7, 18, 0, 0, 1783, 234, 1, 0, 0, 0, 1784, 1785, 7, 8, 0, 0, 1785, 1786, 7, 23, 0, 0, 1786, 1787, 7, 16, 0, 0, 1787, 1788, 7, 6, 0, 0, 1788, 1789, 7, 3, 0, 0, 1789, 1790, 7, 8, 0, 0, 1790, 1791, 5, 95, 0, 0, 1791, 1792, 7, 18, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 0, 0, 0, 1794, 1795, 7, 16, 0, 0, 1795, 1796, 7, 18, 0, 0, 1796, 1797, 7, 17, 0, 0, 1797, 1798, 7, 2, 0, 0, 1798, 1799, 7, 4, 0, 0, 1799, 1800, 7, 18, 0, 0, 1800, 236, 1, 0, 0, 0, 1801, 1802, 7, 8, 0, 0, 1802, 1803, 7, 23, 0, 0, 1803, 1804, 7, 16, 0, 0, 1804, 1805, 7, 13, 0, 0, 1805, 1806, 7, 0, 0, 0, 1806, 1807, 7, 6, 0, 0, 1807, 1808, 7, 11, 0, 0, 1808, 238, 1, 0, 0, 0, 1809, 1810, 7, 8, 0, 0, 1810, 1811, 7, 23, 0, 0, 1811, 1812, 7, 16, 0, 0, 1812, 1813, 7, 2, 0, 0, 1813, 1814, 7, 3, 0, 0, 1814, 1815, 7, 4, 0, 0, 1815, 240, 1, 0, 0, 0, 1816, 1817, 7, 8, 0, 0, 1817, 1818, 7, 23, 0, 0, 1818, 1819, 7, 16, 0, 0, 1819, 1820, 7, 3, 0, 0, 1820, 1821, 7, 8, 0, 0, 1821, 1822, 7, 18, 0, 0, 1822, 1823, 7, 18, 0, 0, 1823, 1824, 7, 6, 0, 0, 1824, 1825, 7, 2, 0, 0, 1825, 1826, 7, 11, 0, 0, 1826, 242, 1, 0, 0, 0, 1827, 1828, 7, 8, 0, 0, 1828, 1829, 7, 23, 0, 0, 1829, 1830, 7, 4, 0, 0, 1830, 1831, 7, 8, 0, 0, 1831, 1832, 7, 11, 0, 0, 1832, 1833, 7, 9, 0, 0, 1833, 1834, 7, 8, 0, 0, 1834, 1835, 7, 9, 0, 0, 1835, 244, 1, 0, 0, 0, 1836, 1837, 7, 8, 0, 0, 1837, 1838, 7, 23, 0, 0, 1838, 1839, 7, 4, 0, 0, 1839, 1840, 7, 8, 0, 0, 1840, 1841, 7, 3, 0, 0, 1841, 1842, 7, 11, 0, 0, 1842, 1843, 7, 0, 0, 0, 1843, 1844, 7, 13, 0, 0, 1844, 246, 1, 0, 0, 0, 1845, 1846, 7, 8, 0, 0, 1846, 1847, 7, 23, 0, 0, 1847, 1848, 7, 4, 0, 0, 1848, 1849, 7, 3, 0, 0, 1849, 1850, 7, 0, 0, 0, 1850, 1851, 7, 5, 0, 0, 1851, 1852, 7, 4, 0, 0, 1852, 248, 1, 0, 0, 0, 1853, 1854, 7, 12, 0, 0, 1854, 1855, 7, 0, 0, 0, 1855, 1856, 7, 13, 0, 0, 1856, 1857, 7, 18, 0, 0, 1857, 1858, 7, 8, 0, 0, 1858, 250, 1, 0, 0, 0, 1859, 1860, 7, 12, 0, 0, 1860, 1861, 7, 8, 0, 0, 1861, 1862, 7, 4, 0, 0, 1862, 1863, 7, 5, 0, 0, 1863, 1864, 7, 17, 0, 0, 1864, 252, 1, 0, 0, 0, 1865, 1866, 7, 12, 0, 0, 1866, 1867, 7, 6, 0, 0, 1867, 1868, 7, 8, 0, 0, 1868, 1869, 7, 13, 0, 0, 1869, 1870, 7, 9, 0, 0, 1870, 1871, 7, 18, 0, 0, 1871, 254, 1, 0, 0, 0, 1872, 1873, 7, 12, 0, 0, 1873, 1874, 7, 6, 0, 0, 1874, 1875, 7, 13, 0, 0, 1875, 1876, 7, 8, 0, 0, 1876, 256, 1, 0, 0, 0, 1877, 1878, 7, 12, 0, 0, 1878, 1879, 7, 6, 0, 0, 1879, 1880, 7, 13, 0, 0, 1880, 1881, 7, 8, 0, 0, 1881, 1882, 7, 12, 0, 0, 1882, 1883, 7, 2, 0, 0, 1883, 1884, 7, 3, 0, 0, 1884, 1885, 7, 10, 0, 0, 1885, 1886, 7, 0, 0, 0, 1886, 1887, 7, 4, 0, 0, 1887, 258, 1, 0, 0, 0, 1888, 1889, 7, 12, 0, 0, 1889, 1890, 7, 6, 0, 0, 1890, 1891, 7, 3, 0, 0, 1891, 1892, 7, 18, 0, 0, 1892, 1893, 7, 4, 0, 0, 1893, 260, 1, 0, 0, 0, 1894, 1895, 7, 12, 0, 0, 1895, 1896, 7, 13, 0, 0, 1896, 1897, 7, 2, 0, 0, 1897, 1898, 7, 0, 0, 0, 1898, 1899, 7, 4, 0, 0, 1899, 262, 1, 0, 0, 0, 1900, 1901, 7, 12, 0, 0, 1901, 1902, 7, 13, 0, 0, 1902, 1903, 7, 2, 0, 0, 1903, 1904, 7, 2, 0, 0, 1904, 1905, 7, 3, 0, 0, 1905, 264, 1, 0, 0, 0, 1906, 1907, 7, 12, 0, 0, 1907, 1908, 7, 2, 0, 0, 1908, 1909, 7, 13, 0, 0, 1909, 1910, 7, 13, 0, 0, 1910, 1911, 7, 2, 0, 0, 1911, 1912, 7, 20, 0, 0, 1912, 1913, 7, 6, 0, 0, 1913, 1914, 7, 11, 0, 0, 1914, 1915, 7, 21, 0, 0, 1915, 266, 1, 0, 0, 0, 1916, 1917, 7, 12, 0, 0, 1917, 1918, 7, 2, 0, 0, 1918, 1919, 7, 3, 0, 0, 1919, 268, 1, 0, 0, 0, 1920, 1921, 7, 12, 0, 0, 1921, 1922, 7, 2, 0, 0, 1922, 1923, 7, 3, 0, 0, 1923, 1924, 7, 5, 0, 0, 1924, 1925, 7, 8, 0, 0, 1925, 270, 1, 0, 0, 0, 1926, 1927, 7, 12, 0, 0, 1927, 1928, 7, 2, 0, 0, 1928, 1929, 7, 3, 0, 0, 1929, 1930, 7, 8, 0, 0, 1930, 1931, 7, 6, 0, 0, 1931, 1932, 7, 21, 0, 0, 1932, 1933, 7, 11, 0, 0, 1933, 272, 1, 0, 0, 0, 1934, 1935, 7, 12, 0, 0, 1935, 1936, 7, 2, 0, 0, 1936, 1937, 7, 3, 0, 0, 1937, 1938, 7, 10, 0, 0, 1938, 1939, 7, 0, 0, 0, 1939, 1940, 7, 4, 0, 0, 1940, 274, 1, 0, 0, 0, 1941, 1942, 7, 12, 0, 0, 1942, 1943, 7, 2, 0, 0, 1943, 1944, 7, 3, 0, 0, 1944, 1945, 7, 10, 0, 0, 1945, 1946, 7, 0, 0, 0, 1946, 1947, 7, 4, 0, 0, 1947, 1948, 7, 4, 0, 0, 1948, 1949, 7, 8, 0, 0, 1949, 1950, 7, 9, 0, 0, 1950, 276, 1, 0, 0, 0, 1951, 1952, 7, 12, 0, 0, 1952, 1953, 7, 3, 0, 0, 1953, 1954, 7, 2, 0, 0, 1954, 1955, 7, 10, 0, 0, 1955, 278, 1, 0, 0, 0, 1956, 1957, 7, 12, 0, 0, 1957, 1958, 7, 19, 0, 0, 1958, 1959, 7, 13, 0, 0, 1959, 1960, 7, 13, 0, 0, 1960, 280, 1, 0, 0, 0, 1961, 1962, 7, 12, 0, 0, 1962, 1963, 7, 19, 0, 0, 1963, 1964, 7, 11, 0, 0, 1964, 1965, 7, 5, 0, 0, 1965, 1966, 7, 4, 0, 0, 1966, 1967, 7, 6, 0, 0, 1967, 1968, 7, 2, 0, 0, 1968, 1969, 7, 11, 0, 0, 1969, 282, 1, 0, 0, 0, 1970, 1971, 7, 12, 0, 0, 1971, 1972, 7, 19, 0, 0, 1972, 1973, 7, 11, 0, 0, 1973, 1974, 7, 5, 0, 0, 1974, 1975, 7, 4, 0, 0, 1975, 1976, 7, 6, 0, 0, 1976, 1977, 7, 2, 0, 0, 1977, 1978, 7, 11, 0, 0, 1978, 1979, 7, 18, 0, 0, 1979, 284, 1, 0, 0, 0, 1980, 1981, 7, 21, 0, 0, 1981, 1982, 7, 3, 0, 0, 1982, 1983, 7, 0, 0, 0, 1983, 1984, 7, 11, 0, 0, 1984, 1985, 7, 4, 0, 0, 1985, 286, 1, 0, 0, 0, 1986, 1987, 7, 21, 0, 0, 1987, 1988, 7, 3, 0, 0, 1988, 1989, 7, 2, 0, 0, 1989, 1990, 7, 19, 0, 0, 1990, 1991, 7, 16, 0, 0, 1991, 288, 1, 0, 0, 0, 1992, 1993, 7, 21, 0, 0, 1993, 1994, 7, 3, 0, 0, 1994, 1995, 7, 2, 0, 0, 1995, 1996, 7, 19, 0, 0, 1996, 1997, 7, 16, 0, 0, 1997, 1998, 7, 6, 0, 0, 1998, 1999, 7, 11, 0, 0, 1999, 2000, 7, 21, 0, 0, 2000, 290, 1, 0, 0, 0, 2001, 2002, 7, 17, 0, 0, 2002, 2003, 7, 0, 0, 0, 2003, 2004, 7, 7, 0, 0, 2004, 2005, 7, 6, 0, 0, 2005, 2006, 7, 11, 0, 0, 2006, 2007, 7, 21, 0, 0, 2007, 292, 1, 0, 0, 0, 2008, 2009, 7, 17, 0, 0, 2009, 2010, 7, 2, 0, 0, 2010, 2011, 7, 13, 0, 0, 2011, 2012, 7, 9, 0, 0, 2012, 2013, 5, 95, 0, 0, 2013, 2014, 7, 9, 0, 0, 2014, 2015, 7, 9, 0, 0, 2015, 2016, 7, 13, 0, 0, 2016, 2017, 7, 4, 0, 0, 2017, 2018, 7, 6, 0, 0, 2018, 2019, 7, 10, 0, 0, 2019, 2020, 7, 8, 0, 0, 2020, 294, 1, 0, 0, 0, 2021, 2022, 7, 17, 0, 0, 2022, 2023, 7, 2, 0, 0, 2023, 2024, 7, 19, 0, 0, 2024, 2025, 7, 3, 0, 0, 2025, 296, 1, 0, 0, 0, 2026, 2027, 7, 17, 0, 0, 2027, 2028, 7, 2, 0, 0, 2028, 2029, 7, 19, 0, 0, 2029, 2030, 7, 3, 0, 0, 2030, 2031, 7, 18, 0, 0, 2031, 298, 1, 0, 0, 0, 2032, 2033, 7, 6, 0, 0, 2033, 2034, 7, 9, 0, 0, 2034, 2035, 7, 23, 0, 0, 2035, 2036, 7, 16, 0, 0, 2036, 2037, 7, 3, 0, 0, 2037, 2038, 7, 2, 0, 0, 2038, 2039, 7, 16, 0, 0, 2039, 2040, 7, 8, 0, 0, 2040, 2041, 7, 3, 0, 0, 2041, 2042, 7, 4, 0, 0, 2042, 2043, 7, 6, 0, 0, 2043, 2044, 7, 8, 0, 0, 2044, 2045, 7, 18, 0, 0, 2045, 300, 1, 0, 0, 0, 2046, 2047, 7, 6, 0, 0, 2047, 2048, 7, 12, 0, 0, 2048, 302, 1, 0, 0, 0, 2049, 2050, 7, 6, 0, 0, 2050, 2051, 7, 21, 0, 0, 2051, 2052, 7, 11, 0, 0, 2052, 2053, 7, 2, 0, 0, 2053, 2054, 7, 3, 0, 0, 2054, 2055, 7, 8, 0, 0, 2055, 304, 1, 0, 0, 0, 2056, 2057, 7, 6, 0, 0, 2057, 2058, 7, 10, 0, 0, 2058, 2059, 7, 16, 0, 0, 2059, 2060, 7, 2, 0, 0, 2060, 2061, 7, 3, 0, 0, 2061, 2062, 7, 4, 0, 0, 2062, 306, 1, 0, 0, 0, 2063, 2064, 7, 6, 0, 0, 2064, 2065, 7, 11, 0, 0, 2065, 308, 1, 0, 0, 0, 2066, 2067, 7, 6, 0, 0, 2067, 2068, 7, 11, 0, 0, 2068, 2069, 7, 9, 0, 0, 2069, 2070, 7, 8, 0, 0, 2070, 2071, 7, 23, 0, 0, 2071, 310, 1, 0, 0, 0, 2072, 2073, 7, 6, 0, 0, 2073, 2074, 7, 11, 0, 0, 2074, 2075, 7, 9, 0, 0, 2075, 2076, 7, 8, 0, 0, 2076, 2077, 7, 23, 0, 0, 2077, 2078, 7, 8, 0, 0, 2078, 2079, 7, 18, 0, 0, 2079, 312, 1, 0, 0, 0, 2080, 2081, 7, 6, 0, 0, 2081, 2082, 7, 11, 0, 0, 2082, 2083, 7, 11, 0, 0, 2083, 2084, 7, 8, 0, 0, 2084, 2085, 7, 3, 0, 0, 2085, 314, 1, 0, 0, 0, 2086, 2087, 7, 6, 0, 0, 2087, 2088, 7, 11, 0, 0, 2088, 2089, 7, 16, 0, 0, 2089, 2090, 7, 0, 0, 0, 2090, 2091, 7, 4, 0, 0, 2091, 2092, 7, 17, 0, 0, 2092, 316, 1, 0, 0, 0, 2093, 2094, 7, 6, 0, 0, 2094, 2095, 7, 11, 0, 0, 2095, 2096, 7, 16, 0, 0, 2096, 2097, 7, 19, 0, 0, 2097, 2098, 7, 4, 0, 0, 2098, 2099, 7, 9, 0, 0, 2099, 2100, 7, 3, 0, 0, 2100, 2101, 7, 6, 0, 0, 2101, 2102, 7, 7, 0, 0, 2102, 2103, 7, 8, 0, 0, 2103, 2104, 7, 3, 0, 0, 2104, 318, 1, 0, 0, 0, 2105, 2106, 7, 6, 0, 0, 2106, 2107, 7, 11, 0, 0, 2107, 2108, 7, 16, 0, 0, 2108, 2109, 7, 19, 0, 0, 2109, 2110, 7, 4, 0, 0, 2110, 2111, 7, 12, 0, 0, 2111, 2112, 7, 2, 0, 0, 2112, 2113, 7, 3, 0, 0, 2113, 2114, 7, 10, 0, 0, 2114, 2115, 7, 0, 0, 0, 2115, 2116, 7, 4, 0, 0, 2116, 320, 1, 0, 0, 0, 2117, 2118, 7, 6, 0, 0, 2118, 2119, 7, 11, 0, 0, 2119, 2120, 7, 18, 0, 0, 2120, 2121, 7, 8, 0, 0, 2121, 2122, 7, 3, 0, 0, 2122, 2123, 7, 4, 0, 0, 2123, 322, 1, 0, 0, 0, 2124, 2125, 7, 6, 0, 0, 2125, 2126, 7, 11, 0, 0, 2126, 2127, 7, 4, 0, 0, 2127, 324, 1, 0, 0, 0, 2128, 2129, 7, 6, 0, 0, 2129, 2130, 7, 11, 0, 0, 2130, 2131, 7, 4, 0, 0, 2131, 2132, 7, 8, 0, 0, 2132, 2133, 7, 21, 0, 0, 2133, 2134, 7, 8, 0, 0, 2134, 2135, 7, 3, 0, 0, 2135, 326, 1, 0, 0, 0, 2136, 2137, 7, 6, 0, 0, 2137, 2138, 7, 11, 0, 0, 2138, 2139, 7, 4, 0, 0, 2139, 2140, 7, 8, 0, 0, 2140, 2141, 7, 3, 0, 0, 2141, 2142, 7, 18, 0, 0, 2142, 2143, 7, 8, 0, 0, 2143, 2144, 7, 5, 0, 0, 2144, 2145, 7, 4, 0, 0, 2145, 328, 1, 0, 0, 0, 2146, 2147, 7, 6, 0, 0, 2147, 2148, 7, 11, 0, 0, 2148, 2149, 7, 4, 0, 0, 2149, 2150, 7, 8, 0, 0, 2150, 2151, 7, 3, 0, 0, 2151, 2152, 7, 7, 0, 0, 2152, 2153, 7, 0, 0, 0, 2153, 2154, 7, 13, 0, 0, 2154, 330, 1, 0, 0, 0, 2155, 2156, 7, 6, 0, 0, 2156, 2157, 7, 11, 0, 0, 2157, 2158, 7, 4, 0, 0, 2158, 2159, 7, 2, 0, 0, 2159, 332, 1, 0, 0, 0, 2160, 2161, 7, 6, 0, 0, 2161, 2162, 7, 18, 0, 0, 2162, 334, 1, 0, 0, 0, 2163, 2164, 7, 6, 0, 0, 2164, 2165, 7, 18, 0, 0, 2165, 2166, 7, 2, 0, 0, 2166, 2167, 7, 13, 0, 0, 2167, 2168, 7, 0, 0, 0, 2168, 2169, 7, 4, 0, 0, 2169, 2170, 7, 6, 0, 0, 2170, 2171, 7, 2, 0, 0, 2171, 2172, 7, 11, 0, 0, 2172, 336, 1, 0, 0, 0, 2173, 2174, 7, 6, 0, 0, 2174, 2175, 7, 4, 0, 0, 2175, 2176, 7, 8, 0, 0, 2176, 2177, 7, 10, 0, 0, 2177, 2178, 7, 18, 0, 0, 2178, 338, 1, 0, 0, 0, 2179, 2180, 7, 24, 0, 0, 2180, 2181, 7, 0, 0, 0, 2181, 2182, 7, 3, 0, 0, 2182, 340, 1, 0, 0, 0, 2183, 2184, 7, 24, 0, 0, 2184, 2185, 7, 2, 0, 0, 2185, 2186, 7, 6, 0, 0, 2186, 2187, 7, 11, 0, 0, 2187, 342, 1, 0, 0, 0, 2188, 2189, 7, 24, 0, 0, 2189, 2190, 7, 2, 0, 0, 2190, 2191, 7, 6, 0, 0, 2191, 2192, 7, 11, 0, 0, 2192, 2193, 7, 5, 0, 0, 2193, 2194, 7, 2, 0, 0, 2194, 2195, 7, 18, 0, 0, 2195, 2196, 7, 4, 0, 0, 2196, 344, 1, 0, 0, 0, 2197, 2198, 7, 22, 0, 0, 2198, 2199, 7, 8, 0, 0, 2199, 2200, 7, 14, 0, 0, 2200, 346, 1, 0, 0, 0, 2201, 2202, 7, 22, 0, 0, 2202, 2203, 7, 8, 0, 0, 2203, 2204, 7, 14, 0, 0, 2204, 2205, 7, 18, 0, 0, 2205, 348, 1, 0, 0, 0, 2206, 2207, 5, 36, 0, 0, 2207, 2208, 7, 22, 0, 0, 2208, 2209, 7, 8, 0, 0, 2209, 2210, 7, 14, 0, 0, 2210, 2211, 5, 36, 0, 0, 2211, 350, 1, 0, 0, 0, 2212, 2213, 7, 22, 0, 0, 2213, 2214, 7, 6, 0, 0, 2214, 2215, 7, 13, 0, 0, 2215, 2216, 7, 13, 0, 0, 2216, 352, 1, 0, 0, 0, 2217, 2218, 7, 13, 0, 0, 2218, 2219, 7, 0, 0, 0, 2219, 2220, 7, 18, 0, 0, 2220, 2221, 7, 4, 0, 0, 2221, 354, 1, 0, 0, 0, 2222, 2223, 7, 13, 0, 0, 2223, 2224, 7, 0, 0, 0, 2224, 2225, 7, 4, 0, 0, 2225, 2226, 7, 8, 0, 0, 2226, 2227, 7, 3, 0, 0, 2227, 2228, 7, 0, 0, 0, 2228, 2229, 7, 13, 0, 0, 2229, 356, 1, 0, 0, 0, 2230, 2231, 7, 13, 0, 0, 2231, 2232, 7, 8, 0, 0, 2232, 2233, 7, 0, 0, 0, 2233, 2234, 7, 9, 0, 0, 2234, 2235, 7, 6, 0, 0, 2235, 2236, 7, 11, 0, 0, 2236, 2237, 7, 21, 0, 0, 2237, 358, 1, 0, 0, 0, 2238, 2239, 7, 13, 0, 0, 2239, 2240, 7, 8, 0, 0, 2240, 2241, 7, 12, 0, 0, 2241, 2242, 7, 4, 0, 0, 2242, 360, 1, 0, 0, 0, 2243, 2244, 7, 13, 0, 0, 2244, 2245, 7, 8, 0, 0, 2245, 2246, 7, 18, 0, 0, 2246, 2247, 7, 18, 0, 0, 2247, 362, 1, 0, 0, 0, 2248, 2249, 7, 13, 0, 0, 2249, 2250, 7, 8, 0, 0, 2250, 2251, 7, 7, 0, 0, 2251, 2252, 7, 8, 0, 0, 2252, 2253, 7, 13, 0, 0, 2253, 364, 1, 0, 0, 0, 2254, 2255, 7, 13, 0, 0, 2255, 2256, 7, 6, 0, 0, 2256, 2257, 7, 22, 0, 0, 2257, 2258, 7, 8, 0, 0, 2258, 366, 1, 0, 0, 0, 2259, 2260, 7, 13, 0, 0, 2260, 2261, 7, 6, 0, 0, 2261, 2262, 7, 10, 0, 0, 2262, 2263, 7, 6, 0, 0, 2263, 2264, 7, 4, 0, 0, 2264, 368, 1, 0, 0, 0, 2265, 2266, 7, 13, 0, 0, 2266, 2267, 7, 6, 0, 0, 2267, 2268, 7, 11, 0, 0, 2268, 2269, 7, 8, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 370, 1, 0, 0, 0, 2271, 2272, 7, 13, 0, 0, 2272, 2273, 7, 2, 0, 0, 2273, 2274, 7, 0, 0, 0, 2274, 2275, 7, 9, 0, 0, 2275, 372, 1, 0, 0, 0, 2276, 2277, 7, 13, 0, 0, 2277, 2278, 7, 2, 0, 0, 2278, 2279, 7, 5, 0, 0, 2279, 2280, 7, 0, 0, 0, 2280, 2281, 7, 13, 0, 0, 2281, 374, 1, 0, 0, 0, 2282, 2283, 7, 13, 0, 0, 2283, 2284, 7, 2, 0, 0, 2284, 2285, 7, 5, 0, 0, 2285, 2286, 7, 0, 0, 0, 2286, 2287, 7, 4, 0, 0, 2287, 2288, 7, 6, 0, 0, 2288, 2289, 7, 2, 0, 0, 2289, 2290, 7, 11, 0, 0, 2290, 376, 1, 0, 0, 0, 2291, 2292, 7, 13, 0, 0, 2292, 2293, 7, 2, 0, 0, 2293, 2294, 7, 5, 0, 0, 2294, 2295, 7, 22, 0, 0, 2295, 378, 1, 0, 0, 0, 2296, 2297, 7, 13, 0, 0, 2297, 2298, 7, 2, 0, 0, 2298, 2299, 7, 5, 0, 0, 2299, 2300, 7, 22, 0, 0, 2300, 2301, 7, 18, 0, 0, 2301, 380, 1, 0, 0, 0, 2302, 2303, 7, 13, 0, 0, 2303, 2304, 7, 2, 0, 0, 2304, 2305, 7, 21, 0, 0, 2305, 2306, 7, 6, 0, 0, 2306, 2307, 7, 5, 0, 0, 2307, 2308, 7, 0, 0, 0, 2308, 2309, 7, 13, 0, 0, 2309, 382, 1, 0, 0, 0, 2310, 2311, 7, 13, 0, 0, 2311, 2312, 7, 2, 0, 0, 2312, 2313, 7, 11, 0, 0, 2313, 2314, 7, 21, 0, 0, 2314, 384, 1, 0, 0, 0, 2315, 2316, 7, 10, 0, 0, 2316, 2317, 7, 0, 0, 0, 2317, 2318, 7, 5, 0, 0, 2318, 2319, 7, 3, 0, 0, 2319, 2320, 7, 2, 0, 0, 2320, 386, 1, 0, 0, 0, 2321, 2322, 7, 10, 0, 0, 2322, 2323, 7, 0, 0, 0, 2323, 2324, 7, 11, 0, 0, 2324, 2325, 7, 0, 0, 0, 2325, 2326, 7, 21, 0, 0, 2326, 2327, 7, 8, 0, 0, 2327, 2328, 7, 9, 0, 0, 2328, 388, 1, 0, 0, 0, 2329, 2330, 7, 10, 0, 0, 2330, 2331, 7, 0, 0, 0, 2331, 2332, 7, 11, 0, 0, 2332, 2333, 7, 0, 0, 0, 2333, 2334, 7, 21, 0, 0, 2334, 2335, 7, 8, 0, 0, 2335, 2336, 7, 9, 0, 0, 2336, 2337, 7, 13, 0, 0, 2337, 2338, 7, 2, 0, 0, 2338, 2339, 7, 5, 0, 0, 2339, 2340, 7, 0, 0, 0, 2340, 2341, 7, 4, 0, 0, 2341, 2342, 7, 6, 0, 0, 2342, 2343, 7, 2, 0, 0, 2343, 2344, 7, 11, 0, 0, 2344, 390, 1, 0, 0, 0, 2345, 2346, 7, 10, 0, 0, 2346, 2347, 7, 0, 0, 0, 2347, 2348, 7, 11, 0, 0, 2348, 2349, 7, 0, 0, 0, 2349, 2350, 7, 21, 0, 0, 2350, 2351, 7, 8, 0, 0, 2351, 2352, 7, 10, 0, 0, 2352, 2353, 7, 8, 0, 0, 2353, 2354, 7, 11, 0, 0, 2354, 2355, 7, 4, 0, 0, 2355, 392, 1, 0, 0, 0, 2356, 2357, 7, 10, 0, 0, 2357, 2358, 7, 0, 0, 0, 2358, 2359, 7, 16, 0, 0, 2359, 394, 1, 0, 0, 0, 2360, 2361, 7, 10, 0, 0, 2361, 2362, 7, 0, 0, 0, 2362, 2363, 7, 16, 0, 0, 2363, 2364, 7, 24, 0, 0, 2364, 2365, 7, 2, 0, 0, 2365, 2366, 7, 6, 0, 0, 2366, 2367, 7, 11, 0, 0, 2367, 396, 1, 0, 0, 0, 2368, 2369, 7, 10, 0, 0, 2369, 2370, 7, 0, 0, 0, 2370, 2371, 7, 16, 0, 0, 2371, 2372, 7, 16, 0, 0, 2372, 2373, 7, 6, 0, 0, 2373, 2374, 7, 11, 0, 0, 2374, 2375, 7, 21, 0, 0, 2375, 398, 1, 0, 0, 0, 2376, 2377, 7, 10, 0, 0, 2377, 2378, 7, 0, 0, 0, 2378, 2379, 7, 4, 0, 0, 2379, 2380, 7, 5, 0, 0, 2380, 2381, 7, 17, 0, 0, 2381, 2382, 7, 8, 0, 0, 2382, 2383, 7, 9, 0, 0, 2383, 400, 1, 0, 0, 0, 2384, 2385, 7, 10, 0, 0, 2385, 2386, 7, 0, 0, 0, 2386, 2387, 7, 4, 0, 0, 2387, 2388, 7, 8, 0, 0, 2388, 2389, 7, 3, 0, 0, 2389, 2390, 7, 6, 0, 0, 2390, 2391, 7, 0, 0, 0, 2391, 2392, 7, 13, 0, 0, 2392, 2393, 7, 6, 0, 0, 2393, 2394, 7, 15, 0, 0, 2394, 2395, 7, 8, 0, 0, 2395, 2396, 7, 9, 0, 0, 2396, 402, 1, 0, 0, 0, 2397, 2398, 7, 10, 0, 0, 2398, 2399, 7, 8, 0, 0, 2399, 2400, 7, 3, 0, 0, 2400, 2401, 7, 21, 0, 0, 2401, 2402, 7, 8, 0, 0, 2402, 404, 1, 0, 0, 0, 2403, 2404, 7, 10, 0, 0, 2404, 2405, 7, 8, 0, 0, 2405, 2406, 7, 4, 0, 0, 2406, 2407, 7, 0, 0, 0, 2407, 2408, 7, 9, 0, 0, 2408, 2409, 7, 0, 0, 0, 2409, 2410, 7, 4, 0, 0, 2410, 2411, 7, 0, 0, 0, 2411, 406, 1, 0, 0, 0, 2412, 2413, 7, 10, 0, 0, 2413, 2414, 7, 6, 0, 0, 2414, 2415, 7, 11, 0, 0, 2415, 2416, 7, 19, 0, 0, 2416, 2417, 7, 18, 0, 0, 2417, 408, 1, 0, 0, 0, 2418, 2419, 7, 10, 0, 0, 2419, 2420, 7, 6, 0, 0, 2420, 2421, 7, 11, 0, 0, 2421, 2422, 7, 19, 0, 0, 2422, 2423, 7, 4, 0, 0, 2423, 2424, 7, 8, 0, 0, 2424, 410, 1, 0, 0, 0, 2425, 2426, 7, 10, 0, 0, 2426, 2427, 7, 6, 0, 0, 2427, 2428, 7, 11, 0, 0, 2428, 2429, 7, 19, 0, 0, 2429, 2430, 7, 4, 0, 0, 2430, 2431, 7, 8, 0, 0, 2431, 2432, 7, 18, 0, 0, 2432, 412, 1, 0, 0, 0, 2433, 2434, 7, 10, 0, 0, 2434, 2435, 7, 2, 0, 0, 2435, 2436, 7, 11, 0, 0, 2436, 2437, 7, 4, 0, 0, 2437, 2438, 7, 17, 0, 0, 2438, 414, 1, 0, 0, 0, 2439, 2440, 7, 10, 0, 0, 2440, 2441, 7, 2, 0, 0, 2441, 2442, 7, 11, 0, 0, 2442, 2443, 7, 4, 0, 0, 2443, 2444, 7, 17, 0, 0, 2444, 2445, 7, 18, 0, 0, 2445, 416, 1, 0, 0, 0, 2446, 2447, 7, 10, 0, 0, 2447, 2448, 7, 2, 0, 0, 2448, 2449, 7, 3, 0, 0, 2449, 2450, 7, 8, 0, 0, 2450, 418, 1, 0, 0, 0, 2451, 2452, 7, 10, 0, 0, 2452, 2453, 7, 2, 0, 0, 2453, 2454, 7, 7, 0, 0, 2454, 2455, 7, 8, 0, 0, 2455, 420, 1, 0, 0, 0, 2456, 2457, 7, 10, 0, 0, 2457, 2458, 7, 18, 0, 0, 2458, 2459, 7, 5, 0, 0, 2459, 2460, 7, 22, 0, 0, 2460, 422, 1, 0, 0, 0, 2461, 2462, 7, 11, 0, 0, 2462, 2463, 7, 2, 0, 0, 2463, 2464, 7, 11, 0, 0, 2464, 2465, 7, 8, 0, 0, 2465, 424, 1, 0, 0, 0, 2466, 2467, 7, 11, 0, 0, 2467, 2468, 7, 2, 0, 0, 2468, 2469, 7, 3, 0, 0, 2469, 2470, 7, 8, 0, 0, 2470, 2471, 7, 13, 0, 0, 2471, 2472, 7, 14, 0, 0, 2472, 426, 1, 0, 0, 0, 2473, 2474, 7, 11, 0, 0, 2474, 2475, 7, 2, 0, 0, 2475, 2476, 7, 18, 0, 0, 2476, 2477, 7, 5, 0, 0, 2477, 2478, 7, 0, 0, 0, 2478, 2479, 7, 11, 0, 0, 2479, 428, 1, 0, 0, 0, 2480, 2481, 7, 11, 0, 0, 2481, 2482, 7, 2, 0, 0, 2482, 2483, 7, 4, 0, 0, 2483, 430, 1, 0, 0, 0, 2484, 2485, 7, 11, 0, 0, 2485, 2486, 7, 2, 0, 0, 2486, 2487, 7, 7, 0, 0, 2487, 2488, 7, 0, 0, 0, 2488, 2489, 7, 13, 0, 0, 2489, 2490, 7, 6, 0, 0, 2490, 2491, 7, 9, 0, 0, 2491, 2492, 7, 0, 0, 0, 2492, 2493, 7, 4, 0, 0, 2493, 2494, 7, 8, 0, 0, 2494, 432, 1, 0, 0, 0, 2495, 2496, 7, 11, 0, 0, 2496, 2497, 7, 2, 0, 0, 2497, 2498, 5, 95, 0, 0, 2498, 2499, 7, 9, 0, 0, 2499, 2500, 7, 3, 0, 0, 2500, 2501, 7, 2, 0, 0, 2501, 2502, 7, 16, 0, 0, 2502, 434, 1, 0, 0, 0, 2503, 2504, 7, 11, 0, 0, 2504, 2505, 7, 19, 0, 0, 2505, 2506, 7, 13, 0, 0, 2506, 2507, 7, 13, 0, 0, 2507, 436, 1, 0, 0, 0, 2508, 2509, 7, 11, 0, 0, 2509, 2510, 7, 19, 0, 0, 2510, 2511, 7, 13, 0, 0, 2511, 2512, 7, 13, 0, 0, 2512, 2513, 7, 18, 0, 0, 2513, 438, 1, 0, 0, 0, 2514, 2515, 7, 2, 0, 0, 2515, 2516, 7, 12, 0, 0, 2516, 440, 1, 0, 0, 0, 2517, 2518, 7, 2, 0, 0, 2518, 2519, 7, 12, 0, 0, 2519, 2520, 7, 12, 0, 0, 2520, 2521, 7, 13, 0, 0, 2521, 2522, 7, 6, 0, 0, 2522, 2523, 7, 11, 0, 0, 2523, 2524, 7, 8, 0, 0, 2524, 442, 1, 0, 0, 0, 2525, 2526, 7, 2, 0, 0, 2526, 2527, 7, 12, 0, 0, 2527, 2528, 7, 12, 0, 0, 2528, 2529, 7, 18, 0, 0, 2529, 2530, 7, 8, 0, 0, 2530, 2531, 7, 4, 0, 0, 2531, 444, 1, 0, 0, 0, 2532, 2533, 7, 2, 0, 0, 2533, 2534, 7, 11, 0, 0, 2534, 446, 1, 0, 0, 0, 2535, 2536, 7, 2, 0, 0, 2536, 2537, 7, 11, 0, 0, 2537, 2538, 7, 13, 0, 0, 2538, 2539, 7, 14, 0, 0, 2539, 448, 1, 0, 0, 0, 2540, 2541, 7, 2, 0, 0, 2541, 2542, 7, 16, 0, 0, 2542, 2543, 7, 8, 0, 0, 2543, 2544, 7, 3, 0, 0, 2544, 2545, 7, 0, 0, 0, 2545, 2546, 7, 4, 0, 0, 2546, 2547, 7, 2, 0, 0, 2547, 2548, 7, 3, 0, 0, 2548, 450, 1, 0, 0, 0, 2549, 2550, 7, 2, 0, 0, 2550, 2551, 7, 16, 0, 0, 2551, 2552, 7, 4, 0, 0, 2552, 2553, 7, 6, 0, 0, 2553, 2554, 7, 2, 0, 0, 2554, 2555, 7, 11, 0, 0, 2555, 452, 1, 0, 0, 0, 2556, 2557, 7, 2, 0, 0, 2557, 2558, 7, 3, 0, 0, 2558, 454, 1, 0, 0, 0, 2559, 2560, 7, 2, 0, 0, 2560, 2561, 7, 3, 0, 0, 2561, 2562, 7, 9, 0, 0, 2562, 2563, 7, 8, 0, 0, 2563, 2564, 7, 3, 0, 0, 2564, 456, 1, 0, 0, 0, 2565, 2566, 7, 2, 0, 0, 2566, 2567, 7, 19, 0, 0, 2567, 2568, 7, 4, 0, 0, 2568, 458, 1, 0, 0, 0, 2569, 2570, 7, 2, 0, 0, 2570, 2571, 7, 19, 0, 0, 2571, 2572, 7, 4, 0, 0, 2572, 2573, 7, 8, 0, 0, 2573, 2574, 7, 3, 0, 0, 2574, 460, 1, 0, 0, 0, 2575, 2576, 7, 2, 0, 0, 2576, 2577, 7, 19, 0, 0, 2577, 2578, 7, 4, 0, 0, 2578, 2579, 7, 16, 0, 0, 2579, 2580, 7, 19, 0, 0, 2580, 2581, 7, 4, 0, 0, 2581, 2582, 7, 9, 0, 0, 2582, 2583, 7, 3, 0, 0, 2583, 2584, 7, 6, 0, 0, 2584, 2585, 7, 7, 0, 0, 2585, 2586, 7, 8, 0, 0, 2586, 2587, 7, 3, 0, 0, 2587, 462, 1, 0, 0, 0, 2588, 2589, 7, 2, 0, 0, 2589, 2590, 7, 19, 0, 0, 2590, 2591, 7, 4, 0, 0, 2591, 2592, 7, 16, 0, 0, 2592, 2593, 7, 19, 0, 0, 2593, 2594, 7, 4, 0, 0, 2594, 2595, 7, 12, 0, 0, 2595, 2596, 7, 2, 0, 0, 2596, 2597, 7, 3, 0, 0, 2597, 2598, 7, 10, 0, 0, 2598, 2599, 7, 0, 0, 0, 2599, 2600, 7, 4, 0, 0, 2600, 464, 1, 0, 0, 0, 2601, 2602, 7, 2, 0, 0, 2602, 2603, 7, 7, 0, 0, 2603, 2604, 7, 8, 0, 0, 2604, 2605, 7, 3, 0, 0, 2605, 466, 1, 0, 0, 0, 2606, 2607, 7, 2, 0, 0, 2607, 2608, 7, 7, 0, 0, 2608, 2609, 7, 8, 0, 0, 2609, 2610, 7, 3, 0, 0, 2610, 2611, 7, 20, 0, 0, 2611, 2612, 7, 3, 0, 0, 2612, 2613, 7, 6, 0, 0, 2613, 2614, 7, 4, 0, 0, 2614, 2615, 7, 8, 0, 0, 2615, 468, 1, 0, 0, 0, 2616, 2617, 7, 2, 0, 0, 2617, 2618, 7, 20, 0, 0, 2618, 2619, 7, 11, 0, 0, 2619, 2620, 7, 8, 0, 0, 2620, 2621, 7, 3, 0, 0, 2621, 470, 1, 0, 0, 0, 2622, 2623, 7, 16, 0, 0, 2623, 2624, 7, 0, 0, 0, 2624, 2625, 7, 3, 0, 0, 2625, 2626, 7, 4, 0, 0, 2626, 2627, 7, 6, 0, 0, 2627, 2628, 7, 4, 0, 0, 2628, 2629, 7, 6, 0, 0, 2629, 2630, 7, 2, 0, 0, 2630, 2631, 7, 11, 0, 0, 2631, 472, 1, 0, 0, 0, 2632, 2633, 7, 16, 0, 0, 2633, 2634, 7, 0, 0, 0, 2634, 2635, 7, 3, 0, 0, 2635, 2636, 7, 4, 0, 0, 2636, 2637, 7, 6, 0, 0, 2637, 2638, 7, 4, 0, 0, 2638, 2639, 7, 6, 0, 0, 2639, 2640, 7, 2, 0, 0, 2640, 2641, 7, 11, 0, 0, 2641, 2642, 7, 8, 0, 0, 2642, 2643, 7, 9, 0, 0, 2643, 474, 1, 0, 0, 0, 2644, 2645, 7, 16, 0, 0, 2645, 2646, 7, 0, 0, 0, 2646, 2647, 7, 3, 0, 0, 2647, 2648, 7, 4, 0, 0, 2648, 2649, 7, 6, 0, 0, 2649, 2650, 7, 4, 0, 0, 2650, 2651, 7, 6, 0, 0, 2651, 2652, 7, 2, 0, 0, 2652, 2653, 7, 11, 0, 0, 2653, 2654, 7, 18, 0, 0, 2654, 476, 1, 0, 0, 0, 2655, 2656, 7, 16, 0, 0, 2656, 2657, 7, 0, 0, 0, 2657, 2658, 7, 4, 0, 0, 2658, 2659, 7, 17, 0, 0, 2659, 478, 1, 0, 0, 0, 2660, 2661, 7, 16, 0, 0, 2661, 2662, 7, 8, 0, 0, 2662, 2663, 7, 3, 0, 0, 2663, 2664, 7, 5, 0, 0, 2664, 2665, 7, 8, 0, 0, 2665, 2666, 7, 11, 0, 0, 2666, 2667, 7, 4, 0, 0, 2667, 480, 1, 0, 0, 0, 2668, 2669, 7, 16, 0, 0, 2669, 2670, 7, 22, 0, 0, 2670, 2671, 7, 12, 0, 0, 2671, 2672, 7, 22, 0, 0, 2672, 2673, 5, 95, 0, 0, 2673, 2674, 7, 24, 0, 0, 2674, 2675, 7, 2, 0, 0, 2675, 2676, 7, 6, 0, 0, 2676, 2677, 7, 11, 0, 0, 2677, 482, 1, 0, 0, 0, 2678, 2679, 7, 16, 0, 0, 2679, 2680, 7, 13, 0, 0, 2680, 2681, 7, 0, 0, 0, 2681, 2682, 7, 11, 0, 0, 2682, 484, 1, 0, 0, 0, 2683, 2684, 7, 16, 0, 0, 2684, 2685, 7, 13, 0, 0, 2685, 2686, 7, 0, 0, 0, 2686, 2687, 7, 11, 0, 0, 2687, 2688, 7, 18, 0, 0, 2688, 486, 1, 0, 0, 0, 2689, 2690, 7, 16, 0, 0, 2690, 2691, 7, 13, 0, 0, 2691, 2692, 7, 19, 0, 0, 2692, 2693, 7, 18, 0, 0, 2693, 488, 1, 0, 0, 0, 2694, 2695, 7, 16, 0, 0, 2695, 2696, 7, 2, 0, 0, 2696, 2697, 7, 2, 0, 0, 2697, 2698, 7, 13, 0, 0, 2698, 490, 1, 0, 0, 0, 2699, 2700, 7, 16, 0, 0, 2700, 2701, 7, 3, 0, 0, 2701, 2702, 7, 8, 0, 0, 2702, 2703, 7, 5, 0, 0, 2703, 2704, 7, 8, 0, 0, 2704, 2705, 7, 9, 0, 0, 2705, 2706, 7, 6, 0, 0, 2706, 2707, 7, 11, 0, 0, 2707, 2708, 7, 21, 0, 0, 2708, 492, 1, 0, 0, 0, 2709, 2710, 7, 16, 0, 0, 2710, 2711, 7, 3, 0, 0, 2711, 2712, 7, 8, 0, 0, 2712, 2713, 7, 5, 0, 0, 2713, 2714, 7, 6, 0, 0, 2714, 2715, 7, 18, 0, 0, 2715, 2716, 7, 6, 0, 0, 2716, 2717, 7, 2, 0, 0, 2717, 2718, 7, 11, 0, 0, 2718, 494, 1, 0, 0, 0, 2719, 2720, 7, 16, 0, 0, 2720, 2721, 7, 3, 0, 0, 2721, 2722, 7, 8, 0, 0, 2722, 2723, 7, 16, 0, 0, 2723, 2724, 7, 0, 0, 0, 2724, 2725, 7, 3, 0, 0, 2725, 2726, 7, 8, 0, 0, 2726, 496, 1, 0, 0, 0, 2727, 2728, 7, 16, 0, 0, 2728, 2729, 7, 3, 0, 0, 2729, 2730, 7, 8, 0, 0, 2730, 2731, 7, 18, 0, 0, 2731, 2732, 7, 8, 0, 0, 2732, 2733, 7, 3, 0, 0, 2733, 2734, 7, 7, 0, 0, 2734, 2735, 7, 8, 0, 0, 2735, 498, 1, 0, 0, 0, 2736, 2737, 7, 16, 0, 0, 2737, 2738, 7, 3, 0, 0, 2738, 2739, 7, 6, 0, 0, 2739, 2740, 7, 10, 0, 0, 2740, 2741, 7, 0, 0, 0, 2741, 2742, 7, 3, 0, 0, 2742, 2743, 7, 14, 0, 0, 2743, 500, 1, 0, 0, 0, 2744, 2745, 7, 16, 0, 0, 2745, 2746, 7, 3, 0, 0, 2746, 2747, 7, 6, 0, 0, 2747, 2748, 7, 11, 0, 0, 2748, 2749, 7, 5, 0, 0, 2749, 2750, 7, 6, 0, 0, 2750, 2751, 7, 16, 0, 0, 2751, 2752, 7, 0, 0, 0, 2752, 2753, 7, 13, 0, 0, 2753, 2754, 7, 18, 0, 0, 2754, 502, 1, 0, 0, 0, 2755, 2756, 7, 16, 0, 0, 2756, 2757, 7, 3, 0, 0, 2757, 2758, 7, 2, 0, 0, 2758, 2759, 7, 5, 0, 0, 2759, 2760, 7, 8, 0, 0, 2760, 2761, 7, 9, 0, 0, 2761, 2762, 7, 19, 0, 0, 2762, 2763, 7, 3, 0, 0, 2763, 2764, 7, 8, 0, 0, 2764, 504, 1, 0, 0, 0, 2765, 2766, 7, 16, 0, 0, 2766, 2767, 7, 3, 0, 0, 2767, 2768, 7, 2, 0, 0, 2768, 2769, 7, 4, 0, 0, 2769, 2770, 7, 8, 0, 0, 2770, 2771, 7, 5, 0, 0, 2771, 2772, 7, 4, 0, 0, 2772, 2773, 7, 6, 0, 0, 2773, 2774, 7, 2, 0, 0, 2774, 2775, 7, 11, 0, 0, 2775, 506, 1, 0, 0, 0, 2776, 2777, 7, 16, 0, 0, 2777, 2778, 7, 19, 0, 0, 2778, 2779, 7, 3, 0, 0, 2779, 2780, 7, 21, 0, 0, 2780, 2781, 7, 8, 0, 0, 2781, 508, 1, 0, 0, 0, 2782, 2783, 7, 25, 0, 0, 2783, 2784, 7, 19, 0, 0, 2784, 2785, 7, 0, 0, 0, 2785, 2786, 7, 13, 0, 0, 2786, 2787, 7, 6, 0, 0, 2787, 2788, 7, 12, 0, 0, 2788, 2789, 7, 14, 0, 0, 2789, 510, 1, 0, 0, 0, 2790, 2791, 7, 25, 0, 0, 2791, 2792, 7, 19, 0, 0, 2792, 2793, 7, 0, 0, 0, 2793, 2794, 7, 3, 0, 0, 2794, 2795, 7, 4, 0, 0, 2795, 2796, 7, 8, 0, 0, 2796, 2797, 7, 3, 0, 0, 2797, 512, 1, 0, 0, 0, 2798, 2799, 7, 25, 0, 0, 2799, 2800, 7, 19, 0, 0, 2800, 2801, 7, 8, 0, 0, 2801, 2802, 7, 3, 0, 0, 2802, 2803, 7, 14, 0, 0, 2803, 514, 1, 0, 0, 0, 2804, 2805, 7, 25, 0, 0, 2805, 2806, 7, 19, 0, 0, 2806, 2807, 7, 8, 0, 0, 2807, 2808, 7, 3, 0, 0, 2808, 2809, 7, 14, 0, 0, 2809, 2810, 5, 95, 0, 0, 2810, 2811, 7, 16, 0, 0, 2811, 2812, 7, 0, 0, 0, 2812, 2813, 7, 3, 0, 0, 2813, 2814, 7, 0, 0, 0, 2814, 2815, 7, 13, 0, 0, 2815, 2816, 7, 13, 0, 0, 2816, 2817, 7, 8, 0, 0, 2817, 2818, 7, 13, 0, 0, 2818, 2819, 7, 6, 0, 0, 2819, 2820, 7, 18, 0, 0, 2820, 2821, 7, 10, 0, 0, 2821, 516, 1, 0, 0, 0, 2822, 2823, 7, 3, 0, 0, 2823, 2824, 7, 0, 0, 0, 2824, 2825, 7, 11, 0, 0, 2825, 2826, 7, 21, 0, 0, 2826, 2827, 7, 8, 0, 0, 2827, 518, 1, 0, 0, 0, 2828, 2829, 7, 3, 0, 0, 2829, 2830, 7, 8, 0, 0, 2830, 2831, 7, 0, 0, 0, 2831, 2832, 7, 9, 0, 0, 2832, 520, 1, 0, 0, 0, 2833, 2834, 7, 3, 0, 0, 2834, 2835, 7, 8, 0, 0, 2835, 2836, 7, 0, 0, 0, 2836, 2837, 7, 9, 0, 0, 2837, 2838, 7, 2, 0, 0, 2838, 2839, 7, 11, 0, 0, 2839, 2840, 7, 13, 0, 0, 2840, 2841, 7, 14, 0, 0, 2841, 522, 1, 0, 0, 0, 2842, 2843, 7, 3, 0, 0, 2843, 2844, 7, 8, 0, 0, 2844, 2845, 7, 0, 0, 0, 2845, 2846, 7, 9, 0, 0, 2846, 2847, 7, 18, 0, 0, 2847, 524, 1, 0, 0, 0, 2848, 2849, 7, 3, 0, 0, 2849, 2850, 7, 8, 0, 0, 2850, 2851, 7, 0, 0, 0, 2851, 2852, 7, 13, 0, 0, 2852, 526, 1, 0, 0, 0, 2853, 2854, 7, 3, 0, 0, 2854, 2855, 7, 8, 0, 0, 2855, 2856, 7, 1, 0, 0, 2856, 2857, 7, 19, 0, 0, 2857, 2858, 7, 6, 0, 0, 2858, 2859, 7, 13, 0, 0, 2859, 2860, 7, 9, 0, 0, 2860, 528, 1, 0, 0, 0, 2861, 2862, 7, 3, 0, 0, 2862, 2863, 7, 8, 0, 0, 2863, 2864, 7, 5, 0, 0, 2864, 2865, 7, 2, 0, 0, 2865, 2866, 7, 3, 0, 0, 2866, 2867, 7, 9, 0, 0, 2867, 2868, 7, 3, 0, 0, 2868, 2869, 7, 8, 0, 0, 2869, 2870, 7, 0, 0, 0, 2870, 2871, 7, 9, 0, 0, 2871, 2872, 7, 8, 0, 0, 2872, 2873, 7, 3, 0, 0, 2873, 530, 1, 0, 0, 0, 2874, 2875, 7, 3, 0, 0, 2875, 2876, 7, 8, 0, 0, 2876, 2877, 7, 5, 0, 0, 2877, 2878, 7, 2, 0, 0, 2878, 2879, 7, 3, 0, 0, 2879, 2880, 7, 9, 0, 0, 2880, 2881, 7, 20, 0, 0, 2881, 2882, 7, 3, 0, 0, 2882, 2883, 7, 6, 0, 0, 2883, 2884, 7, 4, 0, 0, 2884, 2885, 7, 8, 0, 0, 2885, 2886, 7, 3, 0, 0, 2886, 532, 1, 0, 0, 0, 2887, 2888, 7, 3, 0, 0, 2888, 2889, 7, 8, 0, 0, 2889, 2890, 7, 9, 0, 0, 2890, 2891, 7, 19, 0, 0, 2891, 2892, 7, 5, 0, 0, 2892, 2893, 7, 8, 0, 0, 2893, 534, 1, 0, 0, 0, 2894, 2895, 7, 3, 0, 0, 2895, 2896, 7, 8, 0, 0, 2896, 2897, 7, 12, 0, 0, 2897, 2898, 7, 8, 0, 0, 2898, 2899, 7, 3, 0, 0, 2899, 2900, 7, 8, 0, 0, 2900, 2901, 7, 11, 0, 0, 2901, 2902, 7, 5, 0, 0, 2902, 2903, 7, 8, 0, 0, 2903, 2904, 7, 18, 0, 0, 2904, 536, 1, 0, 0, 0, 2905, 2906, 7, 3, 0, 0, 2906, 2907, 7, 8, 0, 0, 2907, 2908, 7, 21, 0, 0, 2908, 2909, 7, 8, 0, 0, 2909, 2910, 7, 23, 0, 0, 2910, 2911, 7, 16, 0, 0, 2911, 538, 1, 0, 0, 0, 2912, 2913, 7, 3, 0, 0, 2913, 2914, 7, 8, 0, 0, 2914, 2915, 7, 13, 0, 0, 2915, 2916, 7, 2, 0, 0, 2916, 2917, 7, 0, 0, 0, 2917, 2918, 7, 9, 0, 0, 2918, 540, 1, 0, 0, 0, 2919, 2920, 7, 3, 0, 0, 2920, 2921, 7, 8, 0, 0, 2921, 2922, 7, 13, 0, 0, 2922, 2923, 7, 14, 0, 0, 2923, 542, 1, 0, 0, 0, 2924, 2925, 7, 3, 0, 0, 2925, 2926, 7, 8, 0, 0, 2926, 2927, 7, 10, 0, 0, 2927, 2928, 7, 2, 0, 0, 2928, 2929, 7, 4, 0, 0, 2929, 2930, 7, 8, 0, 0, 2930, 544, 1, 0, 0, 0, 2931, 2932, 7, 3, 0, 0, 2932, 2933, 7, 8, 0, 0, 2933, 2934, 7, 11, 0, 0, 2934, 2935, 7, 0, 0, 0, 2935, 2936, 7, 10, 0, 0, 2936, 2937, 7, 8, 0, 0, 2937, 546, 1, 0, 0, 0, 2938, 2939, 7, 3, 0, 0, 2939, 2940, 7, 8, 0, 0, 2940, 2941, 7, 2, 0, 0, 2941, 2942, 7, 16, 0, 0, 2942, 2943, 7, 4, 0, 0, 2943, 2944, 7, 6, 0, 0, 2944, 2945, 7, 10, 0, 0, 2945, 2946, 7, 6, 0, 0, 2946, 2947, 7, 15, 0, 0, 2947, 2948, 7, 0, 0, 0, 2948, 2949, 7, 4, 0, 0, 2949, 2950, 7, 6, 0, 0, 2950, 2951, 7, 2, 0, 0, 2951, 2952, 7, 11, 0, 0, 2952, 548, 1, 0, 0, 0, 2953, 2954, 7, 3, 0, 0, 2954, 2955, 7, 8, 0, 0, 2955, 2956, 7, 16, 0, 0, 2956, 2957, 7, 0, 0, 0, 2957, 2958, 7, 6, 0, 0, 2958, 2959, 7, 3, 0, 0, 2959, 550, 1, 0, 0, 0, 2960, 2961, 7, 3, 0, 0, 2961, 2962, 7, 8, 0, 0, 2962, 2963, 7, 16, 0, 0, 2963, 2964, 7, 13, 0, 0, 2964, 552, 1, 0, 0, 0, 2965, 2966, 7, 3, 0, 0, 2966, 2967, 7, 8, 0, 0, 2967, 2968, 7, 16, 0, 0, 2968, 2969, 7, 13, 0, 0, 2969, 2970, 7, 0, 0, 0, 2970, 2971, 7, 5, 0, 0, 2971, 2972, 7, 8, 0, 0, 2972, 554, 1, 0, 0, 0, 2973, 2974, 7, 3, 0, 0, 2974, 2975, 7, 8, 0, 0, 2975, 2976, 7, 16, 0, 0, 2976, 2977, 7, 13, 0, 0, 2977, 2978, 7, 6, 0, 0, 2978, 2979, 7, 5, 0, 0, 2979, 2980, 7, 0, 0, 0, 2980, 2981, 7, 4, 0, 0, 2981, 2982, 7, 6, 0, 0, 2982, 2983, 7, 2, 0, 0, 2983, 2984, 7, 11, 0, 0, 2984, 556, 1, 0, 0, 0, 2985, 2986, 7, 3, 0, 0, 2986, 2987, 7, 8, 0, 0, 2987, 2988, 7, 18, 0, 0, 2988, 2989, 7, 2, 0, 0, 2989, 2990, 7, 19, 0, 0, 2990, 2991, 7, 3, 0, 0, 2991, 2992, 7, 5, 0, 0, 2992, 2993, 7, 8, 0, 0, 2993, 558, 1, 0, 0, 0, 2994, 2995, 7, 3, 0, 0, 2995, 2996, 7, 8, 0, 0, 2996, 2997, 7, 18, 0, 0, 2997, 2998, 7, 16, 0, 0, 2998, 2999, 7, 8, 0, 0, 2999, 3000, 7, 5, 0, 0, 3000, 3001, 7, 4, 0, 0, 3001, 560, 1, 0, 0, 0, 3002, 3003, 7, 3, 0, 0, 3003, 3004, 7, 8, 0, 0, 3004, 3005, 7, 18, 0, 0, 3005, 3006, 7, 4, 0, 0, 3006, 3007, 7, 3, 0, 0, 3007, 3008, 7, 6, 0, 0, 3008, 3009, 7, 5, 0, 0, 3009, 3010, 7, 4, 0, 0, 3010, 562, 1, 0, 0, 0, 3011, 3012, 7, 3, 0, 0, 3012, 3013, 7, 8, 0, 0, 3013, 3014, 7, 7, 0, 0, 3014, 3015, 7, 2, 0, 0, 3015, 3016, 7, 22, 0, 0, 3016, 3017, 7, 8, 0, 0, 3017, 564, 1, 0, 0, 0, 3018, 3019, 7, 3, 0, 0, 3019, 3020, 7, 8, 0, 0, 3020, 3021, 7, 20, 0, 0, 3021, 3022, 7, 3, 0, 0, 3022, 3023, 7, 6, 0, 0, 3023, 3024, 7, 4, 0, 0, 3024, 3025, 7, 8, 0, 0, 3025, 566, 1, 0, 0, 0, 3026, 3027, 7, 3, 0, 0, 3027, 3028, 7, 6, 0, 0, 3028, 3029, 7, 21, 0, 0, 3029, 3030, 7, 17, 0, 0, 3030, 3031, 7, 4, 0, 0, 3031, 568, 1, 0, 0, 0, 3032, 3033, 7, 3, 0, 0, 3033, 3034, 7, 13, 0, 0, 3034, 3035, 7, 6, 0, 0, 3035, 3036, 7, 22, 0, 0, 3036, 3037, 7, 8, 0, 0, 3037, 570, 1, 0, 0, 0, 3038, 3039, 7, 3, 0, 0, 3039, 3040, 7, 2, 0, 0, 3040, 3041, 7, 13, 0, 0, 3041, 3042, 7, 8, 0, 0, 3042, 572, 1, 0, 0, 0, 3043, 3044, 7, 3, 0, 0, 3044, 3045, 7, 2, 0, 0, 3045, 3046, 7, 13, 0, 0, 3046, 3047, 7, 8, 0, 0, 3047, 3048, 7, 18, 0, 0, 3048, 574, 1, 0, 0, 0, 3049, 3050, 7, 3, 0, 0, 3050, 3051, 7, 2, 0, 0, 3051, 3052, 7, 13, 0, 0, 3052, 3053, 7, 13, 0, 0, 3053, 3054, 7, 1, 0, 0, 3054, 3055, 7, 0, 0, 0, 3055, 3056, 7, 5, 0, 0, 3056, 3057, 7, 22, 0, 0, 3057, 576, 1, 0, 0, 0, 3058, 3059, 7, 3, 0, 0, 3059, 3060, 7, 2, 0, 0, 3060, 3061, 7, 13, 0, 0, 3061, 3062, 7, 13, 0, 0, 3062, 3063, 7, 19, 0, 0, 3063, 3064, 7, 16, 0, 0, 3064, 578, 1, 0, 0, 0, 3065, 3066, 7, 3, 0, 0, 3066, 3067, 7, 2, 0, 0, 3067, 3068, 7, 20, 0, 0, 3068, 580, 1, 0, 0, 0, 3069, 3070, 7, 3, 0, 0, 3070, 3071, 7, 2, 0, 0, 3071, 3072, 7, 20, 0, 0, 3072, 3073, 7, 18, 0, 0, 3073, 582, 1, 0, 0, 0, 3074, 3075, 7, 18, 0, 0, 3075, 3076, 7, 5, 0, 0, 3076, 3077, 7, 17, 0, 0, 3077, 3078, 7, 8, 0, 0, 3078, 3079, 7, 9, 0, 0, 3079, 3080, 7, 19, 0, 0, 3080, 3081, 7, 13, 0, 0, 3081, 3082, 7, 8, 0, 0, 3082, 3083, 7, 9, 0, 0, 3083, 584, 1, 0, 0, 0, 3084, 3085, 7, 18, 0, 0, 3085, 3086, 7, 5, 0, 0, 3086, 3087, 7, 17, 0, 0, 3087, 3088, 7, 8, 0, 0, 3088, 3089, 7, 9, 0, 0, 3089, 3090, 7, 19, 0, 0, 3090, 3091, 7, 13, 0, 0, 3091, 3092, 7, 6, 0, 0, 3092, 3093, 7, 11, 0, 0, 3093, 3094, 7, 21, 0, 0, 3094, 3095, 5, 95, 0, 0, 3095, 3096, 7, 16, 0, 0, 3096, 3097, 7, 2, 0, 0, 3097, 3098, 7, 13, 0, 0, 3098, 3099, 7, 6, 0, 0, 3099, 3100, 7, 5, 0, 0, 3100, 3101, 7, 14, 0, 0, 3101, 586, 1, 0, 0, 0, 3102, 3103, 7, 18, 0, 0, 3103, 3104, 7, 5, 0, 0, 3104, 3105, 7, 17, 0, 0, 3105, 3106, 7, 8, 0, 0, 3106, 3107, 7, 10, 0, 0, 3107, 3108, 7, 0, 0, 0, 3108, 588, 1, 0, 0, 0, 3109, 3110, 7, 18, 0, 0, 3110, 3111, 7, 5, 0, 0, 3111, 3112, 7, 17, 0, 0, 3112, 3113, 7, 8, 0, 0, 3113, 3114, 7, 10, 0, 0, 3114, 3115, 7, 0, 0, 0, 3115, 3116, 7, 18, 0, 0, 3116, 590, 1, 0, 0, 0, 3117, 3118, 7, 18, 0, 0, 3118, 3119, 7, 8, 0, 0, 3119, 3120, 7, 5, 0, 0, 3120, 3121, 7, 2, 0, 0, 3121, 3122, 7, 11, 0, 0, 3122, 3123, 7, 9, 0, 0, 3123, 592, 1, 0, 0, 0, 3124, 3125, 7, 18, 0, 0, 3125, 3126, 7, 8, 0, 0, 3126, 3127, 7, 5, 0, 0, 3127, 3128, 7, 2, 0, 0, 3128, 3129, 7, 11, 0, 0, 3129, 3130, 7, 9, 0, 0, 3130, 3131, 7, 18, 0, 0, 3131, 594, 1, 0, 0, 0, 3132, 3133, 7, 18, 0, 0, 3133, 3134, 7, 8, 0, 0, 3134, 3135, 7, 13, 0, 0, 3135, 3136, 7, 8, 0, 0, 3136, 3137, 7, 5, 0, 0, 3137, 3138, 7, 4, 0, 0, 3138, 596, 1, 0, 0, 0, 3139, 3140, 7, 18, 0, 0, 3140, 3141, 7, 8, 0, 0, 3141, 3142, 7, 10, 0, 0, 3142, 3143, 7, 6, 0, 0, 3143, 598, 1, 0, 0, 0, 3144, 3145, 7, 18, 0, 0, 3145, 3146, 7, 8, 0, 0, 3146, 3147, 7, 3, 0, 0, 3147, 3148, 7, 9, 0, 0, 3148, 3149, 7, 8, 0, 0, 3149, 600, 1, 0, 0, 0, 3150, 3151, 7, 18, 0, 0, 3151, 3152, 7, 8, 0, 0, 3152, 3153, 7, 3, 0, 0, 3153, 3154, 7, 9, 0, 0, 3154, 3155, 7, 8, 0, 0, 3155, 3156, 7, 16, 0, 0, 3156, 3157, 7, 3, 0, 0, 3157, 3158, 7, 2, 0, 0, 3158, 3159, 7, 16, 0, 0, 3159, 3160, 7, 8, 0, 0, 3160, 3161, 7, 3, 0, 0, 3161, 3162, 7, 4, 0, 0, 3162, 3163, 7, 6, 0, 0, 3163, 3164, 7, 8, 0, 0, 3164, 3165, 7, 18, 0, 0, 3165, 602, 1, 0, 0, 0, 3166, 3167, 7, 18, 0, 0, 3167, 3168, 7, 8, 0, 0, 3168, 3169, 7, 3, 0, 0, 3169, 3170, 7, 7, 0, 0, 3170, 3171, 7, 8, 0, 0, 3171, 3172, 7, 3, 0, 0, 3172, 604, 1, 0, 0, 0, 3173, 3174, 7, 18, 0, 0, 3174, 3175, 7, 8, 0, 0, 3175, 3176, 7, 4, 0, 0, 3176, 606, 1, 0, 0, 0, 3177, 3178, 7, 18, 0, 0, 3178, 3179, 7, 8, 0, 0, 3179, 3180, 7, 4, 0, 0, 3180, 3181, 7, 18, 0, 0, 3181, 608, 1, 0, 0, 0, 3182, 3183, 7, 18, 0, 0, 3183, 3184, 7, 8, 0, 0, 3184, 3185, 7, 4, 0, 0, 3185, 3186, 5, 95, 0, 0, 3186, 3187, 7, 5, 0, 0, 3187, 3188, 7, 19, 0, 0, 3188, 3189, 7, 3, 0, 0, 3189, 3190, 7, 3, 0, 0, 3190, 3191, 7, 8, 0, 0, 3191, 3192, 7, 11, 0, 0, 3192, 3193, 7, 4, 0, 0, 3193, 3194, 5, 95, 0, 0, 3194, 3195, 7, 18, 0, 0, 3195, 3196, 7, 11, 0, 0, 3196, 3197, 7, 0, 0, 0, 3197, 3198, 7, 16, 0, 0, 3198, 3199, 7, 18, 0, 0, 3199, 3200, 7, 17, 0, 0, 3200, 3201, 7, 2, 0, 0, 3201, 3202, 7, 4, 0, 0, 3202, 610, 1, 0, 0, 0, 3203, 3204, 7, 18, 0, 0, 3204, 3205, 7, 17, 0, 0, 3205, 3206, 7, 0, 0, 0, 3206, 3207, 7, 3, 0, 0, 3207, 3208, 7, 8, 0, 0, 3208, 3209, 7, 9, 0, 0, 3209, 612, 1, 0, 0, 0, 3210, 3211, 7, 18, 0, 0, 3211, 3212, 7, 17, 0, 0, 3212, 3213, 7, 2, 0, 0, 3213, 3214, 7, 20, 0, 0, 3214, 614, 1, 0, 0, 0, 3215, 3216, 7, 18, 0, 0, 3216, 3217, 7, 17, 0, 0, 3217, 3218, 7, 2, 0, 0, 3218, 3219, 7, 20, 0, 0, 3219, 3220, 5, 95, 0, 0, 3220, 3221, 7, 9, 0, 0, 3221, 3222, 7, 0, 0, 0, 3222, 3223, 7, 4, 0, 0, 3223, 3224, 7, 0, 0, 0, 3224, 3225, 7, 1, 0, 0, 3225, 3226, 7, 0, 0, 0, 3226, 3227, 7, 18, 0, 0, 3227, 3228, 7, 8, 0, 0, 3228, 616, 1, 0, 0, 0, 3229, 3230, 7, 18, 0, 0, 3230, 3231, 7, 22, 0, 0, 3231, 3232, 7, 8, 0, 0, 3232, 3233, 7, 20, 0, 0, 3233, 3234, 7, 8, 0, 0, 3234, 3235, 7, 9, 0, 0, 3235, 618, 1, 0, 0, 0, 3236, 3237, 7, 18, 0, 0, 3237, 3238, 7, 10, 0, 0, 3238, 3239, 7, 0, 0, 0, 3239, 3240, 7, 13, 0, 0, 3240, 3241, 7, 13, 0, 0, 3241, 3242, 7, 6, 0, 0, 3242, 3243, 7, 11, 0, 0, 3243, 3244, 7, 4, 0, 0, 3244, 620, 1, 0, 0, 0, 3245, 3246, 7, 18, 0, 0, 3246, 3247, 7, 11, 0, 0, 3247, 3248, 7, 0, 0, 0, 3248, 3249, 7, 16, 0, 0, 3249, 3250, 7, 18, 0, 0, 3250, 3251, 7, 17, 0, 0, 3251, 3252, 7, 2, 0, 0, 3252, 3253, 7, 4, 0, 0, 3253, 622, 1, 0, 0, 0, 3254, 3255, 7, 18, 0, 0, 3255, 3256, 7, 2, 0, 0, 3256, 3257, 7, 10, 0, 0, 3257, 3258, 7, 8, 0, 0, 3258, 624, 1, 0, 0, 0, 3259, 3260, 7, 18, 0, 0, 3260, 3261, 7, 2, 0, 0, 3261, 3262, 7, 3, 0, 0, 3262, 3263, 7, 4, 0, 0, 3263, 626, 1, 0, 0, 0, 3264, 3265, 7, 18, 0, 0, 3265, 3266, 7, 2, 0, 0, 3266, 3267, 7, 3, 0, 0, 3267, 3268, 7, 4, 0, 0, 3268, 3269, 7, 8, 0, 0, 3269, 3270, 7, 9, 0, 0, 3270, 628, 1, 0, 0, 0, 3271, 3272, 7, 18, 0, 0, 3272, 3273, 7, 16, 0, 0, 3273, 3274, 7, 8, 0, 0, 3274, 3275, 7, 5, 0, 0, 3275, 630, 1, 0, 0, 0, 3276, 3277, 7, 18, 0, 0, 3277, 3278, 7, 18, 0, 0, 3278, 3279, 7, 13, 0, 0, 3279, 632, 1, 0, 0, 0, 3280, 3281, 7, 18, 0, 0, 3281, 3282, 7, 4, 0, 0, 3282, 3283, 7, 0, 0, 0, 3283, 3284, 7, 3, 0, 0, 3284, 3285, 7, 4, 0, 0, 3285, 634, 1, 0, 0, 0, 3286, 3287, 7, 18, 0, 0, 3287, 3288, 7, 4, 0, 0, 3288, 3289, 7, 0, 0, 0, 3289, 3290, 7, 4, 0, 0, 3290, 3291, 7, 6, 0, 0, 3291, 3292, 7, 18, 0, 0, 3292, 3293, 7, 4, 0, 0, 3293, 3294, 7, 6, 0, 0, 3294, 3295, 7, 5, 0, 0, 3295, 3296, 7, 18, 0, 0, 3296, 636, 1, 0, 0, 0, 3297, 3298, 7, 18, 0, 0, 3298, 3299, 7, 4, 0, 0, 3299, 3300, 7, 0, 0, 0, 3300, 3301, 7, 4, 0, 0, 3301, 3302, 7, 19, 0, 0, 3302, 3303, 7, 18, 0, 0, 3303, 638, 1, 0, 0, 0, 3304, 3305, 7, 18, 0, 0, 3305, 3306, 7, 4, 0, 0, 3306, 3307, 7, 2, 0, 0, 3307, 3308, 7, 3, 0, 0, 3308, 3309, 7, 8, 0, 0, 3309, 3310, 7, 9, 0, 0, 3310, 640, 1, 0, 0, 0, 3311, 3312, 7, 18, 0, 0, 3312, 3313, 7, 4, 0, 0, 3313, 3314, 7, 3, 0, 0, 3314, 3315, 7, 8, 0, 0, 3315, 3316, 7, 0, 0, 0, 3316, 3317, 7, 10, 0, 0, 3317, 3318, 7, 4, 0, 0, 3318, 3319, 7, 0, 0, 0, 3319, 3320, 7, 1, 0, 0, 3320, 3321, 7, 13, 0, 0, 3321, 3322, 7, 8, 0, 0, 3322, 642, 1, 0, 0, 0, 3323, 3324, 7, 18, 0, 0, 3324, 3325, 7, 4, 0, 0, 3325, 3326, 7, 3, 0, 0, 3326, 3327, 7, 6, 0, 0, 3327, 3328, 7, 11, 0, 0, 3328, 3329, 7, 21, 0, 0, 3329, 644, 1, 0, 0, 0, 3330, 3331, 7, 18, 0, 0, 3331, 3332, 7, 4, 0, 0, 3332, 3333, 7, 3, 0, 0, 3333, 3334, 7, 19, 0, 0, 3334, 3335, 7, 5, 0, 0, 3335, 3336, 7, 4, 0, 0, 3336, 646, 1, 0, 0, 0, 3337, 3338, 7, 18, 0, 0, 3338, 3339, 7, 19, 0, 0, 3339, 3340, 7, 10, 0, 0, 3340, 3341, 7, 10, 0, 0, 3341, 3342, 7, 0, 0, 0, 3342, 3343, 7, 3, 0, 0, 3343, 3344, 7, 14, 0, 0, 3344, 648, 1, 0, 0, 0, 3345, 3346, 7, 18, 0, 0, 3346, 3347, 7, 14, 0, 0, 3347, 3348, 7, 11, 0, 0, 3348, 3349, 7, 5, 0, 0, 3349, 650, 1, 0, 0, 0, 3350, 3351, 7, 18, 0, 0, 3351, 3352, 7, 14, 0, 0, 3352, 3353, 7, 18, 0, 0, 3353, 3354, 7, 4, 0, 0, 3354, 3355, 7, 8, 0, 0, 3355, 3356, 7, 10, 0, 0, 3356, 3357, 5, 95, 0, 0, 3357, 3358, 7, 4, 0, 0, 3358, 3359, 7, 6, 0, 0, 3359, 3360, 7, 10, 0, 0, 3360, 3361, 7, 8, 0, 0, 3361, 652, 1, 0, 0, 0, 3362, 3363, 7, 18, 0, 0, 3363, 3364, 7, 14, 0, 0, 3364, 3365, 7, 18, 0, 0, 3365, 3366, 7, 4, 0, 0, 3366, 3367, 7, 8, 0, 0, 3367, 3368, 7, 10, 0, 0, 3368, 3369, 5, 95, 0, 0, 3369, 3370, 7, 7, 0, 0, 3370, 3371, 7, 8, 0, 0, 3371, 3372, 7, 3, 0, 0, 3372, 3373, 7, 18, 0, 0, 3373, 3374, 7, 6, 0, 0, 3374, 3375, 7, 2, 0, 0, 3375, 3376, 7, 11, 0, 0, 3376, 654, 1, 0, 0, 0, 3377, 3378, 7, 4, 0, 0, 3378, 3379, 7, 0, 0, 0, 3379, 3380, 7, 1, 0, 0, 3380, 3381, 7, 13, 0, 0, 3381, 3382, 7, 8, 0, 0, 3382, 656, 1, 0, 0, 0, 3383, 3384, 7, 4, 0, 0, 3384, 3385, 7, 0, 0, 0, 3385, 3386, 7, 1, 0, 0, 3386, 3387, 7, 13, 0, 0, 3387, 3388, 7, 8, 0, 0, 3388, 3389, 7, 18, 0, 0, 3389, 658, 1, 0, 0, 0, 3390, 3391, 7, 4, 0, 0, 3391, 3392, 7, 0, 0, 0, 3392, 3393, 7, 1, 0, 0, 3393, 3394, 7, 13, 0, 0, 3394, 3395, 7, 8, 0, 0, 3395, 3396, 7, 18, 0, 0, 3396, 3397, 7, 0, 0, 0, 3397, 3398, 7, 10, 0, 0, 3398, 3399, 7, 16, 0, 0, 3399, 3400, 7, 13, 0, 0, 3400, 3401, 7, 8, 0, 0, 3401, 660, 1, 0, 0, 0, 3402, 3403, 7, 4, 0, 0, 3403, 3404, 7, 1, 0, 0, 3404, 3405, 7, 13, 0, 0, 3405, 3406, 7, 16, 0, 0, 3406, 3407, 7, 3, 0, 0, 3407, 3408, 7, 2, 0, 0, 3408, 3409, 7, 16, 0, 0, 3409, 3410, 7, 8, 0, 0, 3410, 3411, 7, 3, 0, 0, 3411, 3412, 7, 4, 0, 0, 3412, 3413, 7, 6, 0, 0, 3413, 3414, 7, 8, 0, 0, 3414, 3415, 7, 18, 0, 0, 3415, 662, 1, 0, 0, 0, 3416, 3417, 7, 4, 0, 0, 3417, 3418, 7, 8, 0, 0, 3418, 3419, 7, 10, 0, 0, 3419, 3420, 7, 16, 0, 0, 3420, 3421, 7, 2, 0, 0, 3421, 3422, 7, 3, 0, 0, 3422, 3423, 7, 0, 0, 0, 3423, 3424, 7, 3, 0, 0, 3424, 3425, 7, 14, 0, 0, 3425, 664, 1, 0, 0, 0, 3426, 3427, 7, 4, 0, 0, 3427, 3428, 7, 8, 0, 0, 3428, 3429, 7, 3, 0, 0, 3429, 3430, 7, 10, 0, 0, 3430, 3431, 7, 6, 0, 0, 3431, 3432, 7, 11, 0, 0, 3432, 3433, 7, 0, 0, 0, 3433, 3434, 7, 4, 0, 0, 3434, 3435, 7, 8, 0, 0, 3435, 3436, 7, 9, 0, 0, 3436, 666, 1, 0, 0, 0, 3437, 3438, 7, 4, 0, 0, 3438, 3439, 7, 17, 0, 0, 3439, 3440, 7, 8, 0, 0, 3440, 3441, 7, 11, 0, 0, 3441, 668, 1, 0, 0, 0, 3442, 3443, 7, 4, 0, 0, 3443, 3444, 7, 6, 0, 0, 3444, 3445, 7, 10, 0, 0, 3445, 3446, 7, 8, 0, 0, 3446, 670, 1, 0, 0, 0, 3447, 3448, 7, 4, 0, 0, 3448, 3449, 7, 6, 0, 0, 3449, 3450, 7, 10, 0, 0, 3450, 3451, 7, 8, 0, 0, 3451, 3452, 7, 18, 0, 0, 3452, 3453, 7, 4, 0, 0, 3453, 3454, 7, 0, 0, 0, 3454, 3455, 7, 10, 0, 0, 3455, 3456, 7, 16, 0, 0, 3456, 672, 1, 0, 0, 0, 3457, 3458, 7, 4, 0, 0, 3458, 3459, 7, 6, 0, 0, 3459, 3460, 7, 10, 0, 0, 3460, 3461, 7, 8, 0, 0, 3461, 3462, 7, 18, 0, 0, 3462, 3463, 7, 4, 0, 0, 3463, 3464, 7, 0, 0, 0, 3464, 3465, 7, 10, 0, 0, 3465, 3466, 7, 16, 0, 0, 3466, 3467, 7, 13, 0, 0, 3467, 3468, 7, 2, 0, 0, 3468, 3469, 7, 5, 0, 0, 3469, 3470, 7, 0, 0, 0, 3470, 3471, 7, 13, 0, 0, 3471, 3472, 7, 4, 0, 0, 3472, 3473, 7, 15, 0, 0, 3473, 674, 1, 0, 0, 0, 3474, 3475, 7, 4, 0, 0, 3475, 3476, 7, 6, 0, 0, 3476, 3477, 7, 10, 0, 0, 3477, 3478, 7, 8, 0, 0, 3478, 3479, 7, 18, 0, 0, 3479, 3480, 7, 4, 0, 0, 3480, 3481, 7, 0, 0, 0, 3481, 3482, 7, 10, 0, 0, 3482, 3483, 7, 16, 0, 0, 3483, 3484, 7, 4, 0, 0, 3484, 3485, 7, 15, 0, 0, 3485, 676, 1, 0, 0, 0, 3486, 3487, 7, 4, 0, 0, 3487, 3488, 7, 6, 0, 0, 3488, 3489, 7, 11, 0, 0, 3489, 3490, 7, 14, 0, 0, 3490, 3491, 7, 6, 0, 0, 3491, 3492, 7, 11, 0, 0, 3492, 3493, 7, 4, 0, 0, 3493, 678, 1, 0, 0, 0, 3494, 3495, 7, 4, 0, 0, 3495, 3496, 7, 2, 0, 0, 3496, 680, 1, 0, 0, 0, 3497, 3498, 7, 4, 0, 0, 3498, 3499, 7, 2, 0, 0, 3499, 3500, 7, 19, 0, 0, 3500, 3501, 7, 5, 0, 0, 3501, 3502, 7, 17, 0, 0, 3502, 682, 1, 0, 0, 0, 3503, 3504, 7, 4, 0, 0, 3504, 3505, 7, 3, 0, 0, 3505, 3506, 7, 0, 0, 0, 3506, 3507, 7, 6, 0, 0, 3507, 3508, 7, 13, 0, 0, 3508, 3509, 7, 6, 0, 0, 3509, 3510, 7, 11, 0, 0, 3510, 3511, 7, 21, 0, 0, 3511, 684, 1, 0, 0, 0, 3512, 3513, 7, 4, 0, 0, 3513, 3514, 7, 3, 0, 0, 3514, 3515, 7, 0, 0, 0, 3515, 3516, 7, 11, 0, 0, 3516, 3517, 7, 18, 0, 0, 3517, 3518, 7, 0, 0, 0, 3518, 3519, 7, 5, 0, 0, 3519, 3520, 7, 4, 0, 0, 3520, 3521, 7, 6, 0, 0, 3521, 3522, 7, 2, 0, 0, 3522, 3523, 7, 11, 0, 0, 3523, 686, 1, 0, 0, 0, 3524, 3525, 7, 4, 0, 0, 3525, 3526, 7, 3, 0, 0, 3526, 3527, 7, 0, 0, 0, 3527, 3528, 7, 11, 0, 0, 3528, 3529, 7, 18, 0, 0, 3529, 3530, 7, 0, 0, 0, 3530, 3531, 7, 5, 0, 0, 3531, 3532, 7, 4, 0, 0, 3532, 3533, 7, 6, 0, 0, 3533, 3534, 7, 2, 0, 0, 3534, 3535, 7, 11, 0, 0, 3535, 3536, 7, 0, 0, 0, 3536, 3537, 7, 13, 0, 0, 3537, 688, 1, 0, 0, 0, 3538, 3539, 7, 4, 0, 0, 3539, 3540, 7, 3, 0, 0, 3540, 3541, 7, 0, 0, 0, 3541, 3542, 7, 11, 0, 0, 3542, 3543, 7, 18, 0, 0, 3543, 3544, 7, 0, 0, 0, 3544, 3545, 7, 5, 0, 0, 3545, 3546, 7, 4, 0, 0, 3546, 3547, 7, 6, 0, 0, 3547, 3548, 7, 2, 0, 0, 3548, 3549, 7, 11, 0, 0, 3549, 3550, 7, 18, 0, 0, 3550, 690, 1, 0, 0, 0, 3551, 3552, 7, 4, 0, 0, 3552, 3553, 7, 3, 0, 0, 3553, 3554, 7, 0, 0, 0, 3554, 3555, 7, 11, 0, 0, 3555, 3556, 7, 18, 0, 0, 3556, 3557, 7, 12, 0, 0, 3557, 3558, 7, 2, 0, 0, 3558, 3559, 7, 3, 0, 0, 3559, 3560, 7, 10, 0, 0, 3560, 692, 1, 0, 0, 0, 3561, 3562, 7, 4, 0, 0, 3562, 3563, 7, 3, 0, 0, 3563, 3564, 7, 6, 0, 0, 3564, 3565, 7, 21, 0, 0, 3565, 3566, 7, 21, 0, 0, 3566, 3567, 7, 8, 0, 0, 3567, 3568, 7, 3, 0, 0, 3568, 694, 1, 0, 0, 0, 3569, 3570, 7, 4, 0, 0, 3570, 3571, 7, 3, 0, 0, 3571, 3572, 7, 6, 0, 0, 3572, 3573, 7, 10, 0, 0, 3573, 696, 1, 0, 0, 0, 3574, 3575, 7, 4, 0, 0, 3575, 3576, 7, 3, 0, 0, 3576, 3577, 7, 19, 0, 0, 3577, 3578, 7, 8, 0, 0, 3578, 698, 1, 0, 0, 0, 3579, 3580, 7, 4, 0, 0, 3580, 3581, 7, 3, 0, 0, 3581, 3582, 7, 19, 0, 0, 3582, 3583, 7, 11, 0, 0, 3583, 3584, 7, 5, 0, 0, 3584, 3585, 7, 0, 0, 0, 3585, 3586, 7, 4, 0, 0, 3586, 3587, 7, 8, 0, 0, 3587, 700, 1, 0, 0, 0, 3588, 3589, 7, 4, 0, 0, 3589, 3590, 7, 14, 0, 0, 3590, 3591, 7, 16, 0, 0, 3591, 3592, 7, 8, 0, 0, 3592, 702, 1, 0, 0, 0, 3593, 3594, 7, 19, 0, 0, 3594, 3595, 7, 11, 0, 0, 3595, 3596, 7, 0, 0, 0, 3596, 3597, 7, 3, 0, 0, 3597, 3598, 7, 5, 0, 0, 3598, 3599, 7, 17, 0, 0, 3599, 3600, 7, 6, 0, 0, 3600, 3601, 7, 7, 0, 0, 3601, 3602, 7, 8, 0, 0, 3602, 704, 1, 0, 0, 0, 3603, 3604, 7, 19, 0, 0, 3604, 3605, 7, 11, 0, 0, 3605, 3606, 7, 1, 0, 0, 3606, 3607, 7, 2, 0, 0, 3607, 3608, 7, 19, 0, 0, 3608, 3609, 7, 11, 0, 0, 3609, 3610, 7, 9, 0, 0, 3610, 3611, 7, 8, 0, 0, 3611, 3612, 7, 9, 0, 0, 3612, 706, 1, 0, 0, 0, 3613, 3614, 7, 19, 0, 0, 3614, 3615, 7, 11, 0, 0, 3615, 3616, 7, 9, 0, 0, 3616, 3617, 7, 2, 0, 0, 3617, 708, 1, 0, 0, 0, 3618, 3619, 7, 19, 0, 0, 3619, 3620, 7, 11, 0, 0, 3620, 3621, 7, 6, 0, 0, 3621, 3622, 7, 2, 0, 0, 3622, 3623, 7, 11, 0, 0, 3623, 710, 1, 0, 0, 0, 3624, 3625, 7, 19, 0, 0, 3625, 3626, 7, 11, 0, 0, 3626, 3627, 7, 6, 0, 0, 3627, 3628, 7, 2, 0, 0, 3628, 3629, 7, 11, 0, 0, 3629, 3630, 7, 4, 0, 0, 3630, 3631, 7, 14, 0, 0, 3631, 3632, 7, 16, 0, 0, 3632, 3633, 7, 8, 0, 0, 3633, 712, 1, 0, 0, 0, 3634, 3635, 7, 19, 0, 0, 3635, 3636, 7, 11, 0, 0, 3636, 3637, 7, 6, 0, 0, 3637, 3638, 7, 25, 0, 0, 3638, 3639, 7, 19, 0, 0, 3639, 3640, 7, 8, 0, 0, 3640, 714, 1, 0, 0, 0, 3641, 3642, 7, 19, 0, 0, 3642, 3643, 7, 11, 0, 0, 3643, 3644, 7, 6, 0, 0, 3644, 3645, 7, 25, 0, 0, 3645, 3646, 7, 19, 0, 0, 3646, 3647, 7, 8, 0, 0, 3647, 3648, 7, 24, 0, 0, 3648, 3649, 7, 2, 0, 0, 3649, 3650, 7, 6, 0, 0, 3650, 3651, 7, 11, 0, 0, 3651, 716, 1, 0, 0, 0, 3652, 3653, 7, 19, 0, 0, 3653, 3654, 7, 11, 0, 0, 3654, 3655, 7, 22, 0, 0, 3655, 3656, 7, 11, 0, 0, 3656, 3657, 7, 2, 0, 0, 3657, 3658, 7, 20, 0, 0, 3658, 3659, 7, 11, 0, 0, 3659, 718, 1, 0, 0, 0, 3660, 3661, 7, 19, 0, 0, 3661, 3662, 7, 11, 0, 0, 3662, 3663, 7, 13, 0, 0, 3663, 3664, 7, 2, 0, 0, 3664, 3665, 7, 5, 0, 0, 3665, 3666, 7, 22, 0, 0, 3666, 720, 1, 0, 0, 0, 3667, 3668, 7, 19, 0, 0, 3668, 3669, 7, 11, 0, 0, 3669, 3670, 7, 10, 0, 0, 3670, 3671, 7, 0, 0, 0, 3671, 3672, 7, 11, 0, 0, 3672, 3673, 7, 0, 0, 0, 3673, 3674, 7, 21, 0, 0, 3674, 3675, 7, 8, 0, 0, 3675, 3676, 7, 9, 0, 0, 3676, 722, 1, 0, 0, 0, 3677, 3678, 7, 19, 0, 0, 3678, 3679, 7, 11, 0, 0, 3679, 3680, 7, 18, 0, 0, 3680, 3681, 7, 8, 0, 0, 3681, 3682, 7, 4, 0, 0, 3682, 724, 1, 0, 0, 0, 3683, 3684, 7, 19, 0, 0, 3684, 3685, 7, 11, 0, 0, 3685, 3686, 7, 18, 0, 0, 3686, 3687, 7, 6, 0, 0, 3687, 3688, 7, 21, 0, 0, 3688, 3689, 7, 11, 0, 0, 3689, 3690, 7, 8, 0, 0, 3690, 3691, 7, 9, 0, 0, 3691, 726, 1, 0, 0, 0, 3692, 3693, 7, 19, 0, 0, 3693, 3694, 7, 16, 0, 0, 3694, 3695, 7, 9, 0, 0, 3695, 3696, 7, 0, 0, 0, 3696, 3697, 7, 4, 0, 0, 3697, 3698, 7, 8, 0, 0, 3698, 728, 1, 0, 0, 0, 3699, 3700, 7, 19, 0, 0, 3700, 3701, 7, 3, 0, 0, 3701, 3702, 7, 6, 0, 0, 3702, 730, 1, 0, 0, 0, 3703, 3704, 7, 19, 0, 0, 3704, 3705, 7, 3, 0, 0, 3705, 3706, 7, 13, 0, 0, 3706, 732, 1, 0, 0, 0, 3707, 3708, 7, 19, 0, 0, 3708, 3709, 7, 18, 0, 0, 3709, 3710, 7, 8, 0, 0, 3710, 734, 1, 0, 0, 0, 3711, 3712, 7, 19, 0, 0, 3712, 3713, 7, 18, 0, 0, 3713, 3714, 7, 8, 0, 0, 3714, 3715, 7, 3, 0, 0, 3715, 736, 1, 0, 0, 0, 3716, 3717, 7, 19, 0, 0, 3717, 3718, 7, 18, 0, 0, 3718, 3719, 7, 6, 0, 0, 3719, 3720, 7, 11, 0, 0, 3720, 3721, 7, 21, 0, 0, 3721, 738, 1, 0, 0, 0, 3722, 3723, 7, 19, 0, 0, 3723, 3724, 7, 4, 0, 0, 3724, 3725, 7, 5, 0, 0, 3725, 740, 1, 0, 0, 0, 3726, 3727, 7, 19, 0, 0, 3727, 3728, 7, 4, 0, 0, 3728, 3729, 7, 5, 0, 0, 3729, 3730, 5, 95, 0, 0, 3730, 3731, 7, 4, 0, 0, 3731, 3732, 7, 10, 0, 0, 3732, 3733, 7, 8, 0, 0, 3733, 3734, 7, 18, 0, 0, 3734, 3735, 7, 4, 0, 0, 3735, 3736, 7, 0, 0, 0, 3736, 3737, 7, 10, 0, 0, 3737, 3738, 7, 16, 0, 0, 3738, 742, 1, 0, 0, 0, 3739, 3740, 7, 7, 0, 0, 3740, 3741, 7, 0, 0, 0, 3741, 3742, 7, 13, 0, 0, 3742, 3743, 7, 6, 0, 0, 3743, 3744, 7, 9, 0, 0, 3744, 3745, 7, 0, 0, 0, 3745, 3746, 7, 4, 0, 0, 3746, 3747, 7, 8, 0, 0, 3747, 744, 1, 0, 0, 0, 3748, 3749, 7, 7, 0, 0, 3749, 3750, 7, 0, 0, 0, 3750, 3751, 7, 13, 0, 0, 3751, 3752, 7, 19, 0, 0, 3752, 3753, 7, 8, 0, 0, 3753, 3754, 7, 18, 0, 0, 3754, 746, 1, 0, 0, 0, 3755, 3756, 5, 36, 0, 0, 3756, 3757, 7, 7, 0, 0, 3757, 3758, 7, 0, 0, 0, 3758, 3759, 7, 13, 0, 0, 3759, 3760, 7, 19, 0, 0, 3760, 3761, 7, 8, 0, 0, 3761, 3762, 5, 36, 0, 0, 3762, 748, 1, 0, 0, 0, 3763, 3764, 7, 7, 0, 0, 3764, 3765, 7, 0, 0, 0, 3765, 3766, 7, 3, 0, 0, 3766, 3767, 7, 5, 0, 0, 3767, 3768, 7, 17, 0, 0, 3768, 3769, 7, 0, 0, 0, 3769, 3770, 7, 3, 0, 0, 3770, 750, 1, 0, 0, 0, 3771, 3772, 7, 7, 0, 0, 3772, 3773, 7, 8, 0, 0, 3773, 3774, 7, 5, 0, 0, 3774, 3775, 7, 4, 0, 0, 3775, 3776, 7, 2, 0, 0, 3776, 3777, 7, 3, 0, 0, 3777, 3778, 7, 6, 0, 0, 3778, 3779, 7, 15, 0, 0, 3779, 3780, 7, 0, 0, 0, 3780, 3781, 7, 4, 0, 0, 3781, 3782, 7, 6, 0, 0, 3782, 3783, 7, 2, 0, 0, 3783, 3784, 7, 11, 0, 0, 3784, 752, 1, 0, 0, 0, 3785, 3786, 7, 7, 0, 0, 3786, 3787, 7, 6, 0, 0, 3787, 3788, 7, 8, 0, 0, 3788, 3789, 7, 20, 0, 0, 3789, 754, 1, 0, 0, 0, 3790, 3791, 7, 7, 0, 0, 3791, 3792, 7, 6, 0, 0, 3792, 3793, 7, 8, 0, 0, 3793, 3794, 7, 20, 0, 0, 3794, 3795, 7, 18, 0, 0, 3795, 756, 1, 0, 0, 0, 3796, 3797, 7, 20, 0, 0, 3797, 3798, 7, 0, 0, 0, 3798, 3799, 7, 6, 0, 0, 3799, 3800, 7, 4, 0, 0, 3800, 758, 1, 0, 0, 0, 3801, 3802, 7, 20, 0, 0, 3802, 3803, 7, 8, 0, 0, 3803, 3804, 7, 8, 0, 0, 3804, 3805, 7, 22, 0, 0, 3805, 760, 1, 0, 0, 0, 3806, 3807, 7, 20, 0, 0, 3807, 3808, 7, 8, 0, 0, 3808, 3809, 7, 8, 0, 0, 3809, 3810, 7, 22, 0, 0, 3810, 3811, 7, 18, 0, 0, 3811, 762, 1, 0, 0, 0, 3812, 3813, 7, 20, 0, 0, 3813, 3814, 7, 17, 0, 0, 3814, 3815, 7, 8, 0, 0, 3815, 3816, 7, 11, 0, 0, 3816, 764, 1, 0, 0, 0, 3817, 3818, 7, 20, 0, 0, 3818, 3819, 7, 17, 0, 0, 3819, 3820, 7, 8, 0, 0, 3820, 3821, 7, 3, 0, 0, 3821, 3822, 7, 8, 0, 0, 3822, 766, 1, 0, 0, 0, 3823, 3824, 7, 20, 0, 0, 3824, 3825, 7, 17, 0, 0, 3825, 3826, 7, 6, 0, 0, 3826, 3827, 7, 13, 0, 0, 3827, 3828, 7, 8, 0, 0, 3828, 768, 1, 0, 0, 0, 3829, 3830, 7, 20, 0, 0, 3830, 3831, 7, 6, 0, 0, 3831, 3832, 7, 11, 0, 0, 3832, 3833, 7, 9, 0, 0, 3833, 3834, 7, 2, 0, 0, 3834, 3835, 7, 20, 0, 0, 3835, 770, 1, 0, 0, 0, 3836, 3837, 7, 20, 0, 0, 3837, 3838, 7, 6, 0, 0, 3838, 3839, 7, 4, 0, 0, 3839, 3840, 7, 17, 0, 0, 3840, 772, 1, 0, 0, 0, 3841, 3842, 7, 20, 0, 0, 3842, 3843, 7, 6, 0, 0, 3843, 3844, 7, 4, 0, 0, 3844, 3845, 7, 17, 0, 0, 3845, 3846, 7, 6, 0, 0, 3846, 3847, 7, 11, 0, 0, 3847, 774, 1, 0, 0, 0, 3848, 3849, 7, 20, 0, 0, 3849, 3850, 7, 2, 0, 0, 3850, 3851, 7, 3, 0, 0, 3851, 3852, 7, 22, 0, 0, 3852, 776, 1, 0, 0, 0, 3853, 3854, 7, 20, 0, 0, 3854, 3855, 7, 2, 0, 0, 3855, 3856, 7, 3, 0, 0, 3856, 3857, 7, 22, 0, 0, 3857, 3858, 7, 13, 0, 0, 3858, 3859, 7, 2, 0, 0, 3859, 3860, 7, 0, 0, 0, 3860, 3861, 7, 9, 0, 0, 3861, 778, 1, 0, 0, 0, 3862, 3863, 7, 20, 0, 0, 3863, 3864, 7, 3, 0, 0, 3864, 3865, 7, 6, 0, 0, 3865, 3866, 7, 4, 0, 0, 3866, 3867, 7, 8, 0, 0, 3867, 780, 1, 0, 0, 0, 3868, 3869, 7, 14, 0, 0, 3869, 3870, 7, 8, 0, 0, 3870, 3871, 7, 0, 0, 0, 3871, 3872, 7, 3, 0, 0, 3872, 782, 1, 0, 0, 0, 3873, 3874, 7, 14, 0, 0, 3874, 3875, 7, 8, 0, 0, 3875, 3876, 7, 0, 0, 0, 3876, 3877, 7, 3, 0, 0, 3877, 3878, 7, 18, 0, 0, 3878, 784, 1, 0, 0, 0, 3879, 3880, 7, 15, 0, 0, 3880, 3881, 7, 2, 0, 0, 3881, 3882, 7, 11, 0, 0, 3882, 3883, 7, 8, 0, 0, 3883, 786, 1, 0, 0, 0, 3884, 3885, 5, 46, 0, 0, 3885, 788, 1, 0, 0, 0, 3886, 3887, 5, 58, 0, 0, 3887, 790, 1, 0, 0, 0, 3888, 3889, 5, 44, 0, 0, 3889, 792, 1, 0, 0, 0, 3890, 3891, 5, 59, 0, 0, 3891, 794, 1, 0, 0, 0, 3892, 3893, 5, 40, 0, 0, 3893, 796, 1, 0, 0, 0, 3894, 3895, 5, 41, 0, 0, 3895, 798, 1, 0, 0, 0, 3896, 3897, 5, 91, 0, 0, 3897, 800, 1, 0, 0, 0, 3898, 3899, 5, 93, 0, 0, 3899, 802, 1, 0, 0, 0, 3900, 3901, 5, 123, 0, 0, 3901, 804, 1, 0, 0, 0, 3902, 3903, 5, 125, 0, 0, 3903, 806, 1, 0, 0, 0, 3904, 3908, 5, 61, 0, 0, 3905, 3906, 5, 61, 0, 0, 3906, 3908, 5, 61, 0, 0, 3907, 3904, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3908, 808, 1, 0, 0, 0, 3909, 3910, 5, 60, 0, 0, 3910, 3911, 5, 61, 0, 0, 3911, 3912, 5, 62, 0, 0, 3912, 810, 1, 0, 0, 0, 3913, 3914, 5, 60, 0, 0, 3914, 3918, 5, 62, 0, 0, 3915, 3916, 5, 33, 0, 0, 3916, 3918, 5, 61, 0, 0, 3917, 3913, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 812, 1, 0, 0, 0, 3919, 3920, 5, 60, 0, 0, 3920, 3921, 5, 61, 0, 0, 3921, 814, 1, 0, 0, 0, 3922, 3923, 5, 60, 0, 0, 3923, 816, 1, 0, 0, 0, 3924, 3925, 5, 62, 0, 0, 3925, 3926, 5, 61, 0, 0, 3926, 818, 1, 0, 0, 0, 3927, 3928, 5, 62, 0, 0, 3928, 820, 1, 0, 0, 0, 3929, 3930, 5, 47, 0, 0, 3930, 822, 1, 0, 0, 0, 3931, 3932, 5, 43, 0, 0, 3932, 824, 1, 0, 0, 0, 3933, 3934, 5, 45, 0, 0, 3934, 826, 1, 0, 0, 0, 3935, 3936, 5, 42, 0, 0, 3936, 828, 1, 0, 0, 0, 3937, 3938, 5, 37, 0, 0, 3938, 830, 1, 0, 0, 0, 3939, 3940, 7, 9, 0, 0, 3940, 3941, 7, 6, 0, 0, 3941, 3942, 7, 7, 0, 0, 3942, 832, 1, 0, 0, 0, 3943, 3944, 5, 33, 0, 0, 3944, 834, 1, 0, 0, 0, 3945, 3946, 5, 38, 0, 0, 3946, 836, 1, 0, 0, 0, 3947, 3948, 5, 126, 0, 0, 3948, 838, 1, 0, 0, 0, 3949, 3950, 5, 124, 0, 0, 3950, 840, 1, 0, 0, 0, 3951, 3952, 5, 124, 0, 0, 3952, 3953, 5, 124, 0, 0, 3953, 842, 1, 0, 0, 0, 3954, 3955, 5, 94, 0, 0, 3955, 844, 1, 0, 0, 0, 3956, 3957, 5, 63, 0, 0, 3957, 846, 1, 0, 0, 0, 3958, 3959, 5, 36, 0, 0, 3959, 848, 1, 0, 0, 0, 3960, 3966, 5, 39, 0, 0, 3961, 3965, 8, 26, 0, 0, 3962, 3963, 5, 92, 0, 0, 3963, 3965, 9, 0, 0, 0, 3964, 3961, 1, 0, 0, 0, 3964, 3962, 1, 0, 0, 0, 3965, 3968, 1, 0, 0, 0, 3966, 3964, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3969, 1, 0, 0, 0, 3968, 3966, 1, 0, 0, 0, 3969, 3981, 5, 39, 0, 0, 3970, 3976, 5, 34, 0, 0, 3971, 3975, 8, 27, 0, 0, 3972, 3973, 5, 92, 0, 0, 3973, 3975, 9, 0, 0, 0, 3974, 3971, 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3978, 1, 0, 0, 0, 3976, 3974, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3979, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3979, 3981, 5, 34, 0, 0, 3980, 3960, 1, 0, 0, 0, 3980, 3970, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3980, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 850, 1, 0, 0, 0, 3984, 3994, 3, 849, 424, 0, 3985, 3986, 5, 48, 0, 0, 3986, 3989, 7, 23, 0, 0, 3987, 3990, 3, 867, 433, 0, 3988, 3990, 3, 869, 434, 0, 3989, 3987, 1, 0, 0, 0, 3989, 3988, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3994, 1, 0, 0, 0, 3993, 3984, 1, 0, 0, 0, 3993, 3985, 1, 0, 0, 0, 3994, 852, 1, 0, 0, 0, 3995, 3997, 3, 869, 434, 0, 3996, 3995, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 3996, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4000, 1, 0, 0, 0, 4000, 4001, 7, 28, 0, 0, 4001, 854, 1, 0, 0, 0, 4002, 4004, 3, 859, 429, 0, 4003, 4005, 7, 1, 0, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4007, 7, 9, 0, 0, 4007, 856, 1, 0, 0, 0, 4008, 4010, 3, 869, 434, 0, 4009, 4008, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4014, 7, 29, 0, 0, 4014, 858, 1, 0, 0, 0, 4015, 4017, 3, 869, 434, 0, 4016, 4015, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4016, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4031, 1, 0, 0, 0, 4020, 4024, 3, 787, 393, 0, 4021, 4023, 3, 869, 434, 0, 4022, 4021, 1, 0, 0, 0, 4023, 4026, 1, 0, 0, 0, 4024, 4022, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4028, 1, 0, 0, 0, 4026, 4024, 1, 0, 0, 0, 4027, 4029, 3, 871, 435, 0, 4028, 4027, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4032, 1, 0, 0, 0, 4030, 4032, 3, 871, 435, 0, 4031, 4020, 1, 0, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 860, 1, 0, 0, 0, 4033, 4036, 3, 865, 432, 0, 4034, 4036, 3, 869, 434, 0, 4035, 4033, 1, 0, 0, 0, 4035, 4034, 1, 0, 0, 0, 4036, 4042, 1, 0, 0, 0, 4037, 4041, 3, 865, 432, 0, 4038, 4041, 3, 869, 434, 0, 4039, 4041, 5, 95, 0, 0, 4040, 4037, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4040, 4039, 1, 0, 0, 0, 4041, 4044, 1, 0, 0, 0, 4042, 4040, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4055, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4055, 3, 863, 431, 0, 4046, 4048, 5, 96, 0, 0, 4047, 4049, 3, 873, 436, 0, 4048, 4047, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4048, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 5, 96, 0, 0, 4053, 4055, 1, 0, 0, 0, 4054, 4035, 1, 0, 0, 0, 4054, 4045, 1, 0, 0, 0, 4054, 4046, 1, 0, 0, 0, 4055, 862, 1, 0, 0, 0, 4056, 4062, 5, 96, 0, 0, 4057, 4058, 5, 96, 0, 0, 4058, 4061, 5, 96, 0, 0, 4059, 4061, 8, 30, 0, 0, 4060, 4057, 1, 0, 0, 0, 4060, 4059, 1, 0, 0, 0, 4061, 4064, 1, 0, 0, 0, 4062, 4060, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4065, 1, 0, 0, 0, 4064, 4062, 1, 0, 0, 0, 4065, 4066, 5, 96, 0, 0, 4066, 864, 1, 0, 0, 0, 4067, 4068, 7, 31, 0, 0, 4068, 866, 1, 0, 0, 0, 4069, 4070, 7, 32, 0, 0, 4070, 868, 1, 0, 0, 0, 4071, 4072, 2, 48, 57, 0, 4072, 870, 1, 0, 0, 0, 4073, 4076, 7, 8, 0, 0, 4074, 4077, 3, 823, 411, 0, 4075, 4077, 3, 825, 412, 0, 4076, 4074, 1, 0, 0, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4079, 1, 0, 0, 0, 4078, 4080, 3, 869, 434, 0, 4079, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4079, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 872, 1, 0, 0, 0, 4083, 4100, 7, 33, 0, 0, 4084, 4100, 3, 823, 411, 0, 4085, 4100, 3, 827, 413, 0, 4086, 4100, 3, 845, 422, 0, 4087, 4100, 3, 825, 412, 0, 4088, 4100, 3, 787, 393, 0, 4089, 4100, 3, 795, 397, 0, 4090, 4100, 3, 797, 398, 0, 4091, 4100, 3, 799, 399, 0, 4092, 4100, 3, 801, 400, 0, 4093, 4100, 3, 803, 401, 0, 4094, 4100, 3, 805, 402, 0, 4095, 4100, 3, 843, 421, 0, 4096, 4100, 3, 839, 419, 0, 4097, 4100, 3, 847, 423, 0, 4098, 4100, 3, 833, 416, 0, 4099, 4083, 1, 0, 0, 0, 4099, 4084, 1, 0, 0, 0, 4099, 4085, 1, 0, 0, 0, 4099, 4086, 1, 0, 0, 0, 4099, 4087, 1, 0, 0, 0, 4099, 4088, 1, 0, 0, 0, 4099, 4089, 1, 0, 0, 0, 4099, 4090, 1, 0, 0, 0, 4099, 4091, 1, 0, 0, 0, 4099, 4092, 1, 0, 0, 0, 4099, 4093, 1, 0, 0, 0, 4099, 4094, 1, 0, 0, 0, 4099, 4095, 1, 0, 0, 0, 4099, 4096, 1, 0, 0, 0, 4099, 4097, 1, 0, 0, 0, 4099, 4098, 1, 0, 0, 0, 4100, 874, 1, 0, 0, 0, 4101, 4105, 5, 95, 0, 0, 4102, 4106, 3, 865, 432, 0, 4103, 4106, 3, 869, 434, 0, 4104, 4106, 7, 34, 0, 0, 4105, 4102, 1, 0, 0, 0, 4105, 4103, 1, 0, 0, 0, 4105, 4104, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 876, 1, 0, 0, 0, 4109, 4110, 7, 35, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4112, 6, 438, 0, 0, 4112, 878, 1, 0, 0, 0, 4113, 4114, 5, 45, 0, 0, 4114, 4115, 5, 45, 0, 0, 4115, 4119, 1, 0, 0, 0, 4116, 4118, 8, 36, 0, 0, 4117, 4116, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4122, 1, 0, 0, 0, 4121, 4119, 1, 0, 0, 0, 4122, 4123, 6, 439, 0, 0, 4123, 880, 1, 0, 0, 0, 4124, 4127, 3, 883, 441, 0, 4125, 4127, 3, 885, 442, 0, 4126, 4124, 1, 0, 0, 0, 4126, 4125, 1, 0, 0, 0, 4127, 882, 1, 0, 0, 0, 4128, 4129, 5, 47, 0, 0, 4129, 4130, 5, 42, 0, 0, 4130, 4131, 5, 43, 0, 0, 4131, 4136, 1, 0, 0, 0, 4132, 4135, 3, 881, 440, 0, 4133, 4135, 9, 0, 0, 0, 4134, 4132, 1, 0, 0, 0, 4134, 4133, 1, 0, 0, 0, 4135, 4138, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4136, 4134, 1, 0, 0, 0, 4137, 4139, 1, 0, 0, 0, 4138, 4136, 1, 0, 0, 0, 4139, 4140, 5, 42, 0, 0, 4140, 4141, 5, 47, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4143, 6, 441, 0, 0, 4143, 884, 1, 0, 0, 0, 4144, 4145, 5, 47, 0, 0, 4145, 4146, 5, 42, 0, 0, 4146, 4151, 1, 0, 0, 0, 4147, 4150, 3, 881, 440, 0, 4148, 4150, 9, 0, 0, 0, 4149, 4147, 1, 0, 0, 0, 4149, 4148, 1, 0, 0, 0, 4150, 4153, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4151, 4149, 1, 0, 0, 0, 4152, 4154, 1, 0, 0, 0, 4153, 4151, 1, 0, 0, 0, 4154, 4155, 5, 42, 0, 0, 4155, 4156, 5, 47, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 6, 442, 0, 0, 4158, 886, 1, 0, 0, 0, 37, 0, 3907, 3917, 3964, 3966, 3974, 3976, 3980, 3982, 3989, 3991, 3993, 3998, 4004, 4011, 4018, 4024, 4028, 4031, 4035, 4040, 4042, 4050, 4054, 4060, 4062, 4076, 4081, 4099, 4105, 4107, 4119, 4126, 4134, 4136, 4149, 4151, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 438, 4171, 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, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 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, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 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, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 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, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 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, 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, 27, 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, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 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, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 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, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 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, 45, 1, 45, 1, 45, 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, 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, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 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, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 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, 54, 1, 54, 1, 54, 1, 55, 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, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 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, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 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, 69, 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, 71, 1, 71, 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, 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, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 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, 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, 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, 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, 87, 1, 87, 1, 87, 1, 87, 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, 90, 1, 90, 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, 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, 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, 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, 96, 1, 96, 1, 96, 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, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 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, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 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, 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, 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, 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, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 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, 115, 1, 115, 1, 115, 1, 115, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 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, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 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, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 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, 128, 1, 128, 1, 128, 1, 128, 1, 128, 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, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 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, 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, 135, 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, 137, 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, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 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, 141, 1, 141, 1, 141, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 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, 153, 1, 153, 1, 153, 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, 155, 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, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 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, 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, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 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, 172, 1, 172, 1, 172, 1, 172, 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, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 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, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 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, 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, 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, 192, 1, 192, 1, 192, 1, 192, 1, 192, 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, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 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, 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, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 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, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 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, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 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, 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, 216, 1, 216, 1, 217, 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, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 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, 224, 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, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 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, 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, 232, 1, 232, 1, 232, 1, 232, 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, 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, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 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, 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, 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, 246, 1, 246, 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, 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, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 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, 265, 1, 265, 1, 265, 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, 266, 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, 268, 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, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 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, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 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, 278, 1, 278, 1, 278, 1, 278, 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, 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, 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, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 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, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 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, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 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, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 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, 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, 303, 1, 303, 1, 303, 1, 303, 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, 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, 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, 308, 1, 308, 1, 308, 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, 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, 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, 318, 1, 318, 1, 318, 1, 318, 1, 318, 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, 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, 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, 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, 327, 1, 327, 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, 330, 1, 330, 1, 330, 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, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 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, 333, 1, 333, 1, 333, 1, 333, 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, 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, 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, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 341, 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, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 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, 345, 1, 345, 1, 345, 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, 346, 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, 348, 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, 352, 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, 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, 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, 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, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 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, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 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, 373, 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, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 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, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 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, 382, 1, 382, 1, 382, 1, 382, 1, 382, 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, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 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, 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, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 3, 404, 3920, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 3930, 8, 406, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 3977, 8, 425, 10, 425, 12, 425, 3980, 9, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 3987, 8, 425, 10, 425, 12, 425, 3990, 9, 425, 1, 425, 4, 425, 3993, 8, 425, 11, 425, 12, 425, 3994, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 4, 426, 4002, 8, 426, 11, 426, 12, 426, 4003, 3, 426, 4006, 8, 426, 1, 427, 4, 427, 4009, 8, 427, 11, 427, 12, 427, 4010, 1, 427, 1, 427, 1, 428, 1, 428, 3, 428, 4017, 8, 428, 1, 428, 1, 428, 1, 429, 4, 429, 4022, 8, 429, 11, 429, 12, 429, 4023, 1, 429, 1, 429, 1, 430, 4, 430, 4029, 8, 430, 11, 430, 12, 430, 4030, 1, 430, 1, 430, 5, 430, 4035, 8, 430, 10, 430, 12, 430, 4038, 9, 430, 1, 430, 3, 430, 4041, 8, 430, 1, 430, 3, 430, 4044, 8, 430, 1, 431, 1, 431, 3, 431, 4048, 8, 431, 1, 431, 1, 431, 1, 431, 5, 431, 4053, 8, 431, 10, 431, 12, 431, 4056, 9, 431, 1, 431, 1, 431, 1, 431, 4, 431, 4061, 8, 431, 11, 431, 12, 431, 4062, 1, 431, 1, 431, 3, 431, 4067, 8, 431, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 4073, 8, 432, 10, 432, 12, 432, 4076, 9, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 434, 1, 434, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 3, 436, 4089, 8, 436, 1, 436, 4, 436, 4092, 8, 436, 11, 436, 12, 436, 4093, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 4112, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 4, 438, 4118, 8, 438, 11, 438, 12, 438, 4119, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 5, 440, 4130, 8, 440, 10, 440, 12, 440, 4133, 9, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 4139, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 4147, 8, 442, 10, 442, 12, 442, 4150, 9, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 4162, 8, 443, 10, 443, 12, 443, 4165, 9, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 2, 4148, 4163, 0, 444, 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, 0, 867, 0, 869, 0, 871, 0, 873, 0, 875, 0, 877, 433, 879, 434, 881, 435, 883, 436, 885, 437, 887, 438, 1, 0, 37, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 79, 79, 111, 111, 2, 0, 82, 82, 114, 114, 2, 0, 84, 84, 116, 116, 2, 0, 67, 67, 99, 99, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 69, 69, 101, 101, 2, 0, 68, 68, 100, 100, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 70, 70, 102, 102, 2, 0, 76, 76, 108, 108, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 80, 80, 112, 112, 2, 0, 72, 72, 104, 104, 2, 0, 83, 83, 115, 115, 2, 0, 85, 85, 117, 117, 2, 0, 87, 87, 119, 119, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 88, 88, 120, 120, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 2, 0, 39, 39, 92, 92, 2, 0, 34, 34, 92, 92, 6, 0, 76, 76, 83, 83, 89, 89, 108, 108, 115, 115, 121, 121, 8, 0, 66, 66, 71, 71, 75, 75, 77, 77, 98, 98, 103, 103, 107, 107, 109, 109, 1, 0, 96, 96, 2, 0, 65, 90, 97, 122, 2, 0, 65, 70, 97, 102, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 3, 0, 45, 46, 58, 58, 95, 95, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 10, 10, 13, 13, 4219, 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, 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, 1, 889, 1, 0, 0, 0, 3, 895, 1, 0, 0, 0, 5, 904, 1, 0, 0, 0, 7, 911, 1, 0, 0, 0, 9, 915, 1, 0, 0, 0, 11, 921, 1, 0, 0, 0, 13, 927, 1, 0, 0, 0, 15, 931, 1, 0, 0, 0, 17, 946, 1, 0, 0, 0, 19, 952, 1, 0, 0, 0, 21, 960, 1, 0, 0, 0, 23, 964, 1, 0, 0, 0, 25, 969, 1, 0, 0, 0, 27, 973, 1, 0, 0, 0, 29, 985, 1, 0, 0, 0, 31, 993, 1, 0, 0, 0, 33, 999, 1, 0, 0, 0, 35, 1002, 1, 0, 0, 0, 37, 1006, 1, 0, 0, 0, 39, 1010, 1, 0, 0, 0, 41, 1013, 1, 0, 0, 0, 43, 1027, 1, 0, 0, 0, 45, 1038, 1, 0, 0, 0, 47, 1044, 1, 0, 0, 0, 49, 1051, 1, 0, 0, 0, 51, 1059, 1, 0, 0, 0, 53, 1066, 1, 0, 0, 0, 55, 1073, 1, 0, 0, 0, 57, 1081, 1, 0, 0, 0, 59, 1086, 1, 0, 0, 0, 61, 1093, 1, 0, 0, 0, 63, 1101, 1, 0, 0, 0, 65, 1104, 1, 0, 0, 0, 67, 1110, 1, 0, 0, 0, 69, 1118, 1, 0, 0, 0, 71, 1123, 1, 0, 0, 0, 73, 1128, 1, 0, 0, 0, 75, 1132, 1, 0, 0, 0, 77, 1139, 1, 0, 0, 0, 79, 1144, 1, 0, 0, 0, 81, 1150, 1, 0, 0, 0, 83, 1158, 1, 0, 0, 0, 85, 1168, 1, 0, 0, 0, 87, 1182, 1, 0, 0, 0, 89, 1193, 1, 0, 0, 0, 91, 1200, 1, 0, 0, 0, 93, 1208, 1, 0, 0, 0, 95, 1216, 1, 0, 0, 0, 97, 1223, 1, 0, 0, 0, 99, 1231, 1, 0, 0, 0, 101, 1243, 1, 0, 0, 0, 103, 1256, 1, 0, 0, 0, 105, 1264, 1, 0, 0, 0, 107, 1276, 1, 0, 0, 0, 109, 1281, 1, 0, 0, 0, 111, 1292, 1, 0, 0, 0, 113, 1301, 1, 0, 0, 0, 115, 1306, 1, 0, 0, 0, 117, 1313, 1, 0, 0, 0, 119, 1318, 1, 0, 0, 0, 121, 1324, 1, 0, 0, 0, 123, 1329, 1, 0, 0, 0, 125, 1337, 1, 0, 0, 0, 127, 1350, 1, 0, 0, 0, 129, 1368, 1, 0, 0, 0, 131, 1375, 1, 0, 0, 0, 133, 1380, 1, 0, 0, 0, 135, 1389, 1, 0, 0, 0, 137, 1399, 1, 0, 0, 0, 139, 1409, 1, 0, 0, 0, 141, 1420, 1, 0, 0, 0, 143, 1425, 1, 0, 0, 0, 145, 1434, 1, 0, 0, 0, 147, 1438, 1, 0, 0, 0, 149, 1443, 1, 0, 0, 0, 151, 1453, 1, 0, 0, 0, 153, 1466, 1, 0, 0, 0, 155, 1479, 1, 0, 0, 0, 157, 1483, 1, 0, 0, 0, 159, 1489, 1, 0, 0, 0, 161, 1493, 1, 0, 0, 0, 163, 1501, 1, 0, 0, 0, 165, 1509, 1, 0, 0, 0, 167, 1517, 1, 0, 0, 0, 169, 1526, 1, 0, 0, 0, 171, 1534, 1, 0, 0, 0, 173, 1541, 1, 0, 0, 0, 175, 1551, 1, 0, 0, 0, 177, 1562, 1, 0, 0, 0, 179, 1567, 1, 0, 0, 0, 181, 1576, 1, 0, 0, 0, 183, 1583, 1, 0, 0, 0, 185, 1595, 1, 0, 0, 0, 187, 1605, 1, 0, 0, 0, 189, 1613, 1, 0, 0, 0, 191, 1622, 1, 0, 0, 0, 193, 1631, 1, 0, 0, 0, 195, 1642, 1, 0, 0, 0, 197, 1654, 1, 0, 0, 0, 199, 1657, 1, 0, 0, 0, 201, 1664, 1, 0, 0, 0, 203, 1669, 1, 0, 0, 0, 205, 1677, 1, 0, 0, 0, 207, 1682, 1, 0, 0, 0, 209, 1689, 1, 0, 0, 0, 211, 1694, 1, 0, 0, 0, 213, 1701, 1, 0, 0, 0, 215, 1709, 1, 0, 0, 0, 217, 1713, 1, 0, 0, 0, 219, 1722, 1, 0, 0, 0, 221, 1730, 1, 0, 0, 0, 223, 1736, 1, 0, 0, 0, 225, 1743, 1, 0, 0, 0, 227, 1752, 1, 0, 0, 0, 229, 1762, 1, 0, 0, 0, 231, 1770, 1, 0, 0, 0, 233, 1779, 1, 0, 0, 0, 235, 1786, 1, 0, 0, 0, 237, 1803, 1, 0, 0, 0, 239, 1811, 1, 0, 0, 0, 241, 1818, 1, 0, 0, 0, 243, 1829, 1, 0, 0, 0, 245, 1838, 1, 0, 0, 0, 247, 1847, 1, 0, 0, 0, 249, 1855, 1, 0, 0, 0, 251, 1861, 1, 0, 0, 0, 253, 1867, 1, 0, 0, 0, 255, 1874, 1, 0, 0, 0, 257, 1879, 1, 0, 0, 0, 259, 1890, 1, 0, 0, 0, 261, 1896, 1, 0, 0, 0, 263, 1902, 1, 0, 0, 0, 265, 1908, 1, 0, 0, 0, 267, 1918, 1, 0, 0, 0, 269, 1922, 1, 0, 0, 0, 271, 1928, 1, 0, 0, 0, 273, 1936, 1, 0, 0, 0, 275, 1943, 1, 0, 0, 0, 277, 1953, 1, 0, 0, 0, 279, 1958, 1, 0, 0, 0, 281, 1963, 1, 0, 0, 0, 283, 1972, 1, 0, 0, 0, 285, 1982, 1, 0, 0, 0, 287, 1988, 1, 0, 0, 0, 289, 1994, 1, 0, 0, 0, 291, 2003, 1, 0, 0, 0, 293, 2010, 1, 0, 0, 0, 295, 2023, 1, 0, 0, 0, 297, 2028, 1, 0, 0, 0, 299, 2034, 1, 0, 0, 0, 301, 2048, 1, 0, 0, 0, 303, 2051, 1, 0, 0, 0, 305, 2058, 1, 0, 0, 0, 307, 2065, 1, 0, 0, 0, 309, 2068, 1, 0, 0, 0, 311, 2074, 1, 0, 0, 0, 313, 2082, 1, 0, 0, 0, 315, 2088, 1, 0, 0, 0, 317, 2095, 1, 0, 0, 0, 319, 2107, 1, 0, 0, 0, 321, 2119, 1, 0, 0, 0, 323, 2126, 1, 0, 0, 0, 325, 2130, 1, 0, 0, 0, 327, 2138, 1, 0, 0, 0, 329, 2148, 1, 0, 0, 0, 331, 2157, 1, 0, 0, 0, 333, 2162, 1, 0, 0, 0, 335, 2165, 1, 0, 0, 0, 337, 2175, 1, 0, 0, 0, 339, 2181, 1, 0, 0, 0, 341, 2185, 1, 0, 0, 0, 343, 2190, 1, 0, 0, 0, 345, 2199, 1, 0, 0, 0, 347, 2203, 1, 0, 0, 0, 349, 2208, 1, 0, 0, 0, 351, 2214, 1, 0, 0, 0, 353, 2219, 1, 0, 0, 0, 355, 2224, 1, 0, 0, 0, 357, 2232, 1, 0, 0, 0, 359, 2240, 1, 0, 0, 0, 361, 2245, 1, 0, 0, 0, 363, 2250, 1, 0, 0, 0, 365, 2256, 1, 0, 0, 0, 367, 2266, 1, 0, 0, 0, 369, 2271, 1, 0, 0, 0, 371, 2277, 1, 0, 0, 0, 373, 2283, 1, 0, 0, 0, 375, 2288, 1, 0, 0, 0, 377, 2294, 1, 0, 0, 0, 379, 2303, 1, 0, 0, 0, 381, 2308, 1, 0, 0, 0, 383, 2314, 1, 0, 0, 0, 385, 2322, 1, 0, 0, 0, 387, 2327, 1, 0, 0, 0, 389, 2333, 1, 0, 0, 0, 391, 2341, 1, 0, 0, 0, 393, 2357, 1, 0, 0, 0, 395, 2368, 1, 0, 0, 0, 397, 2372, 1, 0, 0, 0, 399, 2380, 1, 0, 0, 0, 401, 2388, 1, 0, 0, 0, 403, 2396, 1, 0, 0, 0, 405, 2409, 1, 0, 0, 0, 407, 2415, 1, 0, 0, 0, 409, 2424, 1, 0, 0, 0, 411, 2430, 1, 0, 0, 0, 413, 2437, 1, 0, 0, 0, 415, 2445, 1, 0, 0, 0, 417, 2451, 1, 0, 0, 0, 419, 2458, 1, 0, 0, 0, 421, 2463, 1, 0, 0, 0, 423, 2468, 1, 0, 0, 0, 425, 2473, 1, 0, 0, 0, 427, 2478, 1, 0, 0, 0, 429, 2485, 1, 0, 0, 0, 431, 2492, 1, 0, 0, 0, 433, 2496, 1, 0, 0, 0, 435, 2507, 1, 0, 0, 0, 437, 2515, 1, 0, 0, 0, 439, 2520, 1, 0, 0, 0, 441, 2526, 1, 0, 0, 0, 443, 2529, 1, 0, 0, 0, 445, 2537, 1, 0, 0, 0, 447, 2544, 1, 0, 0, 0, 449, 2547, 1, 0, 0, 0, 451, 2552, 1, 0, 0, 0, 453, 2561, 1, 0, 0, 0, 455, 2568, 1, 0, 0, 0, 457, 2571, 1, 0, 0, 0, 459, 2577, 1, 0, 0, 0, 461, 2581, 1, 0, 0, 0, 463, 2587, 1, 0, 0, 0, 465, 2600, 1, 0, 0, 0, 467, 2613, 1, 0, 0, 0, 469, 2618, 1, 0, 0, 0, 471, 2628, 1, 0, 0, 0, 473, 2634, 1, 0, 0, 0, 475, 2644, 1, 0, 0, 0, 477, 2656, 1, 0, 0, 0, 479, 2667, 1, 0, 0, 0, 481, 2672, 1, 0, 0, 0, 483, 2680, 1, 0, 0, 0, 485, 2690, 1, 0, 0, 0, 487, 2695, 1, 0, 0, 0, 489, 2701, 1, 0, 0, 0, 491, 2706, 1, 0, 0, 0, 493, 2711, 1, 0, 0, 0, 495, 2721, 1, 0, 0, 0, 497, 2731, 1, 0, 0, 0, 499, 2739, 1, 0, 0, 0, 501, 2748, 1, 0, 0, 0, 503, 2756, 1, 0, 0, 0, 505, 2767, 1, 0, 0, 0, 507, 2777, 1, 0, 0, 0, 509, 2788, 1, 0, 0, 0, 511, 2794, 1, 0, 0, 0, 513, 2802, 1, 0, 0, 0, 515, 2810, 1, 0, 0, 0, 517, 2816, 1, 0, 0, 0, 519, 2834, 1, 0, 0, 0, 521, 2840, 1, 0, 0, 0, 523, 2845, 1, 0, 0, 0, 525, 2854, 1, 0, 0, 0, 527, 2860, 1, 0, 0, 0, 529, 2865, 1, 0, 0, 0, 531, 2873, 1, 0, 0, 0, 533, 2886, 1, 0, 0, 0, 535, 2899, 1, 0, 0, 0, 537, 2906, 1, 0, 0, 0, 539, 2917, 1, 0, 0, 0, 541, 2924, 1, 0, 0, 0, 543, 2931, 1, 0, 0, 0, 545, 2936, 1, 0, 0, 0, 547, 2943, 1, 0, 0, 0, 549, 2950, 1, 0, 0, 0, 551, 2965, 1, 0, 0, 0, 553, 2972, 1, 0, 0, 0, 555, 2977, 1, 0, 0, 0, 557, 2985, 1, 0, 0, 0, 559, 2997, 1, 0, 0, 0, 561, 3006, 1, 0, 0, 0, 563, 3014, 1, 0, 0, 0, 565, 3023, 1, 0, 0, 0, 567, 3030, 1, 0, 0, 0, 569, 3038, 1, 0, 0, 0, 571, 3044, 1, 0, 0, 0, 573, 3050, 1, 0, 0, 0, 575, 3055, 1, 0, 0, 0, 577, 3061, 1, 0, 0, 0, 579, 3070, 1, 0, 0, 0, 581, 3077, 1, 0, 0, 0, 583, 3081, 1, 0, 0, 0, 585, 3086, 1, 0, 0, 0, 587, 3096, 1, 0, 0, 0, 589, 3114, 1, 0, 0, 0, 591, 3121, 1, 0, 0, 0, 593, 3129, 1, 0, 0, 0, 595, 3136, 1, 0, 0, 0, 597, 3144, 1, 0, 0, 0, 599, 3151, 1, 0, 0, 0, 601, 3156, 1, 0, 0, 0, 603, 3162, 1, 0, 0, 0, 605, 3178, 1, 0, 0, 0, 607, 3185, 1, 0, 0, 0, 609, 3189, 1, 0, 0, 0, 611, 3194, 1, 0, 0, 0, 613, 3215, 1, 0, 0, 0, 615, 3222, 1, 0, 0, 0, 617, 3227, 1, 0, 0, 0, 619, 3241, 1, 0, 0, 0, 621, 3248, 1, 0, 0, 0, 623, 3257, 1, 0, 0, 0, 625, 3266, 1, 0, 0, 0, 627, 3271, 1, 0, 0, 0, 629, 3276, 1, 0, 0, 0, 631, 3283, 1, 0, 0, 0, 633, 3288, 1, 0, 0, 0, 635, 3292, 1, 0, 0, 0, 637, 3298, 1, 0, 0, 0, 639, 3309, 1, 0, 0, 0, 641, 3316, 1, 0, 0, 0, 643, 3323, 1, 0, 0, 0, 645, 3335, 1, 0, 0, 0, 647, 3342, 1, 0, 0, 0, 649, 3349, 1, 0, 0, 0, 651, 3357, 1, 0, 0, 0, 653, 3362, 1, 0, 0, 0, 655, 3374, 1, 0, 0, 0, 657, 3389, 1, 0, 0, 0, 659, 3395, 1, 0, 0, 0, 661, 3402, 1, 0, 0, 0, 663, 3414, 1, 0, 0, 0, 665, 3428, 1, 0, 0, 0, 667, 3438, 1, 0, 0, 0, 669, 3449, 1, 0, 0, 0, 671, 3454, 1, 0, 0, 0, 673, 3459, 1, 0, 0, 0, 675, 3469, 1, 0, 0, 0, 677, 3486, 1, 0, 0, 0, 679, 3498, 1, 0, 0, 0, 681, 3506, 1, 0, 0, 0, 683, 3509, 1, 0, 0, 0, 685, 3515, 1, 0, 0, 0, 687, 3524, 1, 0, 0, 0, 689, 3536, 1, 0, 0, 0, 691, 3550, 1, 0, 0, 0, 693, 3563, 1, 0, 0, 0, 695, 3573, 1, 0, 0, 0, 697, 3581, 1, 0, 0, 0, 699, 3586, 1, 0, 0, 0, 701, 3591, 1, 0, 0, 0, 703, 3600, 1, 0, 0, 0, 705, 3605, 1, 0, 0, 0, 707, 3615, 1, 0, 0, 0, 709, 3625, 1, 0, 0, 0, 711, 3630, 1, 0, 0, 0, 713, 3636, 1, 0, 0, 0, 715, 3646, 1, 0, 0, 0, 717, 3653, 1, 0, 0, 0, 719, 3664, 1, 0, 0, 0, 721, 3672, 1, 0, 0, 0, 723, 3679, 1, 0, 0, 0, 725, 3689, 1, 0, 0, 0, 727, 3695, 1, 0, 0, 0, 729, 3704, 1, 0, 0, 0, 731, 3711, 1, 0, 0, 0, 733, 3715, 1, 0, 0, 0, 735, 3719, 1, 0, 0, 0, 737, 3723, 1, 0, 0, 0, 739, 3728, 1, 0, 0, 0, 741, 3734, 1, 0, 0, 0, 743, 3738, 1, 0, 0, 0, 745, 3751, 1, 0, 0, 0, 747, 3760, 1, 0, 0, 0, 749, 3767, 1, 0, 0, 0, 751, 3775, 1, 0, 0, 0, 753, 3783, 1, 0, 0, 0, 755, 3797, 1, 0, 0, 0, 757, 3802, 1, 0, 0, 0, 759, 3808, 1, 0, 0, 0, 761, 3813, 1, 0, 0, 0, 763, 3818, 1, 0, 0, 0, 765, 3824, 1, 0, 0, 0, 767, 3829, 1, 0, 0, 0, 769, 3835, 1, 0, 0, 0, 771, 3841, 1, 0, 0, 0, 773, 3848, 1, 0, 0, 0, 775, 3853, 1, 0, 0, 0, 777, 3860, 1, 0, 0, 0, 779, 3865, 1, 0, 0, 0, 781, 3874, 1, 0, 0, 0, 783, 3880, 1, 0, 0, 0, 785, 3885, 1, 0, 0, 0, 787, 3891, 1, 0, 0, 0, 789, 3896, 1, 0, 0, 0, 791, 3898, 1, 0, 0, 0, 793, 3900, 1, 0, 0, 0, 795, 3902, 1, 0, 0, 0, 797, 3904, 1, 0, 0, 0, 799, 3906, 1, 0, 0, 0, 801, 3908, 1, 0, 0, 0, 803, 3910, 1, 0, 0, 0, 805, 3912, 1, 0, 0, 0, 807, 3914, 1, 0, 0, 0, 809, 3919, 1, 0, 0, 0, 811, 3921, 1, 0, 0, 0, 813, 3929, 1, 0, 0, 0, 815, 3931, 1, 0, 0, 0, 817, 3934, 1, 0, 0, 0, 819, 3936, 1, 0, 0, 0, 821, 3939, 1, 0, 0, 0, 823, 3941, 1, 0, 0, 0, 825, 3943, 1, 0, 0, 0, 827, 3945, 1, 0, 0, 0, 829, 3947, 1, 0, 0, 0, 831, 3949, 1, 0, 0, 0, 833, 3951, 1, 0, 0, 0, 835, 3955, 1, 0, 0, 0, 837, 3957, 1, 0, 0, 0, 839, 3959, 1, 0, 0, 0, 841, 3961, 1, 0, 0, 0, 843, 3963, 1, 0, 0, 0, 845, 3966, 1, 0, 0, 0, 847, 3968, 1, 0, 0, 0, 849, 3970, 1, 0, 0, 0, 851, 3992, 1, 0, 0, 0, 853, 4005, 1, 0, 0, 0, 855, 4008, 1, 0, 0, 0, 857, 4014, 1, 0, 0, 0, 859, 4021, 1, 0, 0, 0, 861, 4028, 1, 0, 0, 0, 863, 4066, 1, 0, 0, 0, 865, 4068, 1, 0, 0, 0, 867, 4079, 1, 0, 0, 0, 869, 4081, 1, 0, 0, 0, 871, 4083, 1, 0, 0, 0, 873, 4085, 1, 0, 0, 0, 875, 4111, 1, 0, 0, 0, 877, 4113, 1, 0, 0, 0, 879, 4121, 1, 0, 0, 0, 881, 4125, 1, 0, 0, 0, 883, 4138, 1, 0, 0, 0, 885, 4140, 1, 0, 0, 0, 887, 4156, 1, 0, 0, 0, 889, 890, 7, 0, 0, 0, 890, 891, 7, 1, 0, 0, 891, 892, 7, 2, 0, 0, 892, 893, 7, 3, 0, 0, 893, 894, 7, 4, 0, 0, 894, 2, 1, 0, 0, 0, 895, 896, 7, 0, 0, 0, 896, 897, 7, 5, 0, 0, 897, 898, 7, 4, 0, 0, 898, 899, 7, 6, 0, 0, 899, 900, 7, 7, 0, 0, 900, 901, 7, 0, 0, 0, 901, 902, 7, 4, 0, 0, 902, 903, 7, 8, 0, 0, 903, 4, 1, 0, 0, 0, 904, 905, 7, 0, 0, 0, 905, 906, 7, 5, 0, 0, 906, 907, 7, 4, 0, 0, 907, 908, 7, 6, 0, 0, 908, 909, 7, 7, 0, 0, 909, 910, 7, 8, 0, 0, 910, 6, 1, 0, 0, 0, 911, 912, 7, 0, 0, 0, 912, 913, 7, 9, 0, 0, 913, 914, 7, 9, 0, 0, 914, 8, 1, 0, 0, 0, 915, 916, 7, 0, 0, 0, 916, 917, 7, 9, 0, 0, 917, 918, 7, 10, 0, 0, 918, 919, 7, 6, 0, 0, 919, 920, 7, 11, 0, 0, 920, 10, 1, 0, 0, 0, 921, 922, 7, 0, 0, 0, 922, 923, 7, 12, 0, 0, 923, 924, 7, 4, 0, 0, 924, 925, 7, 8, 0, 0, 925, 926, 7, 3, 0, 0, 926, 12, 1, 0, 0, 0, 927, 928, 7, 0, 0, 0, 928, 929, 7, 13, 0, 0, 929, 930, 7, 13, 0, 0, 930, 14, 1, 0, 0, 0, 931, 932, 7, 0, 0, 0, 932, 933, 7, 13, 0, 0, 933, 934, 7, 13, 0, 0, 934, 935, 7, 2, 0, 0, 935, 936, 7, 5, 0, 0, 936, 937, 5, 95, 0, 0, 937, 938, 7, 12, 0, 0, 938, 939, 7, 3, 0, 0, 939, 940, 7, 0, 0, 0, 940, 941, 7, 5, 0, 0, 941, 942, 7, 4, 0, 0, 942, 943, 7, 6, 0, 0, 943, 944, 7, 2, 0, 0, 944, 945, 7, 11, 0, 0, 945, 16, 1, 0, 0, 0, 946, 947, 7, 0, 0, 0, 947, 948, 7, 13, 0, 0, 948, 949, 7, 4, 0, 0, 949, 950, 7, 8, 0, 0, 950, 951, 7, 3, 0, 0, 951, 18, 1, 0, 0, 0, 952, 953, 7, 0, 0, 0, 953, 954, 7, 11, 0, 0, 954, 955, 7, 0, 0, 0, 955, 956, 7, 13, 0, 0, 956, 957, 7, 14, 0, 0, 957, 958, 7, 15, 0, 0, 958, 959, 7, 8, 0, 0, 959, 20, 1, 0, 0, 0, 960, 961, 7, 0, 0, 0, 961, 962, 7, 11, 0, 0, 962, 963, 7, 9, 0, 0, 963, 22, 1, 0, 0, 0, 964, 965, 7, 0, 0, 0, 965, 966, 7, 11, 0, 0, 966, 967, 7, 4, 0, 0, 967, 968, 7, 6, 0, 0, 968, 24, 1, 0, 0, 0, 969, 970, 7, 0, 0, 0, 970, 971, 7, 11, 0, 0, 971, 972, 7, 14, 0, 0, 972, 26, 1, 0, 0, 0, 973, 974, 7, 0, 0, 0, 974, 975, 7, 16, 0, 0, 975, 976, 7, 16, 0, 0, 976, 977, 7, 13, 0, 0, 977, 978, 7, 6, 0, 0, 978, 979, 7, 5, 0, 0, 979, 980, 7, 0, 0, 0, 980, 981, 7, 4, 0, 0, 981, 982, 7, 6, 0, 0, 982, 983, 7, 2, 0, 0, 983, 984, 7, 11, 0, 0, 984, 28, 1, 0, 0, 0, 985, 986, 7, 0, 0, 0, 986, 987, 7, 3, 0, 0, 987, 988, 7, 5, 0, 0, 988, 989, 7, 17, 0, 0, 989, 990, 7, 6, 0, 0, 990, 991, 7, 7, 0, 0, 991, 992, 7, 8, 0, 0, 992, 30, 1, 0, 0, 0, 993, 994, 7, 0, 0, 0, 994, 995, 7, 3, 0, 0, 995, 996, 7, 3, 0, 0, 996, 997, 7, 0, 0, 0, 997, 998, 7, 14, 0, 0, 998, 32, 1, 0, 0, 0, 999, 1000, 7, 0, 0, 0, 1000, 1001, 7, 18, 0, 0, 1001, 34, 1, 0, 0, 0, 1002, 1003, 7, 0, 0, 0, 1003, 1004, 7, 18, 0, 0, 1004, 1005, 7, 5, 0, 0, 1005, 36, 1, 0, 0, 0, 1006, 1007, 7, 0, 0, 0, 1007, 1008, 7, 18, 0, 0, 1008, 1009, 7, 4, 0, 0, 1009, 38, 1, 0, 0, 0, 1010, 1011, 7, 0, 0, 0, 1011, 1012, 7, 4, 0, 0, 1012, 40, 1, 0, 0, 0, 1013, 1014, 7, 0, 0, 0, 1014, 1015, 7, 19, 0, 0, 1015, 1016, 7, 4, 0, 0, 1016, 1017, 7, 17, 0, 0, 1017, 1018, 7, 2, 0, 0, 1018, 1019, 7, 3, 0, 0, 1019, 1020, 7, 6, 0, 0, 1020, 1021, 7, 15, 0, 0, 1021, 1022, 7, 0, 0, 0, 1022, 1023, 7, 4, 0, 0, 1023, 1024, 7, 6, 0, 0, 1024, 1025, 7, 2, 0, 0, 1025, 1026, 7, 11, 0, 0, 1026, 42, 1, 0, 0, 0, 1027, 1028, 7, 0, 0, 0, 1028, 1029, 7, 19, 0, 0, 1029, 1030, 7, 4, 0, 0, 1030, 1031, 7, 2, 0, 0, 1031, 1032, 7, 5, 0, 0, 1032, 1033, 7, 2, 0, 0, 1033, 1034, 7, 10, 0, 0, 1034, 1035, 7, 10, 0, 0, 1035, 1036, 7, 6, 0, 0, 1036, 1037, 7, 4, 0, 0, 1037, 44, 1, 0, 0, 0, 1038, 1039, 7, 1, 0, 0, 1039, 1040, 7, 0, 0, 0, 1040, 1041, 7, 4, 0, 0, 1041, 1042, 7, 5, 0, 0, 1042, 1043, 7, 17, 0, 0, 1043, 46, 1, 0, 0, 0, 1044, 1045, 7, 1, 0, 0, 1045, 1046, 7, 8, 0, 0, 1046, 1047, 7, 12, 0, 0, 1047, 1048, 7, 2, 0, 0, 1048, 1049, 7, 3, 0, 0, 1049, 1050, 7, 8, 0, 0, 1050, 48, 1, 0, 0, 0, 1051, 1052, 7, 1, 0, 0, 1052, 1053, 7, 8, 0, 0, 1053, 1054, 7, 4, 0, 0, 1054, 1055, 7, 20, 0, 0, 1055, 1056, 7, 8, 0, 0, 1056, 1057, 7, 8, 0, 0, 1057, 1058, 7, 11, 0, 0, 1058, 50, 1, 0, 0, 0, 1059, 1060, 7, 1, 0, 0, 1060, 1061, 7, 6, 0, 0, 1061, 1062, 7, 21, 0, 0, 1062, 1063, 7, 6, 0, 0, 1063, 1064, 7, 11, 0, 0, 1064, 1065, 7, 4, 0, 0, 1065, 52, 1, 0, 0, 0, 1066, 1067, 7, 1, 0, 0, 1067, 1068, 7, 6, 0, 0, 1068, 1069, 7, 11, 0, 0, 1069, 1070, 7, 0, 0, 0, 1070, 1071, 7, 3, 0, 0, 1071, 1072, 7, 14, 0, 0, 1072, 54, 1, 0, 0, 0, 1073, 1074, 7, 1, 0, 0, 1074, 1075, 7, 2, 0, 0, 1075, 1076, 7, 2, 0, 0, 1076, 1077, 7, 13, 0, 0, 1077, 1078, 7, 8, 0, 0, 1078, 1079, 7, 0, 0, 0, 1079, 1080, 7, 11, 0, 0, 1080, 56, 1, 0, 0, 0, 1081, 1082, 7, 1, 0, 0, 1082, 1083, 7, 2, 0, 0, 1083, 1084, 7, 4, 0, 0, 1084, 1085, 7, 17, 0, 0, 1085, 58, 1, 0, 0, 0, 1086, 1087, 7, 1, 0, 0, 1087, 1088, 7, 19, 0, 0, 1088, 1089, 7, 5, 0, 0, 1089, 1090, 7, 22, 0, 0, 1090, 1091, 7, 8, 0, 0, 1091, 1092, 7, 4, 0, 0, 1092, 60, 1, 0, 0, 0, 1093, 1094, 7, 1, 0, 0, 1094, 1095, 7, 19, 0, 0, 1095, 1096, 7, 5, 0, 0, 1096, 1097, 7, 22, 0, 0, 1097, 1098, 7, 8, 0, 0, 1098, 1099, 7, 4, 0, 0, 1099, 1100, 7, 18, 0, 0, 1100, 62, 1, 0, 0, 0, 1101, 1102, 7, 1, 0, 0, 1102, 1103, 7, 14, 0, 0, 1103, 64, 1, 0, 0, 0, 1104, 1105, 7, 5, 0, 0, 1105, 1106, 7, 0, 0, 0, 1106, 1107, 7, 5, 0, 0, 1107, 1108, 7, 17, 0, 0, 1108, 1109, 7, 8, 0, 0, 1109, 66, 1, 0, 0, 0, 1110, 1111, 7, 5, 0, 0, 1111, 1112, 7, 0, 0, 0, 1112, 1113, 7, 18, 0, 0, 1113, 1114, 7, 5, 0, 0, 1114, 1115, 7, 0, 0, 0, 1115, 1116, 7, 9, 0, 0, 1116, 1117, 7, 8, 0, 0, 1117, 68, 1, 0, 0, 0, 1118, 1119, 7, 5, 0, 0, 1119, 1120, 7, 0, 0, 0, 1120, 1121, 7, 18, 0, 0, 1121, 1122, 7, 8, 0, 0, 1122, 70, 1, 0, 0, 0, 1123, 1124, 7, 5, 0, 0, 1124, 1125, 7, 0, 0, 0, 1125, 1126, 7, 18, 0, 0, 1126, 1127, 7, 4, 0, 0, 1127, 72, 1, 0, 0, 0, 1128, 1129, 7, 5, 0, 0, 1129, 1130, 7, 1, 0, 0, 1130, 1131, 7, 2, 0, 0, 1131, 74, 1, 0, 0, 0, 1132, 1133, 7, 5, 0, 0, 1133, 1134, 7, 17, 0, 0, 1134, 1135, 7, 0, 0, 0, 1135, 1136, 7, 11, 0, 0, 1136, 1137, 7, 21, 0, 0, 1137, 1138, 7, 8, 0, 0, 1138, 76, 1, 0, 0, 0, 1139, 1140, 7, 5, 0, 0, 1140, 1141, 7, 17, 0, 0, 1141, 1142, 7, 0, 0, 0, 1142, 1143, 7, 3, 0, 0, 1143, 78, 1, 0, 0, 0, 1144, 1145, 7, 5, 0, 0, 1145, 1146, 7, 17, 0, 0, 1146, 1147, 7, 8, 0, 0, 1147, 1148, 7, 5, 0, 0, 1148, 1149, 7, 22, 0, 0, 1149, 80, 1, 0, 0, 0, 1150, 1151, 7, 5, 0, 0, 1151, 1152, 7, 13, 0, 0, 1152, 1153, 7, 19, 0, 0, 1153, 1154, 7, 18, 0, 0, 1154, 1155, 7, 4, 0, 0, 1155, 1156, 7, 8, 0, 0, 1156, 1157, 7, 3, 0, 0, 1157, 82, 1, 0, 0, 0, 1158, 1159, 7, 5, 0, 0, 1159, 1160, 7, 13, 0, 0, 1160, 1161, 7, 19, 0, 0, 1161, 1162, 7, 18, 0, 0, 1162, 1163, 7, 4, 0, 0, 1163, 1164, 7, 8, 0, 0, 1164, 1165, 7, 3, 0, 0, 1165, 1166, 7, 8, 0, 0, 1166, 1167, 7, 9, 0, 0, 1167, 84, 1, 0, 0, 0, 1168, 1169, 7, 5, 0, 0, 1169, 1170, 7, 13, 0, 0, 1170, 1171, 7, 19, 0, 0, 1171, 1172, 7, 18, 0, 0, 1172, 1173, 7, 4, 0, 0, 1173, 1174, 7, 8, 0, 0, 1174, 1175, 7, 3, 0, 0, 1175, 1176, 7, 18, 0, 0, 1176, 1177, 7, 4, 0, 0, 1177, 1178, 7, 0, 0, 0, 1178, 1179, 7, 4, 0, 0, 1179, 1180, 7, 19, 0, 0, 1180, 1181, 7, 18, 0, 0, 1181, 86, 1, 0, 0, 0, 1182, 1183, 7, 5, 0, 0, 1183, 1184, 7, 2, 0, 0, 1184, 1185, 7, 13, 0, 0, 1185, 1186, 7, 13, 0, 0, 1186, 1187, 7, 8, 0, 0, 1187, 1188, 7, 5, 0, 0, 1188, 1189, 7, 4, 0, 0, 1189, 1190, 7, 6, 0, 0, 1190, 1191, 7, 2, 0, 0, 1191, 1192, 7, 11, 0, 0, 1192, 88, 1, 0, 0, 0, 1193, 1194, 7, 5, 0, 0, 1194, 1195, 7, 2, 0, 0, 1195, 1196, 7, 13, 0, 0, 1196, 1197, 7, 19, 0, 0, 1197, 1198, 7, 10, 0, 0, 1198, 1199, 7, 11, 0, 0, 1199, 90, 1, 0, 0, 0, 1200, 1201, 7, 5, 0, 0, 1201, 1202, 7, 2, 0, 0, 1202, 1203, 7, 13, 0, 0, 1203, 1204, 7, 19, 0, 0, 1204, 1205, 7, 10, 0, 0, 1205, 1206, 7, 11, 0, 0, 1206, 1207, 7, 18, 0, 0, 1207, 92, 1, 0, 0, 0, 1208, 1209, 7, 5, 0, 0, 1209, 1210, 7, 2, 0, 0, 1210, 1211, 7, 10, 0, 0, 1211, 1212, 7, 10, 0, 0, 1212, 1213, 7, 8, 0, 0, 1213, 1214, 7, 11, 0, 0, 1214, 1215, 7, 4, 0, 0, 1215, 94, 1, 0, 0, 0, 1216, 1217, 7, 5, 0, 0, 1217, 1218, 7, 2, 0, 0, 1218, 1219, 7, 10, 0, 0, 1219, 1220, 7, 10, 0, 0, 1220, 1221, 7, 6, 0, 0, 1221, 1222, 7, 4, 0, 0, 1222, 96, 1, 0, 0, 0, 1223, 1224, 7, 5, 0, 0, 1224, 1225, 7, 2, 0, 0, 1225, 1226, 7, 10, 0, 0, 1226, 1227, 7, 16, 0, 0, 1227, 1228, 7, 0, 0, 0, 1228, 1229, 7, 5, 0, 0, 1229, 1230, 7, 4, 0, 0, 1230, 98, 1, 0, 0, 0, 1231, 1232, 7, 5, 0, 0, 1232, 1233, 7, 2, 0, 0, 1233, 1234, 7, 10, 0, 0, 1234, 1235, 7, 16, 0, 0, 1235, 1236, 7, 0, 0, 0, 1236, 1237, 7, 5, 0, 0, 1237, 1238, 7, 4, 0, 0, 1238, 1239, 7, 6, 0, 0, 1239, 1240, 7, 2, 0, 0, 1240, 1241, 7, 11, 0, 0, 1241, 1242, 7, 18, 0, 0, 1242, 100, 1, 0, 0, 0, 1243, 1244, 7, 5, 0, 0, 1244, 1245, 7, 2, 0, 0, 1245, 1246, 7, 10, 0, 0, 1246, 1247, 7, 16, 0, 0, 1247, 1248, 7, 0, 0, 0, 1248, 1249, 7, 5, 0, 0, 1249, 1250, 7, 4, 0, 0, 1250, 1251, 7, 6, 0, 0, 1251, 1252, 7, 2, 0, 0, 1252, 1253, 7, 11, 0, 0, 1253, 1254, 7, 6, 0, 0, 1254, 1255, 7, 9, 0, 0, 1255, 102, 1, 0, 0, 0, 1256, 1257, 7, 5, 0, 0, 1257, 1258, 7, 2, 0, 0, 1258, 1259, 7, 10, 0, 0, 1259, 1260, 7, 16, 0, 0, 1260, 1261, 7, 19, 0, 0, 1261, 1262, 7, 4, 0, 0, 1262, 1263, 7, 8, 0, 0, 1263, 104, 1, 0, 0, 0, 1264, 1265, 7, 5, 0, 0, 1265, 1266, 7, 2, 0, 0, 1266, 1267, 7, 11, 0, 0, 1267, 1268, 7, 5, 0, 0, 1268, 1269, 7, 0, 0, 0, 1269, 1270, 7, 4, 0, 0, 1270, 1271, 7, 8, 0, 0, 1271, 1272, 7, 11, 0, 0, 1272, 1273, 7, 0, 0, 0, 1273, 1274, 7, 4, 0, 0, 1274, 1275, 7, 8, 0, 0, 1275, 106, 1, 0, 0, 0, 1276, 1277, 7, 5, 0, 0, 1277, 1278, 7, 2, 0, 0, 1278, 1279, 7, 11, 0, 0, 1279, 1280, 7, 12, 0, 0, 1280, 108, 1, 0, 0, 0, 1281, 1282, 7, 5, 0, 0, 1282, 1283, 7, 2, 0, 0, 1283, 1284, 7, 11, 0, 0, 1284, 1285, 7, 18, 0, 0, 1285, 1286, 7, 4, 0, 0, 1286, 1287, 7, 3, 0, 0, 1287, 1288, 7, 0, 0, 0, 1288, 1289, 7, 6, 0, 0, 1289, 1290, 7, 11, 0, 0, 1290, 1291, 7, 4, 0, 0, 1291, 110, 1, 0, 0, 0, 1292, 1293, 7, 5, 0, 0, 1293, 1294, 7, 2, 0, 0, 1294, 1295, 7, 11, 0, 0, 1295, 1296, 7, 4, 0, 0, 1296, 1297, 7, 6, 0, 0, 1297, 1298, 7, 11, 0, 0, 1298, 1299, 7, 19, 0, 0, 1299, 1300, 7, 8, 0, 0, 1300, 112, 1, 0, 0, 0, 1301, 1302, 7, 5, 0, 0, 1302, 1303, 7, 2, 0, 0, 1303, 1304, 7, 18, 0, 0, 1304, 1305, 7, 4, 0, 0, 1305, 114, 1, 0, 0, 0, 1306, 1307, 7, 5, 0, 0, 1307, 1308, 7, 3, 0, 0, 1308, 1309, 7, 8, 0, 0, 1309, 1310, 7, 0, 0, 0, 1310, 1311, 7, 4, 0, 0, 1311, 1312, 7, 8, 0, 0, 1312, 116, 1, 0, 0, 0, 1313, 1314, 7, 5, 0, 0, 1314, 1315, 7, 3, 0, 0, 1315, 1316, 7, 2, 0, 0, 1316, 1317, 7, 11, 0, 0, 1317, 118, 1, 0, 0, 0, 1318, 1319, 7, 5, 0, 0, 1319, 1320, 7, 3, 0, 0, 1320, 1321, 7, 2, 0, 0, 1321, 1322, 7, 18, 0, 0, 1322, 1323, 7, 18, 0, 0, 1323, 120, 1, 0, 0, 0, 1324, 1325, 7, 5, 0, 0, 1325, 1326, 7, 19, 0, 0, 1326, 1327, 7, 1, 0, 0, 1327, 1328, 7, 8, 0, 0, 1328, 122, 1, 0, 0, 0, 1329, 1330, 7, 5, 0, 0, 1330, 1331, 7, 19, 0, 0, 1331, 1332, 7, 3, 0, 0, 1332, 1333, 7, 3, 0, 0, 1333, 1334, 7, 8, 0, 0, 1334, 1335, 7, 11, 0, 0, 1335, 1336, 7, 4, 0, 0, 1336, 124, 1, 0, 0, 0, 1337, 1338, 7, 5, 0, 0, 1338, 1339, 7, 19, 0, 0, 1339, 1340, 7, 3, 0, 0, 1340, 1341, 7, 3, 0, 0, 1341, 1342, 7, 8, 0, 0, 1342, 1343, 7, 11, 0, 0, 1343, 1344, 7, 4, 0, 0, 1344, 1345, 5, 95, 0, 0, 1345, 1346, 7, 9, 0, 0, 1346, 1347, 7, 0, 0, 0, 1347, 1348, 7, 4, 0, 0, 1348, 1349, 7, 8, 0, 0, 1349, 126, 1, 0, 0, 0, 1350, 1351, 7, 5, 0, 0, 1351, 1352, 7, 19, 0, 0, 1352, 1353, 7, 3, 0, 0, 1353, 1354, 7, 3, 0, 0, 1354, 1355, 7, 8, 0, 0, 1355, 1356, 7, 11, 0, 0, 1356, 1357, 7, 4, 0, 0, 1357, 1358, 5, 95, 0, 0, 1358, 1359, 7, 4, 0, 0, 1359, 1360, 7, 6, 0, 0, 1360, 1361, 7, 10, 0, 0, 1361, 1362, 7, 8, 0, 0, 1362, 1363, 7, 18, 0, 0, 1363, 1364, 7, 4, 0, 0, 1364, 1365, 7, 0, 0, 0, 1365, 1366, 7, 10, 0, 0, 1366, 1367, 7, 16, 0, 0, 1367, 128, 1, 0, 0, 0, 1368, 1369, 7, 5, 0, 0, 1369, 1370, 7, 19, 0, 0, 1370, 1371, 7, 3, 0, 0, 1371, 1372, 7, 18, 0, 0, 1372, 1373, 7, 2, 0, 0, 1373, 1374, 7, 3, 0, 0, 1374, 130, 1, 0, 0, 0, 1375, 1376, 7, 9, 0, 0, 1376, 1377, 7, 0, 0, 0, 1377, 1378, 7, 4, 0, 0, 1378, 1379, 7, 0, 0, 0, 1379, 132, 1, 0, 0, 0, 1380, 1381, 7, 9, 0, 0, 1381, 1382, 7, 0, 0, 0, 1382, 1383, 7, 4, 0, 0, 1383, 1384, 7, 0, 0, 0, 1384, 1385, 7, 1, 0, 0, 1385, 1386, 7, 0, 0, 0, 1386, 1387, 7, 18, 0, 0, 1387, 1388, 7, 8, 0, 0, 1388, 134, 1, 0, 0, 0, 1389, 1390, 7, 9, 0, 0, 1390, 1391, 7, 0, 0, 0, 1391, 1392, 7, 4, 0, 0, 1392, 1393, 7, 0, 0, 0, 1393, 1394, 7, 1, 0, 0, 1394, 1395, 7, 0, 0, 0, 1395, 1396, 7, 18, 0, 0, 1396, 1397, 7, 8, 0, 0, 1397, 1398, 7, 18, 0, 0, 1398, 136, 1, 0, 0, 0, 1399, 1400, 7, 5, 0, 0, 1400, 1401, 7, 2, 0, 0, 1401, 1402, 7, 11, 0, 0, 1402, 1403, 7, 11, 0, 0, 1403, 1404, 7, 8, 0, 0, 1404, 1405, 7, 5, 0, 0, 1405, 1406, 7, 4, 0, 0, 1406, 1407, 7, 2, 0, 0, 1407, 1408, 7, 3, 0, 0, 1408, 138, 1, 0, 0, 0, 1409, 1410, 7, 5, 0, 0, 1410, 1411, 7, 2, 0, 0, 1411, 1412, 7, 11, 0, 0, 1412, 1413, 7, 11, 0, 0, 1413, 1414, 7, 8, 0, 0, 1414, 1415, 7, 5, 0, 0, 1415, 1416, 7, 4, 0, 0, 1416, 1417, 7, 2, 0, 0, 1417, 1418, 7, 3, 0, 0, 1418, 1419, 7, 18, 0, 0, 1419, 140, 1, 0, 0, 0, 1420, 1421, 7, 9, 0, 0, 1421, 1422, 7, 0, 0, 0, 1422, 1423, 7, 4, 0, 0, 1423, 1424, 7, 8, 0, 0, 1424, 142, 1, 0, 0, 0, 1425, 1426, 7, 9, 0, 0, 1426, 1427, 7, 0, 0, 0, 1427, 1428, 7, 4, 0, 0, 1428, 1429, 7, 8, 0, 0, 1429, 1430, 7, 4, 0, 0, 1430, 1431, 7, 6, 0, 0, 1431, 1432, 7, 10, 0, 0, 1432, 1433, 7, 8, 0, 0, 1433, 144, 1, 0, 0, 0, 1434, 1435, 7, 9, 0, 0, 1435, 1436, 7, 0, 0, 0, 1436, 1437, 7, 14, 0, 0, 1437, 146, 1, 0, 0, 0, 1438, 1439, 7, 9, 0, 0, 1439, 1440, 7, 0, 0, 0, 1440, 1441, 7, 14, 0, 0, 1441, 1442, 7, 18, 0, 0, 1442, 148, 1, 0, 0, 0, 1443, 1444, 7, 9, 0, 0, 1444, 1445, 7, 0, 0, 0, 1445, 1446, 7, 14, 0, 0, 1446, 1447, 7, 2, 0, 0, 1447, 1448, 7, 12, 0, 0, 1448, 1449, 7, 20, 0, 0, 1449, 1450, 7, 8, 0, 0, 1450, 1451, 7, 8, 0, 0, 1451, 1452, 7, 22, 0, 0, 1452, 150, 1, 0, 0, 0, 1453, 1454, 7, 9, 0, 0, 1454, 1455, 7, 1, 0, 0, 1455, 1456, 7, 16, 0, 0, 1456, 1457, 7, 3, 0, 0, 1457, 1458, 7, 2, 0, 0, 1458, 1459, 7, 16, 0, 0, 1459, 1460, 7, 8, 0, 0, 1460, 1461, 7, 3, 0, 0, 1461, 1462, 7, 4, 0, 0, 1462, 1463, 7, 6, 0, 0, 1463, 1464, 7, 8, 0, 0, 1464, 1465, 7, 18, 0, 0, 1465, 152, 1, 0, 0, 0, 1466, 1467, 7, 9, 0, 0, 1467, 1468, 7, 5, 0, 0, 1468, 1469, 7, 16, 0, 0, 1469, 1470, 7, 3, 0, 0, 1470, 1471, 7, 2, 0, 0, 1471, 1472, 7, 16, 0, 0, 1472, 1473, 7, 8, 0, 0, 1473, 1474, 7, 3, 0, 0, 1474, 1475, 7, 4, 0, 0, 1475, 1476, 7, 6, 0, 0, 1476, 1477, 7, 8, 0, 0, 1477, 1478, 7, 18, 0, 0, 1478, 154, 1, 0, 0, 0, 1479, 1480, 7, 9, 0, 0, 1480, 1481, 7, 9, 0, 0, 1481, 1482, 7, 13, 0, 0, 1482, 156, 1, 0, 0, 0, 1483, 1484, 7, 9, 0, 0, 1484, 1485, 7, 8, 0, 0, 1485, 1486, 7, 1, 0, 0, 1486, 1487, 7, 19, 0, 0, 1487, 1488, 7, 21, 0, 0, 1488, 158, 1, 0, 0, 0, 1489, 1490, 7, 9, 0, 0, 1490, 1491, 7, 8, 0, 0, 1491, 1492, 7, 5, 0, 0, 1492, 160, 1, 0, 0, 0, 1493, 1494, 7, 9, 0, 0, 1494, 1495, 7, 8, 0, 0, 1495, 1496, 7, 5, 0, 0, 1496, 1497, 7, 6, 0, 0, 1497, 1498, 7, 10, 0, 0, 1498, 1499, 7, 0, 0, 0, 1499, 1500, 7, 13, 0, 0, 1500, 162, 1, 0, 0, 0, 1501, 1502, 7, 11, 0, 0, 1502, 1503, 7, 19, 0, 0, 1503, 1504, 7, 10, 0, 0, 1504, 1505, 7, 8, 0, 0, 1505, 1506, 7, 3, 0, 0, 1506, 1507, 7, 6, 0, 0, 1507, 1508, 7, 5, 0, 0, 1508, 164, 1, 0, 0, 0, 1509, 1510, 7, 9, 0, 0, 1510, 1511, 7, 8, 0, 0, 1511, 1512, 7, 12, 0, 0, 1512, 1513, 7, 0, 0, 0, 1513, 1514, 7, 19, 0, 0, 1514, 1515, 7, 13, 0, 0, 1515, 1516, 7, 4, 0, 0, 1516, 166, 1, 0, 0, 0, 1517, 1518, 7, 9, 0, 0, 1518, 1519, 7, 8, 0, 0, 1519, 1520, 7, 12, 0, 0, 1520, 1521, 7, 8, 0, 0, 1521, 1522, 7, 3, 0, 0, 1522, 1523, 7, 3, 0, 0, 1523, 1524, 7, 8, 0, 0, 1524, 1525, 7, 9, 0, 0, 1525, 168, 1, 0, 0, 0, 1526, 1527, 7, 9, 0, 0, 1527, 1528, 7, 8, 0, 0, 1528, 1529, 7, 12, 0, 0, 1529, 1530, 7, 6, 0, 0, 1530, 1531, 7, 11, 0, 0, 1531, 1532, 7, 8, 0, 0, 1532, 1533, 7, 9, 0, 0, 1533, 170, 1, 0, 0, 0, 1534, 1535, 7, 9, 0, 0, 1535, 1536, 7, 8, 0, 0, 1536, 1537, 7, 13, 0, 0, 1537, 1538, 7, 8, 0, 0, 1538, 1539, 7, 4, 0, 0, 1539, 1540, 7, 8, 0, 0, 1540, 172, 1, 0, 0, 0, 1541, 1542, 7, 9, 0, 0, 1542, 1543, 7, 8, 0, 0, 1543, 1544, 7, 13, 0, 0, 1544, 1545, 7, 6, 0, 0, 1545, 1546, 7, 10, 0, 0, 1546, 1547, 7, 6, 0, 0, 1547, 1548, 7, 4, 0, 0, 1548, 1549, 7, 8, 0, 0, 1549, 1550, 7, 9, 0, 0, 1550, 174, 1, 0, 0, 0, 1551, 1552, 7, 9, 0, 0, 1552, 1553, 7, 8, 0, 0, 1553, 1554, 7, 16, 0, 0, 1554, 1555, 7, 8, 0, 0, 1555, 1556, 7, 11, 0, 0, 1556, 1557, 7, 9, 0, 0, 1557, 1558, 7, 8, 0, 0, 1558, 1559, 7, 11, 0, 0, 1559, 1560, 7, 5, 0, 0, 1560, 1561, 7, 14, 0, 0, 1561, 176, 1, 0, 0, 0, 1562, 1563, 7, 9, 0, 0, 1563, 1564, 7, 8, 0, 0, 1564, 1565, 7, 18, 0, 0, 1565, 1566, 7, 5, 0, 0, 1566, 178, 1, 0, 0, 0, 1567, 1568, 7, 9, 0, 0, 1568, 1569, 7, 8, 0, 0, 1569, 1570, 7, 18, 0, 0, 1570, 1571, 7, 5, 0, 0, 1571, 1572, 7, 3, 0, 0, 1572, 1573, 7, 6, 0, 0, 1573, 1574, 7, 1, 0, 0, 1574, 1575, 7, 8, 0, 0, 1575, 180, 1, 0, 0, 0, 1576, 1577, 7, 9, 0, 0, 1577, 1578, 7, 8, 0, 0, 1578, 1579, 7, 4, 0, 0, 1579, 1580, 7, 0, 0, 0, 1580, 1581, 7, 6, 0, 0, 1581, 1582, 7, 13, 0, 0, 1582, 182, 1, 0, 0, 0, 1583, 1584, 7, 9, 0, 0, 1584, 1585, 7, 6, 0, 0, 1585, 1586, 7, 3, 0, 0, 1586, 1587, 7, 8, 0, 0, 1587, 1588, 7, 5, 0, 0, 1588, 1589, 7, 4, 0, 0, 1589, 1590, 7, 2, 0, 0, 1590, 1591, 7, 3, 0, 0, 1591, 1592, 7, 6, 0, 0, 1592, 1593, 7, 8, 0, 0, 1593, 1594, 7, 18, 0, 0, 1594, 184, 1, 0, 0, 0, 1595, 1596, 7, 9, 0, 0, 1596, 1597, 7, 6, 0, 0, 1597, 1598, 7, 3, 0, 0, 1598, 1599, 7, 8, 0, 0, 1599, 1600, 7, 5, 0, 0, 1600, 1601, 7, 4, 0, 0, 1601, 1602, 7, 2, 0, 0, 1602, 1603, 7, 3, 0, 0, 1603, 1604, 7, 14, 0, 0, 1604, 186, 1, 0, 0, 0, 1605, 1606, 7, 9, 0, 0, 1606, 1607, 7, 6, 0, 0, 1607, 1608, 7, 18, 0, 0, 1608, 1609, 7, 0, 0, 0, 1609, 1610, 7, 1, 0, 0, 1610, 1611, 7, 13, 0, 0, 1611, 1612, 7, 8, 0, 0, 1612, 188, 1, 0, 0, 0, 1613, 1614, 7, 9, 0, 0, 1614, 1615, 7, 6, 0, 0, 1615, 1616, 7, 18, 0, 0, 1616, 1617, 7, 0, 0, 0, 1617, 1618, 7, 1, 0, 0, 1618, 1619, 7, 13, 0, 0, 1619, 1620, 7, 8, 0, 0, 1620, 1621, 7, 9, 0, 0, 1621, 190, 1, 0, 0, 0, 1622, 1623, 7, 9, 0, 0, 1623, 1624, 7, 6, 0, 0, 1624, 1625, 7, 18, 0, 0, 1625, 1626, 7, 4, 0, 0, 1626, 1627, 7, 6, 0, 0, 1627, 1628, 7, 11, 0, 0, 1628, 1629, 7, 5, 0, 0, 1629, 1630, 7, 4, 0, 0, 1630, 192, 1, 0, 0, 0, 1631, 1632, 7, 9, 0, 0, 1632, 1633, 7, 6, 0, 0, 1633, 1634, 7, 18, 0, 0, 1634, 1635, 7, 4, 0, 0, 1635, 1636, 7, 3, 0, 0, 1636, 1637, 7, 6, 0, 0, 1637, 1638, 7, 1, 0, 0, 1638, 1639, 7, 19, 0, 0, 1639, 1640, 7, 4, 0, 0, 1640, 1641, 7, 8, 0, 0, 1641, 194, 1, 0, 0, 0, 1642, 1643, 7, 9, 0, 0, 1643, 1644, 7, 6, 0, 0, 1644, 1645, 7, 18, 0, 0, 1645, 1646, 7, 4, 0, 0, 1646, 1647, 7, 3, 0, 0, 1647, 1648, 7, 6, 0, 0, 1648, 1649, 7, 1, 0, 0, 1649, 1650, 7, 19, 0, 0, 1650, 1651, 7, 4, 0, 0, 1651, 1652, 7, 8, 0, 0, 1652, 1653, 7, 9, 0, 0, 1653, 196, 1, 0, 0, 0, 1654, 1655, 7, 9, 0, 0, 1655, 1656, 7, 2, 0, 0, 1656, 198, 1, 0, 0, 0, 1657, 1658, 7, 9, 0, 0, 1658, 1659, 7, 2, 0, 0, 1659, 1660, 7, 19, 0, 0, 1660, 1661, 7, 1, 0, 0, 1661, 1662, 7, 13, 0, 0, 1662, 1663, 7, 8, 0, 0, 1663, 200, 1, 0, 0, 0, 1664, 1665, 7, 9, 0, 0, 1665, 1666, 7, 3, 0, 0, 1666, 1667, 7, 2, 0, 0, 1667, 1668, 7, 16, 0, 0, 1668, 202, 1, 0, 0, 0, 1669, 1670, 7, 3, 0, 0, 1670, 1671, 7, 8, 0, 0, 1671, 1672, 7, 5, 0, 0, 1672, 1673, 7, 2, 0, 0, 1673, 1674, 7, 7, 0, 0, 1674, 1675, 7, 8, 0, 0, 1675, 1676, 7, 3, 0, 0, 1676, 204, 1, 0, 0, 0, 1677, 1678, 7, 9, 0, 0, 1678, 1679, 7, 19, 0, 0, 1679, 1680, 7, 10, 0, 0, 1680, 1681, 7, 16, 0, 0, 1681, 206, 1, 0, 0, 0, 1682, 1683, 5, 36, 0, 0, 1683, 1684, 7, 8, 0, 0, 1684, 1685, 7, 13, 0, 0, 1685, 1686, 7, 8, 0, 0, 1686, 1687, 7, 10, 0, 0, 1687, 1688, 5, 36, 0, 0, 1688, 208, 1, 0, 0, 0, 1689, 1690, 7, 8, 0, 0, 1690, 1691, 7, 13, 0, 0, 1691, 1692, 7, 18, 0, 0, 1692, 1693, 7, 8, 0, 0, 1693, 210, 1, 0, 0, 0, 1694, 1695, 7, 8, 0, 0, 1695, 1696, 7, 11, 0, 0, 1696, 1697, 7, 0, 0, 0, 1697, 1698, 7, 1, 0, 0, 1698, 1699, 7, 13, 0, 0, 1699, 1700, 7, 8, 0, 0, 1700, 212, 1, 0, 0, 0, 1701, 1702, 7, 8, 0, 0, 1702, 1703, 7, 11, 0, 0, 1703, 1704, 7, 0, 0, 0, 1704, 1705, 7, 1, 0, 0, 1705, 1706, 7, 13, 0, 0, 1706, 1707, 7, 8, 0, 0, 1707, 1708, 7, 9, 0, 0, 1708, 214, 1, 0, 0, 0, 1709, 1710, 7, 8, 0, 0, 1710, 1711, 7, 11, 0, 0, 1711, 1712, 7, 9, 0, 0, 1712, 216, 1, 0, 0, 0, 1713, 1714, 7, 8, 0, 0, 1714, 1715, 7, 11, 0, 0, 1715, 1716, 7, 12, 0, 0, 1716, 1717, 7, 2, 0, 0, 1717, 1718, 7, 3, 0, 0, 1718, 1719, 7, 5, 0, 0, 1719, 1720, 7, 8, 0, 0, 1720, 1721, 7, 9, 0, 0, 1721, 218, 1, 0, 0, 0, 1722, 1723, 7, 8, 0, 0, 1723, 1724, 7, 18, 0, 0, 1724, 1725, 7, 5, 0, 0, 1725, 1726, 7, 0, 0, 0, 1726, 1727, 7, 16, 0, 0, 1727, 1728, 7, 8, 0, 0, 1728, 1729, 7, 9, 0, 0, 1729, 220, 1, 0, 0, 0, 1730, 1731, 7, 8, 0, 0, 1731, 1732, 7, 7, 0, 0, 1732, 1733, 7, 8, 0, 0, 1733, 1734, 7, 3, 0, 0, 1734, 1735, 7, 14, 0, 0, 1735, 222, 1, 0, 0, 0, 1736, 1737, 7, 8, 0, 0, 1737, 1738, 7, 23, 0, 0, 1738, 1739, 7, 5, 0, 0, 1739, 1740, 7, 8, 0, 0, 1740, 1741, 7, 16, 0, 0, 1741, 1742, 7, 4, 0, 0, 1742, 224, 1, 0, 0, 0, 1743, 1744, 7, 8, 0, 0, 1744, 1745, 7, 23, 0, 0, 1745, 1746, 7, 5, 0, 0, 1746, 1747, 7, 17, 0, 0, 1747, 1748, 7, 0, 0, 0, 1748, 1749, 7, 11, 0, 0, 1749, 1750, 7, 21, 0, 0, 1750, 1751, 7, 8, 0, 0, 1751, 226, 1, 0, 0, 0, 1752, 1753, 7, 8, 0, 0, 1753, 1754, 7, 23, 0, 0, 1754, 1755, 7, 5, 0, 0, 1755, 1756, 7, 13, 0, 0, 1756, 1757, 7, 19, 0, 0, 1757, 1758, 7, 18, 0, 0, 1758, 1759, 7, 6, 0, 0, 1759, 1760, 7, 7, 0, 0, 1760, 1761, 7, 8, 0, 0, 1761, 228, 1, 0, 0, 0, 1762, 1763, 7, 8, 0, 0, 1763, 1764, 7, 23, 0, 0, 1764, 1765, 7, 8, 0, 0, 1765, 1766, 7, 5, 0, 0, 1766, 1767, 7, 19, 0, 0, 1767, 1768, 7, 4, 0, 0, 1768, 1769, 7, 8, 0, 0, 1769, 230, 1, 0, 0, 0, 1770, 1771, 7, 8, 0, 0, 1771, 1772, 7, 23, 0, 0, 1772, 1773, 7, 8, 0, 0, 1773, 1774, 7, 5, 0, 0, 1774, 1775, 7, 19, 0, 0, 1775, 1776, 7, 4, 0, 0, 1776, 1777, 7, 8, 0, 0, 1777, 1778, 7, 9, 0, 0, 1778, 232, 1, 0, 0, 0, 1779, 1780, 7, 8, 0, 0, 1780, 1781, 7, 23, 0, 0, 1781, 1782, 7, 6, 0, 0, 1782, 1783, 7, 18, 0, 0, 1783, 1784, 7, 4, 0, 0, 1784, 1785, 7, 18, 0, 0, 1785, 234, 1, 0, 0, 0, 1786, 1787, 7, 8, 0, 0, 1787, 1788, 7, 23, 0, 0, 1788, 1789, 7, 16, 0, 0, 1789, 1790, 7, 6, 0, 0, 1790, 1791, 7, 3, 0, 0, 1791, 1792, 7, 8, 0, 0, 1792, 1793, 5, 95, 0, 0, 1793, 1794, 7, 18, 0, 0, 1794, 1795, 7, 11, 0, 0, 1795, 1796, 7, 0, 0, 0, 1796, 1797, 7, 16, 0, 0, 1797, 1798, 7, 18, 0, 0, 1798, 1799, 7, 17, 0, 0, 1799, 1800, 7, 2, 0, 0, 1800, 1801, 7, 4, 0, 0, 1801, 1802, 7, 18, 0, 0, 1802, 236, 1, 0, 0, 0, 1803, 1804, 7, 8, 0, 0, 1804, 1805, 7, 23, 0, 0, 1805, 1806, 7, 16, 0, 0, 1806, 1807, 7, 13, 0, 0, 1807, 1808, 7, 0, 0, 0, 1808, 1809, 7, 6, 0, 0, 1809, 1810, 7, 11, 0, 0, 1810, 238, 1, 0, 0, 0, 1811, 1812, 7, 8, 0, 0, 1812, 1813, 7, 23, 0, 0, 1813, 1814, 7, 16, 0, 0, 1814, 1815, 7, 2, 0, 0, 1815, 1816, 7, 3, 0, 0, 1816, 1817, 7, 4, 0, 0, 1817, 240, 1, 0, 0, 0, 1818, 1819, 7, 8, 0, 0, 1819, 1820, 7, 23, 0, 0, 1820, 1821, 7, 16, 0, 0, 1821, 1822, 7, 3, 0, 0, 1822, 1823, 7, 8, 0, 0, 1823, 1824, 7, 18, 0, 0, 1824, 1825, 7, 18, 0, 0, 1825, 1826, 7, 6, 0, 0, 1826, 1827, 7, 2, 0, 0, 1827, 1828, 7, 11, 0, 0, 1828, 242, 1, 0, 0, 0, 1829, 1830, 7, 8, 0, 0, 1830, 1831, 7, 23, 0, 0, 1831, 1832, 7, 4, 0, 0, 1832, 1833, 7, 8, 0, 0, 1833, 1834, 7, 11, 0, 0, 1834, 1835, 7, 9, 0, 0, 1835, 1836, 7, 8, 0, 0, 1836, 1837, 7, 9, 0, 0, 1837, 244, 1, 0, 0, 0, 1838, 1839, 7, 8, 0, 0, 1839, 1840, 7, 23, 0, 0, 1840, 1841, 7, 4, 0, 0, 1841, 1842, 7, 8, 0, 0, 1842, 1843, 7, 3, 0, 0, 1843, 1844, 7, 11, 0, 0, 1844, 1845, 7, 0, 0, 0, 1845, 1846, 7, 13, 0, 0, 1846, 246, 1, 0, 0, 0, 1847, 1848, 7, 8, 0, 0, 1848, 1849, 7, 23, 0, 0, 1849, 1850, 7, 4, 0, 0, 1850, 1851, 7, 3, 0, 0, 1851, 1852, 7, 0, 0, 0, 1852, 1853, 7, 5, 0, 0, 1853, 1854, 7, 4, 0, 0, 1854, 248, 1, 0, 0, 0, 1855, 1856, 7, 12, 0, 0, 1856, 1857, 7, 0, 0, 0, 1857, 1858, 7, 13, 0, 0, 1858, 1859, 7, 18, 0, 0, 1859, 1860, 7, 8, 0, 0, 1860, 250, 1, 0, 0, 0, 1861, 1862, 7, 12, 0, 0, 1862, 1863, 7, 8, 0, 0, 1863, 1864, 7, 4, 0, 0, 1864, 1865, 7, 5, 0, 0, 1865, 1866, 7, 17, 0, 0, 1866, 252, 1, 0, 0, 0, 1867, 1868, 7, 12, 0, 0, 1868, 1869, 7, 6, 0, 0, 1869, 1870, 7, 8, 0, 0, 1870, 1871, 7, 13, 0, 0, 1871, 1872, 7, 9, 0, 0, 1872, 1873, 7, 18, 0, 0, 1873, 254, 1, 0, 0, 0, 1874, 1875, 7, 12, 0, 0, 1875, 1876, 7, 6, 0, 0, 1876, 1877, 7, 13, 0, 0, 1877, 1878, 7, 8, 0, 0, 1878, 256, 1, 0, 0, 0, 1879, 1880, 7, 12, 0, 0, 1880, 1881, 7, 6, 0, 0, 1881, 1882, 7, 13, 0, 0, 1882, 1883, 7, 8, 0, 0, 1883, 1884, 7, 12, 0, 0, 1884, 1885, 7, 2, 0, 0, 1885, 1886, 7, 3, 0, 0, 1886, 1887, 7, 10, 0, 0, 1887, 1888, 7, 0, 0, 0, 1888, 1889, 7, 4, 0, 0, 1889, 258, 1, 0, 0, 0, 1890, 1891, 7, 12, 0, 0, 1891, 1892, 7, 6, 0, 0, 1892, 1893, 7, 3, 0, 0, 1893, 1894, 7, 18, 0, 0, 1894, 1895, 7, 4, 0, 0, 1895, 260, 1, 0, 0, 0, 1896, 1897, 7, 12, 0, 0, 1897, 1898, 7, 13, 0, 0, 1898, 1899, 7, 2, 0, 0, 1899, 1900, 7, 0, 0, 0, 1900, 1901, 7, 4, 0, 0, 1901, 262, 1, 0, 0, 0, 1902, 1903, 7, 12, 0, 0, 1903, 1904, 7, 13, 0, 0, 1904, 1905, 7, 2, 0, 0, 1905, 1906, 7, 2, 0, 0, 1906, 1907, 7, 3, 0, 0, 1907, 264, 1, 0, 0, 0, 1908, 1909, 7, 12, 0, 0, 1909, 1910, 7, 2, 0, 0, 1910, 1911, 7, 13, 0, 0, 1911, 1912, 7, 13, 0, 0, 1912, 1913, 7, 2, 0, 0, 1913, 1914, 7, 20, 0, 0, 1914, 1915, 7, 6, 0, 0, 1915, 1916, 7, 11, 0, 0, 1916, 1917, 7, 21, 0, 0, 1917, 266, 1, 0, 0, 0, 1918, 1919, 7, 12, 0, 0, 1919, 1920, 7, 2, 0, 0, 1920, 1921, 7, 3, 0, 0, 1921, 268, 1, 0, 0, 0, 1922, 1923, 7, 12, 0, 0, 1923, 1924, 7, 2, 0, 0, 1924, 1925, 7, 3, 0, 0, 1925, 1926, 7, 5, 0, 0, 1926, 1927, 7, 8, 0, 0, 1927, 270, 1, 0, 0, 0, 1928, 1929, 7, 12, 0, 0, 1929, 1930, 7, 2, 0, 0, 1930, 1931, 7, 3, 0, 0, 1931, 1932, 7, 8, 0, 0, 1932, 1933, 7, 6, 0, 0, 1933, 1934, 7, 21, 0, 0, 1934, 1935, 7, 11, 0, 0, 1935, 272, 1, 0, 0, 0, 1936, 1937, 7, 12, 0, 0, 1937, 1938, 7, 2, 0, 0, 1938, 1939, 7, 3, 0, 0, 1939, 1940, 7, 10, 0, 0, 1940, 1941, 7, 0, 0, 0, 1941, 1942, 7, 4, 0, 0, 1942, 274, 1, 0, 0, 0, 1943, 1944, 7, 12, 0, 0, 1944, 1945, 7, 2, 0, 0, 1945, 1946, 7, 3, 0, 0, 1946, 1947, 7, 10, 0, 0, 1947, 1948, 7, 0, 0, 0, 1948, 1949, 7, 4, 0, 0, 1949, 1950, 7, 4, 0, 0, 1950, 1951, 7, 8, 0, 0, 1951, 1952, 7, 9, 0, 0, 1952, 276, 1, 0, 0, 0, 1953, 1954, 7, 12, 0, 0, 1954, 1955, 7, 3, 0, 0, 1955, 1956, 7, 2, 0, 0, 1956, 1957, 7, 10, 0, 0, 1957, 278, 1, 0, 0, 0, 1958, 1959, 7, 12, 0, 0, 1959, 1960, 7, 19, 0, 0, 1960, 1961, 7, 13, 0, 0, 1961, 1962, 7, 13, 0, 0, 1962, 280, 1, 0, 0, 0, 1963, 1964, 7, 12, 0, 0, 1964, 1965, 7, 19, 0, 0, 1965, 1966, 7, 11, 0, 0, 1966, 1967, 7, 5, 0, 0, 1967, 1968, 7, 4, 0, 0, 1968, 1969, 7, 6, 0, 0, 1969, 1970, 7, 2, 0, 0, 1970, 1971, 7, 11, 0, 0, 1971, 282, 1, 0, 0, 0, 1972, 1973, 7, 12, 0, 0, 1973, 1974, 7, 19, 0, 0, 1974, 1975, 7, 11, 0, 0, 1975, 1976, 7, 5, 0, 0, 1976, 1977, 7, 4, 0, 0, 1977, 1978, 7, 6, 0, 0, 1978, 1979, 7, 2, 0, 0, 1979, 1980, 7, 11, 0, 0, 1980, 1981, 7, 18, 0, 0, 1981, 284, 1, 0, 0, 0, 1982, 1983, 7, 21, 0, 0, 1983, 1984, 7, 3, 0, 0, 1984, 1985, 7, 0, 0, 0, 1985, 1986, 7, 11, 0, 0, 1986, 1987, 7, 4, 0, 0, 1987, 286, 1, 0, 0, 0, 1988, 1989, 7, 21, 0, 0, 1989, 1990, 7, 3, 0, 0, 1990, 1991, 7, 2, 0, 0, 1991, 1992, 7, 19, 0, 0, 1992, 1993, 7, 16, 0, 0, 1993, 288, 1, 0, 0, 0, 1994, 1995, 7, 21, 0, 0, 1995, 1996, 7, 3, 0, 0, 1996, 1997, 7, 2, 0, 0, 1997, 1998, 7, 19, 0, 0, 1998, 1999, 7, 16, 0, 0, 1999, 2000, 7, 6, 0, 0, 2000, 2001, 7, 11, 0, 0, 2001, 2002, 7, 21, 0, 0, 2002, 290, 1, 0, 0, 0, 2003, 2004, 7, 17, 0, 0, 2004, 2005, 7, 0, 0, 0, 2005, 2006, 7, 7, 0, 0, 2006, 2007, 7, 6, 0, 0, 2007, 2008, 7, 11, 0, 0, 2008, 2009, 7, 21, 0, 0, 2009, 292, 1, 0, 0, 0, 2010, 2011, 7, 17, 0, 0, 2011, 2012, 7, 2, 0, 0, 2012, 2013, 7, 13, 0, 0, 2013, 2014, 7, 9, 0, 0, 2014, 2015, 5, 95, 0, 0, 2015, 2016, 7, 9, 0, 0, 2016, 2017, 7, 9, 0, 0, 2017, 2018, 7, 13, 0, 0, 2018, 2019, 7, 4, 0, 0, 2019, 2020, 7, 6, 0, 0, 2020, 2021, 7, 10, 0, 0, 2021, 2022, 7, 8, 0, 0, 2022, 294, 1, 0, 0, 0, 2023, 2024, 7, 17, 0, 0, 2024, 2025, 7, 2, 0, 0, 2025, 2026, 7, 19, 0, 0, 2026, 2027, 7, 3, 0, 0, 2027, 296, 1, 0, 0, 0, 2028, 2029, 7, 17, 0, 0, 2029, 2030, 7, 2, 0, 0, 2030, 2031, 7, 19, 0, 0, 2031, 2032, 7, 3, 0, 0, 2032, 2033, 7, 18, 0, 0, 2033, 298, 1, 0, 0, 0, 2034, 2035, 7, 6, 0, 0, 2035, 2036, 7, 9, 0, 0, 2036, 2037, 7, 23, 0, 0, 2037, 2038, 7, 16, 0, 0, 2038, 2039, 7, 3, 0, 0, 2039, 2040, 7, 2, 0, 0, 2040, 2041, 7, 16, 0, 0, 2041, 2042, 7, 8, 0, 0, 2042, 2043, 7, 3, 0, 0, 2043, 2044, 7, 4, 0, 0, 2044, 2045, 7, 6, 0, 0, 2045, 2046, 7, 8, 0, 0, 2046, 2047, 7, 18, 0, 0, 2047, 300, 1, 0, 0, 0, 2048, 2049, 7, 6, 0, 0, 2049, 2050, 7, 12, 0, 0, 2050, 302, 1, 0, 0, 0, 2051, 2052, 7, 6, 0, 0, 2052, 2053, 7, 21, 0, 0, 2053, 2054, 7, 11, 0, 0, 2054, 2055, 7, 2, 0, 0, 2055, 2056, 7, 3, 0, 0, 2056, 2057, 7, 8, 0, 0, 2057, 304, 1, 0, 0, 0, 2058, 2059, 7, 6, 0, 0, 2059, 2060, 7, 10, 0, 0, 2060, 2061, 7, 16, 0, 0, 2061, 2062, 7, 2, 0, 0, 2062, 2063, 7, 3, 0, 0, 2063, 2064, 7, 4, 0, 0, 2064, 306, 1, 0, 0, 0, 2065, 2066, 7, 6, 0, 0, 2066, 2067, 7, 11, 0, 0, 2067, 308, 1, 0, 0, 0, 2068, 2069, 7, 6, 0, 0, 2069, 2070, 7, 11, 0, 0, 2070, 2071, 7, 9, 0, 0, 2071, 2072, 7, 8, 0, 0, 2072, 2073, 7, 23, 0, 0, 2073, 310, 1, 0, 0, 0, 2074, 2075, 7, 6, 0, 0, 2075, 2076, 7, 11, 0, 0, 2076, 2077, 7, 9, 0, 0, 2077, 2078, 7, 8, 0, 0, 2078, 2079, 7, 23, 0, 0, 2079, 2080, 7, 8, 0, 0, 2080, 2081, 7, 18, 0, 0, 2081, 312, 1, 0, 0, 0, 2082, 2083, 7, 6, 0, 0, 2083, 2084, 7, 11, 0, 0, 2084, 2085, 7, 11, 0, 0, 2085, 2086, 7, 8, 0, 0, 2086, 2087, 7, 3, 0, 0, 2087, 314, 1, 0, 0, 0, 2088, 2089, 7, 6, 0, 0, 2089, 2090, 7, 11, 0, 0, 2090, 2091, 7, 16, 0, 0, 2091, 2092, 7, 0, 0, 0, 2092, 2093, 7, 4, 0, 0, 2093, 2094, 7, 17, 0, 0, 2094, 316, 1, 0, 0, 0, 2095, 2096, 7, 6, 0, 0, 2096, 2097, 7, 11, 0, 0, 2097, 2098, 7, 16, 0, 0, 2098, 2099, 7, 19, 0, 0, 2099, 2100, 7, 4, 0, 0, 2100, 2101, 7, 9, 0, 0, 2101, 2102, 7, 3, 0, 0, 2102, 2103, 7, 6, 0, 0, 2103, 2104, 7, 7, 0, 0, 2104, 2105, 7, 8, 0, 0, 2105, 2106, 7, 3, 0, 0, 2106, 318, 1, 0, 0, 0, 2107, 2108, 7, 6, 0, 0, 2108, 2109, 7, 11, 0, 0, 2109, 2110, 7, 16, 0, 0, 2110, 2111, 7, 19, 0, 0, 2111, 2112, 7, 4, 0, 0, 2112, 2113, 7, 12, 0, 0, 2113, 2114, 7, 2, 0, 0, 2114, 2115, 7, 3, 0, 0, 2115, 2116, 7, 10, 0, 0, 2116, 2117, 7, 0, 0, 0, 2117, 2118, 7, 4, 0, 0, 2118, 320, 1, 0, 0, 0, 2119, 2120, 7, 6, 0, 0, 2120, 2121, 7, 11, 0, 0, 2121, 2122, 7, 18, 0, 0, 2122, 2123, 7, 8, 0, 0, 2123, 2124, 7, 3, 0, 0, 2124, 2125, 7, 4, 0, 0, 2125, 322, 1, 0, 0, 0, 2126, 2127, 7, 6, 0, 0, 2127, 2128, 7, 11, 0, 0, 2128, 2129, 7, 4, 0, 0, 2129, 324, 1, 0, 0, 0, 2130, 2131, 7, 6, 0, 0, 2131, 2132, 7, 11, 0, 0, 2132, 2133, 7, 4, 0, 0, 2133, 2134, 7, 8, 0, 0, 2134, 2135, 7, 21, 0, 0, 2135, 2136, 7, 8, 0, 0, 2136, 2137, 7, 3, 0, 0, 2137, 326, 1, 0, 0, 0, 2138, 2139, 7, 6, 0, 0, 2139, 2140, 7, 11, 0, 0, 2140, 2141, 7, 4, 0, 0, 2141, 2142, 7, 8, 0, 0, 2142, 2143, 7, 3, 0, 0, 2143, 2144, 7, 18, 0, 0, 2144, 2145, 7, 8, 0, 0, 2145, 2146, 7, 5, 0, 0, 2146, 2147, 7, 4, 0, 0, 2147, 328, 1, 0, 0, 0, 2148, 2149, 7, 6, 0, 0, 2149, 2150, 7, 11, 0, 0, 2150, 2151, 7, 4, 0, 0, 2151, 2152, 7, 8, 0, 0, 2152, 2153, 7, 3, 0, 0, 2153, 2154, 7, 7, 0, 0, 2154, 2155, 7, 0, 0, 0, 2155, 2156, 7, 13, 0, 0, 2156, 330, 1, 0, 0, 0, 2157, 2158, 7, 6, 0, 0, 2158, 2159, 7, 11, 0, 0, 2159, 2160, 7, 4, 0, 0, 2160, 2161, 7, 2, 0, 0, 2161, 332, 1, 0, 0, 0, 2162, 2163, 7, 6, 0, 0, 2163, 2164, 7, 18, 0, 0, 2164, 334, 1, 0, 0, 0, 2165, 2166, 7, 6, 0, 0, 2166, 2167, 7, 18, 0, 0, 2167, 2168, 7, 2, 0, 0, 2168, 2169, 7, 13, 0, 0, 2169, 2170, 7, 0, 0, 0, 2170, 2171, 7, 4, 0, 0, 2171, 2172, 7, 6, 0, 0, 2172, 2173, 7, 2, 0, 0, 2173, 2174, 7, 11, 0, 0, 2174, 336, 1, 0, 0, 0, 2175, 2176, 7, 6, 0, 0, 2176, 2177, 7, 4, 0, 0, 2177, 2178, 7, 8, 0, 0, 2178, 2179, 7, 10, 0, 0, 2179, 2180, 7, 18, 0, 0, 2180, 338, 1, 0, 0, 0, 2181, 2182, 7, 24, 0, 0, 2182, 2183, 7, 0, 0, 0, 2183, 2184, 7, 3, 0, 0, 2184, 340, 1, 0, 0, 0, 2185, 2186, 7, 24, 0, 0, 2186, 2187, 7, 2, 0, 0, 2187, 2188, 7, 6, 0, 0, 2188, 2189, 7, 11, 0, 0, 2189, 342, 1, 0, 0, 0, 2190, 2191, 7, 24, 0, 0, 2191, 2192, 7, 2, 0, 0, 2192, 2193, 7, 6, 0, 0, 2193, 2194, 7, 11, 0, 0, 2194, 2195, 7, 5, 0, 0, 2195, 2196, 7, 2, 0, 0, 2196, 2197, 7, 18, 0, 0, 2197, 2198, 7, 4, 0, 0, 2198, 344, 1, 0, 0, 0, 2199, 2200, 7, 22, 0, 0, 2200, 2201, 7, 8, 0, 0, 2201, 2202, 7, 14, 0, 0, 2202, 346, 1, 0, 0, 0, 2203, 2204, 7, 22, 0, 0, 2204, 2205, 7, 8, 0, 0, 2205, 2206, 7, 14, 0, 0, 2206, 2207, 7, 18, 0, 0, 2207, 348, 1, 0, 0, 0, 2208, 2209, 5, 36, 0, 0, 2209, 2210, 7, 22, 0, 0, 2210, 2211, 7, 8, 0, 0, 2211, 2212, 7, 14, 0, 0, 2212, 2213, 5, 36, 0, 0, 2213, 350, 1, 0, 0, 0, 2214, 2215, 7, 22, 0, 0, 2215, 2216, 7, 6, 0, 0, 2216, 2217, 7, 13, 0, 0, 2217, 2218, 7, 13, 0, 0, 2218, 352, 1, 0, 0, 0, 2219, 2220, 7, 13, 0, 0, 2220, 2221, 7, 0, 0, 0, 2221, 2222, 7, 18, 0, 0, 2222, 2223, 7, 4, 0, 0, 2223, 354, 1, 0, 0, 0, 2224, 2225, 7, 13, 0, 0, 2225, 2226, 7, 0, 0, 0, 2226, 2227, 7, 4, 0, 0, 2227, 2228, 7, 8, 0, 0, 2228, 2229, 7, 3, 0, 0, 2229, 2230, 7, 0, 0, 0, 2230, 2231, 7, 13, 0, 0, 2231, 356, 1, 0, 0, 0, 2232, 2233, 7, 13, 0, 0, 2233, 2234, 7, 8, 0, 0, 2234, 2235, 7, 0, 0, 0, 2235, 2236, 7, 9, 0, 0, 2236, 2237, 7, 6, 0, 0, 2237, 2238, 7, 11, 0, 0, 2238, 2239, 7, 21, 0, 0, 2239, 358, 1, 0, 0, 0, 2240, 2241, 7, 13, 0, 0, 2241, 2242, 7, 8, 0, 0, 2242, 2243, 7, 12, 0, 0, 2243, 2244, 7, 4, 0, 0, 2244, 360, 1, 0, 0, 0, 2245, 2246, 7, 13, 0, 0, 2246, 2247, 7, 8, 0, 0, 2247, 2248, 7, 18, 0, 0, 2248, 2249, 7, 18, 0, 0, 2249, 362, 1, 0, 0, 0, 2250, 2251, 7, 13, 0, 0, 2251, 2252, 7, 8, 0, 0, 2252, 2253, 7, 7, 0, 0, 2253, 2254, 7, 8, 0, 0, 2254, 2255, 7, 13, 0, 0, 2255, 364, 1, 0, 0, 0, 2256, 2257, 7, 13, 0, 0, 2257, 2258, 7, 6, 0, 0, 2258, 2259, 7, 12, 0, 0, 2259, 2260, 7, 8, 0, 0, 2260, 2261, 7, 5, 0, 0, 2261, 2262, 7, 14, 0, 0, 2262, 2263, 7, 5, 0, 0, 2263, 2264, 7, 13, 0, 0, 2264, 2265, 7, 8, 0, 0, 2265, 366, 1, 0, 0, 0, 2266, 2267, 7, 13, 0, 0, 2267, 2268, 7, 6, 0, 0, 2268, 2269, 7, 22, 0, 0, 2269, 2270, 7, 8, 0, 0, 2270, 368, 1, 0, 0, 0, 2271, 2272, 7, 13, 0, 0, 2272, 2273, 7, 6, 0, 0, 2273, 2274, 7, 10, 0, 0, 2274, 2275, 7, 6, 0, 0, 2275, 2276, 7, 4, 0, 0, 2276, 370, 1, 0, 0, 0, 2277, 2278, 7, 13, 0, 0, 2278, 2279, 7, 6, 0, 0, 2279, 2280, 7, 11, 0, 0, 2280, 2281, 7, 8, 0, 0, 2281, 2282, 7, 18, 0, 0, 2282, 372, 1, 0, 0, 0, 2283, 2284, 7, 13, 0, 0, 2284, 2285, 7, 2, 0, 0, 2285, 2286, 7, 0, 0, 0, 2286, 2287, 7, 9, 0, 0, 2287, 374, 1, 0, 0, 0, 2288, 2289, 7, 13, 0, 0, 2289, 2290, 7, 2, 0, 0, 2290, 2291, 7, 5, 0, 0, 2291, 2292, 7, 0, 0, 0, 2292, 2293, 7, 13, 0, 0, 2293, 376, 1, 0, 0, 0, 2294, 2295, 7, 13, 0, 0, 2295, 2296, 7, 2, 0, 0, 2296, 2297, 7, 5, 0, 0, 2297, 2298, 7, 0, 0, 0, 2298, 2299, 7, 4, 0, 0, 2299, 2300, 7, 6, 0, 0, 2300, 2301, 7, 2, 0, 0, 2301, 2302, 7, 11, 0, 0, 2302, 378, 1, 0, 0, 0, 2303, 2304, 7, 13, 0, 0, 2304, 2305, 7, 2, 0, 0, 2305, 2306, 7, 5, 0, 0, 2306, 2307, 7, 22, 0, 0, 2307, 380, 1, 0, 0, 0, 2308, 2309, 7, 13, 0, 0, 2309, 2310, 7, 2, 0, 0, 2310, 2311, 7, 5, 0, 0, 2311, 2312, 7, 22, 0, 0, 2312, 2313, 7, 18, 0, 0, 2313, 382, 1, 0, 0, 0, 2314, 2315, 7, 13, 0, 0, 2315, 2316, 7, 2, 0, 0, 2316, 2317, 7, 21, 0, 0, 2317, 2318, 7, 6, 0, 0, 2318, 2319, 7, 5, 0, 0, 2319, 2320, 7, 0, 0, 0, 2320, 2321, 7, 13, 0, 0, 2321, 384, 1, 0, 0, 0, 2322, 2323, 7, 13, 0, 0, 2323, 2324, 7, 2, 0, 0, 2324, 2325, 7, 11, 0, 0, 2325, 2326, 7, 21, 0, 0, 2326, 386, 1, 0, 0, 0, 2327, 2328, 7, 10, 0, 0, 2328, 2329, 7, 0, 0, 0, 2329, 2330, 7, 5, 0, 0, 2330, 2331, 7, 3, 0, 0, 2331, 2332, 7, 2, 0, 0, 2332, 388, 1, 0, 0, 0, 2333, 2334, 7, 10, 0, 0, 2334, 2335, 7, 0, 0, 0, 2335, 2336, 7, 11, 0, 0, 2336, 2337, 7, 0, 0, 0, 2337, 2338, 7, 21, 0, 0, 2338, 2339, 7, 8, 0, 0, 2339, 2340, 7, 9, 0, 0, 2340, 390, 1, 0, 0, 0, 2341, 2342, 7, 10, 0, 0, 2342, 2343, 7, 0, 0, 0, 2343, 2344, 7, 11, 0, 0, 2344, 2345, 7, 0, 0, 0, 2345, 2346, 7, 21, 0, 0, 2346, 2347, 7, 8, 0, 0, 2347, 2348, 7, 9, 0, 0, 2348, 2349, 7, 13, 0, 0, 2349, 2350, 7, 2, 0, 0, 2350, 2351, 7, 5, 0, 0, 2351, 2352, 7, 0, 0, 0, 2352, 2353, 7, 4, 0, 0, 2353, 2354, 7, 6, 0, 0, 2354, 2355, 7, 2, 0, 0, 2355, 2356, 7, 11, 0, 0, 2356, 392, 1, 0, 0, 0, 2357, 2358, 7, 10, 0, 0, 2358, 2359, 7, 0, 0, 0, 2359, 2360, 7, 11, 0, 0, 2360, 2361, 7, 0, 0, 0, 2361, 2362, 7, 21, 0, 0, 2362, 2363, 7, 8, 0, 0, 2363, 2364, 7, 10, 0, 0, 2364, 2365, 7, 8, 0, 0, 2365, 2366, 7, 11, 0, 0, 2366, 2367, 7, 4, 0, 0, 2367, 394, 1, 0, 0, 0, 2368, 2369, 7, 10, 0, 0, 2369, 2370, 7, 0, 0, 0, 2370, 2371, 7, 16, 0, 0, 2371, 396, 1, 0, 0, 0, 2372, 2373, 7, 10, 0, 0, 2373, 2374, 7, 0, 0, 0, 2374, 2375, 7, 16, 0, 0, 2375, 2376, 7, 24, 0, 0, 2376, 2377, 7, 2, 0, 0, 2377, 2378, 7, 6, 0, 0, 2378, 2379, 7, 11, 0, 0, 2379, 398, 1, 0, 0, 0, 2380, 2381, 7, 10, 0, 0, 2381, 2382, 7, 0, 0, 0, 2382, 2383, 7, 16, 0, 0, 2383, 2384, 7, 16, 0, 0, 2384, 2385, 7, 6, 0, 0, 2385, 2386, 7, 11, 0, 0, 2386, 2387, 7, 21, 0, 0, 2387, 400, 1, 0, 0, 0, 2388, 2389, 7, 10, 0, 0, 2389, 2390, 7, 0, 0, 0, 2390, 2391, 7, 4, 0, 0, 2391, 2392, 7, 5, 0, 0, 2392, 2393, 7, 17, 0, 0, 2393, 2394, 7, 8, 0, 0, 2394, 2395, 7, 9, 0, 0, 2395, 402, 1, 0, 0, 0, 2396, 2397, 7, 10, 0, 0, 2397, 2398, 7, 0, 0, 0, 2398, 2399, 7, 4, 0, 0, 2399, 2400, 7, 8, 0, 0, 2400, 2401, 7, 3, 0, 0, 2401, 2402, 7, 6, 0, 0, 2402, 2403, 7, 0, 0, 0, 2403, 2404, 7, 13, 0, 0, 2404, 2405, 7, 6, 0, 0, 2405, 2406, 7, 15, 0, 0, 2406, 2407, 7, 8, 0, 0, 2407, 2408, 7, 9, 0, 0, 2408, 404, 1, 0, 0, 0, 2409, 2410, 7, 10, 0, 0, 2410, 2411, 7, 8, 0, 0, 2411, 2412, 7, 3, 0, 0, 2412, 2413, 7, 21, 0, 0, 2413, 2414, 7, 8, 0, 0, 2414, 406, 1, 0, 0, 0, 2415, 2416, 7, 10, 0, 0, 2416, 2417, 7, 8, 0, 0, 2417, 2418, 7, 4, 0, 0, 2418, 2419, 7, 0, 0, 0, 2419, 2420, 7, 9, 0, 0, 2420, 2421, 7, 0, 0, 0, 2421, 2422, 7, 4, 0, 0, 2422, 2423, 7, 0, 0, 0, 2423, 408, 1, 0, 0, 0, 2424, 2425, 7, 10, 0, 0, 2425, 2426, 7, 6, 0, 0, 2426, 2427, 7, 11, 0, 0, 2427, 2428, 7, 19, 0, 0, 2428, 2429, 7, 18, 0, 0, 2429, 410, 1, 0, 0, 0, 2430, 2431, 7, 10, 0, 0, 2431, 2432, 7, 6, 0, 0, 2432, 2433, 7, 11, 0, 0, 2433, 2434, 7, 19, 0, 0, 2434, 2435, 7, 4, 0, 0, 2435, 2436, 7, 8, 0, 0, 2436, 412, 1, 0, 0, 0, 2437, 2438, 7, 10, 0, 0, 2438, 2439, 7, 6, 0, 0, 2439, 2440, 7, 11, 0, 0, 2440, 2441, 7, 19, 0, 0, 2441, 2442, 7, 4, 0, 0, 2442, 2443, 7, 8, 0, 0, 2443, 2444, 7, 18, 0, 0, 2444, 414, 1, 0, 0, 0, 2445, 2446, 7, 10, 0, 0, 2446, 2447, 7, 2, 0, 0, 2447, 2448, 7, 11, 0, 0, 2448, 2449, 7, 4, 0, 0, 2449, 2450, 7, 17, 0, 0, 2450, 416, 1, 0, 0, 0, 2451, 2452, 7, 10, 0, 0, 2452, 2453, 7, 2, 0, 0, 2453, 2454, 7, 11, 0, 0, 2454, 2455, 7, 4, 0, 0, 2455, 2456, 7, 17, 0, 0, 2456, 2457, 7, 18, 0, 0, 2457, 418, 1, 0, 0, 0, 2458, 2459, 7, 10, 0, 0, 2459, 2460, 7, 2, 0, 0, 2460, 2461, 7, 3, 0, 0, 2461, 2462, 7, 8, 0, 0, 2462, 420, 1, 0, 0, 0, 2463, 2464, 7, 10, 0, 0, 2464, 2465, 7, 2, 0, 0, 2465, 2466, 7, 7, 0, 0, 2466, 2467, 7, 8, 0, 0, 2467, 422, 1, 0, 0, 0, 2468, 2469, 7, 10, 0, 0, 2469, 2470, 7, 18, 0, 0, 2470, 2471, 7, 5, 0, 0, 2471, 2472, 7, 22, 0, 0, 2472, 424, 1, 0, 0, 0, 2473, 2474, 7, 11, 0, 0, 2474, 2475, 7, 2, 0, 0, 2475, 2476, 7, 11, 0, 0, 2476, 2477, 7, 8, 0, 0, 2477, 426, 1, 0, 0, 0, 2478, 2479, 7, 11, 0, 0, 2479, 2480, 7, 2, 0, 0, 2480, 2481, 7, 3, 0, 0, 2481, 2482, 7, 8, 0, 0, 2482, 2483, 7, 13, 0, 0, 2483, 2484, 7, 14, 0, 0, 2484, 428, 1, 0, 0, 0, 2485, 2486, 7, 11, 0, 0, 2486, 2487, 7, 2, 0, 0, 2487, 2488, 7, 18, 0, 0, 2488, 2489, 7, 5, 0, 0, 2489, 2490, 7, 0, 0, 0, 2490, 2491, 7, 11, 0, 0, 2491, 430, 1, 0, 0, 0, 2492, 2493, 7, 11, 0, 0, 2493, 2494, 7, 2, 0, 0, 2494, 2495, 7, 4, 0, 0, 2495, 432, 1, 0, 0, 0, 2496, 2497, 7, 11, 0, 0, 2497, 2498, 7, 2, 0, 0, 2498, 2499, 7, 7, 0, 0, 2499, 2500, 7, 0, 0, 0, 2500, 2501, 7, 13, 0, 0, 2501, 2502, 7, 6, 0, 0, 2502, 2503, 7, 9, 0, 0, 2503, 2504, 7, 0, 0, 0, 2504, 2505, 7, 4, 0, 0, 2505, 2506, 7, 8, 0, 0, 2506, 434, 1, 0, 0, 0, 2507, 2508, 7, 11, 0, 0, 2508, 2509, 7, 2, 0, 0, 2509, 2510, 5, 95, 0, 0, 2510, 2511, 7, 9, 0, 0, 2511, 2512, 7, 3, 0, 0, 2512, 2513, 7, 2, 0, 0, 2513, 2514, 7, 16, 0, 0, 2514, 436, 1, 0, 0, 0, 2515, 2516, 7, 11, 0, 0, 2516, 2517, 7, 19, 0, 0, 2517, 2518, 7, 13, 0, 0, 2518, 2519, 7, 13, 0, 0, 2519, 438, 1, 0, 0, 0, 2520, 2521, 7, 11, 0, 0, 2521, 2522, 7, 19, 0, 0, 2522, 2523, 7, 13, 0, 0, 2523, 2524, 7, 13, 0, 0, 2524, 2525, 7, 18, 0, 0, 2525, 440, 1, 0, 0, 0, 2526, 2527, 7, 2, 0, 0, 2527, 2528, 7, 12, 0, 0, 2528, 442, 1, 0, 0, 0, 2529, 2530, 7, 2, 0, 0, 2530, 2531, 7, 12, 0, 0, 2531, 2532, 7, 12, 0, 0, 2532, 2533, 7, 13, 0, 0, 2533, 2534, 7, 6, 0, 0, 2534, 2535, 7, 11, 0, 0, 2535, 2536, 7, 8, 0, 0, 2536, 444, 1, 0, 0, 0, 2537, 2538, 7, 2, 0, 0, 2538, 2539, 7, 12, 0, 0, 2539, 2540, 7, 12, 0, 0, 2540, 2541, 7, 18, 0, 0, 2541, 2542, 7, 8, 0, 0, 2542, 2543, 7, 4, 0, 0, 2543, 446, 1, 0, 0, 0, 2544, 2545, 7, 2, 0, 0, 2545, 2546, 7, 11, 0, 0, 2546, 448, 1, 0, 0, 0, 2547, 2548, 7, 2, 0, 0, 2548, 2549, 7, 11, 0, 0, 2549, 2550, 7, 13, 0, 0, 2550, 2551, 7, 14, 0, 0, 2551, 450, 1, 0, 0, 0, 2552, 2553, 7, 2, 0, 0, 2553, 2554, 7, 16, 0, 0, 2554, 2555, 7, 8, 0, 0, 2555, 2556, 7, 3, 0, 0, 2556, 2557, 7, 0, 0, 0, 2557, 2558, 7, 4, 0, 0, 2558, 2559, 7, 2, 0, 0, 2559, 2560, 7, 3, 0, 0, 2560, 452, 1, 0, 0, 0, 2561, 2562, 7, 2, 0, 0, 2562, 2563, 7, 16, 0, 0, 2563, 2564, 7, 4, 0, 0, 2564, 2565, 7, 6, 0, 0, 2565, 2566, 7, 2, 0, 0, 2566, 2567, 7, 11, 0, 0, 2567, 454, 1, 0, 0, 0, 2568, 2569, 7, 2, 0, 0, 2569, 2570, 7, 3, 0, 0, 2570, 456, 1, 0, 0, 0, 2571, 2572, 7, 2, 0, 0, 2572, 2573, 7, 3, 0, 0, 2573, 2574, 7, 9, 0, 0, 2574, 2575, 7, 8, 0, 0, 2575, 2576, 7, 3, 0, 0, 2576, 458, 1, 0, 0, 0, 2577, 2578, 7, 2, 0, 0, 2578, 2579, 7, 19, 0, 0, 2579, 2580, 7, 4, 0, 0, 2580, 460, 1, 0, 0, 0, 2581, 2582, 7, 2, 0, 0, 2582, 2583, 7, 19, 0, 0, 2583, 2584, 7, 4, 0, 0, 2584, 2585, 7, 8, 0, 0, 2585, 2586, 7, 3, 0, 0, 2586, 462, 1, 0, 0, 0, 2587, 2588, 7, 2, 0, 0, 2588, 2589, 7, 19, 0, 0, 2589, 2590, 7, 4, 0, 0, 2590, 2591, 7, 16, 0, 0, 2591, 2592, 7, 19, 0, 0, 2592, 2593, 7, 4, 0, 0, 2593, 2594, 7, 9, 0, 0, 2594, 2595, 7, 3, 0, 0, 2595, 2596, 7, 6, 0, 0, 2596, 2597, 7, 7, 0, 0, 2597, 2598, 7, 8, 0, 0, 2598, 2599, 7, 3, 0, 0, 2599, 464, 1, 0, 0, 0, 2600, 2601, 7, 2, 0, 0, 2601, 2602, 7, 19, 0, 0, 2602, 2603, 7, 4, 0, 0, 2603, 2604, 7, 16, 0, 0, 2604, 2605, 7, 19, 0, 0, 2605, 2606, 7, 4, 0, 0, 2606, 2607, 7, 12, 0, 0, 2607, 2608, 7, 2, 0, 0, 2608, 2609, 7, 3, 0, 0, 2609, 2610, 7, 10, 0, 0, 2610, 2611, 7, 0, 0, 0, 2611, 2612, 7, 4, 0, 0, 2612, 466, 1, 0, 0, 0, 2613, 2614, 7, 2, 0, 0, 2614, 2615, 7, 7, 0, 0, 2615, 2616, 7, 8, 0, 0, 2616, 2617, 7, 3, 0, 0, 2617, 468, 1, 0, 0, 0, 2618, 2619, 7, 2, 0, 0, 2619, 2620, 7, 7, 0, 0, 2620, 2621, 7, 8, 0, 0, 2621, 2622, 7, 3, 0, 0, 2622, 2623, 7, 20, 0, 0, 2623, 2624, 7, 3, 0, 0, 2624, 2625, 7, 6, 0, 0, 2625, 2626, 7, 4, 0, 0, 2626, 2627, 7, 8, 0, 0, 2627, 470, 1, 0, 0, 0, 2628, 2629, 7, 2, 0, 0, 2629, 2630, 7, 20, 0, 0, 2630, 2631, 7, 11, 0, 0, 2631, 2632, 7, 8, 0, 0, 2632, 2633, 7, 3, 0, 0, 2633, 472, 1, 0, 0, 0, 2634, 2635, 7, 16, 0, 0, 2635, 2636, 7, 0, 0, 0, 2636, 2637, 7, 3, 0, 0, 2637, 2638, 7, 4, 0, 0, 2638, 2639, 7, 6, 0, 0, 2639, 2640, 7, 4, 0, 0, 2640, 2641, 7, 6, 0, 0, 2641, 2642, 7, 2, 0, 0, 2642, 2643, 7, 11, 0, 0, 2643, 474, 1, 0, 0, 0, 2644, 2645, 7, 16, 0, 0, 2645, 2646, 7, 0, 0, 0, 2646, 2647, 7, 3, 0, 0, 2647, 2648, 7, 4, 0, 0, 2648, 2649, 7, 6, 0, 0, 2649, 2650, 7, 4, 0, 0, 2650, 2651, 7, 6, 0, 0, 2651, 2652, 7, 2, 0, 0, 2652, 2653, 7, 11, 0, 0, 2653, 2654, 7, 8, 0, 0, 2654, 2655, 7, 9, 0, 0, 2655, 476, 1, 0, 0, 0, 2656, 2657, 7, 16, 0, 0, 2657, 2658, 7, 0, 0, 0, 2658, 2659, 7, 3, 0, 0, 2659, 2660, 7, 4, 0, 0, 2660, 2661, 7, 6, 0, 0, 2661, 2662, 7, 4, 0, 0, 2662, 2663, 7, 6, 0, 0, 2663, 2664, 7, 2, 0, 0, 2664, 2665, 7, 11, 0, 0, 2665, 2666, 7, 18, 0, 0, 2666, 478, 1, 0, 0, 0, 2667, 2668, 7, 16, 0, 0, 2668, 2669, 7, 0, 0, 0, 2669, 2670, 7, 4, 0, 0, 2670, 2671, 7, 17, 0, 0, 2671, 480, 1, 0, 0, 0, 2672, 2673, 7, 16, 0, 0, 2673, 2674, 7, 8, 0, 0, 2674, 2675, 7, 3, 0, 0, 2675, 2676, 7, 5, 0, 0, 2676, 2677, 7, 8, 0, 0, 2677, 2678, 7, 11, 0, 0, 2678, 2679, 7, 4, 0, 0, 2679, 482, 1, 0, 0, 0, 2680, 2681, 7, 16, 0, 0, 2681, 2682, 7, 22, 0, 0, 2682, 2683, 7, 12, 0, 0, 2683, 2684, 7, 22, 0, 0, 2684, 2685, 5, 95, 0, 0, 2685, 2686, 7, 24, 0, 0, 2686, 2687, 7, 2, 0, 0, 2687, 2688, 7, 6, 0, 0, 2688, 2689, 7, 11, 0, 0, 2689, 484, 1, 0, 0, 0, 2690, 2691, 7, 16, 0, 0, 2691, 2692, 7, 13, 0, 0, 2692, 2693, 7, 0, 0, 0, 2693, 2694, 7, 11, 0, 0, 2694, 486, 1, 0, 0, 0, 2695, 2696, 7, 16, 0, 0, 2696, 2697, 7, 13, 0, 0, 2697, 2698, 7, 0, 0, 0, 2698, 2699, 7, 11, 0, 0, 2699, 2700, 7, 18, 0, 0, 2700, 488, 1, 0, 0, 0, 2701, 2702, 7, 16, 0, 0, 2702, 2703, 7, 13, 0, 0, 2703, 2704, 7, 19, 0, 0, 2704, 2705, 7, 18, 0, 0, 2705, 490, 1, 0, 0, 0, 2706, 2707, 7, 16, 0, 0, 2707, 2708, 7, 2, 0, 0, 2708, 2709, 7, 2, 0, 0, 2709, 2710, 7, 13, 0, 0, 2710, 492, 1, 0, 0, 0, 2711, 2712, 7, 16, 0, 0, 2712, 2713, 7, 3, 0, 0, 2713, 2714, 7, 8, 0, 0, 2714, 2715, 7, 5, 0, 0, 2715, 2716, 7, 8, 0, 0, 2716, 2717, 7, 9, 0, 0, 2717, 2718, 7, 6, 0, 0, 2718, 2719, 7, 11, 0, 0, 2719, 2720, 7, 21, 0, 0, 2720, 494, 1, 0, 0, 0, 2721, 2722, 7, 16, 0, 0, 2722, 2723, 7, 3, 0, 0, 2723, 2724, 7, 8, 0, 0, 2724, 2725, 7, 5, 0, 0, 2725, 2726, 7, 6, 0, 0, 2726, 2727, 7, 18, 0, 0, 2727, 2728, 7, 6, 0, 0, 2728, 2729, 7, 2, 0, 0, 2729, 2730, 7, 11, 0, 0, 2730, 496, 1, 0, 0, 0, 2731, 2732, 7, 16, 0, 0, 2732, 2733, 7, 3, 0, 0, 2733, 2734, 7, 8, 0, 0, 2734, 2735, 7, 16, 0, 0, 2735, 2736, 7, 0, 0, 0, 2736, 2737, 7, 3, 0, 0, 2737, 2738, 7, 8, 0, 0, 2738, 498, 1, 0, 0, 0, 2739, 2740, 7, 16, 0, 0, 2740, 2741, 7, 3, 0, 0, 2741, 2742, 7, 8, 0, 0, 2742, 2743, 7, 18, 0, 0, 2743, 2744, 7, 8, 0, 0, 2744, 2745, 7, 3, 0, 0, 2745, 2746, 7, 7, 0, 0, 2746, 2747, 7, 8, 0, 0, 2747, 500, 1, 0, 0, 0, 2748, 2749, 7, 16, 0, 0, 2749, 2750, 7, 3, 0, 0, 2750, 2751, 7, 6, 0, 0, 2751, 2752, 7, 10, 0, 0, 2752, 2753, 7, 0, 0, 0, 2753, 2754, 7, 3, 0, 0, 2754, 2755, 7, 14, 0, 0, 2755, 502, 1, 0, 0, 0, 2756, 2757, 7, 16, 0, 0, 2757, 2758, 7, 3, 0, 0, 2758, 2759, 7, 6, 0, 0, 2759, 2760, 7, 11, 0, 0, 2760, 2761, 7, 5, 0, 0, 2761, 2762, 7, 6, 0, 0, 2762, 2763, 7, 16, 0, 0, 2763, 2764, 7, 0, 0, 0, 2764, 2765, 7, 13, 0, 0, 2765, 2766, 7, 18, 0, 0, 2766, 504, 1, 0, 0, 0, 2767, 2768, 7, 16, 0, 0, 2768, 2769, 7, 3, 0, 0, 2769, 2770, 7, 2, 0, 0, 2770, 2771, 7, 5, 0, 0, 2771, 2772, 7, 8, 0, 0, 2772, 2773, 7, 9, 0, 0, 2773, 2774, 7, 19, 0, 0, 2774, 2775, 7, 3, 0, 0, 2775, 2776, 7, 8, 0, 0, 2776, 506, 1, 0, 0, 0, 2777, 2778, 7, 16, 0, 0, 2778, 2779, 7, 3, 0, 0, 2779, 2780, 7, 2, 0, 0, 2780, 2781, 7, 4, 0, 0, 2781, 2782, 7, 8, 0, 0, 2782, 2783, 7, 5, 0, 0, 2783, 2784, 7, 4, 0, 0, 2784, 2785, 7, 6, 0, 0, 2785, 2786, 7, 2, 0, 0, 2786, 2787, 7, 11, 0, 0, 2787, 508, 1, 0, 0, 0, 2788, 2789, 7, 16, 0, 0, 2789, 2790, 7, 19, 0, 0, 2790, 2791, 7, 3, 0, 0, 2791, 2792, 7, 21, 0, 0, 2792, 2793, 7, 8, 0, 0, 2793, 510, 1, 0, 0, 0, 2794, 2795, 7, 25, 0, 0, 2795, 2796, 7, 19, 0, 0, 2796, 2797, 7, 0, 0, 0, 2797, 2798, 7, 13, 0, 0, 2798, 2799, 7, 6, 0, 0, 2799, 2800, 7, 12, 0, 0, 2800, 2801, 7, 14, 0, 0, 2801, 512, 1, 0, 0, 0, 2802, 2803, 7, 25, 0, 0, 2803, 2804, 7, 19, 0, 0, 2804, 2805, 7, 0, 0, 0, 2805, 2806, 7, 3, 0, 0, 2806, 2807, 7, 4, 0, 0, 2807, 2808, 7, 8, 0, 0, 2808, 2809, 7, 3, 0, 0, 2809, 514, 1, 0, 0, 0, 2810, 2811, 7, 25, 0, 0, 2811, 2812, 7, 19, 0, 0, 2812, 2813, 7, 8, 0, 0, 2813, 2814, 7, 3, 0, 0, 2814, 2815, 7, 14, 0, 0, 2815, 516, 1, 0, 0, 0, 2816, 2817, 7, 25, 0, 0, 2817, 2818, 7, 19, 0, 0, 2818, 2819, 7, 8, 0, 0, 2819, 2820, 7, 3, 0, 0, 2820, 2821, 7, 14, 0, 0, 2821, 2822, 5, 95, 0, 0, 2822, 2823, 7, 16, 0, 0, 2823, 2824, 7, 0, 0, 0, 2824, 2825, 7, 3, 0, 0, 2825, 2826, 7, 0, 0, 0, 2826, 2827, 7, 13, 0, 0, 2827, 2828, 7, 13, 0, 0, 2828, 2829, 7, 8, 0, 0, 2829, 2830, 7, 13, 0, 0, 2830, 2831, 7, 6, 0, 0, 2831, 2832, 7, 18, 0, 0, 2832, 2833, 7, 10, 0, 0, 2833, 518, 1, 0, 0, 0, 2834, 2835, 7, 3, 0, 0, 2835, 2836, 7, 0, 0, 0, 2836, 2837, 7, 11, 0, 0, 2837, 2838, 7, 21, 0, 0, 2838, 2839, 7, 8, 0, 0, 2839, 520, 1, 0, 0, 0, 2840, 2841, 7, 3, 0, 0, 2841, 2842, 7, 8, 0, 0, 2842, 2843, 7, 0, 0, 0, 2843, 2844, 7, 9, 0, 0, 2844, 522, 1, 0, 0, 0, 2845, 2846, 7, 3, 0, 0, 2846, 2847, 7, 8, 0, 0, 2847, 2848, 7, 0, 0, 0, 2848, 2849, 7, 9, 0, 0, 2849, 2850, 7, 2, 0, 0, 2850, 2851, 7, 11, 0, 0, 2851, 2852, 7, 13, 0, 0, 2852, 2853, 7, 14, 0, 0, 2853, 524, 1, 0, 0, 0, 2854, 2855, 7, 3, 0, 0, 2855, 2856, 7, 8, 0, 0, 2856, 2857, 7, 0, 0, 0, 2857, 2858, 7, 9, 0, 0, 2858, 2859, 7, 18, 0, 0, 2859, 526, 1, 0, 0, 0, 2860, 2861, 7, 3, 0, 0, 2861, 2862, 7, 8, 0, 0, 2862, 2863, 7, 0, 0, 0, 2863, 2864, 7, 13, 0, 0, 2864, 528, 1, 0, 0, 0, 2865, 2866, 7, 3, 0, 0, 2866, 2867, 7, 8, 0, 0, 2867, 2868, 7, 1, 0, 0, 2868, 2869, 7, 19, 0, 0, 2869, 2870, 7, 6, 0, 0, 2870, 2871, 7, 13, 0, 0, 2871, 2872, 7, 9, 0, 0, 2872, 530, 1, 0, 0, 0, 2873, 2874, 7, 3, 0, 0, 2874, 2875, 7, 8, 0, 0, 2875, 2876, 7, 5, 0, 0, 2876, 2877, 7, 2, 0, 0, 2877, 2878, 7, 3, 0, 0, 2878, 2879, 7, 9, 0, 0, 2879, 2880, 7, 3, 0, 0, 2880, 2881, 7, 8, 0, 0, 2881, 2882, 7, 0, 0, 0, 2882, 2883, 7, 9, 0, 0, 2883, 2884, 7, 8, 0, 0, 2884, 2885, 7, 3, 0, 0, 2885, 532, 1, 0, 0, 0, 2886, 2887, 7, 3, 0, 0, 2887, 2888, 7, 8, 0, 0, 2888, 2889, 7, 5, 0, 0, 2889, 2890, 7, 2, 0, 0, 2890, 2891, 7, 3, 0, 0, 2891, 2892, 7, 9, 0, 0, 2892, 2893, 7, 20, 0, 0, 2893, 2894, 7, 3, 0, 0, 2894, 2895, 7, 6, 0, 0, 2895, 2896, 7, 4, 0, 0, 2896, 2897, 7, 8, 0, 0, 2897, 2898, 7, 3, 0, 0, 2898, 534, 1, 0, 0, 0, 2899, 2900, 7, 3, 0, 0, 2900, 2901, 7, 8, 0, 0, 2901, 2902, 7, 9, 0, 0, 2902, 2903, 7, 19, 0, 0, 2903, 2904, 7, 5, 0, 0, 2904, 2905, 7, 8, 0, 0, 2905, 536, 1, 0, 0, 0, 2906, 2907, 7, 3, 0, 0, 2907, 2908, 7, 8, 0, 0, 2908, 2909, 7, 12, 0, 0, 2909, 2910, 7, 8, 0, 0, 2910, 2911, 7, 3, 0, 0, 2911, 2912, 7, 8, 0, 0, 2912, 2913, 7, 11, 0, 0, 2913, 2914, 7, 5, 0, 0, 2914, 2915, 7, 8, 0, 0, 2915, 2916, 7, 18, 0, 0, 2916, 538, 1, 0, 0, 0, 2917, 2918, 7, 3, 0, 0, 2918, 2919, 7, 8, 0, 0, 2919, 2920, 7, 21, 0, 0, 2920, 2921, 7, 8, 0, 0, 2921, 2922, 7, 23, 0, 0, 2922, 2923, 7, 16, 0, 0, 2923, 540, 1, 0, 0, 0, 2924, 2925, 7, 3, 0, 0, 2925, 2926, 7, 8, 0, 0, 2926, 2927, 7, 13, 0, 0, 2927, 2928, 7, 2, 0, 0, 2928, 2929, 7, 0, 0, 0, 2929, 2930, 7, 9, 0, 0, 2930, 542, 1, 0, 0, 0, 2931, 2932, 7, 3, 0, 0, 2932, 2933, 7, 8, 0, 0, 2933, 2934, 7, 13, 0, 0, 2934, 2935, 7, 14, 0, 0, 2935, 544, 1, 0, 0, 0, 2936, 2937, 7, 3, 0, 0, 2937, 2938, 7, 8, 0, 0, 2938, 2939, 7, 10, 0, 0, 2939, 2940, 7, 2, 0, 0, 2940, 2941, 7, 4, 0, 0, 2941, 2942, 7, 8, 0, 0, 2942, 546, 1, 0, 0, 0, 2943, 2944, 7, 3, 0, 0, 2944, 2945, 7, 8, 0, 0, 2945, 2946, 7, 11, 0, 0, 2946, 2947, 7, 0, 0, 0, 2947, 2948, 7, 10, 0, 0, 2948, 2949, 7, 8, 0, 0, 2949, 548, 1, 0, 0, 0, 2950, 2951, 7, 3, 0, 0, 2951, 2952, 7, 8, 0, 0, 2952, 2953, 7, 2, 0, 0, 2953, 2954, 7, 16, 0, 0, 2954, 2955, 7, 4, 0, 0, 2955, 2956, 7, 6, 0, 0, 2956, 2957, 7, 10, 0, 0, 2957, 2958, 7, 6, 0, 0, 2958, 2959, 7, 15, 0, 0, 2959, 2960, 7, 0, 0, 0, 2960, 2961, 7, 4, 0, 0, 2961, 2962, 7, 6, 0, 0, 2962, 2963, 7, 2, 0, 0, 2963, 2964, 7, 11, 0, 0, 2964, 550, 1, 0, 0, 0, 2965, 2966, 7, 3, 0, 0, 2966, 2967, 7, 8, 0, 0, 2967, 2968, 7, 16, 0, 0, 2968, 2969, 7, 0, 0, 0, 2969, 2970, 7, 6, 0, 0, 2970, 2971, 7, 3, 0, 0, 2971, 552, 1, 0, 0, 0, 2972, 2973, 7, 3, 0, 0, 2973, 2974, 7, 8, 0, 0, 2974, 2975, 7, 16, 0, 0, 2975, 2976, 7, 13, 0, 0, 2976, 554, 1, 0, 0, 0, 2977, 2978, 7, 3, 0, 0, 2978, 2979, 7, 8, 0, 0, 2979, 2980, 7, 16, 0, 0, 2980, 2981, 7, 13, 0, 0, 2981, 2982, 7, 0, 0, 0, 2982, 2983, 7, 5, 0, 0, 2983, 2984, 7, 8, 0, 0, 2984, 556, 1, 0, 0, 0, 2985, 2986, 7, 3, 0, 0, 2986, 2987, 7, 8, 0, 0, 2987, 2988, 7, 16, 0, 0, 2988, 2989, 7, 13, 0, 0, 2989, 2990, 7, 6, 0, 0, 2990, 2991, 7, 5, 0, 0, 2991, 2992, 7, 0, 0, 0, 2992, 2993, 7, 4, 0, 0, 2993, 2994, 7, 6, 0, 0, 2994, 2995, 7, 2, 0, 0, 2995, 2996, 7, 11, 0, 0, 2996, 558, 1, 0, 0, 0, 2997, 2998, 7, 3, 0, 0, 2998, 2999, 7, 8, 0, 0, 2999, 3000, 7, 18, 0, 0, 3000, 3001, 7, 2, 0, 0, 3001, 3002, 7, 19, 0, 0, 3002, 3003, 7, 3, 0, 0, 3003, 3004, 7, 5, 0, 0, 3004, 3005, 7, 8, 0, 0, 3005, 560, 1, 0, 0, 0, 3006, 3007, 7, 3, 0, 0, 3007, 3008, 7, 8, 0, 0, 3008, 3009, 7, 18, 0, 0, 3009, 3010, 7, 16, 0, 0, 3010, 3011, 7, 8, 0, 0, 3011, 3012, 7, 5, 0, 0, 3012, 3013, 7, 4, 0, 0, 3013, 562, 1, 0, 0, 0, 3014, 3015, 7, 3, 0, 0, 3015, 3016, 7, 8, 0, 0, 3016, 3017, 7, 18, 0, 0, 3017, 3018, 7, 4, 0, 0, 3018, 3019, 7, 3, 0, 0, 3019, 3020, 7, 6, 0, 0, 3020, 3021, 7, 5, 0, 0, 3021, 3022, 7, 4, 0, 0, 3022, 564, 1, 0, 0, 0, 3023, 3024, 7, 3, 0, 0, 3024, 3025, 7, 8, 0, 0, 3025, 3026, 7, 7, 0, 0, 3026, 3027, 7, 2, 0, 0, 3027, 3028, 7, 22, 0, 0, 3028, 3029, 7, 8, 0, 0, 3029, 566, 1, 0, 0, 0, 3030, 3031, 7, 3, 0, 0, 3031, 3032, 7, 8, 0, 0, 3032, 3033, 7, 20, 0, 0, 3033, 3034, 7, 3, 0, 0, 3034, 3035, 7, 6, 0, 0, 3035, 3036, 7, 4, 0, 0, 3036, 3037, 7, 8, 0, 0, 3037, 568, 1, 0, 0, 0, 3038, 3039, 7, 3, 0, 0, 3039, 3040, 7, 6, 0, 0, 3040, 3041, 7, 21, 0, 0, 3041, 3042, 7, 17, 0, 0, 3042, 3043, 7, 4, 0, 0, 3043, 570, 1, 0, 0, 0, 3044, 3045, 7, 3, 0, 0, 3045, 3046, 7, 13, 0, 0, 3046, 3047, 7, 6, 0, 0, 3047, 3048, 7, 22, 0, 0, 3048, 3049, 7, 8, 0, 0, 3049, 572, 1, 0, 0, 0, 3050, 3051, 7, 3, 0, 0, 3051, 3052, 7, 2, 0, 0, 3052, 3053, 7, 13, 0, 0, 3053, 3054, 7, 8, 0, 0, 3054, 574, 1, 0, 0, 0, 3055, 3056, 7, 3, 0, 0, 3056, 3057, 7, 2, 0, 0, 3057, 3058, 7, 13, 0, 0, 3058, 3059, 7, 8, 0, 0, 3059, 3060, 7, 18, 0, 0, 3060, 576, 1, 0, 0, 0, 3061, 3062, 7, 3, 0, 0, 3062, 3063, 7, 2, 0, 0, 3063, 3064, 7, 13, 0, 0, 3064, 3065, 7, 13, 0, 0, 3065, 3066, 7, 1, 0, 0, 3066, 3067, 7, 0, 0, 0, 3067, 3068, 7, 5, 0, 0, 3068, 3069, 7, 22, 0, 0, 3069, 578, 1, 0, 0, 0, 3070, 3071, 7, 3, 0, 0, 3071, 3072, 7, 2, 0, 0, 3072, 3073, 7, 13, 0, 0, 3073, 3074, 7, 13, 0, 0, 3074, 3075, 7, 19, 0, 0, 3075, 3076, 7, 16, 0, 0, 3076, 580, 1, 0, 0, 0, 3077, 3078, 7, 3, 0, 0, 3078, 3079, 7, 2, 0, 0, 3079, 3080, 7, 20, 0, 0, 3080, 582, 1, 0, 0, 0, 3081, 3082, 7, 3, 0, 0, 3082, 3083, 7, 2, 0, 0, 3083, 3084, 7, 20, 0, 0, 3084, 3085, 7, 18, 0, 0, 3085, 584, 1, 0, 0, 0, 3086, 3087, 7, 18, 0, 0, 3087, 3088, 7, 5, 0, 0, 3088, 3089, 7, 17, 0, 0, 3089, 3090, 7, 8, 0, 0, 3090, 3091, 7, 9, 0, 0, 3091, 3092, 7, 19, 0, 0, 3092, 3093, 7, 13, 0, 0, 3093, 3094, 7, 8, 0, 0, 3094, 3095, 7, 9, 0, 0, 3095, 586, 1, 0, 0, 0, 3096, 3097, 7, 18, 0, 0, 3097, 3098, 7, 5, 0, 0, 3098, 3099, 7, 17, 0, 0, 3099, 3100, 7, 8, 0, 0, 3100, 3101, 7, 9, 0, 0, 3101, 3102, 7, 19, 0, 0, 3102, 3103, 7, 13, 0, 0, 3103, 3104, 7, 6, 0, 0, 3104, 3105, 7, 11, 0, 0, 3105, 3106, 7, 21, 0, 0, 3106, 3107, 5, 95, 0, 0, 3107, 3108, 7, 16, 0, 0, 3108, 3109, 7, 2, 0, 0, 3109, 3110, 7, 13, 0, 0, 3110, 3111, 7, 6, 0, 0, 3111, 3112, 7, 5, 0, 0, 3112, 3113, 7, 14, 0, 0, 3113, 588, 1, 0, 0, 0, 3114, 3115, 7, 18, 0, 0, 3115, 3116, 7, 5, 0, 0, 3116, 3117, 7, 17, 0, 0, 3117, 3118, 7, 8, 0, 0, 3118, 3119, 7, 10, 0, 0, 3119, 3120, 7, 0, 0, 0, 3120, 590, 1, 0, 0, 0, 3121, 3122, 7, 18, 0, 0, 3122, 3123, 7, 5, 0, 0, 3123, 3124, 7, 17, 0, 0, 3124, 3125, 7, 8, 0, 0, 3125, 3126, 7, 10, 0, 0, 3126, 3127, 7, 0, 0, 0, 3127, 3128, 7, 18, 0, 0, 3128, 592, 1, 0, 0, 0, 3129, 3130, 7, 18, 0, 0, 3130, 3131, 7, 8, 0, 0, 3131, 3132, 7, 5, 0, 0, 3132, 3133, 7, 2, 0, 0, 3133, 3134, 7, 11, 0, 0, 3134, 3135, 7, 9, 0, 0, 3135, 594, 1, 0, 0, 0, 3136, 3137, 7, 18, 0, 0, 3137, 3138, 7, 8, 0, 0, 3138, 3139, 7, 5, 0, 0, 3139, 3140, 7, 2, 0, 0, 3140, 3141, 7, 11, 0, 0, 3141, 3142, 7, 9, 0, 0, 3142, 3143, 7, 18, 0, 0, 3143, 596, 1, 0, 0, 0, 3144, 3145, 7, 18, 0, 0, 3145, 3146, 7, 8, 0, 0, 3146, 3147, 7, 13, 0, 0, 3147, 3148, 7, 8, 0, 0, 3148, 3149, 7, 5, 0, 0, 3149, 3150, 7, 4, 0, 0, 3150, 598, 1, 0, 0, 0, 3151, 3152, 7, 18, 0, 0, 3152, 3153, 7, 8, 0, 0, 3153, 3154, 7, 10, 0, 0, 3154, 3155, 7, 6, 0, 0, 3155, 600, 1, 0, 0, 0, 3156, 3157, 7, 18, 0, 0, 3157, 3158, 7, 8, 0, 0, 3158, 3159, 7, 3, 0, 0, 3159, 3160, 7, 9, 0, 0, 3160, 3161, 7, 8, 0, 0, 3161, 602, 1, 0, 0, 0, 3162, 3163, 7, 18, 0, 0, 3163, 3164, 7, 8, 0, 0, 3164, 3165, 7, 3, 0, 0, 3165, 3166, 7, 9, 0, 0, 3166, 3167, 7, 8, 0, 0, 3167, 3168, 7, 16, 0, 0, 3168, 3169, 7, 3, 0, 0, 3169, 3170, 7, 2, 0, 0, 3170, 3171, 7, 16, 0, 0, 3171, 3172, 7, 8, 0, 0, 3172, 3173, 7, 3, 0, 0, 3173, 3174, 7, 4, 0, 0, 3174, 3175, 7, 6, 0, 0, 3175, 3176, 7, 8, 0, 0, 3176, 3177, 7, 18, 0, 0, 3177, 604, 1, 0, 0, 0, 3178, 3179, 7, 18, 0, 0, 3179, 3180, 7, 8, 0, 0, 3180, 3181, 7, 3, 0, 0, 3181, 3182, 7, 7, 0, 0, 3182, 3183, 7, 8, 0, 0, 3183, 3184, 7, 3, 0, 0, 3184, 606, 1, 0, 0, 0, 3185, 3186, 7, 18, 0, 0, 3186, 3187, 7, 8, 0, 0, 3187, 3188, 7, 4, 0, 0, 3188, 608, 1, 0, 0, 0, 3189, 3190, 7, 18, 0, 0, 3190, 3191, 7, 8, 0, 0, 3191, 3192, 7, 4, 0, 0, 3192, 3193, 7, 18, 0, 0, 3193, 610, 1, 0, 0, 0, 3194, 3195, 7, 18, 0, 0, 3195, 3196, 7, 8, 0, 0, 3196, 3197, 7, 4, 0, 0, 3197, 3198, 5, 95, 0, 0, 3198, 3199, 7, 5, 0, 0, 3199, 3200, 7, 19, 0, 0, 3200, 3201, 7, 3, 0, 0, 3201, 3202, 7, 3, 0, 0, 3202, 3203, 7, 8, 0, 0, 3203, 3204, 7, 11, 0, 0, 3204, 3205, 7, 4, 0, 0, 3205, 3206, 5, 95, 0, 0, 3206, 3207, 7, 18, 0, 0, 3207, 3208, 7, 11, 0, 0, 3208, 3209, 7, 0, 0, 0, 3209, 3210, 7, 16, 0, 0, 3210, 3211, 7, 18, 0, 0, 3211, 3212, 7, 17, 0, 0, 3212, 3213, 7, 2, 0, 0, 3213, 3214, 7, 4, 0, 0, 3214, 612, 1, 0, 0, 0, 3215, 3216, 7, 18, 0, 0, 3216, 3217, 7, 17, 0, 0, 3217, 3218, 7, 0, 0, 0, 3218, 3219, 7, 3, 0, 0, 3219, 3220, 7, 8, 0, 0, 3220, 3221, 7, 9, 0, 0, 3221, 614, 1, 0, 0, 0, 3222, 3223, 7, 18, 0, 0, 3223, 3224, 7, 17, 0, 0, 3224, 3225, 7, 2, 0, 0, 3225, 3226, 7, 20, 0, 0, 3226, 616, 1, 0, 0, 0, 3227, 3228, 7, 18, 0, 0, 3228, 3229, 7, 17, 0, 0, 3229, 3230, 7, 2, 0, 0, 3230, 3231, 7, 20, 0, 0, 3231, 3232, 5, 95, 0, 0, 3232, 3233, 7, 9, 0, 0, 3233, 3234, 7, 0, 0, 0, 3234, 3235, 7, 4, 0, 0, 3235, 3236, 7, 0, 0, 0, 3236, 3237, 7, 1, 0, 0, 3237, 3238, 7, 0, 0, 0, 3238, 3239, 7, 18, 0, 0, 3239, 3240, 7, 8, 0, 0, 3240, 618, 1, 0, 0, 0, 3241, 3242, 7, 18, 0, 0, 3242, 3243, 7, 22, 0, 0, 3243, 3244, 7, 8, 0, 0, 3244, 3245, 7, 20, 0, 0, 3245, 3246, 7, 8, 0, 0, 3246, 3247, 7, 9, 0, 0, 3247, 620, 1, 0, 0, 0, 3248, 3249, 7, 18, 0, 0, 3249, 3250, 7, 10, 0, 0, 3250, 3251, 7, 0, 0, 0, 3251, 3252, 7, 13, 0, 0, 3252, 3253, 7, 13, 0, 0, 3253, 3254, 7, 6, 0, 0, 3254, 3255, 7, 11, 0, 0, 3255, 3256, 7, 4, 0, 0, 3256, 622, 1, 0, 0, 0, 3257, 3258, 7, 18, 0, 0, 3258, 3259, 7, 11, 0, 0, 3259, 3260, 7, 0, 0, 0, 3260, 3261, 7, 16, 0, 0, 3261, 3262, 7, 18, 0, 0, 3262, 3263, 7, 17, 0, 0, 3263, 3264, 7, 2, 0, 0, 3264, 3265, 7, 4, 0, 0, 3265, 624, 1, 0, 0, 0, 3266, 3267, 7, 18, 0, 0, 3267, 3268, 7, 2, 0, 0, 3268, 3269, 7, 10, 0, 0, 3269, 3270, 7, 8, 0, 0, 3270, 626, 1, 0, 0, 0, 3271, 3272, 7, 18, 0, 0, 3272, 3273, 7, 2, 0, 0, 3273, 3274, 7, 3, 0, 0, 3274, 3275, 7, 4, 0, 0, 3275, 628, 1, 0, 0, 0, 3276, 3277, 7, 18, 0, 0, 3277, 3278, 7, 2, 0, 0, 3278, 3279, 7, 3, 0, 0, 3279, 3280, 7, 4, 0, 0, 3280, 3281, 7, 8, 0, 0, 3281, 3282, 7, 9, 0, 0, 3282, 630, 1, 0, 0, 0, 3283, 3284, 7, 18, 0, 0, 3284, 3285, 7, 16, 0, 0, 3285, 3286, 7, 8, 0, 0, 3286, 3287, 7, 5, 0, 0, 3287, 632, 1, 0, 0, 0, 3288, 3289, 7, 18, 0, 0, 3289, 3290, 7, 18, 0, 0, 3290, 3291, 7, 13, 0, 0, 3291, 634, 1, 0, 0, 0, 3292, 3293, 7, 18, 0, 0, 3293, 3294, 7, 4, 0, 0, 3294, 3295, 7, 0, 0, 0, 3295, 3296, 7, 3, 0, 0, 3296, 3297, 7, 4, 0, 0, 3297, 636, 1, 0, 0, 0, 3298, 3299, 7, 18, 0, 0, 3299, 3300, 7, 4, 0, 0, 3300, 3301, 7, 0, 0, 0, 3301, 3302, 7, 4, 0, 0, 3302, 3303, 7, 6, 0, 0, 3303, 3304, 7, 18, 0, 0, 3304, 3305, 7, 4, 0, 0, 3305, 3306, 7, 6, 0, 0, 3306, 3307, 7, 5, 0, 0, 3307, 3308, 7, 18, 0, 0, 3308, 638, 1, 0, 0, 0, 3309, 3310, 7, 18, 0, 0, 3310, 3311, 7, 4, 0, 0, 3311, 3312, 7, 0, 0, 0, 3312, 3313, 7, 4, 0, 0, 3313, 3314, 7, 19, 0, 0, 3314, 3315, 7, 18, 0, 0, 3315, 640, 1, 0, 0, 0, 3316, 3317, 7, 18, 0, 0, 3317, 3318, 7, 4, 0, 0, 3318, 3319, 7, 2, 0, 0, 3319, 3320, 7, 3, 0, 0, 3320, 3321, 7, 8, 0, 0, 3321, 3322, 7, 9, 0, 0, 3322, 642, 1, 0, 0, 0, 3323, 3324, 7, 18, 0, 0, 3324, 3325, 7, 4, 0, 0, 3325, 3326, 7, 3, 0, 0, 3326, 3327, 7, 8, 0, 0, 3327, 3328, 7, 0, 0, 0, 3328, 3329, 7, 10, 0, 0, 3329, 3330, 7, 4, 0, 0, 3330, 3331, 7, 0, 0, 0, 3331, 3332, 7, 1, 0, 0, 3332, 3333, 7, 13, 0, 0, 3333, 3334, 7, 8, 0, 0, 3334, 644, 1, 0, 0, 0, 3335, 3336, 7, 18, 0, 0, 3336, 3337, 7, 4, 0, 0, 3337, 3338, 7, 3, 0, 0, 3338, 3339, 7, 6, 0, 0, 3339, 3340, 7, 11, 0, 0, 3340, 3341, 7, 21, 0, 0, 3341, 646, 1, 0, 0, 0, 3342, 3343, 7, 18, 0, 0, 3343, 3344, 7, 4, 0, 0, 3344, 3345, 7, 3, 0, 0, 3345, 3346, 7, 19, 0, 0, 3346, 3347, 7, 5, 0, 0, 3347, 3348, 7, 4, 0, 0, 3348, 648, 1, 0, 0, 0, 3349, 3350, 7, 18, 0, 0, 3350, 3351, 7, 19, 0, 0, 3351, 3352, 7, 10, 0, 0, 3352, 3353, 7, 10, 0, 0, 3353, 3354, 7, 0, 0, 0, 3354, 3355, 7, 3, 0, 0, 3355, 3356, 7, 14, 0, 0, 3356, 650, 1, 0, 0, 0, 3357, 3358, 7, 18, 0, 0, 3358, 3359, 7, 14, 0, 0, 3359, 3360, 7, 11, 0, 0, 3360, 3361, 7, 5, 0, 0, 3361, 652, 1, 0, 0, 0, 3362, 3363, 7, 18, 0, 0, 3363, 3364, 7, 14, 0, 0, 3364, 3365, 7, 18, 0, 0, 3365, 3366, 7, 4, 0, 0, 3366, 3367, 7, 8, 0, 0, 3367, 3368, 7, 10, 0, 0, 3368, 3369, 5, 95, 0, 0, 3369, 3370, 7, 4, 0, 0, 3370, 3371, 7, 6, 0, 0, 3371, 3372, 7, 10, 0, 0, 3372, 3373, 7, 8, 0, 0, 3373, 654, 1, 0, 0, 0, 3374, 3375, 7, 18, 0, 0, 3375, 3376, 7, 14, 0, 0, 3376, 3377, 7, 18, 0, 0, 3377, 3378, 7, 4, 0, 0, 3378, 3379, 7, 8, 0, 0, 3379, 3380, 7, 10, 0, 0, 3380, 3381, 5, 95, 0, 0, 3381, 3382, 7, 7, 0, 0, 3382, 3383, 7, 8, 0, 0, 3383, 3384, 7, 3, 0, 0, 3384, 3385, 7, 18, 0, 0, 3385, 3386, 7, 6, 0, 0, 3386, 3387, 7, 2, 0, 0, 3387, 3388, 7, 11, 0, 0, 3388, 656, 1, 0, 0, 0, 3389, 3390, 7, 4, 0, 0, 3390, 3391, 7, 0, 0, 0, 3391, 3392, 7, 1, 0, 0, 3392, 3393, 7, 13, 0, 0, 3393, 3394, 7, 8, 0, 0, 3394, 658, 1, 0, 0, 0, 3395, 3396, 7, 4, 0, 0, 3396, 3397, 7, 0, 0, 0, 3397, 3398, 7, 1, 0, 0, 3398, 3399, 7, 13, 0, 0, 3399, 3400, 7, 8, 0, 0, 3400, 3401, 7, 18, 0, 0, 3401, 660, 1, 0, 0, 0, 3402, 3403, 7, 4, 0, 0, 3403, 3404, 7, 0, 0, 0, 3404, 3405, 7, 1, 0, 0, 3405, 3406, 7, 13, 0, 0, 3406, 3407, 7, 8, 0, 0, 3407, 3408, 7, 18, 0, 0, 3408, 3409, 7, 0, 0, 0, 3409, 3410, 7, 10, 0, 0, 3410, 3411, 7, 16, 0, 0, 3411, 3412, 7, 13, 0, 0, 3412, 3413, 7, 8, 0, 0, 3413, 662, 1, 0, 0, 0, 3414, 3415, 7, 4, 0, 0, 3415, 3416, 7, 1, 0, 0, 3416, 3417, 7, 13, 0, 0, 3417, 3418, 7, 16, 0, 0, 3418, 3419, 7, 3, 0, 0, 3419, 3420, 7, 2, 0, 0, 3420, 3421, 7, 16, 0, 0, 3421, 3422, 7, 8, 0, 0, 3422, 3423, 7, 3, 0, 0, 3423, 3424, 7, 4, 0, 0, 3424, 3425, 7, 6, 0, 0, 3425, 3426, 7, 8, 0, 0, 3426, 3427, 7, 18, 0, 0, 3427, 664, 1, 0, 0, 0, 3428, 3429, 7, 4, 0, 0, 3429, 3430, 7, 8, 0, 0, 3430, 3431, 7, 10, 0, 0, 3431, 3432, 7, 16, 0, 0, 3432, 3433, 7, 2, 0, 0, 3433, 3434, 7, 3, 0, 0, 3434, 3435, 7, 0, 0, 0, 3435, 3436, 7, 3, 0, 0, 3436, 3437, 7, 14, 0, 0, 3437, 666, 1, 0, 0, 0, 3438, 3439, 7, 4, 0, 0, 3439, 3440, 7, 8, 0, 0, 3440, 3441, 7, 3, 0, 0, 3441, 3442, 7, 10, 0, 0, 3442, 3443, 7, 6, 0, 0, 3443, 3444, 7, 11, 0, 0, 3444, 3445, 7, 0, 0, 0, 3445, 3446, 7, 4, 0, 0, 3446, 3447, 7, 8, 0, 0, 3447, 3448, 7, 9, 0, 0, 3448, 668, 1, 0, 0, 0, 3449, 3450, 7, 4, 0, 0, 3450, 3451, 7, 17, 0, 0, 3451, 3452, 7, 8, 0, 0, 3452, 3453, 7, 11, 0, 0, 3453, 670, 1, 0, 0, 0, 3454, 3455, 7, 4, 0, 0, 3455, 3456, 7, 6, 0, 0, 3456, 3457, 7, 10, 0, 0, 3457, 3458, 7, 8, 0, 0, 3458, 672, 1, 0, 0, 0, 3459, 3460, 7, 4, 0, 0, 3460, 3461, 7, 6, 0, 0, 3461, 3462, 7, 10, 0, 0, 3462, 3463, 7, 8, 0, 0, 3463, 3464, 7, 18, 0, 0, 3464, 3465, 7, 4, 0, 0, 3465, 3466, 7, 0, 0, 0, 3466, 3467, 7, 10, 0, 0, 3467, 3468, 7, 16, 0, 0, 3468, 674, 1, 0, 0, 0, 3469, 3470, 7, 4, 0, 0, 3470, 3471, 7, 6, 0, 0, 3471, 3472, 7, 10, 0, 0, 3472, 3473, 7, 8, 0, 0, 3473, 3474, 7, 18, 0, 0, 3474, 3475, 7, 4, 0, 0, 3475, 3476, 7, 0, 0, 0, 3476, 3477, 7, 10, 0, 0, 3477, 3478, 7, 16, 0, 0, 3478, 3479, 7, 13, 0, 0, 3479, 3480, 7, 2, 0, 0, 3480, 3481, 7, 5, 0, 0, 3481, 3482, 7, 0, 0, 0, 3482, 3483, 7, 13, 0, 0, 3483, 3484, 7, 4, 0, 0, 3484, 3485, 7, 15, 0, 0, 3485, 676, 1, 0, 0, 0, 3486, 3487, 7, 4, 0, 0, 3487, 3488, 7, 6, 0, 0, 3488, 3489, 7, 10, 0, 0, 3489, 3490, 7, 8, 0, 0, 3490, 3491, 7, 18, 0, 0, 3491, 3492, 7, 4, 0, 0, 3492, 3493, 7, 0, 0, 0, 3493, 3494, 7, 10, 0, 0, 3494, 3495, 7, 16, 0, 0, 3495, 3496, 7, 4, 0, 0, 3496, 3497, 7, 15, 0, 0, 3497, 678, 1, 0, 0, 0, 3498, 3499, 7, 4, 0, 0, 3499, 3500, 7, 6, 0, 0, 3500, 3501, 7, 11, 0, 0, 3501, 3502, 7, 14, 0, 0, 3502, 3503, 7, 6, 0, 0, 3503, 3504, 7, 11, 0, 0, 3504, 3505, 7, 4, 0, 0, 3505, 680, 1, 0, 0, 0, 3506, 3507, 7, 4, 0, 0, 3507, 3508, 7, 2, 0, 0, 3508, 682, 1, 0, 0, 0, 3509, 3510, 7, 4, 0, 0, 3510, 3511, 7, 2, 0, 0, 3511, 3512, 7, 19, 0, 0, 3512, 3513, 7, 5, 0, 0, 3513, 3514, 7, 17, 0, 0, 3514, 684, 1, 0, 0, 0, 3515, 3516, 7, 4, 0, 0, 3516, 3517, 7, 3, 0, 0, 3517, 3518, 7, 0, 0, 0, 3518, 3519, 7, 6, 0, 0, 3519, 3520, 7, 13, 0, 0, 3520, 3521, 7, 6, 0, 0, 3521, 3522, 7, 11, 0, 0, 3522, 3523, 7, 21, 0, 0, 3523, 686, 1, 0, 0, 0, 3524, 3525, 7, 4, 0, 0, 3525, 3526, 7, 3, 0, 0, 3526, 3527, 7, 0, 0, 0, 3527, 3528, 7, 11, 0, 0, 3528, 3529, 7, 18, 0, 0, 3529, 3530, 7, 0, 0, 0, 3530, 3531, 7, 5, 0, 0, 3531, 3532, 7, 4, 0, 0, 3532, 3533, 7, 6, 0, 0, 3533, 3534, 7, 2, 0, 0, 3534, 3535, 7, 11, 0, 0, 3535, 688, 1, 0, 0, 0, 3536, 3537, 7, 4, 0, 0, 3537, 3538, 7, 3, 0, 0, 3538, 3539, 7, 0, 0, 0, 3539, 3540, 7, 11, 0, 0, 3540, 3541, 7, 18, 0, 0, 3541, 3542, 7, 0, 0, 0, 3542, 3543, 7, 5, 0, 0, 3543, 3544, 7, 4, 0, 0, 3544, 3545, 7, 6, 0, 0, 3545, 3546, 7, 2, 0, 0, 3546, 3547, 7, 11, 0, 0, 3547, 3548, 7, 0, 0, 0, 3548, 3549, 7, 13, 0, 0, 3549, 690, 1, 0, 0, 0, 3550, 3551, 7, 4, 0, 0, 3551, 3552, 7, 3, 0, 0, 3552, 3553, 7, 0, 0, 0, 3553, 3554, 7, 11, 0, 0, 3554, 3555, 7, 18, 0, 0, 3555, 3556, 7, 0, 0, 0, 3556, 3557, 7, 5, 0, 0, 3557, 3558, 7, 4, 0, 0, 3558, 3559, 7, 6, 0, 0, 3559, 3560, 7, 2, 0, 0, 3560, 3561, 7, 11, 0, 0, 3561, 3562, 7, 18, 0, 0, 3562, 692, 1, 0, 0, 0, 3563, 3564, 7, 4, 0, 0, 3564, 3565, 7, 3, 0, 0, 3565, 3566, 7, 0, 0, 0, 3566, 3567, 7, 11, 0, 0, 3567, 3568, 7, 18, 0, 0, 3568, 3569, 7, 12, 0, 0, 3569, 3570, 7, 2, 0, 0, 3570, 3571, 7, 3, 0, 0, 3571, 3572, 7, 10, 0, 0, 3572, 694, 1, 0, 0, 0, 3573, 3574, 7, 4, 0, 0, 3574, 3575, 7, 3, 0, 0, 3575, 3576, 7, 6, 0, 0, 3576, 3577, 7, 21, 0, 0, 3577, 3578, 7, 21, 0, 0, 3578, 3579, 7, 8, 0, 0, 3579, 3580, 7, 3, 0, 0, 3580, 696, 1, 0, 0, 0, 3581, 3582, 7, 4, 0, 0, 3582, 3583, 7, 3, 0, 0, 3583, 3584, 7, 6, 0, 0, 3584, 3585, 7, 10, 0, 0, 3585, 698, 1, 0, 0, 0, 3586, 3587, 7, 4, 0, 0, 3587, 3588, 7, 3, 0, 0, 3588, 3589, 7, 19, 0, 0, 3589, 3590, 7, 8, 0, 0, 3590, 700, 1, 0, 0, 0, 3591, 3592, 7, 4, 0, 0, 3592, 3593, 7, 3, 0, 0, 3593, 3594, 7, 19, 0, 0, 3594, 3595, 7, 11, 0, 0, 3595, 3596, 7, 5, 0, 0, 3596, 3597, 7, 0, 0, 0, 3597, 3598, 7, 4, 0, 0, 3598, 3599, 7, 8, 0, 0, 3599, 702, 1, 0, 0, 0, 3600, 3601, 7, 4, 0, 0, 3601, 3602, 7, 14, 0, 0, 3602, 3603, 7, 16, 0, 0, 3603, 3604, 7, 8, 0, 0, 3604, 704, 1, 0, 0, 0, 3605, 3606, 7, 19, 0, 0, 3606, 3607, 7, 11, 0, 0, 3607, 3608, 7, 0, 0, 0, 3608, 3609, 7, 3, 0, 0, 3609, 3610, 7, 5, 0, 0, 3610, 3611, 7, 17, 0, 0, 3611, 3612, 7, 6, 0, 0, 3612, 3613, 7, 7, 0, 0, 3613, 3614, 7, 8, 0, 0, 3614, 706, 1, 0, 0, 0, 3615, 3616, 7, 19, 0, 0, 3616, 3617, 7, 11, 0, 0, 3617, 3618, 7, 1, 0, 0, 3618, 3619, 7, 2, 0, 0, 3619, 3620, 7, 19, 0, 0, 3620, 3621, 7, 11, 0, 0, 3621, 3622, 7, 9, 0, 0, 3622, 3623, 7, 8, 0, 0, 3623, 3624, 7, 9, 0, 0, 3624, 708, 1, 0, 0, 0, 3625, 3626, 7, 19, 0, 0, 3626, 3627, 7, 11, 0, 0, 3627, 3628, 7, 9, 0, 0, 3628, 3629, 7, 2, 0, 0, 3629, 710, 1, 0, 0, 0, 3630, 3631, 7, 19, 0, 0, 3631, 3632, 7, 11, 0, 0, 3632, 3633, 7, 6, 0, 0, 3633, 3634, 7, 2, 0, 0, 3634, 3635, 7, 11, 0, 0, 3635, 712, 1, 0, 0, 0, 3636, 3637, 7, 19, 0, 0, 3637, 3638, 7, 11, 0, 0, 3638, 3639, 7, 6, 0, 0, 3639, 3640, 7, 2, 0, 0, 3640, 3641, 7, 11, 0, 0, 3641, 3642, 7, 4, 0, 0, 3642, 3643, 7, 14, 0, 0, 3643, 3644, 7, 16, 0, 0, 3644, 3645, 7, 8, 0, 0, 3645, 714, 1, 0, 0, 0, 3646, 3647, 7, 19, 0, 0, 3647, 3648, 7, 11, 0, 0, 3648, 3649, 7, 6, 0, 0, 3649, 3650, 7, 25, 0, 0, 3650, 3651, 7, 19, 0, 0, 3651, 3652, 7, 8, 0, 0, 3652, 716, 1, 0, 0, 0, 3653, 3654, 7, 19, 0, 0, 3654, 3655, 7, 11, 0, 0, 3655, 3656, 7, 6, 0, 0, 3656, 3657, 7, 25, 0, 0, 3657, 3658, 7, 19, 0, 0, 3658, 3659, 7, 8, 0, 0, 3659, 3660, 7, 24, 0, 0, 3660, 3661, 7, 2, 0, 0, 3661, 3662, 7, 6, 0, 0, 3662, 3663, 7, 11, 0, 0, 3663, 718, 1, 0, 0, 0, 3664, 3665, 7, 19, 0, 0, 3665, 3666, 7, 11, 0, 0, 3666, 3667, 7, 22, 0, 0, 3667, 3668, 7, 11, 0, 0, 3668, 3669, 7, 2, 0, 0, 3669, 3670, 7, 20, 0, 0, 3670, 3671, 7, 11, 0, 0, 3671, 720, 1, 0, 0, 0, 3672, 3673, 7, 19, 0, 0, 3673, 3674, 7, 11, 0, 0, 3674, 3675, 7, 13, 0, 0, 3675, 3676, 7, 2, 0, 0, 3676, 3677, 7, 5, 0, 0, 3677, 3678, 7, 22, 0, 0, 3678, 722, 1, 0, 0, 0, 3679, 3680, 7, 19, 0, 0, 3680, 3681, 7, 11, 0, 0, 3681, 3682, 7, 10, 0, 0, 3682, 3683, 7, 0, 0, 0, 3683, 3684, 7, 11, 0, 0, 3684, 3685, 7, 0, 0, 0, 3685, 3686, 7, 21, 0, 0, 3686, 3687, 7, 8, 0, 0, 3687, 3688, 7, 9, 0, 0, 3688, 724, 1, 0, 0, 0, 3689, 3690, 7, 19, 0, 0, 3690, 3691, 7, 11, 0, 0, 3691, 3692, 7, 18, 0, 0, 3692, 3693, 7, 8, 0, 0, 3693, 3694, 7, 4, 0, 0, 3694, 726, 1, 0, 0, 0, 3695, 3696, 7, 19, 0, 0, 3696, 3697, 7, 11, 0, 0, 3697, 3698, 7, 18, 0, 0, 3698, 3699, 7, 6, 0, 0, 3699, 3700, 7, 21, 0, 0, 3700, 3701, 7, 11, 0, 0, 3701, 3702, 7, 8, 0, 0, 3702, 3703, 7, 9, 0, 0, 3703, 728, 1, 0, 0, 0, 3704, 3705, 7, 19, 0, 0, 3705, 3706, 7, 16, 0, 0, 3706, 3707, 7, 9, 0, 0, 3707, 3708, 7, 0, 0, 0, 3708, 3709, 7, 4, 0, 0, 3709, 3710, 7, 8, 0, 0, 3710, 730, 1, 0, 0, 0, 3711, 3712, 7, 19, 0, 0, 3712, 3713, 7, 3, 0, 0, 3713, 3714, 7, 6, 0, 0, 3714, 732, 1, 0, 0, 0, 3715, 3716, 7, 19, 0, 0, 3716, 3717, 7, 3, 0, 0, 3717, 3718, 7, 13, 0, 0, 3718, 734, 1, 0, 0, 0, 3719, 3720, 7, 19, 0, 0, 3720, 3721, 7, 18, 0, 0, 3721, 3722, 7, 8, 0, 0, 3722, 736, 1, 0, 0, 0, 3723, 3724, 7, 19, 0, 0, 3724, 3725, 7, 18, 0, 0, 3725, 3726, 7, 8, 0, 0, 3726, 3727, 7, 3, 0, 0, 3727, 738, 1, 0, 0, 0, 3728, 3729, 7, 19, 0, 0, 3729, 3730, 7, 18, 0, 0, 3730, 3731, 7, 6, 0, 0, 3731, 3732, 7, 11, 0, 0, 3732, 3733, 7, 21, 0, 0, 3733, 740, 1, 0, 0, 0, 3734, 3735, 7, 19, 0, 0, 3735, 3736, 7, 4, 0, 0, 3736, 3737, 7, 5, 0, 0, 3737, 742, 1, 0, 0, 0, 3738, 3739, 7, 19, 0, 0, 3739, 3740, 7, 4, 0, 0, 3740, 3741, 7, 5, 0, 0, 3741, 3742, 5, 95, 0, 0, 3742, 3743, 7, 4, 0, 0, 3743, 3744, 7, 10, 0, 0, 3744, 3745, 7, 8, 0, 0, 3745, 3746, 7, 18, 0, 0, 3746, 3747, 7, 4, 0, 0, 3747, 3748, 7, 0, 0, 0, 3748, 3749, 7, 10, 0, 0, 3749, 3750, 7, 16, 0, 0, 3750, 744, 1, 0, 0, 0, 3751, 3752, 7, 7, 0, 0, 3752, 3753, 7, 0, 0, 0, 3753, 3754, 7, 13, 0, 0, 3754, 3755, 7, 6, 0, 0, 3755, 3756, 7, 9, 0, 0, 3756, 3757, 7, 0, 0, 0, 3757, 3758, 7, 4, 0, 0, 3758, 3759, 7, 8, 0, 0, 3759, 746, 1, 0, 0, 0, 3760, 3761, 7, 7, 0, 0, 3761, 3762, 7, 0, 0, 0, 3762, 3763, 7, 13, 0, 0, 3763, 3764, 7, 19, 0, 0, 3764, 3765, 7, 8, 0, 0, 3765, 3766, 7, 18, 0, 0, 3766, 748, 1, 0, 0, 0, 3767, 3768, 5, 36, 0, 0, 3768, 3769, 7, 7, 0, 0, 3769, 3770, 7, 0, 0, 0, 3770, 3771, 7, 13, 0, 0, 3771, 3772, 7, 19, 0, 0, 3772, 3773, 7, 8, 0, 0, 3773, 3774, 5, 36, 0, 0, 3774, 750, 1, 0, 0, 0, 3775, 3776, 7, 7, 0, 0, 3776, 3777, 7, 0, 0, 0, 3777, 3778, 7, 3, 0, 0, 3778, 3779, 7, 5, 0, 0, 3779, 3780, 7, 17, 0, 0, 3780, 3781, 7, 0, 0, 0, 3781, 3782, 7, 3, 0, 0, 3782, 752, 1, 0, 0, 0, 3783, 3784, 7, 7, 0, 0, 3784, 3785, 7, 8, 0, 0, 3785, 3786, 7, 5, 0, 0, 3786, 3787, 7, 4, 0, 0, 3787, 3788, 7, 2, 0, 0, 3788, 3789, 7, 3, 0, 0, 3789, 3790, 7, 6, 0, 0, 3790, 3791, 7, 15, 0, 0, 3791, 3792, 7, 0, 0, 0, 3792, 3793, 7, 4, 0, 0, 3793, 3794, 7, 6, 0, 0, 3794, 3795, 7, 2, 0, 0, 3795, 3796, 7, 11, 0, 0, 3796, 754, 1, 0, 0, 0, 3797, 3798, 7, 7, 0, 0, 3798, 3799, 7, 6, 0, 0, 3799, 3800, 7, 8, 0, 0, 3800, 3801, 7, 20, 0, 0, 3801, 756, 1, 0, 0, 0, 3802, 3803, 7, 7, 0, 0, 3803, 3804, 7, 6, 0, 0, 3804, 3805, 7, 8, 0, 0, 3805, 3806, 7, 20, 0, 0, 3806, 3807, 7, 18, 0, 0, 3807, 758, 1, 0, 0, 0, 3808, 3809, 7, 20, 0, 0, 3809, 3810, 7, 0, 0, 0, 3810, 3811, 7, 6, 0, 0, 3811, 3812, 7, 4, 0, 0, 3812, 760, 1, 0, 0, 0, 3813, 3814, 7, 20, 0, 0, 3814, 3815, 7, 8, 0, 0, 3815, 3816, 7, 8, 0, 0, 3816, 3817, 7, 22, 0, 0, 3817, 762, 1, 0, 0, 0, 3818, 3819, 7, 20, 0, 0, 3819, 3820, 7, 8, 0, 0, 3820, 3821, 7, 8, 0, 0, 3821, 3822, 7, 22, 0, 0, 3822, 3823, 7, 18, 0, 0, 3823, 764, 1, 0, 0, 0, 3824, 3825, 7, 20, 0, 0, 3825, 3826, 7, 17, 0, 0, 3826, 3827, 7, 8, 0, 0, 3827, 3828, 7, 11, 0, 0, 3828, 766, 1, 0, 0, 0, 3829, 3830, 7, 20, 0, 0, 3830, 3831, 7, 17, 0, 0, 3831, 3832, 7, 8, 0, 0, 3832, 3833, 7, 3, 0, 0, 3833, 3834, 7, 8, 0, 0, 3834, 768, 1, 0, 0, 0, 3835, 3836, 7, 20, 0, 0, 3836, 3837, 7, 17, 0, 0, 3837, 3838, 7, 6, 0, 0, 3838, 3839, 7, 13, 0, 0, 3839, 3840, 7, 8, 0, 0, 3840, 770, 1, 0, 0, 0, 3841, 3842, 7, 20, 0, 0, 3842, 3843, 7, 6, 0, 0, 3843, 3844, 7, 11, 0, 0, 3844, 3845, 7, 9, 0, 0, 3845, 3846, 7, 2, 0, 0, 3846, 3847, 7, 20, 0, 0, 3847, 772, 1, 0, 0, 0, 3848, 3849, 7, 20, 0, 0, 3849, 3850, 7, 6, 0, 0, 3850, 3851, 7, 4, 0, 0, 3851, 3852, 7, 17, 0, 0, 3852, 774, 1, 0, 0, 0, 3853, 3854, 7, 20, 0, 0, 3854, 3855, 7, 6, 0, 0, 3855, 3856, 7, 4, 0, 0, 3856, 3857, 7, 17, 0, 0, 3857, 3858, 7, 6, 0, 0, 3858, 3859, 7, 11, 0, 0, 3859, 776, 1, 0, 0, 0, 3860, 3861, 7, 20, 0, 0, 3861, 3862, 7, 2, 0, 0, 3862, 3863, 7, 3, 0, 0, 3863, 3864, 7, 22, 0, 0, 3864, 778, 1, 0, 0, 0, 3865, 3866, 7, 20, 0, 0, 3866, 3867, 7, 2, 0, 0, 3867, 3868, 7, 3, 0, 0, 3868, 3869, 7, 22, 0, 0, 3869, 3870, 7, 13, 0, 0, 3870, 3871, 7, 2, 0, 0, 3871, 3872, 7, 0, 0, 0, 3872, 3873, 7, 9, 0, 0, 3873, 780, 1, 0, 0, 0, 3874, 3875, 7, 20, 0, 0, 3875, 3876, 7, 3, 0, 0, 3876, 3877, 7, 6, 0, 0, 3877, 3878, 7, 4, 0, 0, 3878, 3879, 7, 8, 0, 0, 3879, 782, 1, 0, 0, 0, 3880, 3881, 7, 14, 0, 0, 3881, 3882, 7, 8, 0, 0, 3882, 3883, 7, 0, 0, 0, 3883, 3884, 7, 3, 0, 0, 3884, 784, 1, 0, 0, 0, 3885, 3886, 7, 14, 0, 0, 3886, 3887, 7, 8, 0, 0, 3887, 3888, 7, 0, 0, 0, 3888, 3889, 7, 3, 0, 0, 3889, 3890, 7, 18, 0, 0, 3890, 786, 1, 0, 0, 0, 3891, 3892, 7, 15, 0, 0, 3892, 3893, 7, 2, 0, 0, 3893, 3894, 7, 11, 0, 0, 3894, 3895, 7, 8, 0, 0, 3895, 788, 1, 0, 0, 0, 3896, 3897, 5, 46, 0, 0, 3897, 790, 1, 0, 0, 0, 3898, 3899, 5, 58, 0, 0, 3899, 792, 1, 0, 0, 0, 3900, 3901, 5, 44, 0, 0, 3901, 794, 1, 0, 0, 0, 3902, 3903, 5, 59, 0, 0, 3903, 796, 1, 0, 0, 0, 3904, 3905, 5, 40, 0, 0, 3905, 798, 1, 0, 0, 0, 3906, 3907, 5, 41, 0, 0, 3907, 800, 1, 0, 0, 0, 3908, 3909, 5, 91, 0, 0, 3909, 802, 1, 0, 0, 0, 3910, 3911, 5, 93, 0, 0, 3911, 804, 1, 0, 0, 0, 3912, 3913, 5, 123, 0, 0, 3913, 806, 1, 0, 0, 0, 3914, 3915, 5, 125, 0, 0, 3915, 808, 1, 0, 0, 0, 3916, 3920, 5, 61, 0, 0, 3917, 3918, 5, 61, 0, 0, 3918, 3920, 5, 61, 0, 0, 3919, 3916, 1, 0, 0, 0, 3919, 3917, 1, 0, 0, 0, 3920, 810, 1, 0, 0, 0, 3921, 3922, 5, 60, 0, 0, 3922, 3923, 5, 61, 0, 0, 3923, 3924, 5, 62, 0, 0, 3924, 812, 1, 0, 0, 0, 3925, 3926, 5, 60, 0, 0, 3926, 3930, 5, 62, 0, 0, 3927, 3928, 5, 33, 0, 0, 3928, 3930, 5, 61, 0, 0, 3929, 3925, 1, 0, 0, 0, 3929, 3927, 1, 0, 0, 0, 3930, 814, 1, 0, 0, 0, 3931, 3932, 5, 60, 0, 0, 3932, 3933, 5, 61, 0, 0, 3933, 816, 1, 0, 0, 0, 3934, 3935, 5, 60, 0, 0, 3935, 818, 1, 0, 0, 0, 3936, 3937, 5, 62, 0, 0, 3937, 3938, 5, 61, 0, 0, 3938, 820, 1, 0, 0, 0, 3939, 3940, 5, 62, 0, 0, 3940, 822, 1, 0, 0, 0, 3941, 3942, 5, 47, 0, 0, 3942, 824, 1, 0, 0, 0, 3943, 3944, 5, 43, 0, 0, 3944, 826, 1, 0, 0, 0, 3945, 3946, 5, 45, 0, 0, 3946, 828, 1, 0, 0, 0, 3947, 3948, 5, 42, 0, 0, 3948, 830, 1, 0, 0, 0, 3949, 3950, 5, 37, 0, 0, 3950, 832, 1, 0, 0, 0, 3951, 3952, 7, 9, 0, 0, 3952, 3953, 7, 6, 0, 0, 3953, 3954, 7, 7, 0, 0, 3954, 834, 1, 0, 0, 0, 3955, 3956, 5, 33, 0, 0, 3956, 836, 1, 0, 0, 0, 3957, 3958, 5, 38, 0, 0, 3958, 838, 1, 0, 0, 0, 3959, 3960, 5, 126, 0, 0, 3960, 840, 1, 0, 0, 0, 3961, 3962, 5, 124, 0, 0, 3962, 842, 1, 0, 0, 0, 3963, 3964, 5, 124, 0, 0, 3964, 3965, 5, 124, 0, 0, 3965, 844, 1, 0, 0, 0, 3966, 3967, 5, 94, 0, 0, 3967, 846, 1, 0, 0, 0, 3968, 3969, 5, 63, 0, 0, 3969, 848, 1, 0, 0, 0, 3970, 3971, 5, 36, 0, 0, 3971, 850, 1, 0, 0, 0, 3972, 3978, 5, 39, 0, 0, 3973, 3977, 8, 26, 0, 0, 3974, 3975, 5, 92, 0, 0, 3975, 3977, 9, 0, 0, 0, 3976, 3973, 1, 0, 0, 0, 3976, 3974, 1, 0, 0, 0, 3977, 3980, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3978, 3979, 1, 0, 0, 0, 3979, 3981, 1, 0, 0, 0, 3980, 3978, 1, 0, 0, 0, 3981, 3993, 5, 39, 0, 0, 3982, 3988, 5, 34, 0, 0, 3983, 3987, 8, 27, 0, 0, 3984, 3985, 5, 92, 0, 0, 3985, 3987, 9, 0, 0, 0, 3986, 3983, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3987, 3990, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 1, 0, 0, 0, 3990, 3988, 1, 0, 0, 0, 3991, 3993, 5, 34, 0, 0, 3992, 3972, 1, 0, 0, 0, 3992, 3982, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 852, 1, 0, 0, 0, 3996, 4006, 3, 851, 425, 0, 3997, 3998, 5, 48, 0, 0, 3998, 4001, 7, 23, 0, 0, 3999, 4002, 3, 869, 434, 0, 4000, 4002, 3, 871, 435, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4006, 1, 0, 0, 0, 4005, 3996, 1, 0, 0, 0, 4005, 3997, 1, 0, 0, 0, 4006, 854, 1, 0, 0, 0, 4007, 4009, 3, 871, 435, 0, 4008, 4007, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4008, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 4013, 7, 28, 0, 0, 4013, 856, 1, 0, 0, 0, 4014, 4016, 3, 861, 430, 0, 4015, 4017, 7, 1, 0, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4019, 7, 9, 0, 0, 4019, 858, 1, 0, 0, 0, 4020, 4022, 3, 871, 435, 0, 4021, 4020, 1, 0, 0, 0, 4022, 4023, 1, 0, 0, 0, 4023, 4021, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4026, 7, 29, 0, 0, 4026, 860, 1, 0, 0, 0, 4027, 4029, 3, 871, 435, 0, 4028, 4027, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 4043, 1, 0, 0, 0, 4032, 4036, 3, 789, 394, 0, 4033, 4035, 3, 871, 435, 0, 4034, 4033, 1, 0, 0, 0, 4035, 4038, 1, 0, 0, 0, 4036, 4034, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4040, 1, 0, 0, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4041, 3, 873, 436, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4044, 1, 0, 0, 0, 4042, 4044, 3, 873, 436, 0, 4043, 4032, 1, 0, 0, 0, 4043, 4042, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 862, 1, 0, 0, 0, 4045, 4048, 3, 867, 433, 0, 4046, 4048, 3, 871, 435, 0, 4047, 4045, 1, 0, 0, 0, 4047, 4046, 1, 0, 0, 0, 4048, 4054, 1, 0, 0, 0, 4049, 4053, 3, 867, 433, 0, 4050, 4053, 3, 871, 435, 0, 4051, 4053, 5, 95, 0, 0, 4052, 4049, 1, 0, 0, 0, 4052, 4050, 1, 0, 0, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4056, 1, 0, 0, 0, 4054, 4052, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4067, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4057, 4067, 3, 865, 432, 0, 4058, 4060, 5, 96, 0, 0, 4059, 4061, 3, 875, 437, 0, 4060, 4059, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4060, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 5, 96, 0, 0, 4065, 4067, 1, 0, 0, 0, 4066, 4047, 1, 0, 0, 0, 4066, 4057, 1, 0, 0, 0, 4066, 4058, 1, 0, 0, 0, 4067, 864, 1, 0, 0, 0, 4068, 4074, 5, 96, 0, 0, 4069, 4070, 5, 96, 0, 0, 4070, 4073, 5, 96, 0, 0, 4071, 4073, 8, 30, 0, 0, 4072, 4069, 1, 0, 0, 0, 4072, 4071, 1, 0, 0, 0, 4073, 4076, 1, 0, 0, 0, 4074, 4072, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4077, 1, 0, 0, 0, 4076, 4074, 1, 0, 0, 0, 4077, 4078, 5, 96, 0, 0, 4078, 866, 1, 0, 0, 0, 4079, 4080, 7, 31, 0, 0, 4080, 868, 1, 0, 0, 0, 4081, 4082, 7, 32, 0, 0, 4082, 870, 1, 0, 0, 0, 4083, 4084, 2, 48, 57, 0, 4084, 872, 1, 0, 0, 0, 4085, 4088, 7, 8, 0, 0, 4086, 4089, 3, 825, 412, 0, 4087, 4089, 3, 827, 413, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4092, 3, 871, 435, 0, 4091, 4090, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4091, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 874, 1, 0, 0, 0, 4095, 4112, 7, 33, 0, 0, 4096, 4112, 3, 825, 412, 0, 4097, 4112, 3, 829, 414, 0, 4098, 4112, 3, 847, 423, 0, 4099, 4112, 3, 827, 413, 0, 4100, 4112, 3, 789, 394, 0, 4101, 4112, 3, 797, 398, 0, 4102, 4112, 3, 799, 399, 0, 4103, 4112, 3, 801, 400, 0, 4104, 4112, 3, 803, 401, 0, 4105, 4112, 3, 805, 402, 0, 4106, 4112, 3, 807, 403, 0, 4107, 4112, 3, 845, 422, 0, 4108, 4112, 3, 841, 420, 0, 4109, 4112, 3, 849, 424, 0, 4110, 4112, 3, 835, 417, 0, 4111, 4095, 1, 0, 0, 0, 4111, 4096, 1, 0, 0, 0, 4111, 4097, 1, 0, 0, 0, 4111, 4098, 1, 0, 0, 0, 4111, 4099, 1, 0, 0, 0, 4111, 4100, 1, 0, 0, 0, 4111, 4101, 1, 0, 0, 0, 4111, 4102, 1, 0, 0, 0, 4111, 4103, 1, 0, 0, 0, 4111, 4104, 1, 0, 0, 0, 4111, 4105, 1, 0, 0, 0, 4111, 4106, 1, 0, 0, 0, 4111, 4107, 1, 0, 0, 0, 4111, 4108, 1, 0, 0, 0, 4111, 4109, 1, 0, 0, 0, 4111, 4110, 1, 0, 0, 0, 4112, 876, 1, 0, 0, 0, 4113, 4117, 5, 95, 0, 0, 4114, 4118, 3, 867, 433, 0, 4115, 4118, 3, 871, 435, 0, 4116, 4118, 7, 34, 0, 0, 4117, 4114, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4117, 4116, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 878, 1, 0, 0, 0, 4121, 4122, 7, 35, 0, 0, 4122, 4123, 1, 0, 0, 0, 4123, 4124, 6, 439, 0, 0, 4124, 880, 1, 0, 0, 0, 4125, 4126, 5, 45, 0, 0, 4126, 4127, 5, 45, 0, 0, 4127, 4131, 1, 0, 0, 0, 4128, 4130, 8, 36, 0, 0, 4129, 4128, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4134, 1, 0, 0, 0, 4133, 4131, 1, 0, 0, 0, 4134, 4135, 6, 440, 0, 0, 4135, 882, 1, 0, 0, 0, 4136, 4139, 3, 885, 442, 0, 4137, 4139, 3, 887, 443, 0, 4138, 4136, 1, 0, 0, 0, 4138, 4137, 1, 0, 0, 0, 4139, 884, 1, 0, 0, 0, 4140, 4141, 5, 47, 0, 0, 4141, 4142, 5, 42, 0, 0, 4142, 4143, 5, 43, 0, 0, 4143, 4148, 1, 0, 0, 0, 4144, 4147, 3, 883, 441, 0, 4145, 4147, 9, 0, 0, 0, 4146, 4144, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4150, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4148, 4146, 1, 0, 0, 0, 4149, 4151, 1, 0, 0, 0, 4150, 4148, 1, 0, 0, 0, 4151, 4152, 5, 42, 0, 0, 4152, 4153, 5, 47, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4155, 6, 442, 0, 0, 4155, 886, 1, 0, 0, 0, 4156, 4157, 5, 47, 0, 0, 4157, 4158, 5, 42, 0, 0, 4158, 4163, 1, 0, 0, 0, 4159, 4162, 3, 883, 441, 0, 4160, 4162, 9, 0, 0, 0, 4161, 4159, 1, 0, 0, 0, 4161, 4160, 1, 0, 0, 0, 4162, 4165, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4163, 4161, 1, 0, 0, 0, 4164, 4166, 1, 0, 0, 0, 4165, 4163, 1, 0, 0, 0, 4166, 4167, 5, 42, 0, 0, 4167, 4168, 5, 47, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 6, 443, 0, 0, 4170, 888, 1, 0, 0, 0, 37, 0, 3919, 3929, 3976, 3978, 3986, 3988, 3992, 3994, 4001, 4003, 4005, 4010, 4016, 4023, 4030, 4036, 4040, 4043, 4047, 4052, 4054, 4062, 4066, 4072, 4074, 4088, 4093, 4111, 4117, 4119, 4131, 4138, 4146, 4148, 4161, 4163, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlLexer.tokens b/src/lib/hive/HiveSqlLexer.tokens index 93de524..62cda4b 100644 --- a/src/lib/hive/HiveSqlLexer.tokens +++ b/src/lib/hive/HiveSqlLexer.tokens @@ -180,261 +180,262 @@ KW_LEADING=179 KW_LEFT=180 KW_LESS=181 KW_LEVEL=182 -KW_LIKE=183 -KW_LIMIT=184 -KW_LINES=185 -KW_LOAD=186 -KW_LOCAL=187 -KW_LOCATION=188 -KW_LOCK=189 -KW_LOCKS=190 -KW_LOGICAL=191 -KW_LONG=192 -KW_MACRO=193 -KW_MANAGED=194 -KW_MANAGEDLOCATION=195 -KW_MANAGEMENT=196 -KW_MAP=197 -KW_MAPJOIN=198 -KW_MAPPING=199 -KW_MATCHED=200 -KW_MATERIALIZED=201 -KW_MERGE=202 -KW_METADATA=203 -KW_MINUS=204 -KW_MINUTE=205 -KW_MINUTES=206 -KW_MONTH=207 -KW_MONTHS=208 -KW_MORE=209 -KW_MOVE=210 -KW_MSCK=211 -KW_NONE=212 -KW_NORELY=213 -KW_NOSCAN=214 -KW_NOT=215 -KW_NOVALIDATE=216 -KW_NO_DROP=217 -KW_NULL=218 -KW_NULLS=219 -KW_OF=220 -KW_OFFLINE=221 -KW_OFFSET=222 -KW_ON=223 -KW_ONLY=224 -KW_OPERATOR=225 -KW_OPTION=226 -KW_OR=227 -KW_ORDER=228 -KW_OUT=229 -KW_OUTER=230 -KW_OUTPUTDRIVER=231 -KW_OUTPUTFORMAT=232 -KW_OVER=233 -KW_OVERWRITE=234 -KW_OWNER=235 -KW_PARTITION=236 -KW_PARTITIONED=237 -KW_PARTITIONS=238 -KW_PATH=239 -KW_PERCENT=240 -KW_PKFK_JOIN=241 -KW_PLAN=242 -KW_PLANS=243 -KW_PLUS=244 -KW_POOL=245 -KW_PRECEDING=246 -KW_PRECISION=247 -KW_PREPARE=248 -KW_PRESERVE=249 -KW_PRIMARY=250 -KW_PRINCIPALS=251 -KW_PROCEDURE=252 -KW_PROTECTION=253 -KW_PURGE=254 -KW_QUALIFY=255 -KW_QUARTER=256 -KW_QUERY=257 -KW_QUERY_PARALLELISM=258 -KW_RANGE=259 -KW_READ=260 -KW_READONLY=261 -KW_READS=262 -KW_REAL=263 -KW_REBUILD=264 -KW_RECORDREADER=265 -KW_RECORDWRITER=266 -KW_REDUCE=267 -KW_REFERENCES=268 -KW_REGEXP=269 -KW_RELOAD=270 -KW_RELY=271 -KW_REMOTE=272 -KW_RENAME=273 -KW_REOPTIMIZATION=274 -KW_REPAIR=275 -KW_REPL=276 -KW_REPLACE=277 -KW_REPLICATION=278 -KW_RESOURCE=279 -KW_RESPECT=280 -KW_RESTRICT=281 -KW_REVOKE=282 -KW_REWRITE=283 -KW_RIGHT=284 -KW_RLIKE=285 -KW_ROLE=286 -KW_ROLES=287 -KW_ROLLBACK=288 -KW_ROLLUP=289 -KW_ROW=290 -KW_ROWS=291 -KW_SCHEDULED=292 -KW_SCHEDULING_POLICY=293 -KW_SCHEMA=294 -KW_SCHEMAS=295 -KW_SECOND=296 -KW_SECONDS=297 -KW_SELECT=298 -KW_SEMI=299 -KW_SERDE=300 -KW_SERDEPROPERTIES=301 -KW_SERVER=302 -KW_SET=303 -KW_SETS=304 -KW_SET_CURRENT_SNAPSHOT=305 -KW_SHARED=306 -KW_SHOW=307 -KW_SHOW_DATABASE=308 -KW_SKEWED=309 -KW_SMALLINT=310 -KW_SNAPSHOT=311 -KW_SOME=312 -KW_SORT=313 -KW_SORTED=314 -KW_SPEC=315 -KW_SSL=316 -KW_START=317 -KW_STATISTICS=318 -KW_STATUS=319 -KW_STORED=320 -KW_STREAMTABLE=321 -KW_STRING=322 -KW_STRUCT=323 -KW_SUMMARY=324 -KW_SYNC=325 -KW_SYSTEM_TIME=326 -KW_SYSTEM_VERSION=327 -KW_TABLE=328 -KW_TABLES=329 -KW_TABLESAMPLE=330 -KW_TBLPROPERTIES=331 -KW_TEMPORARY=332 -KW_TERMINATED=333 -KW_THEN=334 -KW_TIME=335 -KW_TIMESTAMP=336 -KW_TIMESTAMPLOCALTZ=337 -KW_TIMESTAMPTZ=338 -KW_TINYINT=339 -KW_TO=340 -KW_TOUCH=341 -KW_TRAILING=342 -KW_TRANSACTION=343 -KW_TRANSACTIONAL=344 -KW_TRANSACTIONS=345 -KW_TRANSFORM=346 -KW_TRIGGER=347 -KW_TRIM=348 -KW_TRUE=349 -KW_TRUNCATE=350 -KW_TYPE=351 -KW_UNARCHIVE=352 -KW_UNBOUNDED=353 -KW_UNDO=354 -KW_UNION=355 -KW_UNIONTYPE=356 -KW_UNIQUE=357 -KW_UNIQUEJOIN=358 -KW_UNKNOWN=359 -KW_UNLOCK=360 -KW_UNMANAGED=361 -KW_UNSET=362 -KW_UNSIGNED=363 -KW_UPDATE=364 -KW_URI=365 -KW_URL=366 -KW_USE=367 -KW_USER=368 -KW_USING=369 -KW_UTC=370 -KW_UTCTIMESTAMP=371 -KW_VALIDATE=372 -KW_VALUES=373 -KW_VALUE_TYPE=374 -KW_VARCHAR=375 -KW_VECTORIZATION=376 -KW_VIEW=377 -KW_VIEWS=378 -KW_WAIT=379 -KW_WEEK=380 -KW_WEEKS=381 -KW_WHEN=382 -KW_WHERE=383 -KW_WHILE=384 -KW_WINDOW=385 -KW_WITH=386 -KW_WITHIN=387 -KW_WORK=388 -KW_WORKLOAD=389 -KW_WRITE=390 -KW_YEAR=391 -KW_YEARS=392 -KW_ZONE=393 -DOT=394 -COLON=395 -COMMA=396 -SEMICOLON=397 -LPAREN=398 -RPAREN=399 -LSQUARE=400 -RSQUARE=401 -LCURLY=402 -RCURLY=403 -EQUAL=404 -EQUAL_NS=405 -NOTEQUAL=406 -LESSTHANOREQUALTO=407 -LESSTHAN=408 -GREATERTHANOREQUALTO=409 -GREATERTHAN=410 -DIVIDE=411 -PLUS=412 -MINUS=413 -STAR=414 -MOD=415 -DIV=416 -BITWISENOT=417 -AMPERSAND=418 -TILDE=419 -BITWISEOR=420 -CONCATENATE=421 -BITWISEXOR=422 -QUESTION=423 -DOLLAR=424 -StringLiteral=425 -CharSetLiteral=426 -IntegralLiteral=427 -NumberLiteral=428 -ByteLengthLiteral=429 -Number=430 -Identifier=431 -CharSetName=432 -WHITE_SPACE=433 -LINE_COMMENT=434 -QUERY_HINT=435 -SHOW_HINT=436 -HIDDEN_HINT=437 +KW_LIFECYCLE=183 +KW_LIKE=184 +KW_LIMIT=185 +KW_LINES=186 +KW_LOAD=187 +KW_LOCAL=188 +KW_LOCATION=189 +KW_LOCK=190 +KW_LOCKS=191 +KW_LOGICAL=192 +KW_LONG=193 +KW_MACRO=194 +KW_MANAGED=195 +KW_MANAGEDLOCATION=196 +KW_MANAGEMENT=197 +KW_MAP=198 +KW_MAPJOIN=199 +KW_MAPPING=200 +KW_MATCHED=201 +KW_MATERIALIZED=202 +KW_MERGE=203 +KW_METADATA=204 +KW_MINUS=205 +KW_MINUTE=206 +KW_MINUTES=207 +KW_MONTH=208 +KW_MONTHS=209 +KW_MORE=210 +KW_MOVE=211 +KW_MSCK=212 +KW_NONE=213 +KW_NORELY=214 +KW_NOSCAN=215 +KW_NOT=216 +KW_NOVALIDATE=217 +KW_NO_DROP=218 +KW_NULL=219 +KW_NULLS=220 +KW_OF=221 +KW_OFFLINE=222 +KW_OFFSET=223 +KW_ON=224 +KW_ONLY=225 +KW_OPERATOR=226 +KW_OPTION=227 +KW_OR=228 +KW_ORDER=229 +KW_OUT=230 +KW_OUTER=231 +KW_OUTPUTDRIVER=232 +KW_OUTPUTFORMAT=233 +KW_OVER=234 +KW_OVERWRITE=235 +KW_OWNER=236 +KW_PARTITION=237 +KW_PARTITIONED=238 +KW_PARTITIONS=239 +KW_PATH=240 +KW_PERCENT=241 +KW_PKFK_JOIN=242 +KW_PLAN=243 +KW_PLANS=244 +KW_PLUS=245 +KW_POOL=246 +KW_PRECEDING=247 +KW_PRECISION=248 +KW_PREPARE=249 +KW_PRESERVE=250 +KW_PRIMARY=251 +KW_PRINCIPALS=252 +KW_PROCEDURE=253 +KW_PROTECTION=254 +KW_PURGE=255 +KW_QUALIFY=256 +KW_QUARTER=257 +KW_QUERY=258 +KW_QUERY_PARALLELISM=259 +KW_RANGE=260 +KW_READ=261 +KW_READONLY=262 +KW_READS=263 +KW_REAL=264 +KW_REBUILD=265 +KW_RECORDREADER=266 +KW_RECORDWRITER=267 +KW_REDUCE=268 +KW_REFERENCES=269 +KW_REGEXP=270 +KW_RELOAD=271 +KW_RELY=272 +KW_REMOTE=273 +KW_RENAME=274 +KW_REOPTIMIZATION=275 +KW_REPAIR=276 +KW_REPL=277 +KW_REPLACE=278 +KW_REPLICATION=279 +KW_RESOURCE=280 +KW_RESPECT=281 +KW_RESTRICT=282 +KW_REVOKE=283 +KW_REWRITE=284 +KW_RIGHT=285 +KW_RLIKE=286 +KW_ROLE=287 +KW_ROLES=288 +KW_ROLLBACK=289 +KW_ROLLUP=290 +KW_ROW=291 +KW_ROWS=292 +KW_SCHEDULED=293 +KW_SCHEDULING_POLICY=294 +KW_SCHEMA=295 +KW_SCHEMAS=296 +KW_SECOND=297 +KW_SECONDS=298 +KW_SELECT=299 +KW_SEMI=300 +KW_SERDE=301 +KW_SERDEPROPERTIES=302 +KW_SERVER=303 +KW_SET=304 +KW_SETS=305 +KW_SET_CURRENT_SNAPSHOT=306 +KW_SHARED=307 +KW_SHOW=308 +KW_SHOW_DATABASE=309 +KW_SKEWED=310 +KW_SMALLINT=311 +KW_SNAPSHOT=312 +KW_SOME=313 +KW_SORT=314 +KW_SORTED=315 +KW_SPEC=316 +KW_SSL=317 +KW_START=318 +KW_STATISTICS=319 +KW_STATUS=320 +KW_STORED=321 +KW_STREAMTABLE=322 +KW_STRING=323 +KW_STRUCT=324 +KW_SUMMARY=325 +KW_SYNC=326 +KW_SYSTEM_TIME=327 +KW_SYSTEM_VERSION=328 +KW_TABLE=329 +KW_TABLES=330 +KW_TABLESAMPLE=331 +KW_TBLPROPERTIES=332 +KW_TEMPORARY=333 +KW_TERMINATED=334 +KW_THEN=335 +KW_TIME=336 +KW_TIMESTAMP=337 +KW_TIMESTAMPLOCALTZ=338 +KW_TIMESTAMPTZ=339 +KW_TINYINT=340 +KW_TO=341 +KW_TOUCH=342 +KW_TRAILING=343 +KW_TRANSACTION=344 +KW_TRANSACTIONAL=345 +KW_TRANSACTIONS=346 +KW_TRANSFORM=347 +KW_TRIGGER=348 +KW_TRIM=349 +KW_TRUE=350 +KW_TRUNCATE=351 +KW_TYPE=352 +KW_UNARCHIVE=353 +KW_UNBOUNDED=354 +KW_UNDO=355 +KW_UNION=356 +KW_UNIONTYPE=357 +KW_UNIQUE=358 +KW_UNIQUEJOIN=359 +KW_UNKNOWN=360 +KW_UNLOCK=361 +KW_UNMANAGED=362 +KW_UNSET=363 +KW_UNSIGNED=364 +KW_UPDATE=365 +KW_URI=366 +KW_URL=367 +KW_USE=368 +KW_USER=369 +KW_USING=370 +KW_UTC=371 +KW_UTCTIMESTAMP=372 +KW_VALIDATE=373 +KW_VALUES=374 +KW_VALUE_TYPE=375 +KW_VARCHAR=376 +KW_VECTORIZATION=377 +KW_VIEW=378 +KW_VIEWS=379 +KW_WAIT=380 +KW_WEEK=381 +KW_WEEKS=382 +KW_WHEN=383 +KW_WHERE=384 +KW_WHILE=385 +KW_WINDOW=386 +KW_WITH=387 +KW_WITHIN=388 +KW_WORK=389 +KW_WORKLOAD=390 +KW_WRITE=391 +KW_YEAR=392 +KW_YEARS=393 +KW_ZONE=394 +DOT=395 +COLON=396 +COMMA=397 +SEMICOLON=398 +LPAREN=399 +RPAREN=400 +LSQUARE=401 +RSQUARE=402 +LCURLY=403 +RCURLY=404 +EQUAL=405 +EQUAL_NS=406 +NOTEQUAL=407 +LESSTHANOREQUALTO=408 +LESSTHAN=409 +GREATERTHANOREQUALTO=410 +GREATERTHAN=411 +DIVIDE=412 +PLUS=413 +MINUS=414 +STAR=415 +MOD=416 +DIV=417 +BITWISENOT=418 +AMPERSAND=419 +TILDE=420 +BITWISEOR=421 +CONCATENATE=422 +BITWISEXOR=423 +QUESTION=424 +DOLLAR=425 +StringLiteral=426 +CharSetLiteral=427 +IntegralLiteral=428 +NumberLiteral=429 +ByteLengthLiteral=430 +Number=431 +Identifier=432 +CharSetName=433 +WHITE_SPACE=434 +LINE_COMMENT=435 +QUERY_HINT=436 +SHOW_HINT=437 +HIDDEN_HINT=438 'ABORT'=1 'ACTIVATE'=2 'ACTIVE'=3 @@ -617,243 +618,244 @@ HIDDEN_HINT=437 'LEFT'=180 'LESS'=181 'LEVEL'=182 -'LIKE'=183 -'LIMIT'=184 -'LINES'=185 -'LOAD'=186 -'LOCAL'=187 -'LOCATION'=188 -'LOCK'=189 -'LOCKS'=190 -'LOGICAL'=191 -'LONG'=192 -'MACRO'=193 -'MANAGED'=194 -'MANAGEDLOCATION'=195 -'MANAGEMENT'=196 -'MAP'=197 -'MAPJOIN'=198 -'MAPPING'=199 -'MATCHED'=200 -'MATERIALIZED'=201 -'MERGE'=202 -'METADATA'=203 -'MINUS'=204 -'MINUTE'=205 -'MINUTES'=206 -'MONTH'=207 -'MONTHS'=208 -'MORE'=209 -'MOVE'=210 -'MSCK'=211 -'NONE'=212 -'NORELY'=213 -'NOSCAN'=214 -'NOT'=215 -'NOVALIDATE'=216 -'NO_DROP'=217 -'NULL'=218 -'NULLS'=219 -'OF'=220 -'OFFLINE'=221 -'OFFSET'=222 -'ON'=223 -'ONLY'=224 -'OPERATOR'=225 -'OPTION'=226 -'OR'=227 -'ORDER'=228 -'OUT'=229 -'OUTER'=230 -'OUTPUTDRIVER'=231 -'OUTPUTFORMAT'=232 -'OVER'=233 -'OVERWRITE'=234 -'OWNER'=235 -'PARTITION'=236 -'PARTITIONED'=237 -'PARTITIONS'=238 -'PATH'=239 -'PERCENT'=240 -'PKFK_JOIN'=241 -'PLAN'=242 -'PLANS'=243 -'PLUS'=244 -'POOL'=245 -'PRECEDING'=246 -'PRECISION'=247 -'PREPARE'=248 -'PRESERVE'=249 -'PRIMARY'=250 -'PRINCIPALS'=251 -'PROCEDURE'=252 -'PROTECTION'=253 -'PURGE'=254 -'QUALIFY'=255 -'QUARTER'=256 -'QUERY'=257 -'QUERY_PARALLELISM'=258 -'RANGE'=259 -'READ'=260 -'READONLY'=261 -'READS'=262 -'REAL'=263 -'REBUILD'=264 -'RECORDREADER'=265 -'RECORDWRITER'=266 -'REDUCE'=267 -'REFERENCES'=268 -'REGEXP'=269 -'RELOAD'=270 -'RELY'=271 -'REMOTE'=272 -'RENAME'=273 -'REOPTIMIZATION'=274 -'REPAIR'=275 -'REPL'=276 -'REPLACE'=277 -'REPLICATION'=278 -'RESOURCE'=279 -'RESPECT'=280 -'RESTRICT'=281 -'REVOKE'=282 -'REWRITE'=283 -'RIGHT'=284 -'RLIKE'=285 -'ROLE'=286 -'ROLES'=287 -'ROLLBACK'=288 -'ROLLUP'=289 -'ROW'=290 -'ROWS'=291 -'SCHEDULED'=292 -'SCHEDULING_POLICY'=293 -'SCHEMA'=294 -'SCHEMAS'=295 -'SECOND'=296 -'SECONDS'=297 -'SELECT'=298 -'SEMI'=299 -'SERDE'=300 -'SERDEPROPERTIES'=301 -'SERVER'=302 -'SET'=303 -'SETS'=304 -'SET_CURRENT_SNAPSHOT'=305 -'SHARED'=306 -'SHOW'=307 -'SHOW_DATABASE'=308 -'SKEWED'=309 -'SMALLINT'=310 -'SNAPSHOT'=311 -'SOME'=312 -'SORT'=313 -'SORTED'=314 -'SPEC'=315 -'SSL'=316 -'START'=317 -'STATISTICS'=318 -'STATUS'=319 -'STORED'=320 -'STREAMTABLE'=321 -'STRING'=322 -'STRUCT'=323 -'SUMMARY'=324 -'SYNC'=325 -'SYSTEM_TIME'=326 -'SYSTEM_VERSION'=327 -'TABLE'=328 -'TABLES'=329 -'TABLESAMPLE'=330 -'TBLPROPERTIES'=331 -'TEMPORARY'=332 -'TERMINATED'=333 -'THEN'=334 -'TIME'=335 -'TIMESTAMP'=336 -'TIMESTAMPLOCALTZ'=337 -'TIMESTAMPTZ'=338 -'TINYINT'=339 -'TO'=340 -'TOUCH'=341 -'TRAILING'=342 -'TRANSACTION'=343 -'TRANSACTIONAL'=344 -'TRANSACTIONS'=345 -'TRANSFORM'=346 -'TRIGGER'=347 -'TRIM'=348 -'TRUE'=349 -'TRUNCATE'=350 -'TYPE'=351 -'UNARCHIVE'=352 -'UNBOUNDED'=353 -'UNDO'=354 -'UNION'=355 -'UNIONTYPE'=356 -'UNIQUE'=357 -'UNIQUEJOIN'=358 -'UNKNOWN'=359 -'UNLOCK'=360 -'UNMANAGED'=361 -'UNSET'=362 -'UNSIGNED'=363 -'UPDATE'=364 -'URI'=365 -'URL'=366 -'USE'=367 -'USER'=368 -'USING'=369 -'UTC'=370 -'UTC_TMESTAMP'=371 -'VALIDATE'=372 -'VALUES'=373 -'$VALUE$'=374 -'VARCHAR'=375 -'VECTORIZATION'=376 -'VIEW'=377 -'VIEWS'=378 -'WAIT'=379 -'WEEK'=380 -'WEEKS'=381 -'WHEN'=382 -'WHERE'=383 -'WHILE'=384 -'WINDOW'=385 -'WITH'=386 -'WITHIN'=387 -'WORK'=388 -'WORKLOAD'=389 -'WRITE'=390 -'YEAR'=391 -'YEARS'=392 -'ZONE'=393 -'.'=394 -':'=395 -','=396 -';'=397 -'('=398 -')'=399 -'['=400 -']'=401 -'{'=402 -'}'=403 -'<=>'=405 -'<='=407 -'<'=408 -'>='=409 -'>'=410 -'/'=411 -'+'=412 -'-'=413 -'*'=414 -'%'=415 -'DIV'=416 -'!'=417 -'&'=418 -'~'=419 -'|'=420 -'||'=421 -'^'=422 -'?'=423 -'$'=424 +'LIFECYCLE'=183 +'LIKE'=184 +'LIMIT'=185 +'LINES'=186 +'LOAD'=187 +'LOCAL'=188 +'LOCATION'=189 +'LOCK'=190 +'LOCKS'=191 +'LOGICAL'=192 +'LONG'=193 +'MACRO'=194 +'MANAGED'=195 +'MANAGEDLOCATION'=196 +'MANAGEMENT'=197 +'MAP'=198 +'MAPJOIN'=199 +'MAPPING'=200 +'MATCHED'=201 +'MATERIALIZED'=202 +'MERGE'=203 +'METADATA'=204 +'MINUS'=205 +'MINUTE'=206 +'MINUTES'=207 +'MONTH'=208 +'MONTHS'=209 +'MORE'=210 +'MOVE'=211 +'MSCK'=212 +'NONE'=213 +'NORELY'=214 +'NOSCAN'=215 +'NOT'=216 +'NOVALIDATE'=217 +'NO_DROP'=218 +'NULL'=219 +'NULLS'=220 +'OF'=221 +'OFFLINE'=222 +'OFFSET'=223 +'ON'=224 +'ONLY'=225 +'OPERATOR'=226 +'OPTION'=227 +'OR'=228 +'ORDER'=229 +'OUT'=230 +'OUTER'=231 +'OUTPUTDRIVER'=232 +'OUTPUTFORMAT'=233 +'OVER'=234 +'OVERWRITE'=235 +'OWNER'=236 +'PARTITION'=237 +'PARTITIONED'=238 +'PARTITIONS'=239 +'PATH'=240 +'PERCENT'=241 +'PKFK_JOIN'=242 +'PLAN'=243 +'PLANS'=244 +'PLUS'=245 +'POOL'=246 +'PRECEDING'=247 +'PRECISION'=248 +'PREPARE'=249 +'PRESERVE'=250 +'PRIMARY'=251 +'PRINCIPALS'=252 +'PROCEDURE'=253 +'PROTECTION'=254 +'PURGE'=255 +'QUALIFY'=256 +'QUARTER'=257 +'QUERY'=258 +'QUERY_PARALLELISM'=259 +'RANGE'=260 +'READ'=261 +'READONLY'=262 +'READS'=263 +'REAL'=264 +'REBUILD'=265 +'RECORDREADER'=266 +'RECORDWRITER'=267 +'REDUCE'=268 +'REFERENCES'=269 +'REGEXP'=270 +'RELOAD'=271 +'RELY'=272 +'REMOTE'=273 +'RENAME'=274 +'REOPTIMIZATION'=275 +'REPAIR'=276 +'REPL'=277 +'REPLACE'=278 +'REPLICATION'=279 +'RESOURCE'=280 +'RESPECT'=281 +'RESTRICT'=282 +'REVOKE'=283 +'REWRITE'=284 +'RIGHT'=285 +'RLIKE'=286 +'ROLE'=287 +'ROLES'=288 +'ROLLBACK'=289 +'ROLLUP'=290 +'ROW'=291 +'ROWS'=292 +'SCHEDULED'=293 +'SCHEDULING_POLICY'=294 +'SCHEMA'=295 +'SCHEMAS'=296 +'SECOND'=297 +'SECONDS'=298 +'SELECT'=299 +'SEMI'=300 +'SERDE'=301 +'SERDEPROPERTIES'=302 +'SERVER'=303 +'SET'=304 +'SETS'=305 +'SET_CURRENT_SNAPSHOT'=306 +'SHARED'=307 +'SHOW'=308 +'SHOW_DATABASE'=309 +'SKEWED'=310 +'SMALLINT'=311 +'SNAPSHOT'=312 +'SOME'=313 +'SORT'=314 +'SORTED'=315 +'SPEC'=316 +'SSL'=317 +'START'=318 +'STATISTICS'=319 +'STATUS'=320 +'STORED'=321 +'STREAMTABLE'=322 +'STRING'=323 +'STRUCT'=324 +'SUMMARY'=325 +'SYNC'=326 +'SYSTEM_TIME'=327 +'SYSTEM_VERSION'=328 +'TABLE'=329 +'TABLES'=330 +'TABLESAMPLE'=331 +'TBLPROPERTIES'=332 +'TEMPORARY'=333 +'TERMINATED'=334 +'THEN'=335 +'TIME'=336 +'TIMESTAMP'=337 +'TIMESTAMPLOCALTZ'=338 +'TIMESTAMPTZ'=339 +'TINYINT'=340 +'TO'=341 +'TOUCH'=342 +'TRAILING'=343 +'TRANSACTION'=344 +'TRANSACTIONAL'=345 +'TRANSACTIONS'=346 +'TRANSFORM'=347 +'TRIGGER'=348 +'TRIM'=349 +'TRUE'=350 +'TRUNCATE'=351 +'TYPE'=352 +'UNARCHIVE'=353 +'UNBOUNDED'=354 +'UNDO'=355 +'UNION'=356 +'UNIONTYPE'=357 +'UNIQUE'=358 +'UNIQUEJOIN'=359 +'UNKNOWN'=360 +'UNLOCK'=361 +'UNMANAGED'=362 +'UNSET'=363 +'UNSIGNED'=364 +'UPDATE'=365 +'URI'=366 +'URL'=367 +'USE'=368 +'USER'=369 +'USING'=370 +'UTC'=371 +'UTC_TMESTAMP'=372 +'VALIDATE'=373 +'VALUES'=374 +'$VALUE$'=375 +'VARCHAR'=376 +'VECTORIZATION'=377 +'VIEW'=378 +'VIEWS'=379 +'WAIT'=380 +'WEEK'=381 +'WEEKS'=382 +'WHEN'=383 +'WHERE'=384 +'WHILE'=385 +'WINDOW'=386 +'WITH'=387 +'WITHIN'=388 +'WORK'=389 +'WORKLOAD'=390 +'WRITE'=391 +'YEAR'=392 +'YEARS'=393 +'ZONE'=394 +'.'=395 +':'=396 +','=397 +';'=398 +'('=399 +')'=400 +'['=401 +']'=402 +'{'=403 +'}'=404 +'<=>'=406 +'<='=408 +'<'=409 +'>='=410 +'>'=411 +'/'=412 +'+'=413 +'-'=414 +'*'=415 +'%'=416 +'DIV'=417 +'!'=418 +'&'=419 +'~'=420 +'|'=421 +'||'=422 +'^'=423 +'?'=424 +'$'=425 diff --git a/src/lib/hive/HiveSqlLexer.ts b/src/lib/hive/HiveSqlLexer.ts index 84f3fda..0a1c2b3 100644 --- a/src/lib/hive/HiveSqlLexer.ts +++ b/src/lib/hive/HiveSqlLexer.ts @@ -189,261 +189,262 @@ export class HiveSqlLexer extends antlr.Lexer { public static readonly KW_LEFT = 180; public static readonly KW_LESS = 181; public static readonly KW_LEVEL = 182; - public static readonly KW_LIKE = 183; - public static readonly KW_LIMIT = 184; - public static readonly KW_LINES = 185; - public static readonly KW_LOAD = 186; - public static readonly KW_LOCAL = 187; - public static readonly KW_LOCATION = 188; - public static readonly KW_LOCK = 189; - public static readonly KW_LOCKS = 190; - public static readonly KW_LOGICAL = 191; - public static readonly KW_LONG = 192; - public static readonly KW_MACRO = 193; - public static readonly KW_MANAGED = 194; - public static readonly KW_MANAGEDLOCATION = 195; - public static readonly KW_MANAGEMENT = 196; - public static readonly KW_MAP = 197; - public static readonly KW_MAPJOIN = 198; - public static readonly KW_MAPPING = 199; - public static readonly KW_MATCHED = 200; - public static readonly KW_MATERIALIZED = 201; - public static readonly KW_MERGE = 202; - public static readonly KW_METADATA = 203; - public static readonly KW_MINUS = 204; - public static readonly KW_MINUTE = 205; - public static readonly KW_MINUTES = 206; - public static readonly KW_MONTH = 207; - public static readonly KW_MONTHS = 208; - public static readonly KW_MORE = 209; - public static readonly KW_MOVE = 210; - public static readonly KW_MSCK = 211; - public static readonly KW_NONE = 212; - public static readonly KW_NORELY = 213; - public static readonly KW_NOSCAN = 214; - public static readonly KW_NOT = 215; - public static readonly KW_NOVALIDATE = 216; - public static readonly KW_NO_DROP = 217; - public static readonly KW_NULL = 218; - public static readonly KW_NULLS = 219; - public static readonly KW_OF = 220; - public static readonly KW_OFFLINE = 221; - public static readonly KW_OFFSET = 222; - public static readonly KW_ON = 223; - public static readonly KW_ONLY = 224; - public static readonly KW_OPERATOR = 225; - public static readonly KW_OPTION = 226; - public static readonly KW_OR = 227; - public static readonly KW_ORDER = 228; - public static readonly KW_OUT = 229; - public static readonly KW_OUTER = 230; - public static readonly KW_OUTPUTDRIVER = 231; - public static readonly KW_OUTPUTFORMAT = 232; - public static readonly KW_OVER = 233; - public static readonly KW_OVERWRITE = 234; - public static readonly KW_OWNER = 235; - public static readonly KW_PARTITION = 236; - public static readonly KW_PARTITIONED = 237; - public static readonly KW_PARTITIONS = 238; - public static readonly KW_PATH = 239; - public static readonly KW_PERCENT = 240; - public static readonly KW_PKFK_JOIN = 241; - public static readonly KW_PLAN = 242; - public static readonly KW_PLANS = 243; - public static readonly KW_PLUS = 244; - public static readonly KW_POOL = 245; - public static readonly KW_PRECEDING = 246; - public static readonly KW_PRECISION = 247; - public static readonly KW_PREPARE = 248; - public static readonly KW_PRESERVE = 249; - public static readonly KW_PRIMARY = 250; - public static readonly KW_PRINCIPALS = 251; - public static readonly KW_PROCEDURE = 252; - public static readonly KW_PROTECTION = 253; - public static readonly KW_PURGE = 254; - public static readonly KW_QUALIFY = 255; - public static readonly KW_QUARTER = 256; - public static readonly KW_QUERY = 257; - public static readonly KW_QUERY_PARALLELISM = 258; - public static readonly KW_RANGE = 259; - public static readonly KW_READ = 260; - public static readonly KW_READONLY = 261; - public static readonly KW_READS = 262; - public static readonly KW_REAL = 263; - public static readonly KW_REBUILD = 264; - public static readonly KW_RECORDREADER = 265; - public static readonly KW_RECORDWRITER = 266; - public static readonly KW_REDUCE = 267; - public static readonly KW_REFERENCES = 268; - public static readonly KW_REGEXP = 269; - public static readonly KW_RELOAD = 270; - public static readonly KW_RELY = 271; - public static readonly KW_REMOTE = 272; - public static readonly KW_RENAME = 273; - public static readonly KW_REOPTIMIZATION = 274; - public static readonly KW_REPAIR = 275; - public static readonly KW_REPL = 276; - public static readonly KW_REPLACE = 277; - public static readonly KW_REPLICATION = 278; - public static readonly KW_RESOURCE = 279; - public static readonly KW_RESPECT = 280; - public static readonly KW_RESTRICT = 281; - public static readonly KW_REVOKE = 282; - public static readonly KW_REWRITE = 283; - public static readonly KW_RIGHT = 284; - public static readonly KW_RLIKE = 285; - public static readonly KW_ROLE = 286; - public static readonly KW_ROLES = 287; - public static readonly KW_ROLLBACK = 288; - public static readonly KW_ROLLUP = 289; - public static readonly KW_ROW = 290; - public static readonly KW_ROWS = 291; - public static readonly KW_SCHEDULED = 292; - public static readonly KW_SCHEDULING_POLICY = 293; - public static readonly KW_SCHEMA = 294; - public static readonly KW_SCHEMAS = 295; - public static readonly KW_SECOND = 296; - public static readonly KW_SECONDS = 297; - public static readonly KW_SELECT = 298; - public static readonly KW_SEMI = 299; - public static readonly KW_SERDE = 300; - public static readonly KW_SERDEPROPERTIES = 301; - public static readonly KW_SERVER = 302; - public static readonly KW_SET = 303; - public static readonly KW_SETS = 304; - public static readonly KW_SET_CURRENT_SNAPSHOT = 305; - public static readonly KW_SHARED = 306; - public static readonly KW_SHOW = 307; - public static readonly KW_SHOW_DATABASE = 308; - public static readonly KW_SKEWED = 309; - public static readonly KW_SMALLINT = 310; - public static readonly KW_SNAPSHOT = 311; - public static readonly KW_SOME = 312; - public static readonly KW_SORT = 313; - public static readonly KW_SORTED = 314; - public static readonly KW_SPEC = 315; - public static readonly KW_SSL = 316; - public static readonly KW_START = 317; - public static readonly KW_STATISTICS = 318; - public static readonly KW_STATUS = 319; - public static readonly KW_STORED = 320; - public static readonly KW_STREAMTABLE = 321; - public static readonly KW_STRING = 322; - public static readonly KW_STRUCT = 323; - public static readonly KW_SUMMARY = 324; - public static readonly KW_SYNC = 325; - public static readonly KW_SYSTEM_TIME = 326; - public static readonly KW_SYSTEM_VERSION = 327; - public static readonly KW_TABLE = 328; - public static readonly KW_TABLES = 329; - public static readonly KW_TABLESAMPLE = 330; - public static readonly KW_TBLPROPERTIES = 331; - public static readonly KW_TEMPORARY = 332; - public static readonly KW_TERMINATED = 333; - public static readonly KW_THEN = 334; - public static readonly KW_TIME = 335; - public static readonly KW_TIMESTAMP = 336; - public static readonly KW_TIMESTAMPLOCALTZ = 337; - public static readonly KW_TIMESTAMPTZ = 338; - public static readonly KW_TINYINT = 339; - public static readonly KW_TO = 340; - public static readonly KW_TOUCH = 341; - public static readonly KW_TRAILING = 342; - public static readonly KW_TRANSACTION = 343; - public static readonly KW_TRANSACTIONAL = 344; - public static readonly KW_TRANSACTIONS = 345; - public static readonly KW_TRANSFORM = 346; - public static readonly KW_TRIGGER = 347; - public static readonly KW_TRIM = 348; - public static readonly KW_TRUE = 349; - public static readonly KW_TRUNCATE = 350; - public static readonly KW_TYPE = 351; - public static readonly KW_UNARCHIVE = 352; - public static readonly KW_UNBOUNDED = 353; - public static readonly KW_UNDO = 354; - public static readonly KW_UNION = 355; - public static readonly KW_UNIONTYPE = 356; - public static readonly KW_UNIQUE = 357; - public static readonly KW_UNIQUEJOIN = 358; - public static readonly KW_UNKNOWN = 359; - public static readonly KW_UNLOCK = 360; - public static readonly KW_UNMANAGED = 361; - public static readonly KW_UNSET = 362; - public static readonly KW_UNSIGNED = 363; - public static readonly KW_UPDATE = 364; - public static readonly KW_URI = 365; - public static readonly KW_URL = 366; - public static readonly KW_USE = 367; - public static readonly KW_USER = 368; - public static readonly KW_USING = 369; - public static readonly KW_UTC = 370; - public static readonly KW_UTCTIMESTAMP = 371; - public static readonly KW_VALIDATE = 372; - public static readonly KW_VALUES = 373; - public static readonly KW_VALUE_TYPE = 374; - public static readonly KW_VARCHAR = 375; - public static readonly KW_VECTORIZATION = 376; - public static readonly KW_VIEW = 377; - public static readonly KW_VIEWS = 378; - public static readonly KW_WAIT = 379; - public static readonly KW_WEEK = 380; - public static readonly KW_WEEKS = 381; - public static readonly KW_WHEN = 382; - public static readonly KW_WHERE = 383; - public static readonly KW_WHILE = 384; - public static readonly KW_WINDOW = 385; - public static readonly KW_WITH = 386; - public static readonly KW_WITHIN = 387; - public static readonly KW_WORK = 388; - public static readonly KW_WORKLOAD = 389; - public static readonly KW_WRITE = 390; - public static readonly KW_YEAR = 391; - public static readonly KW_YEARS = 392; - public static readonly KW_ZONE = 393; - public static readonly DOT = 394; - public static readonly COLON = 395; - public static readonly COMMA = 396; - public static readonly SEMICOLON = 397; - public static readonly LPAREN = 398; - public static readonly RPAREN = 399; - public static readonly LSQUARE = 400; - public static readonly RSQUARE = 401; - public static readonly LCURLY = 402; - public static readonly RCURLY = 403; - public static readonly EQUAL = 404; - public static readonly EQUAL_NS = 405; - public static readonly NOTEQUAL = 406; - public static readonly LESSTHANOREQUALTO = 407; - public static readonly LESSTHAN = 408; - public static readonly GREATERTHANOREQUALTO = 409; - public static readonly GREATERTHAN = 410; - public static readonly DIVIDE = 411; - public static readonly PLUS = 412; - public static readonly MINUS = 413; - public static readonly STAR = 414; - public static readonly MOD = 415; - public static readonly DIV = 416; - public static readonly BITWISENOT = 417; - public static readonly AMPERSAND = 418; - public static readonly TILDE = 419; - public static readonly BITWISEOR = 420; - public static readonly CONCATENATE = 421; - public static readonly BITWISEXOR = 422; - public static readonly QUESTION = 423; - public static readonly DOLLAR = 424; - public static readonly StringLiteral = 425; - public static readonly CharSetLiteral = 426; - public static readonly IntegralLiteral = 427; - public static readonly NumberLiteral = 428; - public static readonly ByteLengthLiteral = 429; - public static readonly Number = 430; - public static readonly Identifier = 431; - public static readonly CharSetName = 432; - public static readonly WHITE_SPACE = 433; - public static readonly LINE_COMMENT = 434; - public static readonly QUERY_HINT = 435; - public static readonly SHOW_HINT = 436; - public static readonly HIDDEN_HINT = 437; + public static readonly KW_LIFECYCLE = 183; + public static readonly KW_LIKE = 184; + public static readonly KW_LIMIT = 185; + public static readonly KW_LINES = 186; + public static readonly KW_LOAD = 187; + public static readonly KW_LOCAL = 188; + public static readonly KW_LOCATION = 189; + public static readonly KW_LOCK = 190; + public static readonly KW_LOCKS = 191; + public static readonly KW_LOGICAL = 192; + public static readonly KW_LONG = 193; + public static readonly KW_MACRO = 194; + public static readonly KW_MANAGED = 195; + public static readonly KW_MANAGEDLOCATION = 196; + public static readonly KW_MANAGEMENT = 197; + public static readonly KW_MAP = 198; + public static readonly KW_MAPJOIN = 199; + public static readonly KW_MAPPING = 200; + public static readonly KW_MATCHED = 201; + public static readonly KW_MATERIALIZED = 202; + public static readonly KW_MERGE = 203; + public static readonly KW_METADATA = 204; + public static readonly KW_MINUS = 205; + public static readonly KW_MINUTE = 206; + public static readonly KW_MINUTES = 207; + public static readonly KW_MONTH = 208; + public static readonly KW_MONTHS = 209; + public static readonly KW_MORE = 210; + public static readonly KW_MOVE = 211; + public static readonly KW_MSCK = 212; + public static readonly KW_NONE = 213; + public static readonly KW_NORELY = 214; + public static readonly KW_NOSCAN = 215; + public static readonly KW_NOT = 216; + public static readonly KW_NOVALIDATE = 217; + public static readonly KW_NO_DROP = 218; + public static readonly KW_NULL = 219; + public static readonly KW_NULLS = 220; + public static readonly KW_OF = 221; + public static readonly KW_OFFLINE = 222; + public static readonly KW_OFFSET = 223; + public static readonly KW_ON = 224; + public static readonly KW_ONLY = 225; + public static readonly KW_OPERATOR = 226; + public static readonly KW_OPTION = 227; + public static readonly KW_OR = 228; + public static readonly KW_ORDER = 229; + public static readonly KW_OUT = 230; + public static readonly KW_OUTER = 231; + public static readonly KW_OUTPUTDRIVER = 232; + public static readonly KW_OUTPUTFORMAT = 233; + public static readonly KW_OVER = 234; + public static readonly KW_OVERWRITE = 235; + public static readonly KW_OWNER = 236; + public static readonly KW_PARTITION = 237; + public static readonly KW_PARTITIONED = 238; + public static readonly KW_PARTITIONS = 239; + public static readonly KW_PATH = 240; + public static readonly KW_PERCENT = 241; + public static readonly KW_PKFK_JOIN = 242; + public static readonly KW_PLAN = 243; + public static readonly KW_PLANS = 244; + public static readonly KW_PLUS = 245; + public static readonly KW_POOL = 246; + public static readonly KW_PRECEDING = 247; + public static readonly KW_PRECISION = 248; + public static readonly KW_PREPARE = 249; + public static readonly KW_PRESERVE = 250; + public static readonly KW_PRIMARY = 251; + public static readonly KW_PRINCIPALS = 252; + public static readonly KW_PROCEDURE = 253; + public static readonly KW_PROTECTION = 254; + public static readonly KW_PURGE = 255; + public static readonly KW_QUALIFY = 256; + public static readonly KW_QUARTER = 257; + public static readonly KW_QUERY = 258; + public static readonly KW_QUERY_PARALLELISM = 259; + public static readonly KW_RANGE = 260; + public static readonly KW_READ = 261; + public static readonly KW_READONLY = 262; + public static readonly KW_READS = 263; + public static readonly KW_REAL = 264; + public static readonly KW_REBUILD = 265; + public static readonly KW_RECORDREADER = 266; + public static readonly KW_RECORDWRITER = 267; + public static readonly KW_REDUCE = 268; + public static readonly KW_REFERENCES = 269; + public static readonly KW_REGEXP = 270; + public static readonly KW_RELOAD = 271; + public static readonly KW_RELY = 272; + public static readonly KW_REMOTE = 273; + public static readonly KW_RENAME = 274; + public static readonly KW_REOPTIMIZATION = 275; + public static readonly KW_REPAIR = 276; + public static readonly KW_REPL = 277; + public static readonly KW_REPLACE = 278; + public static readonly KW_REPLICATION = 279; + public static readonly KW_RESOURCE = 280; + public static readonly KW_RESPECT = 281; + public static readonly KW_RESTRICT = 282; + public static readonly KW_REVOKE = 283; + public static readonly KW_REWRITE = 284; + public static readonly KW_RIGHT = 285; + public static readonly KW_RLIKE = 286; + public static readonly KW_ROLE = 287; + public static readonly KW_ROLES = 288; + public static readonly KW_ROLLBACK = 289; + public static readonly KW_ROLLUP = 290; + public static readonly KW_ROW = 291; + public static readonly KW_ROWS = 292; + public static readonly KW_SCHEDULED = 293; + public static readonly KW_SCHEDULING_POLICY = 294; + public static readonly KW_SCHEMA = 295; + public static readonly KW_SCHEMAS = 296; + public static readonly KW_SECOND = 297; + public static readonly KW_SECONDS = 298; + public static readonly KW_SELECT = 299; + public static readonly KW_SEMI = 300; + public static readonly KW_SERDE = 301; + public static readonly KW_SERDEPROPERTIES = 302; + public static readonly KW_SERVER = 303; + public static readonly KW_SET = 304; + public static readonly KW_SETS = 305; + public static readonly KW_SET_CURRENT_SNAPSHOT = 306; + public static readonly KW_SHARED = 307; + public static readonly KW_SHOW = 308; + public static readonly KW_SHOW_DATABASE = 309; + public static readonly KW_SKEWED = 310; + public static readonly KW_SMALLINT = 311; + public static readonly KW_SNAPSHOT = 312; + public static readonly KW_SOME = 313; + public static readonly KW_SORT = 314; + public static readonly KW_SORTED = 315; + public static readonly KW_SPEC = 316; + public static readonly KW_SSL = 317; + public static readonly KW_START = 318; + public static readonly KW_STATISTICS = 319; + public static readonly KW_STATUS = 320; + public static readonly KW_STORED = 321; + public static readonly KW_STREAMTABLE = 322; + public static readonly KW_STRING = 323; + public static readonly KW_STRUCT = 324; + public static readonly KW_SUMMARY = 325; + public static readonly KW_SYNC = 326; + public static readonly KW_SYSTEM_TIME = 327; + public static readonly KW_SYSTEM_VERSION = 328; + public static readonly KW_TABLE = 329; + public static readonly KW_TABLES = 330; + public static readonly KW_TABLESAMPLE = 331; + public static readonly KW_TBLPROPERTIES = 332; + public static readonly KW_TEMPORARY = 333; + public static readonly KW_TERMINATED = 334; + public static readonly KW_THEN = 335; + public static readonly KW_TIME = 336; + public static readonly KW_TIMESTAMP = 337; + public static readonly KW_TIMESTAMPLOCALTZ = 338; + public static readonly KW_TIMESTAMPTZ = 339; + public static readonly KW_TINYINT = 340; + public static readonly KW_TO = 341; + public static readonly KW_TOUCH = 342; + public static readonly KW_TRAILING = 343; + public static readonly KW_TRANSACTION = 344; + public static readonly KW_TRANSACTIONAL = 345; + public static readonly KW_TRANSACTIONS = 346; + public static readonly KW_TRANSFORM = 347; + public static readonly KW_TRIGGER = 348; + public static readonly KW_TRIM = 349; + public static readonly KW_TRUE = 350; + public static readonly KW_TRUNCATE = 351; + public static readonly KW_TYPE = 352; + public static readonly KW_UNARCHIVE = 353; + public static readonly KW_UNBOUNDED = 354; + public static readonly KW_UNDO = 355; + public static readonly KW_UNION = 356; + public static readonly KW_UNIONTYPE = 357; + public static readonly KW_UNIQUE = 358; + public static readonly KW_UNIQUEJOIN = 359; + public static readonly KW_UNKNOWN = 360; + public static readonly KW_UNLOCK = 361; + public static readonly KW_UNMANAGED = 362; + public static readonly KW_UNSET = 363; + public static readonly KW_UNSIGNED = 364; + public static readonly KW_UPDATE = 365; + public static readonly KW_URI = 366; + public static readonly KW_URL = 367; + public static readonly KW_USE = 368; + public static readonly KW_USER = 369; + public static readonly KW_USING = 370; + public static readonly KW_UTC = 371; + public static readonly KW_UTCTIMESTAMP = 372; + public static readonly KW_VALIDATE = 373; + public static readonly KW_VALUES = 374; + public static readonly KW_VALUE_TYPE = 375; + public static readonly KW_VARCHAR = 376; + public static readonly KW_VECTORIZATION = 377; + public static readonly KW_VIEW = 378; + public static readonly KW_VIEWS = 379; + public static readonly KW_WAIT = 380; + public static readonly KW_WEEK = 381; + public static readonly KW_WEEKS = 382; + public static readonly KW_WHEN = 383; + public static readonly KW_WHERE = 384; + public static readonly KW_WHILE = 385; + public static readonly KW_WINDOW = 386; + public static readonly KW_WITH = 387; + public static readonly KW_WITHIN = 388; + public static readonly KW_WORK = 389; + public static readonly KW_WORKLOAD = 390; + public static readonly KW_WRITE = 391; + public static readonly KW_YEAR = 392; + public static readonly KW_YEARS = 393; + public static readonly KW_ZONE = 394; + public static readonly DOT = 395; + public static readonly COLON = 396; + public static readonly COMMA = 397; + public static readonly SEMICOLON = 398; + public static readonly LPAREN = 399; + public static readonly RPAREN = 400; + public static readonly LSQUARE = 401; + public static readonly RSQUARE = 402; + public static readonly LCURLY = 403; + public static readonly RCURLY = 404; + public static readonly EQUAL = 405; + public static readonly EQUAL_NS = 406; + public static readonly NOTEQUAL = 407; + public static readonly LESSTHANOREQUALTO = 408; + public static readonly LESSTHAN = 409; + public static readonly GREATERTHANOREQUALTO = 410; + public static readonly GREATERTHAN = 411; + public static readonly DIVIDE = 412; + public static readonly PLUS = 413; + public static readonly MINUS = 414; + public static readonly STAR = 415; + public static readonly MOD = 416; + public static readonly DIV = 417; + public static readonly BITWISENOT = 418; + public static readonly AMPERSAND = 419; + public static readonly TILDE = 420; + public static readonly BITWISEOR = 421; + public static readonly CONCATENATE = 422; + public static readonly BITWISEXOR = 423; + public static readonly QUESTION = 424; + public static readonly DOLLAR = 425; + public static readonly StringLiteral = 426; + public static readonly CharSetLiteral = 427; + public static readonly IntegralLiteral = 428; + public static readonly NumberLiteral = 429; + public static readonly ByteLengthLiteral = 430; + public static readonly Number = 431; + public static readonly Identifier = 432; + public static readonly CharSetName = 433; + public static readonly WHITE_SPACE = 434; + public static readonly LINE_COMMENT = 435; + public static readonly QUERY_HINT = 436; + public static readonly SHOW_HINT = 437; + public static readonly HIDDEN_HINT = 438; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -482,48 +483,49 @@ export class HiveSqlLexer extends antlr.Lexer { "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERVAL'", "'INTO'", "'IS'", "'ISOLATION'", "'ITEMS'", "'JAR'", "'JOIN'", "'JOINCOST'", "'KEY'", "'KEYS'", "'$KEY$'", "'KILL'", "'LAST'", "'LATERAL'", "'LEADING'", - "'LEFT'", "'LESS'", "'LEVEL'", "'LIKE'", "'LIMIT'", "'LINES'", "'LOAD'", - "'LOCAL'", "'LOCATION'", "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", - "'MACRO'", "'MANAGED'", "'MANAGEDLOCATION'", "'MANAGEMENT'", "'MAP'", - "'MAPJOIN'", "'MAPPING'", "'MATCHED'", "'MATERIALIZED'", "'MERGE'", - "'METADATA'", "'MINUS'", "'MINUTE'", "'MINUTES'", "'MONTH'", "'MONTHS'", - "'MORE'", "'MOVE'", "'MSCK'", "'NONE'", "'NORELY'", "'NOSCAN'", - "'NOT'", "'NOVALIDATE'", "'NO_DROP'", "'NULL'", "'NULLS'", "'OF'", - "'OFFLINE'", "'OFFSET'", "'ON'", "'ONLY'", "'OPERATOR'", "'OPTION'", - "'OR'", "'ORDER'", "'OUT'", "'OUTER'", "'OUTPUTDRIVER'", "'OUTPUTFORMAT'", - "'OVER'", "'OVERWRITE'", "'OWNER'", "'PARTITION'", "'PARTITIONED'", - "'PARTITIONS'", "'PATH'", "'PERCENT'", "'PKFK_JOIN'", "'PLAN'", - "'PLANS'", "'PLUS'", "'POOL'", "'PRECEDING'", "'PRECISION'", "'PREPARE'", - "'PRESERVE'", "'PRIMARY'", "'PRINCIPALS'", "'PROCEDURE'", "'PROTECTION'", - "'PURGE'", "'QUALIFY'", "'QUARTER'", "'QUERY'", "'QUERY_PARALLELISM'", - "'RANGE'", "'READ'", "'READONLY'", "'READS'", "'REAL'", "'REBUILD'", - "'RECORDREADER'", "'RECORDWRITER'", "'REDUCE'", "'REFERENCES'", - "'REGEXP'", "'RELOAD'", "'RELY'", "'REMOTE'", "'RENAME'", "'REOPTIMIZATION'", - "'REPAIR'", "'REPL'", "'REPLACE'", "'REPLICATION'", "'RESOURCE'", - "'RESPECT'", "'RESTRICT'", "'REVOKE'", "'REWRITE'", "'RIGHT'", "'RLIKE'", - "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", "'ROW'", "'ROWS'", - "'SCHEDULED'", "'SCHEDULING_POLICY'", "'SCHEMA'", "'SCHEMAS'", "'SECOND'", - "'SECONDS'", "'SELECT'", "'SEMI'", "'SERDE'", "'SERDEPROPERTIES'", - "'SERVER'", "'SET'", "'SETS'", "'SET_CURRENT_SNAPSHOT'", "'SHARED'", - "'SHOW'", "'SHOW_DATABASE'", "'SKEWED'", "'SMALLINT'", "'SNAPSHOT'", - "'SOME'", "'SORT'", "'SORTED'", "'SPEC'", "'SSL'", "'START'", "'STATISTICS'", - "'STATUS'", "'STORED'", "'STREAMTABLE'", "'STRING'", "'STRUCT'", - "'SUMMARY'", "'SYNC'", "'SYSTEM_TIME'", "'SYSTEM_VERSION'", "'TABLE'", - "'TABLES'", "'TABLESAMPLE'", "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", - "'THEN'", "'TIME'", "'TIMESTAMP'", "'TIMESTAMPLOCALTZ'", "'TIMESTAMPTZ'", - "'TINYINT'", "'TO'", "'TOUCH'", "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONAL'", - "'TRANSACTIONS'", "'TRANSFORM'", "'TRIGGER'", "'TRIM'", "'TRUE'", - "'TRUNCATE'", "'TYPE'", "'UNARCHIVE'", "'UNBOUNDED'", "'UNDO'", - "'UNION'", "'UNIONTYPE'", "'UNIQUE'", "'UNIQUEJOIN'", "'UNKNOWN'", - "'UNLOCK'", "'UNMANAGED'", "'UNSET'", "'UNSIGNED'", "'UPDATE'", - "'URI'", "'URL'", "'USE'", "'USER'", "'USING'", "'UTC'", "'UTC_TMESTAMP'", - "'VALIDATE'", "'VALUES'", "'$VALUE$'", "'VARCHAR'", "'VECTORIZATION'", - "'VIEW'", "'VIEWS'", "'WAIT'", "'WEEK'", "'WEEKS'", "'WHEN'", "'WHERE'", - "'WHILE'", "'WINDOW'", "'WITH'", "'WITHIN'", "'WORK'", "'WORKLOAD'", - "'WRITE'", "'YEAR'", "'YEARS'", "'ZONE'", "'.'", "':'", "','", "';'", - "'('", "')'", "'['", "']'", "'{'", "'}'", null, "'<=>'", null, "'<='", - "'<'", "'>='", "'>'", "'/'", "'+'", "'-'", "'*'", "'%'", "'DIV'", - "'!'", "'&'", "'~'", "'|'", "'||'", "'^'", "'?'", "'$'" + "'LEFT'", "'LESS'", "'LEVEL'", "'LIFECYCLE'", "'LIKE'", "'LIMIT'", + "'LINES'", "'LOAD'", "'LOCAL'", "'LOCATION'", "'LOCK'", "'LOCKS'", + "'LOGICAL'", "'LONG'", "'MACRO'", "'MANAGED'", "'MANAGEDLOCATION'", + "'MANAGEMENT'", "'MAP'", "'MAPJOIN'", "'MAPPING'", "'MATCHED'", + "'MATERIALIZED'", "'MERGE'", "'METADATA'", "'MINUS'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MORE'", "'MOVE'", "'MSCK'", + "'NONE'", "'NORELY'", "'NOSCAN'", "'NOT'", "'NOVALIDATE'", "'NO_DROP'", + "'NULL'", "'NULLS'", "'OF'", "'OFFLINE'", "'OFFSET'", "'ON'", "'ONLY'", + "'OPERATOR'", "'OPTION'", "'OR'", "'ORDER'", "'OUT'", "'OUTER'", + "'OUTPUTDRIVER'", "'OUTPUTFORMAT'", "'OVER'", "'OVERWRITE'", "'OWNER'", + "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PATH'", "'PERCENT'", + "'PKFK_JOIN'", "'PLAN'", "'PLANS'", "'PLUS'", "'POOL'", "'PRECEDING'", + "'PRECISION'", "'PREPARE'", "'PRESERVE'", "'PRIMARY'", "'PRINCIPALS'", + "'PROCEDURE'", "'PROTECTION'", "'PURGE'", "'QUALIFY'", "'QUARTER'", + "'QUERY'", "'QUERY_PARALLELISM'", "'RANGE'", "'READ'", "'READONLY'", + "'READS'", "'REAL'", "'REBUILD'", "'RECORDREADER'", "'RECORDWRITER'", + "'REDUCE'", "'REFERENCES'", "'REGEXP'", "'RELOAD'", "'RELY'", "'REMOTE'", + "'RENAME'", "'REOPTIMIZATION'", "'REPAIR'", "'REPL'", "'REPLACE'", + "'REPLICATION'", "'RESOURCE'", "'RESPECT'", "'RESTRICT'", "'REVOKE'", + "'REWRITE'", "'RIGHT'", "'RLIKE'", "'ROLE'", "'ROLES'", "'ROLLBACK'", + "'ROLLUP'", "'ROW'", "'ROWS'", "'SCHEDULED'", "'SCHEDULING_POLICY'", + "'SCHEMA'", "'SCHEMAS'", "'SECOND'", "'SECONDS'", "'SELECT'", "'SEMI'", + "'SERDE'", "'SERDEPROPERTIES'", "'SERVER'", "'SET'", "'SETS'", "'SET_CURRENT_SNAPSHOT'", + "'SHARED'", "'SHOW'", "'SHOW_DATABASE'", "'SKEWED'", "'SMALLINT'", + "'SNAPSHOT'", "'SOME'", "'SORT'", "'SORTED'", "'SPEC'", "'SSL'", + "'START'", "'STATISTICS'", "'STATUS'", "'STORED'", "'STREAMTABLE'", + "'STRING'", "'STRUCT'", "'SUMMARY'", "'SYNC'", "'SYSTEM_TIME'", + "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TBLPROPERTIES'", + "'TEMPORARY'", "'TERMINATED'", "'THEN'", "'TIME'", "'TIMESTAMP'", + "'TIMESTAMPLOCALTZ'", "'TIMESTAMPTZ'", "'TINYINT'", "'TO'", "'TOUCH'", + "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONAL'", "'TRANSACTIONS'", + "'TRANSFORM'", "'TRIGGER'", "'TRIM'", "'TRUE'", "'TRUNCATE'", "'TYPE'", + "'UNARCHIVE'", "'UNBOUNDED'", "'UNDO'", "'UNION'", "'UNIONTYPE'", + "'UNIQUE'", "'UNIQUEJOIN'", "'UNKNOWN'", "'UNLOCK'", "'UNMANAGED'", + "'UNSET'", "'UNSIGNED'", "'UPDATE'", "'URI'", "'URL'", "'USE'", + "'USER'", "'USING'", "'UTC'", "'UTC_TMESTAMP'", "'VALIDATE'", "'VALUES'", + "'$VALUE$'", "'VARCHAR'", "'VECTORIZATION'", "'VIEW'", "'VIEWS'", + "'WAIT'", "'WEEK'", "'WEEKS'", "'WHEN'", "'WHERE'", "'WHILE'", "'WINDOW'", + "'WITH'", "'WITHIN'", "'WORK'", "'WORKLOAD'", "'WRITE'", "'YEAR'", + "'YEARS'", "'ZONE'", "'.'", "':'", "','", "';'", "'('", "')'", "'['", + "']'", "'{'", "'}'", null, "'<=>'", null, "'<='", "'<'", "'>='", + "'>'", "'/'", "'+'", "'-'", "'*'", "'%'", "'DIV'", "'!'", "'&'", + "'~'", "'|'", "'||'", "'^'", "'?'", "'$'" ]; public static readonly symbolicNames = [ @@ -561,13 +563,13 @@ export class HiveSqlLexer extends antlr.Lexer { "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_ISOLATION", "KW_ITEMS", "KW_JAR", "KW_JOIN", "KW_JOINCOST", "KW_KEY", "KW_KEYS", "KW_KEY_TYPE", "KW_KILL", "KW_LAST", "KW_LATERAL", - "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIKE", "KW_LIMIT", - "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", "KW_LOCK", "KW_LOCKS", - "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", "KW_MANAGEDLOCATION", - "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", "KW_MATCHED", - "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", "KW_MINUTE", - "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", "KW_MSCK", - "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", + "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIFECYCLE", + "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", + "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", + "KW_MANAGEDLOCATION", "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", + "KW_MATCHED", "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", + "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", + "KW_MSCK", "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", "KW_NO_DROP", "KW_NULL", "KW_NULLS", "KW_OF", "KW_OFFLINE", "KW_OFFSET", "KW_ON", "KW_ONLY", "KW_OPERATOR", "KW_OPTION", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTPUTDRIVER", "KW_OUTPUTFORMAT", "KW_OVER", @@ -652,13 +654,13 @@ export class HiveSqlLexer extends antlr.Lexer { "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_ISOLATION", "KW_ITEMS", "KW_JAR", "KW_JOIN", "KW_JOINCOST", "KW_KEY", "KW_KEYS", "KW_KEY_TYPE", "KW_KILL", "KW_LAST", "KW_LATERAL", - "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIKE", "KW_LIMIT", - "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", "KW_LOCK", "KW_LOCKS", - "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", "KW_MANAGEDLOCATION", - "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", "KW_MATCHED", - "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", "KW_MINUTE", - "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", "KW_MSCK", - "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", + "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIFECYCLE", + "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", + "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", + "KW_MANAGEDLOCATION", "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", + "KW_MATCHED", "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", + "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", + "KW_MSCK", "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", "KW_NO_DROP", "KW_NULL", "KW_NULLS", "KW_OF", "KW_OFFLINE", "KW_OFFSET", "KW_ON", "KW_ONLY", "KW_OPERATOR", "KW_OPTION", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTPUTDRIVER", "KW_OUTPUTFORMAT", "KW_OVER", @@ -724,7 +726,7 @@ export class HiveSqlLexer extends antlr.Lexer { public get modeNames(): string[] { return HiveSqlLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4,0,437,4159,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,438,4171,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, @@ -801,1489 +803,1494 @@ export class HiveSqlLexer extends antlr.Lexer { 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,1,0,1,0,1,0,1,0, - 1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5, - 1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7, - 1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,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,11,1,12,1, - 12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,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,16,1,16,1,16,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1, - 18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,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,22,1,22,1,22,1,22,1,22,1,22,1,23,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,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,27,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,29,1, - 29,1,29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, - 30,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1, - 35,1,35,1,36,1,36,1,36,1,36,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,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1, - 40,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,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,1,43,1,43,1,43,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,45,1,45,1,45,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,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,49,1,49,1,49,1,49,1,49,1,49,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,50,1,50,1, - 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1, - 52,1,52,1,52,1,52,1,52,1,52,1,52,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,54,1,54,1,54,1,55,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,57,1,57,1, - 57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1, - 59,1,59,1,59,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,62,1,62,1,62,1,62,1,62,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,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,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1, - 66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1, - 68,1,68,1,68,1,68,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,69,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,71,1,71,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,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,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1, - 79,1,79,1,79,1,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,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,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,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,87,1,87,1,87,1,87,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,90,1,90,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,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,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,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,96,1,96,1,96,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,97,1,97,1,98,1,98,1,98,1,99,1,99,1, - 99,1,99,1,99,1,99,1,99,1,100,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,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104, - 1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,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,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,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,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,113,1,113,1,113, - 1,113,1,113,1,113,1,114,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,115,1,115,1,115,1,115,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,117, + 2,439,7,439,2,440,7,440,2,441,7,441,2,442,7,442,2,443,7,443,1,0, + 1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,5, + 1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7, + 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9, + 1,9,1,9,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,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, + 1,13,1,13,1,13,1,13,1,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,16,1,16,1,16,1,17,1,17,1,17,1,17,1,18, + 1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20, + 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,22,1,22,1,22,1,22,1,22,1,22,1,23,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,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,27,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,29,1,29,1,29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30, + 1,30,1,30,1,30,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,33, + 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,35, + 1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,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,39,1,39,1,39,1,39,1,39,1,39, + 1,40,1,40,1,40,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,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,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,45,1,45, + 1,45,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,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,49,1,49,1,49,1,49,1,49,1,49,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,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52, + 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,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,54,1,54,1,54,1,55, + 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,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,59, + 1,59,1,59,1,59,1,59,1,59,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,62,1,62,1,62,1,62,1,62,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,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,65,1,65,1,65,1,65,1,65,1,66,1,66,1,66,1,66, + 1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67, + 1,67,1,67,1,68,1,68,1,68,1,68,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,69,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,71,1,71,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,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,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78, + 1,78,1,79,1,79,1,79,1,79,1,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,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,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,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,87,1,87,1,87,1,87,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,90,1,90,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,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,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,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,96,1,96,1,96,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,97,1,97,1,98,1,98,1,98, + 1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100,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,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104, + 1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,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,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,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,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,113, + 1,113,1,113,1,113,1,113,1,113,1,114,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,115,1,115,1,115,1,115, + 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,117,1,117,1,117,1,117,1,117,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,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,121,1,121,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,124,1,124,1,124, - 1,124,1,124,1,124,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,128, - 1,128,1,128,1,128,1,128,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,130,1,130,1,130,1,130,1,130,1,130, - 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,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,135,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,137,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,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140,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,141,1,141,1,141,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,144, - 1,144,1,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146, + 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,119,1,119,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,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,124, + 1,124,1,124,1,124,1,124,1,124,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,128,1,128,1,128,1,128,1,128,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,130,1,130,1,130,1,130, + 1,130,1,130,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,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,135,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,137, + 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,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140, + 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,141,1,141,1,141,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,144,1,144,1,144,1,145,1,145,1,145,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,146,1,146,1,146, - 1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148, - 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, - 1,149,1,149,1,149,1,150,1,150,1,150,1,151,1,151,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,153,1,153, - 1,153,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,155,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,157,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159,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,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,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167, - 1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,168,1,168, - 1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169,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,172,1,172,1,172,1,172,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,176,1,176, - 1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, - 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179, - 1,179,1,179,1,180,1,180,1,180,1,180,1,180,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,183, - 1,183,1,183,1,184,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,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,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,191,1,191,1,191,1,191,1,191,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,194,1,194,1,194,1,194,1,194,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,195,1,195, - 1,195,1,195,1,195,1,195,1,195,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,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,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,201,1,202,1,202,1,202, - 1,202,1,202,1,202,1,202,1,202,1,202,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,204,1,205,1,205,1,205, - 1,205,1,205,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,208,1,208,1,208,1,208, - 1,208,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210, - 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,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,215, - 1,215,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,218,1,218,1,218,1,218,1,218,1,218,1,219,1,219, - 1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,221,1,221, - 1,221,1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,223,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,227, - 1,227,1,227,1,227,1,227,1,227,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,230,1,230, - 1,230,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,231,1,231,1,231,1,231,1,232,1,232,1,232, - 1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, - 1,233,1,234,1,234,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235, - 1,235,1,235,1,235,1,235,1,235,1,235,1,236,1,236,1,236,1,236,1,236, + 1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148, + 1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,151,1,151,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,153,1,153,1,153,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,155,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,157,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159, + 1,159,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,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,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166, + 1,166,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167, + 1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169,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,172,1,172,1,172,1,172,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,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177, + 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,179, + 1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,180,1,180,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,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184, + 1,184,1,184,1,184,1,185,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,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,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,192,1,192,1,192,1,192,1,192,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,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,1,195,1,195,1,196,1,196,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,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,200,1,200, + 1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,1,201,1,201,1,202,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,204,1,204,1,204,1,204, + 1,204,1,204,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,206,1,206, + 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,208,1,208,1,208,1,208,1,208,1,208,1,208,1,209,1,209,1,209, + 1,209,1,209,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, + 1,211,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,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,216,1,216,1,217,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,219,1,219,1,219,1,219,1,219,1,219,1,220, + 1,220,1,220,1,221,1,221,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,224,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,228,1,228,1,228,1,228,1,228,1,228,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,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,232,1,232,1,232,1,232,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,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,236,1,236,1,236,1,236,1,237,1,237,1,237,1,237, - 1,237,1,237,1,237,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,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,241,1,242,1,242,1,242,1,242,1,242,1,242,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,245,1,245,1,245,1,246,1,246,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,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,250,1,250,1,250, - 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,251,1,251,1,251, - 1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252, - 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,253,1,253,1,253,1,253, - 1,253,1,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,256,1,256,1,256,1,256, - 1,256,1,256,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257,1,257, - 1,257,1,257,1,257,1,257,1,257,1,257,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,260,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,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,264,1,264,1,264,1,264,1,264,1,264,1,264, - 1,264,1,264,1,264,1,264,1,264,1,264,1,265,1,265,1,265,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,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,269,1,269,1,269,1,269,1,269,1,269,1,269,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,272,1,272,1,272, - 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,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,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,277,1,277,1,277,1,277,1,277, + 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,238,1,238,1,238, + 1,238,1,238,1,238,1,238,1,238,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,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,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,246,1,246,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,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,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,251,1,251, + 1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,251,1,252,1,252, + 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,253,1,253,1,253, + 1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,254,1,254,1,254, + 1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,256,1,257,1,257,1,257, + 1,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,259, + 1,259,1,259,1,259,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,261, + 1,261,1,261,1,261,1,261,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,265,1,265,1,265,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,266,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,268,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,271,1,271,1,271, + 1,271,1,271,1,272,1,272,1,272,1,272,1,272,1,272,1,272,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,275,1,275, + 1,275,1,275,1,275,1,275,1,275,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,278,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,279,1,279,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,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,284, - 1,284,1,284,1,284,1,284,1,284,1,285,1,285,1,285,1,285,1,285,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,288,1,288,1,288,1,288,1,288,1,288,1,288,1,289, - 1,289,1,289,1,289,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,292,1,292,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,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295, - 1,295,1,295,1,295,1,296,1,296,1,296,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,298,1,298,1,298,1,298, - 1,298,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,300,1,300,1,300, - 1,300,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,302,1,302,1,302, - 1,302,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,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,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,307,1,307,1,307,1,307,1,307,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,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,315,1,315,1,315,1,315,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,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,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320, + 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,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,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,285,1,285,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286, + 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,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,290,1,290,1,290,1,290,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,292,1,292,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,296,1,296,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,298,1,298,1,298,1,298,1,298,1,298,1,298,1,299,1,299,1,299, + 1,299,1,299,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,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,303,1,303, + 1,303,1,303,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,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,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,308,1,308,1,308,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,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,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,318,1,318,1,318,1,318, + 1,318,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,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,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,325,1,326, + 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,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,326, 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,326,1,326,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,329,1,329,1,329,1,329,1,329,1,329, + 1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327,1,327, + 1,327,1,327,1,327,1,327,1,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,330,1,330,1,330,1,330,1,330, - 1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,330,1,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,332,1,332,1,332,1,332,1,332,1,333,1,333,1,333, - 1,333,1,333,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,335,1,335,1,335,1,336,1,336,1,336,1,336,1,336, - 1,336,1,336,1,336,1,336,1,336,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,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,339, - 1,339,1,339,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,342,1,342,1,342,1,342,1,342, + 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,331,1,331,1,331,1,331,1,332, + 1,332,1,332,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,333,1,333,1,333,1,333,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,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,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,338,1,338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,340,1,340,1,340,1,341,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,342,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,344, + 1,343,1,343,1,343,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,344,1,344,1,344,1,344,1,344, - 1,344,1,345,1,345,1,345,1,345,1,345,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,347,1,347,1,347, - 1,347,1,347,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,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,352,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,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,355,1,355,1,355,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,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,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,363, - 1,363,1,363,1,363,1,363,1,363,1,363,1,364,1,364,1,364,1,364,1,365, - 1,365,1,365,1,365,1,366,1,366,1,366,1,366,1,367,1,367,1,367,1,367, - 1,367,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,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,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,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,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,378,1,378,1,378,1,378,1,378,1,379,1,379, - 1,379,1,379,1,379,1,380,1,380,1,380,1,380,1,380,1,380,1,381,1,381, - 1,381,1,381,1,381,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,384,1,384,1,384,1,384,1,384,1,384,1,384, - 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,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,389,1,389,1,389,1,389,1,389,1,389,1,390, - 1,390,1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391,1,392, - 1,392,1,392,1,392,1,392,1,393,1,393,1,394,1,394,1,395,1,395,1,396, - 1,396,1,397,1,397,1,398,1,398,1,399,1,399,1,400,1,400,1,401,1,401, - 1,402,1,402,1,403,1,403,1,403,3,403,3908,8,403,1,404,1,404,1,404, - 1,404,1,405,1,405,1,405,1,405,3,405,3918,8,405,1,406,1,406,1,406, - 1,407,1,407,1,408,1,408,1,408,1,409,1,409,1,410,1,410,1,411,1,411, - 1,412,1,412,1,413,1,413,1,414,1,414,1,415,1,415,1,415,1,415,1,416, - 1,416,1,417,1,417,1,418,1,418,1,419,1,419,1,420,1,420,1,420,1,421, - 1,421,1,422,1,422,1,423,1,423,1,424,1,424,1,424,1,424,5,424,3965, - 8,424,10,424,12,424,3968,9,424,1,424,1,424,1,424,1,424,1,424,5,424, - 3975,8,424,10,424,12,424,3978,9,424,1,424,4,424,3981,8,424,11,424, - 12,424,3982,1,425,1,425,1,425,1,425,1,425,4,425,3990,8,425,11,425, - 12,425,3991,3,425,3994,8,425,1,426,4,426,3997,8,426,11,426,12,426, - 3998,1,426,1,426,1,427,1,427,3,427,4005,8,427,1,427,1,427,1,428, - 4,428,4010,8,428,11,428,12,428,4011,1,428,1,428,1,429,4,429,4017, - 8,429,11,429,12,429,4018,1,429,1,429,5,429,4023,8,429,10,429,12, - 429,4026,9,429,1,429,3,429,4029,8,429,1,429,3,429,4032,8,429,1,430, - 1,430,3,430,4036,8,430,1,430,1,430,1,430,5,430,4041,8,430,10,430, - 12,430,4044,9,430,1,430,1,430,1,430,4,430,4049,8,430,11,430,12,430, - 4050,1,430,1,430,3,430,4055,8,430,1,431,1,431,1,431,1,431,5,431, - 4061,8,431,10,431,12,431,4064,9,431,1,431,1,431,1,432,1,432,1,433, - 1,433,1,434,1,434,1,435,1,435,1,435,3,435,4077,8,435,1,435,4,435, - 4080,8,435,11,435,12,435,4081,1,436,1,436,1,436,1,436,1,436,1,436, - 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436, - 4100,8,436,1,437,1,437,1,437,1,437,4,437,4106,8,437,11,437,12,437, - 4107,1,438,1,438,1,438,1,438,1,439,1,439,1,439,1,439,5,439,4118, - 8,439,10,439,12,439,4121,9,439,1,439,1,439,1,440,1,440,3,440,4127, - 8,440,1,441,1,441,1,441,1,441,1,441,1,441,5,441,4135,8,441,10,441, - 12,441,4138,9,441,1,441,1,441,1,441,1,441,1,441,1,442,1,442,1,442, - 1,442,1,442,5,442,4150,8,442,10,442,12,442,4153,9,442,1,442,1,442, - 1,442,1,442,1,442,2,4136,4151,0,443,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,0,865,0,867,0,869,0,871, - 0,873,0,875,432,877,433,879,434,881,435,883,436,885,437,1,0,37,2, - 0,65,65,97,97,2,0,66,66,98,98,2,0,79,79,111,111,2,0,82,82,114,114, - 2,0,84,84,116,116,2,0,67,67,99,99,2,0,73,73,105,105,2,0,86,86,118, - 118,2,0,69,69,101,101,2,0,68,68,100,100,2,0,77,77,109,109,2,0,78, - 78,110,110,2,0,70,70,102,102,2,0,76,76,108,108,2,0,89,89,121,121, - 2,0,90,90,122,122,2,0,80,80,112,112,2,0,72,72,104,104,2,0,83,83, - 115,115,2,0,85,85,117,117,2,0,87,87,119,119,2,0,71,71,103,103,2, - 0,75,75,107,107,2,0,88,88,120,120,2,0,74,74,106,106,2,0,81,81,113, - 113,2,0,39,39,92,92,2,0,34,34,92,92,6,0,76,76,83,83,89,89,108,108, - 115,115,121,121,8,0,66,66,71,71,75,75,77,77,98,98,103,103,107,107, - 109,109,1,0,96,96,2,0,65,90,97,122,2,0,65,70,97,102,4,0,48,57,65, - 90,95,95,97,122,3,0,45,46,58,58,95,95,3,0,9,10,13,13,32,32,2,0,10, - 10,13,13,4207,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,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,1,887,1,0,0,0,3,893,1,0,0,0,5,902,1,0,0,0,7, - 909,1,0,0,0,9,913,1,0,0,0,11,919,1,0,0,0,13,925,1,0,0,0,15,929,1, - 0,0,0,17,944,1,0,0,0,19,950,1,0,0,0,21,958,1,0,0,0,23,962,1,0,0, - 0,25,967,1,0,0,0,27,971,1,0,0,0,29,983,1,0,0,0,31,991,1,0,0,0,33, - 997,1,0,0,0,35,1000,1,0,0,0,37,1004,1,0,0,0,39,1008,1,0,0,0,41,1011, - 1,0,0,0,43,1025,1,0,0,0,45,1036,1,0,0,0,47,1042,1,0,0,0,49,1049, - 1,0,0,0,51,1057,1,0,0,0,53,1064,1,0,0,0,55,1071,1,0,0,0,57,1079, - 1,0,0,0,59,1084,1,0,0,0,61,1091,1,0,0,0,63,1099,1,0,0,0,65,1102, - 1,0,0,0,67,1108,1,0,0,0,69,1116,1,0,0,0,71,1121,1,0,0,0,73,1126, - 1,0,0,0,75,1130,1,0,0,0,77,1137,1,0,0,0,79,1142,1,0,0,0,81,1148, - 1,0,0,0,83,1156,1,0,0,0,85,1166,1,0,0,0,87,1180,1,0,0,0,89,1191, - 1,0,0,0,91,1198,1,0,0,0,93,1206,1,0,0,0,95,1214,1,0,0,0,97,1221, - 1,0,0,0,99,1229,1,0,0,0,101,1241,1,0,0,0,103,1254,1,0,0,0,105,1262, - 1,0,0,0,107,1274,1,0,0,0,109,1279,1,0,0,0,111,1290,1,0,0,0,113,1299, - 1,0,0,0,115,1304,1,0,0,0,117,1311,1,0,0,0,119,1316,1,0,0,0,121,1322, - 1,0,0,0,123,1327,1,0,0,0,125,1335,1,0,0,0,127,1348,1,0,0,0,129,1366, - 1,0,0,0,131,1373,1,0,0,0,133,1378,1,0,0,0,135,1387,1,0,0,0,137,1397, - 1,0,0,0,139,1407,1,0,0,0,141,1418,1,0,0,0,143,1423,1,0,0,0,145,1432, - 1,0,0,0,147,1436,1,0,0,0,149,1441,1,0,0,0,151,1451,1,0,0,0,153,1464, - 1,0,0,0,155,1477,1,0,0,0,157,1481,1,0,0,0,159,1487,1,0,0,0,161,1491, - 1,0,0,0,163,1499,1,0,0,0,165,1507,1,0,0,0,167,1515,1,0,0,0,169,1524, - 1,0,0,0,171,1532,1,0,0,0,173,1539,1,0,0,0,175,1549,1,0,0,0,177,1560, - 1,0,0,0,179,1565,1,0,0,0,181,1574,1,0,0,0,183,1581,1,0,0,0,185,1593, - 1,0,0,0,187,1603,1,0,0,0,189,1611,1,0,0,0,191,1620,1,0,0,0,193,1629, - 1,0,0,0,195,1640,1,0,0,0,197,1652,1,0,0,0,199,1655,1,0,0,0,201,1662, - 1,0,0,0,203,1667,1,0,0,0,205,1675,1,0,0,0,207,1680,1,0,0,0,209,1687, - 1,0,0,0,211,1692,1,0,0,0,213,1699,1,0,0,0,215,1707,1,0,0,0,217,1711, - 1,0,0,0,219,1720,1,0,0,0,221,1728,1,0,0,0,223,1734,1,0,0,0,225,1741, - 1,0,0,0,227,1750,1,0,0,0,229,1760,1,0,0,0,231,1768,1,0,0,0,233,1777, - 1,0,0,0,235,1784,1,0,0,0,237,1801,1,0,0,0,239,1809,1,0,0,0,241,1816, - 1,0,0,0,243,1827,1,0,0,0,245,1836,1,0,0,0,247,1845,1,0,0,0,249,1853, - 1,0,0,0,251,1859,1,0,0,0,253,1865,1,0,0,0,255,1872,1,0,0,0,257,1877, - 1,0,0,0,259,1888,1,0,0,0,261,1894,1,0,0,0,263,1900,1,0,0,0,265,1906, - 1,0,0,0,267,1916,1,0,0,0,269,1920,1,0,0,0,271,1926,1,0,0,0,273,1934, - 1,0,0,0,275,1941,1,0,0,0,277,1951,1,0,0,0,279,1956,1,0,0,0,281,1961, - 1,0,0,0,283,1970,1,0,0,0,285,1980,1,0,0,0,287,1986,1,0,0,0,289,1992, - 1,0,0,0,291,2001,1,0,0,0,293,2008,1,0,0,0,295,2021,1,0,0,0,297,2026, - 1,0,0,0,299,2032,1,0,0,0,301,2046,1,0,0,0,303,2049,1,0,0,0,305,2056, - 1,0,0,0,307,2063,1,0,0,0,309,2066,1,0,0,0,311,2072,1,0,0,0,313,2080, - 1,0,0,0,315,2086,1,0,0,0,317,2093,1,0,0,0,319,2105,1,0,0,0,321,2117, - 1,0,0,0,323,2124,1,0,0,0,325,2128,1,0,0,0,327,2136,1,0,0,0,329,2146, - 1,0,0,0,331,2155,1,0,0,0,333,2160,1,0,0,0,335,2163,1,0,0,0,337,2173, - 1,0,0,0,339,2179,1,0,0,0,341,2183,1,0,0,0,343,2188,1,0,0,0,345,2197, - 1,0,0,0,347,2201,1,0,0,0,349,2206,1,0,0,0,351,2212,1,0,0,0,353,2217, - 1,0,0,0,355,2222,1,0,0,0,357,2230,1,0,0,0,359,2238,1,0,0,0,361,2243, - 1,0,0,0,363,2248,1,0,0,0,365,2254,1,0,0,0,367,2259,1,0,0,0,369,2265, - 1,0,0,0,371,2271,1,0,0,0,373,2276,1,0,0,0,375,2282,1,0,0,0,377,2291, - 1,0,0,0,379,2296,1,0,0,0,381,2302,1,0,0,0,383,2310,1,0,0,0,385,2315, - 1,0,0,0,387,2321,1,0,0,0,389,2329,1,0,0,0,391,2345,1,0,0,0,393,2356, - 1,0,0,0,395,2360,1,0,0,0,397,2368,1,0,0,0,399,2376,1,0,0,0,401,2384, - 1,0,0,0,403,2397,1,0,0,0,405,2403,1,0,0,0,407,2412,1,0,0,0,409,2418, - 1,0,0,0,411,2425,1,0,0,0,413,2433,1,0,0,0,415,2439,1,0,0,0,417,2446, - 1,0,0,0,419,2451,1,0,0,0,421,2456,1,0,0,0,423,2461,1,0,0,0,425,2466, - 1,0,0,0,427,2473,1,0,0,0,429,2480,1,0,0,0,431,2484,1,0,0,0,433,2495, - 1,0,0,0,435,2503,1,0,0,0,437,2508,1,0,0,0,439,2514,1,0,0,0,441,2517, - 1,0,0,0,443,2525,1,0,0,0,445,2532,1,0,0,0,447,2535,1,0,0,0,449,2540, - 1,0,0,0,451,2549,1,0,0,0,453,2556,1,0,0,0,455,2559,1,0,0,0,457,2565, - 1,0,0,0,459,2569,1,0,0,0,461,2575,1,0,0,0,463,2588,1,0,0,0,465,2601, - 1,0,0,0,467,2606,1,0,0,0,469,2616,1,0,0,0,471,2622,1,0,0,0,473,2632, - 1,0,0,0,475,2644,1,0,0,0,477,2655,1,0,0,0,479,2660,1,0,0,0,481,2668, - 1,0,0,0,483,2678,1,0,0,0,485,2683,1,0,0,0,487,2689,1,0,0,0,489,2694, - 1,0,0,0,491,2699,1,0,0,0,493,2709,1,0,0,0,495,2719,1,0,0,0,497,2727, - 1,0,0,0,499,2736,1,0,0,0,501,2744,1,0,0,0,503,2755,1,0,0,0,505,2765, - 1,0,0,0,507,2776,1,0,0,0,509,2782,1,0,0,0,511,2790,1,0,0,0,513,2798, - 1,0,0,0,515,2804,1,0,0,0,517,2822,1,0,0,0,519,2828,1,0,0,0,521,2833, - 1,0,0,0,523,2842,1,0,0,0,525,2848,1,0,0,0,527,2853,1,0,0,0,529,2861, - 1,0,0,0,531,2874,1,0,0,0,533,2887,1,0,0,0,535,2894,1,0,0,0,537,2905, - 1,0,0,0,539,2912,1,0,0,0,541,2919,1,0,0,0,543,2924,1,0,0,0,545,2931, - 1,0,0,0,547,2938,1,0,0,0,549,2953,1,0,0,0,551,2960,1,0,0,0,553,2965, - 1,0,0,0,555,2973,1,0,0,0,557,2985,1,0,0,0,559,2994,1,0,0,0,561,3002, - 1,0,0,0,563,3011,1,0,0,0,565,3018,1,0,0,0,567,3026,1,0,0,0,569,3032, - 1,0,0,0,571,3038,1,0,0,0,573,3043,1,0,0,0,575,3049,1,0,0,0,577,3058, - 1,0,0,0,579,3065,1,0,0,0,581,3069,1,0,0,0,583,3074,1,0,0,0,585,3084, - 1,0,0,0,587,3102,1,0,0,0,589,3109,1,0,0,0,591,3117,1,0,0,0,593,3124, - 1,0,0,0,595,3132,1,0,0,0,597,3139,1,0,0,0,599,3144,1,0,0,0,601,3150, - 1,0,0,0,603,3166,1,0,0,0,605,3173,1,0,0,0,607,3177,1,0,0,0,609,3182, - 1,0,0,0,611,3203,1,0,0,0,613,3210,1,0,0,0,615,3215,1,0,0,0,617,3229, - 1,0,0,0,619,3236,1,0,0,0,621,3245,1,0,0,0,623,3254,1,0,0,0,625,3259, - 1,0,0,0,627,3264,1,0,0,0,629,3271,1,0,0,0,631,3276,1,0,0,0,633,3280, - 1,0,0,0,635,3286,1,0,0,0,637,3297,1,0,0,0,639,3304,1,0,0,0,641,3311, - 1,0,0,0,643,3323,1,0,0,0,645,3330,1,0,0,0,647,3337,1,0,0,0,649,3345, - 1,0,0,0,651,3350,1,0,0,0,653,3362,1,0,0,0,655,3377,1,0,0,0,657,3383, - 1,0,0,0,659,3390,1,0,0,0,661,3402,1,0,0,0,663,3416,1,0,0,0,665,3426, - 1,0,0,0,667,3437,1,0,0,0,669,3442,1,0,0,0,671,3447,1,0,0,0,673,3457, - 1,0,0,0,675,3474,1,0,0,0,677,3486,1,0,0,0,679,3494,1,0,0,0,681,3497, - 1,0,0,0,683,3503,1,0,0,0,685,3512,1,0,0,0,687,3524,1,0,0,0,689,3538, - 1,0,0,0,691,3551,1,0,0,0,693,3561,1,0,0,0,695,3569,1,0,0,0,697,3574, - 1,0,0,0,699,3579,1,0,0,0,701,3588,1,0,0,0,703,3593,1,0,0,0,705,3603, - 1,0,0,0,707,3613,1,0,0,0,709,3618,1,0,0,0,711,3624,1,0,0,0,713,3634, - 1,0,0,0,715,3641,1,0,0,0,717,3652,1,0,0,0,719,3660,1,0,0,0,721,3667, - 1,0,0,0,723,3677,1,0,0,0,725,3683,1,0,0,0,727,3692,1,0,0,0,729,3699, - 1,0,0,0,731,3703,1,0,0,0,733,3707,1,0,0,0,735,3711,1,0,0,0,737,3716, - 1,0,0,0,739,3722,1,0,0,0,741,3726,1,0,0,0,743,3739,1,0,0,0,745,3748, - 1,0,0,0,747,3755,1,0,0,0,749,3763,1,0,0,0,751,3771,1,0,0,0,753,3785, - 1,0,0,0,755,3790,1,0,0,0,757,3796,1,0,0,0,759,3801,1,0,0,0,761,3806, - 1,0,0,0,763,3812,1,0,0,0,765,3817,1,0,0,0,767,3823,1,0,0,0,769,3829, - 1,0,0,0,771,3836,1,0,0,0,773,3841,1,0,0,0,775,3848,1,0,0,0,777,3853, - 1,0,0,0,779,3862,1,0,0,0,781,3868,1,0,0,0,783,3873,1,0,0,0,785,3879, - 1,0,0,0,787,3884,1,0,0,0,789,3886,1,0,0,0,791,3888,1,0,0,0,793,3890, - 1,0,0,0,795,3892,1,0,0,0,797,3894,1,0,0,0,799,3896,1,0,0,0,801,3898, - 1,0,0,0,803,3900,1,0,0,0,805,3902,1,0,0,0,807,3907,1,0,0,0,809,3909, - 1,0,0,0,811,3917,1,0,0,0,813,3919,1,0,0,0,815,3922,1,0,0,0,817,3924, - 1,0,0,0,819,3927,1,0,0,0,821,3929,1,0,0,0,823,3931,1,0,0,0,825,3933, - 1,0,0,0,827,3935,1,0,0,0,829,3937,1,0,0,0,831,3939,1,0,0,0,833,3943, - 1,0,0,0,835,3945,1,0,0,0,837,3947,1,0,0,0,839,3949,1,0,0,0,841,3951, - 1,0,0,0,843,3954,1,0,0,0,845,3956,1,0,0,0,847,3958,1,0,0,0,849,3980, - 1,0,0,0,851,3993,1,0,0,0,853,3996,1,0,0,0,855,4002,1,0,0,0,857,4009, - 1,0,0,0,859,4016,1,0,0,0,861,4054,1,0,0,0,863,4056,1,0,0,0,865,4067, - 1,0,0,0,867,4069,1,0,0,0,869,4071,1,0,0,0,871,4073,1,0,0,0,873,4099, - 1,0,0,0,875,4101,1,0,0,0,877,4109,1,0,0,0,879,4113,1,0,0,0,881,4126, - 1,0,0,0,883,4128,1,0,0,0,885,4144,1,0,0,0,887,888,7,0,0,0,888,889, - 7,1,0,0,889,890,7,2,0,0,890,891,7,3,0,0,891,892,7,4,0,0,892,2,1, - 0,0,0,893,894,7,0,0,0,894,895,7,5,0,0,895,896,7,4,0,0,896,897,7, - 6,0,0,897,898,7,7,0,0,898,899,7,0,0,0,899,900,7,4,0,0,900,901,7, - 8,0,0,901,4,1,0,0,0,902,903,7,0,0,0,903,904,7,5,0,0,904,905,7,4, - 0,0,905,906,7,6,0,0,906,907,7,7,0,0,907,908,7,8,0,0,908,6,1,0,0, - 0,909,910,7,0,0,0,910,911,7,9,0,0,911,912,7,9,0,0,912,8,1,0,0,0, - 913,914,7,0,0,0,914,915,7,9,0,0,915,916,7,10,0,0,916,917,7,6,0,0, - 917,918,7,11,0,0,918,10,1,0,0,0,919,920,7,0,0,0,920,921,7,12,0,0, - 921,922,7,4,0,0,922,923,7,8,0,0,923,924,7,3,0,0,924,12,1,0,0,0,925, - 926,7,0,0,0,926,927,7,13,0,0,927,928,7,13,0,0,928,14,1,0,0,0,929, - 930,7,0,0,0,930,931,7,13,0,0,931,932,7,13,0,0,932,933,7,2,0,0,933, - 934,7,5,0,0,934,935,5,95,0,0,935,936,7,12,0,0,936,937,7,3,0,0,937, - 938,7,0,0,0,938,939,7,5,0,0,939,940,7,4,0,0,940,941,7,6,0,0,941, - 942,7,2,0,0,942,943,7,11,0,0,943,16,1,0,0,0,944,945,7,0,0,0,945, - 946,7,13,0,0,946,947,7,4,0,0,947,948,7,8,0,0,948,949,7,3,0,0,949, - 18,1,0,0,0,950,951,7,0,0,0,951,952,7,11,0,0,952,953,7,0,0,0,953, - 954,7,13,0,0,954,955,7,14,0,0,955,956,7,15,0,0,956,957,7,8,0,0,957, - 20,1,0,0,0,958,959,7,0,0,0,959,960,7,11,0,0,960,961,7,9,0,0,961, - 22,1,0,0,0,962,963,7,0,0,0,963,964,7,11,0,0,964,965,7,4,0,0,965, - 966,7,6,0,0,966,24,1,0,0,0,967,968,7,0,0,0,968,969,7,11,0,0,969, - 970,7,14,0,0,970,26,1,0,0,0,971,972,7,0,0,0,972,973,7,16,0,0,973, - 974,7,16,0,0,974,975,7,13,0,0,975,976,7,6,0,0,976,977,7,5,0,0,977, - 978,7,0,0,0,978,979,7,4,0,0,979,980,7,6,0,0,980,981,7,2,0,0,981, - 982,7,11,0,0,982,28,1,0,0,0,983,984,7,0,0,0,984,985,7,3,0,0,985, - 986,7,5,0,0,986,987,7,17,0,0,987,988,7,6,0,0,988,989,7,7,0,0,989, - 990,7,8,0,0,990,30,1,0,0,0,991,992,7,0,0,0,992,993,7,3,0,0,993,994, - 7,3,0,0,994,995,7,0,0,0,995,996,7,14,0,0,996,32,1,0,0,0,997,998, - 7,0,0,0,998,999,7,18,0,0,999,34,1,0,0,0,1000,1001,7,0,0,0,1001,1002, - 7,18,0,0,1002,1003,7,5,0,0,1003,36,1,0,0,0,1004,1005,7,0,0,0,1005, - 1006,7,18,0,0,1006,1007,7,4,0,0,1007,38,1,0,0,0,1008,1009,7,0,0, - 0,1009,1010,7,4,0,0,1010,40,1,0,0,0,1011,1012,7,0,0,0,1012,1013, - 7,19,0,0,1013,1014,7,4,0,0,1014,1015,7,17,0,0,1015,1016,7,2,0,0, - 1016,1017,7,3,0,0,1017,1018,7,6,0,0,1018,1019,7,15,0,0,1019,1020, - 7,0,0,0,1020,1021,7,4,0,0,1021,1022,7,6,0,0,1022,1023,7,2,0,0,1023, - 1024,7,11,0,0,1024,42,1,0,0,0,1025,1026,7,0,0,0,1026,1027,7,19,0, - 0,1027,1028,7,4,0,0,1028,1029,7,2,0,0,1029,1030,7,5,0,0,1030,1031, - 7,2,0,0,1031,1032,7,10,0,0,1032,1033,7,10,0,0,1033,1034,7,6,0,0, - 1034,1035,7,4,0,0,1035,44,1,0,0,0,1036,1037,7,1,0,0,1037,1038,7, - 0,0,0,1038,1039,7,4,0,0,1039,1040,7,5,0,0,1040,1041,7,17,0,0,1041, - 46,1,0,0,0,1042,1043,7,1,0,0,1043,1044,7,8,0,0,1044,1045,7,12,0, - 0,1045,1046,7,2,0,0,1046,1047,7,3,0,0,1047,1048,7,8,0,0,1048,48, - 1,0,0,0,1049,1050,7,1,0,0,1050,1051,7,8,0,0,1051,1052,7,4,0,0,1052, - 1053,7,20,0,0,1053,1054,7,8,0,0,1054,1055,7,8,0,0,1055,1056,7,11, - 0,0,1056,50,1,0,0,0,1057,1058,7,1,0,0,1058,1059,7,6,0,0,1059,1060, - 7,21,0,0,1060,1061,7,6,0,0,1061,1062,7,11,0,0,1062,1063,7,4,0,0, - 1063,52,1,0,0,0,1064,1065,7,1,0,0,1065,1066,7,6,0,0,1066,1067,7, - 11,0,0,1067,1068,7,0,0,0,1068,1069,7,3,0,0,1069,1070,7,14,0,0,1070, - 54,1,0,0,0,1071,1072,7,1,0,0,1072,1073,7,2,0,0,1073,1074,7,2,0,0, - 1074,1075,7,13,0,0,1075,1076,7,8,0,0,1076,1077,7,0,0,0,1077,1078, - 7,11,0,0,1078,56,1,0,0,0,1079,1080,7,1,0,0,1080,1081,7,2,0,0,1081, - 1082,7,4,0,0,1082,1083,7,17,0,0,1083,58,1,0,0,0,1084,1085,7,1,0, - 0,1085,1086,7,19,0,0,1086,1087,7,5,0,0,1087,1088,7,22,0,0,1088,1089, - 7,8,0,0,1089,1090,7,4,0,0,1090,60,1,0,0,0,1091,1092,7,1,0,0,1092, - 1093,7,19,0,0,1093,1094,7,5,0,0,1094,1095,7,22,0,0,1095,1096,7,8, - 0,0,1096,1097,7,4,0,0,1097,1098,7,18,0,0,1098,62,1,0,0,0,1099,1100, - 7,1,0,0,1100,1101,7,14,0,0,1101,64,1,0,0,0,1102,1103,7,5,0,0,1103, - 1104,7,0,0,0,1104,1105,7,5,0,0,1105,1106,7,17,0,0,1106,1107,7,8, - 0,0,1107,66,1,0,0,0,1108,1109,7,5,0,0,1109,1110,7,0,0,0,1110,1111, - 7,18,0,0,1111,1112,7,5,0,0,1112,1113,7,0,0,0,1113,1114,7,9,0,0,1114, - 1115,7,8,0,0,1115,68,1,0,0,0,1116,1117,7,5,0,0,1117,1118,7,0,0,0, - 1118,1119,7,18,0,0,1119,1120,7,8,0,0,1120,70,1,0,0,0,1121,1122,7, - 5,0,0,1122,1123,7,0,0,0,1123,1124,7,18,0,0,1124,1125,7,4,0,0,1125, - 72,1,0,0,0,1126,1127,7,5,0,0,1127,1128,7,1,0,0,1128,1129,7,2,0,0, - 1129,74,1,0,0,0,1130,1131,7,5,0,0,1131,1132,7,17,0,0,1132,1133,7, - 0,0,0,1133,1134,7,11,0,0,1134,1135,7,21,0,0,1135,1136,7,8,0,0,1136, - 76,1,0,0,0,1137,1138,7,5,0,0,1138,1139,7,17,0,0,1139,1140,7,0,0, - 0,1140,1141,7,3,0,0,1141,78,1,0,0,0,1142,1143,7,5,0,0,1143,1144, - 7,17,0,0,1144,1145,7,8,0,0,1145,1146,7,5,0,0,1146,1147,7,22,0,0, - 1147,80,1,0,0,0,1148,1149,7,5,0,0,1149,1150,7,13,0,0,1150,1151,7, - 19,0,0,1151,1152,7,18,0,0,1152,1153,7,4,0,0,1153,1154,7,8,0,0,1154, - 1155,7,3,0,0,1155,82,1,0,0,0,1156,1157,7,5,0,0,1157,1158,7,13,0, - 0,1158,1159,7,19,0,0,1159,1160,7,18,0,0,1160,1161,7,4,0,0,1161,1162, - 7,8,0,0,1162,1163,7,3,0,0,1163,1164,7,8,0,0,1164,1165,7,9,0,0,1165, - 84,1,0,0,0,1166,1167,7,5,0,0,1167,1168,7,13,0,0,1168,1169,7,19,0, - 0,1169,1170,7,18,0,0,1170,1171,7,4,0,0,1171,1172,7,8,0,0,1172,1173, - 7,3,0,0,1173,1174,7,18,0,0,1174,1175,7,4,0,0,1175,1176,7,0,0,0,1176, - 1177,7,4,0,0,1177,1178,7,19,0,0,1178,1179,7,18,0,0,1179,86,1,0,0, - 0,1180,1181,7,5,0,0,1181,1182,7,2,0,0,1182,1183,7,13,0,0,1183,1184, - 7,13,0,0,1184,1185,7,8,0,0,1185,1186,7,5,0,0,1186,1187,7,4,0,0,1187, - 1188,7,6,0,0,1188,1189,7,2,0,0,1189,1190,7,11,0,0,1190,88,1,0,0, - 0,1191,1192,7,5,0,0,1192,1193,7,2,0,0,1193,1194,7,13,0,0,1194,1195, - 7,19,0,0,1195,1196,7,10,0,0,1196,1197,7,11,0,0,1197,90,1,0,0,0,1198, - 1199,7,5,0,0,1199,1200,7,2,0,0,1200,1201,7,13,0,0,1201,1202,7,19, - 0,0,1202,1203,7,10,0,0,1203,1204,7,11,0,0,1204,1205,7,18,0,0,1205, - 92,1,0,0,0,1206,1207,7,5,0,0,1207,1208,7,2,0,0,1208,1209,7,10,0, - 0,1209,1210,7,10,0,0,1210,1211,7,8,0,0,1211,1212,7,11,0,0,1212,1213, - 7,4,0,0,1213,94,1,0,0,0,1214,1215,7,5,0,0,1215,1216,7,2,0,0,1216, - 1217,7,10,0,0,1217,1218,7,10,0,0,1218,1219,7,6,0,0,1219,1220,7,4, - 0,0,1220,96,1,0,0,0,1221,1222,7,5,0,0,1222,1223,7,2,0,0,1223,1224, - 7,10,0,0,1224,1225,7,16,0,0,1225,1226,7,0,0,0,1226,1227,7,5,0,0, - 1227,1228,7,4,0,0,1228,98,1,0,0,0,1229,1230,7,5,0,0,1230,1231,7, - 2,0,0,1231,1232,7,10,0,0,1232,1233,7,16,0,0,1233,1234,7,0,0,0,1234, - 1235,7,5,0,0,1235,1236,7,4,0,0,1236,1237,7,6,0,0,1237,1238,7,2,0, - 0,1238,1239,7,11,0,0,1239,1240,7,18,0,0,1240,100,1,0,0,0,1241,1242, - 7,5,0,0,1242,1243,7,2,0,0,1243,1244,7,10,0,0,1244,1245,7,16,0,0, - 1245,1246,7,0,0,0,1246,1247,7,5,0,0,1247,1248,7,4,0,0,1248,1249, - 7,6,0,0,1249,1250,7,2,0,0,1250,1251,7,11,0,0,1251,1252,7,6,0,0,1252, - 1253,7,9,0,0,1253,102,1,0,0,0,1254,1255,7,5,0,0,1255,1256,7,2,0, - 0,1256,1257,7,10,0,0,1257,1258,7,16,0,0,1258,1259,7,19,0,0,1259, - 1260,7,4,0,0,1260,1261,7,8,0,0,1261,104,1,0,0,0,1262,1263,7,5,0, - 0,1263,1264,7,2,0,0,1264,1265,7,11,0,0,1265,1266,7,5,0,0,1266,1267, - 7,0,0,0,1267,1268,7,4,0,0,1268,1269,7,8,0,0,1269,1270,7,11,0,0,1270, - 1271,7,0,0,0,1271,1272,7,4,0,0,1272,1273,7,8,0,0,1273,106,1,0,0, - 0,1274,1275,7,5,0,0,1275,1276,7,2,0,0,1276,1277,7,11,0,0,1277,1278, - 7,12,0,0,1278,108,1,0,0,0,1279,1280,7,5,0,0,1280,1281,7,2,0,0,1281, - 1282,7,11,0,0,1282,1283,7,18,0,0,1283,1284,7,4,0,0,1284,1285,7,3, - 0,0,1285,1286,7,0,0,0,1286,1287,7,6,0,0,1287,1288,7,11,0,0,1288, - 1289,7,4,0,0,1289,110,1,0,0,0,1290,1291,7,5,0,0,1291,1292,7,2,0, - 0,1292,1293,7,11,0,0,1293,1294,7,4,0,0,1294,1295,7,6,0,0,1295,1296, - 7,11,0,0,1296,1297,7,19,0,0,1297,1298,7,8,0,0,1298,112,1,0,0,0,1299, - 1300,7,5,0,0,1300,1301,7,2,0,0,1301,1302,7,18,0,0,1302,1303,7,4, - 0,0,1303,114,1,0,0,0,1304,1305,7,5,0,0,1305,1306,7,3,0,0,1306,1307, - 7,8,0,0,1307,1308,7,0,0,0,1308,1309,7,4,0,0,1309,1310,7,8,0,0,1310, - 116,1,0,0,0,1311,1312,7,5,0,0,1312,1313,7,3,0,0,1313,1314,7,2,0, - 0,1314,1315,7,11,0,0,1315,118,1,0,0,0,1316,1317,7,5,0,0,1317,1318, - 7,3,0,0,1318,1319,7,2,0,0,1319,1320,7,18,0,0,1320,1321,7,18,0,0, - 1321,120,1,0,0,0,1322,1323,7,5,0,0,1323,1324,7,19,0,0,1324,1325, - 7,1,0,0,1325,1326,7,8,0,0,1326,122,1,0,0,0,1327,1328,7,5,0,0,1328, - 1329,7,19,0,0,1329,1330,7,3,0,0,1330,1331,7,3,0,0,1331,1332,7,8, - 0,0,1332,1333,7,11,0,0,1333,1334,7,4,0,0,1334,124,1,0,0,0,1335,1336, - 7,5,0,0,1336,1337,7,19,0,0,1337,1338,7,3,0,0,1338,1339,7,3,0,0,1339, - 1340,7,8,0,0,1340,1341,7,11,0,0,1341,1342,7,4,0,0,1342,1343,5,95, - 0,0,1343,1344,7,9,0,0,1344,1345,7,0,0,0,1345,1346,7,4,0,0,1346,1347, - 7,8,0,0,1347,126,1,0,0,0,1348,1349,7,5,0,0,1349,1350,7,19,0,0,1350, - 1351,7,3,0,0,1351,1352,7,3,0,0,1352,1353,7,8,0,0,1353,1354,7,11, - 0,0,1354,1355,7,4,0,0,1355,1356,5,95,0,0,1356,1357,7,4,0,0,1357, - 1358,7,6,0,0,1358,1359,7,10,0,0,1359,1360,7,8,0,0,1360,1361,7,18, - 0,0,1361,1362,7,4,0,0,1362,1363,7,0,0,0,1363,1364,7,10,0,0,1364, - 1365,7,16,0,0,1365,128,1,0,0,0,1366,1367,7,5,0,0,1367,1368,7,19, - 0,0,1368,1369,7,3,0,0,1369,1370,7,18,0,0,1370,1371,7,2,0,0,1371, - 1372,7,3,0,0,1372,130,1,0,0,0,1373,1374,7,9,0,0,1374,1375,7,0,0, - 0,1375,1376,7,4,0,0,1376,1377,7,0,0,0,1377,132,1,0,0,0,1378,1379, - 7,9,0,0,1379,1380,7,0,0,0,1380,1381,7,4,0,0,1381,1382,7,0,0,0,1382, - 1383,7,1,0,0,1383,1384,7,0,0,0,1384,1385,7,18,0,0,1385,1386,7,8, - 0,0,1386,134,1,0,0,0,1387,1388,7,9,0,0,1388,1389,7,0,0,0,1389,1390, - 7,4,0,0,1390,1391,7,0,0,0,1391,1392,7,1,0,0,1392,1393,7,0,0,0,1393, - 1394,7,18,0,0,1394,1395,7,8,0,0,1395,1396,7,18,0,0,1396,136,1,0, - 0,0,1397,1398,7,5,0,0,1398,1399,7,2,0,0,1399,1400,7,11,0,0,1400, - 1401,7,11,0,0,1401,1402,7,8,0,0,1402,1403,7,5,0,0,1403,1404,7,4, - 0,0,1404,1405,7,2,0,0,1405,1406,7,3,0,0,1406,138,1,0,0,0,1407,1408, - 7,5,0,0,1408,1409,7,2,0,0,1409,1410,7,11,0,0,1410,1411,7,11,0,0, - 1411,1412,7,8,0,0,1412,1413,7,5,0,0,1413,1414,7,4,0,0,1414,1415, - 7,2,0,0,1415,1416,7,3,0,0,1416,1417,7,18,0,0,1417,140,1,0,0,0,1418, - 1419,7,9,0,0,1419,1420,7,0,0,0,1420,1421,7,4,0,0,1421,1422,7,8,0, - 0,1422,142,1,0,0,0,1423,1424,7,9,0,0,1424,1425,7,0,0,0,1425,1426, - 7,4,0,0,1426,1427,7,8,0,0,1427,1428,7,4,0,0,1428,1429,7,6,0,0,1429, - 1430,7,10,0,0,1430,1431,7,8,0,0,1431,144,1,0,0,0,1432,1433,7,9,0, - 0,1433,1434,7,0,0,0,1434,1435,7,14,0,0,1435,146,1,0,0,0,1436,1437, - 7,9,0,0,1437,1438,7,0,0,0,1438,1439,7,14,0,0,1439,1440,7,18,0,0, - 1440,148,1,0,0,0,1441,1442,7,9,0,0,1442,1443,7,0,0,0,1443,1444,7, - 14,0,0,1444,1445,7,2,0,0,1445,1446,7,12,0,0,1446,1447,7,20,0,0,1447, - 1448,7,8,0,0,1448,1449,7,8,0,0,1449,1450,7,22,0,0,1450,150,1,0,0, - 0,1451,1452,7,9,0,0,1452,1453,7,1,0,0,1453,1454,7,16,0,0,1454,1455, - 7,3,0,0,1455,1456,7,2,0,0,1456,1457,7,16,0,0,1457,1458,7,8,0,0,1458, - 1459,7,3,0,0,1459,1460,7,4,0,0,1460,1461,7,6,0,0,1461,1462,7,8,0, - 0,1462,1463,7,18,0,0,1463,152,1,0,0,0,1464,1465,7,9,0,0,1465,1466, - 7,5,0,0,1466,1467,7,16,0,0,1467,1468,7,3,0,0,1468,1469,7,2,0,0,1469, - 1470,7,16,0,0,1470,1471,7,8,0,0,1471,1472,7,3,0,0,1472,1473,7,4, - 0,0,1473,1474,7,6,0,0,1474,1475,7,8,0,0,1475,1476,7,18,0,0,1476, - 154,1,0,0,0,1477,1478,7,9,0,0,1478,1479,7,9,0,0,1479,1480,7,13,0, - 0,1480,156,1,0,0,0,1481,1482,7,9,0,0,1482,1483,7,8,0,0,1483,1484, - 7,1,0,0,1484,1485,7,19,0,0,1485,1486,7,21,0,0,1486,158,1,0,0,0,1487, - 1488,7,9,0,0,1488,1489,7,8,0,0,1489,1490,7,5,0,0,1490,160,1,0,0, - 0,1491,1492,7,9,0,0,1492,1493,7,8,0,0,1493,1494,7,5,0,0,1494,1495, - 7,6,0,0,1495,1496,7,10,0,0,1496,1497,7,0,0,0,1497,1498,7,13,0,0, - 1498,162,1,0,0,0,1499,1500,7,11,0,0,1500,1501,7,19,0,0,1501,1502, - 7,10,0,0,1502,1503,7,8,0,0,1503,1504,7,3,0,0,1504,1505,7,6,0,0,1505, - 1506,7,5,0,0,1506,164,1,0,0,0,1507,1508,7,9,0,0,1508,1509,7,8,0, - 0,1509,1510,7,12,0,0,1510,1511,7,0,0,0,1511,1512,7,19,0,0,1512,1513, - 7,13,0,0,1513,1514,7,4,0,0,1514,166,1,0,0,0,1515,1516,7,9,0,0,1516, - 1517,7,8,0,0,1517,1518,7,12,0,0,1518,1519,7,8,0,0,1519,1520,7,3, - 0,0,1520,1521,7,3,0,0,1521,1522,7,8,0,0,1522,1523,7,9,0,0,1523,168, - 1,0,0,0,1524,1525,7,9,0,0,1525,1526,7,8,0,0,1526,1527,7,12,0,0,1527, - 1528,7,6,0,0,1528,1529,7,11,0,0,1529,1530,7,8,0,0,1530,1531,7,9, - 0,0,1531,170,1,0,0,0,1532,1533,7,9,0,0,1533,1534,7,8,0,0,1534,1535, - 7,13,0,0,1535,1536,7,8,0,0,1536,1537,7,4,0,0,1537,1538,7,8,0,0,1538, - 172,1,0,0,0,1539,1540,7,9,0,0,1540,1541,7,8,0,0,1541,1542,7,13,0, - 0,1542,1543,7,6,0,0,1543,1544,7,10,0,0,1544,1545,7,6,0,0,1545,1546, - 7,4,0,0,1546,1547,7,8,0,0,1547,1548,7,9,0,0,1548,174,1,0,0,0,1549, - 1550,7,9,0,0,1550,1551,7,8,0,0,1551,1552,7,16,0,0,1552,1553,7,8, - 0,0,1553,1554,7,11,0,0,1554,1555,7,9,0,0,1555,1556,7,8,0,0,1556, - 1557,7,11,0,0,1557,1558,7,5,0,0,1558,1559,7,14,0,0,1559,176,1,0, - 0,0,1560,1561,7,9,0,0,1561,1562,7,8,0,0,1562,1563,7,18,0,0,1563, - 1564,7,5,0,0,1564,178,1,0,0,0,1565,1566,7,9,0,0,1566,1567,7,8,0, - 0,1567,1568,7,18,0,0,1568,1569,7,5,0,0,1569,1570,7,3,0,0,1570,1571, - 7,6,0,0,1571,1572,7,1,0,0,1572,1573,7,8,0,0,1573,180,1,0,0,0,1574, - 1575,7,9,0,0,1575,1576,7,8,0,0,1576,1577,7,4,0,0,1577,1578,7,0,0, - 0,1578,1579,7,6,0,0,1579,1580,7,13,0,0,1580,182,1,0,0,0,1581,1582, - 7,9,0,0,1582,1583,7,6,0,0,1583,1584,7,3,0,0,1584,1585,7,8,0,0,1585, - 1586,7,5,0,0,1586,1587,7,4,0,0,1587,1588,7,2,0,0,1588,1589,7,3,0, - 0,1589,1590,7,6,0,0,1590,1591,7,8,0,0,1591,1592,7,18,0,0,1592,184, - 1,0,0,0,1593,1594,7,9,0,0,1594,1595,7,6,0,0,1595,1596,7,3,0,0,1596, - 1597,7,8,0,0,1597,1598,7,5,0,0,1598,1599,7,4,0,0,1599,1600,7,2,0, - 0,1600,1601,7,3,0,0,1601,1602,7,14,0,0,1602,186,1,0,0,0,1603,1604, - 7,9,0,0,1604,1605,7,6,0,0,1605,1606,7,18,0,0,1606,1607,7,0,0,0,1607, - 1608,7,1,0,0,1608,1609,7,13,0,0,1609,1610,7,8,0,0,1610,188,1,0,0, - 0,1611,1612,7,9,0,0,1612,1613,7,6,0,0,1613,1614,7,18,0,0,1614,1615, - 7,0,0,0,1615,1616,7,1,0,0,1616,1617,7,13,0,0,1617,1618,7,8,0,0,1618, - 1619,7,9,0,0,1619,190,1,0,0,0,1620,1621,7,9,0,0,1621,1622,7,6,0, - 0,1622,1623,7,18,0,0,1623,1624,7,4,0,0,1624,1625,7,6,0,0,1625,1626, - 7,11,0,0,1626,1627,7,5,0,0,1627,1628,7,4,0,0,1628,192,1,0,0,0,1629, - 1630,7,9,0,0,1630,1631,7,6,0,0,1631,1632,7,18,0,0,1632,1633,7,4, - 0,0,1633,1634,7,3,0,0,1634,1635,7,6,0,0,1635,1636,7,1,0,0,1636,1637, - 7,19,0,0,1637,1638,7,4,0,0,1638,1639,7,8,0,0,1639,194,1,0,0,0,1640, - 1641,7,9,0,0,1641,1642,7,6,0,0,1642,1643,7,18,0,0,1643,1644,7,4, - 0,0,1644,1645,7,3,0,0,1645,1646,7,6,0,0,1646,1647,7,1,0,0,1647,1648, - 7,19,0,0,1648,1649,7,4,0,0,1649,1650,7,8,0,0,1650,1651,7,9,0,0,1651, - 196,1,0,0,0,1652,1653,7,9,0,0,1653,1654,7,2,0,0,1654,198,1,0,0,0, - 1655,1656,7,9,0,0,1656,1657,7,2,0,0,1657,1658,7,19,0,0,1658,1659, - 7,1,0,0,1659,1660,7,13,0,0,1660,1661,7,8,0,0,1661,200,1,0,0,0,1662, - 1663,7,9,0,0,1663,1664,7,3,0,0,1664,1665,7,2,0,0,1665,1666,7,16, - 0,0,1666,202,1,0,0,0,1667,1668,7,3,0,0,1668,1669,7,8,0,0,1669,1670, - 7,5,0,0,1670,1671,7,2,0,0,1671,1672,7,7,0,0,1672,1673,7,8,0,0,1673, - 1674,7,3,0,0,1674,204,1,0,0,0,1675,1676,7,9,0,0,1676,1677,7,19,0, - 0,1677,1678,7,10,0,0,1678,1679,7,16,0,0,1679,206,1,0,0,0,1680,1681, - 5,36,0,0,1681,1682,7,8,0,0,1682,1683,7,13,0,0,1683,1684,7,8,0,0, - 1684,1685,7,10,0,0,1685,1686,5,36,0,0,1686,208,1,0,0,0,1687,1688, - 7,8,0,0,1688,1689,7,13,0,0,1689,1690,7,18,0,0,1690,1691,7,8,0,0, - 1691,210,1,0,0,0,1692,1693,7,8,0,0,1693,1694,7,11,0,0,1694,1695, - 7,0,0,0,1695,1696,7,1,0,0,1696,1697,7,13,0,0,1697,1698,7,8,0,0,1698, - 212,1,0,0,0,1699,1700,7,8,0,0,1700,1701,7,11,0,0,1701,1702,7,0,0, - 0,1702,1703,7,1,0,0,1703,1704,7,13,0,0,1704,1705,7,8,0,0,1705,1706, - 7,9,0,0,1706,214,1,0,0,0,1707,1708,7,8,0,0,1708,1709,7,11,0,0,1709, - 1710,7,9,0,0,1710,216,1,0,0,0,1711,1712,7,8,0,0,1712,1713,7,11,0, - 0,1713,1714,7,12,0,0,1714,1715,7,2,0,0,1715,1716,7,3,0,0,1716,1717, - 7,5,0,0,1717,1718,7,8,0,0,1718,1719,7,9,0,0,1719,218,1,0,0,0,1720, - 1721,7,8,0,0,1721,1722,7,18,0,0,1722,1723,7,5,0,0,1723,1724,7,0, - 0,0,1724,1725,7,16,0,0,1725,1726,7,8,0,0,1726,1727,7,9,0,0,1727, - 220,1,0,0,0,1728,1729,7,8,0,0,1729,1730,7,7,0,0,1730,1731,7,8,0, - 0,1731,1732,7,3,0,0,1732,1733,7,14,0,0,1733,222,1,0,0,0,1734,1735, - 7,8,0,0,1735,1736,7,23,0,0,1736,1737,7,5,0,0,1737,1738,7,8,0,0,1738, - 1739,7,16,0,0,1739,1740,7,4,0,0,1740,224,1,0,0,0,1741,1742,7,8,0, - 0,1742,1743,7,23,0,0,1743,1744,7,5,0,0,1744,1745,7,17,0,0,1745,1746, - 7,0,0,0,1746,1747,7,11,0,0,1747,1748,7,21,0,0,1748,1749,7,8,0,0, - 1749,226,1,0,0,0,1750,1751,7,8,0,0,1751,1752,7,23,0,0,1752,1753, - 7,5,0,0,1753,1754,7,13,0,0,1754,1755,7,19,0,0,1755,1756,7,18,0,0, - 1756,1757,7,6,0,0,1757,1758,7,7,0,0,1758,1759,7,8,0,0,1759,228,1, - 0,0,0,1760,1761,7,8,0,0,1761,1762,7,23,0,0,1762,1763,7,8,0,0,1763, - 1764,7,5,0,0,1764,1765,7,19,0,0,1765,1766,7,4,0,0,1766,1767,7,8, - 0,0,1767,230,1,0,0,0,1768,1769,7,8,0,0,1769,1770,7,23,0,0,1770,1771, - 7,8,0,0,1771,1772,7,5,0,0,1772,1773,7,19,0,0,1773,1774,7,4,0,0,1774, - 1775,7,8,0,0,1775,1776,7,9,0,0,1776,232,1,0,0,0,1777,1778,7,8,0, - 0,1778,1779,7,23,0,0,1779,1780,7,6,0,0,1780,1781,7,18,0,0,1781,1782, - 7,4,0,0,1782,1783,7,18,0,0,1783,234,1,0,0,0,1784,1785,7,8,0,0,1785, - 1786,7,23,0,0,1786,1787,7,16,0,0,1787,1788,7,6,0,0,1788,1789,7,3, - 0,0,1789,1790,7,8,0,0,1790,1791,5,95,0,0,1791,1792,7,18,0,0,1792, - 1793,7,11,0,0,1793,1794,7,0,0,0,1794,1795,7,16,0,0,1795,1796,7,18, - 0,0,1796,1797,7,17,0,0,1797,1798,7,2,0,0,1798,1799,7,4,0,0,1799, - 1800,7,18,0,0,1800,236,1,0,0,0,1801,1802,7,8,0,0,1802,1803,7,23, - 0,0,1803,1804,7,16,0,0,1804,1805,7,13,0,0,1805,1806,7,0,0,0,1806, - 1807,7,6,0,0,1807,1808,7,11,0,0,1808,238,1,0,0,0,1809,1810,7,8,0, - 0,1810,1811,7,23,0,0,1811,1812,7,16,0,0,1812,1813,7,2,0,0,1813,1814, - 7,3,0,0,1814,1815,7,4,0,0,1815,240,1,0,0,0,1816,1817,7,8,0,0,1817, - 1818,7,23,0,0,1818,1819,7,16,0,0,1819,1820,7,3,0,0,1820,1821,7,8, - 0,0,1821,1822,7,18,0,0,1822,1823,7,18,0,0,1823,1824,7,6,0,0,1824, - 1825,7,2,0,0,1825,1826,7,11,0,0,1826,242,1,0,0,0,1827,1828,7,8,0, - 0,1828,1829,7,23,0,0,1829,1830,7,4,0,0,1830,1831,7,8,0,0,1831,1832, - 7,11,0,0,1832,1833,7,9,0,0,1833,1834,7,8,0,0,1834,1835,7,9,0,0,1835, - 244,1,0,0,0,1836,1837,7,8,0,0,1837,1838,7,23,0,0,1838,1839,7,4,0, - 0,1839,1840,7,8,0,0,1840,1841,7,3,0,0,1841,1842,7,11,0,0,1842,1843, - 7,0,0,0,1843,1844,7,13,0,0,1844,246,1,0,0,0,1845,1846,7,8,0,0,1846, - 1847,7,23,0,0,1847,1848,7,4,0,0,1848,1849,7,3,0,0,1849,1850,7,0, - 0,0,1850,1851,7,5,0,0,1851,1852,7,4,0,0,1852,248,1,0,0,0,1853,1854, - 7,12,0,0,1854,1855,7,0,0,0,1855,1856,7,13,0,0,1856,1857,7,18,0,0, - 1857,1858,7,8,0,0,1858,250,1,0,0,0,1859,1860,7,12,0,0,1860,1861, - 7,8,0,0,1861,1862,7,4,0,0,1862,1863,7,5,0,0,1863,1864,7,17,0,0,1864, - 252,1,0,0,0,1865,1866,7,12,0,0,1866,1867,7,6,0,0,1867,1868,7,8,0, - 0,1868,1869,7,13,0,0,1869,1870,7,9,0,0,1870,1871,7,18,0,0,1871,254, - 1,0,0,0,1872,1873,7,12,0,0,1873,1874,7,6,0,0,1874,1875,7,13,0,0, - 1875,1876,7,8,0,0,1876,256,1,0,0,0,1877,1878,7,12,0,0,1878,1879, - 7,6,0,0,1879,1880,7,13,0,0,1880,1881,7,8,0,0,1881,1882,7,12,0,0, - 1882,1883,7,2,0,0,1883,1884,7,3,0,0,1884,1885,7,10,0,0,1885,1886, - 7,0,0,0,1886,1887,7,4,0,0,1887,258,1,0,0,0,1888,1889,7,12,0,0,1889, - 1890,7,6,0,0,1890,1891,7,3,0,0,1891,1892,7,18,0,0,1892,1893,7,4, - 0,0,1893,260,1,0,0,0,1894,1895,7,12,0,0,1895,1896,7,13,0,0,1896, - 1897,7,2,0,0,1897,1898,7,0,0,0,1898,1899,7,4,0,0,1899,262,1,0,0, - 0,1900,1901,7,12,0,0,1901,1902,7,13,0,0,1902,1903,7,2,0,0,1903,1904, - 7,2,0,0,1904,1905,7,3,0,0,1905,264,1,0,0,0,1906,1907,7,12,0,0,1907, - 1908,7,2,0,0,1908,1909,7,13,0,0,1909,1910,7,13,0,0,1910,1911,7,2, - 0,0,1911,1912,7,20,0,0,1912,1913,7,6,0,0,1913,1914,7,11,0,0,1914, - 1915,7,21,0,0,1915,266,1,0,0,0,1916,1917,7,12,0,0,1917,1918,7,2, - 0,0,1918,1919,7,3,0,0,1919,268,1,0,0,0,1920,1921,7,12,0,0,1921,1922, - 7,2,0,0,1922,1923,7,3,0,0,1923,1924,7,5,0,0,1924,1925,7,8,0,0,1925, - 270,1,0,0,0,1926,1927,7,12,0,0,1927,1928,7,2,0,0,1928,1929,7,3,0, - 0,1929,1930,7,8,0,0,1930,1931,7,6,0,0,1931,1932,7,21,0,0,1932,1933, - 7,11,0,0,1933,272,1,0,0,0,1934,1935,7,12,0,0,1935,1936,7,2,0,0,1936, - 1937,7,3,0,0,1937,1938,7,10,0,0,1938,1939,7,0,0,0,1939,1940,7,4, - 0,0,1940,274,1,0,0,0,1941,1942,7,12,0,0,1942,1943,7,2,0,0,1943,1944, - 7,3,0,0,1944,1945,7,10,0,0,1945,1946,7,0,0,0,1946,1947,7,4,0,0,1947, - 1948,7,4,0,0,1948,1949,7,8,0,0,1949,1950,7,9,0,0,1950,276,1,0,0, - 0,1951,1952,7,12,0,0,1952,1953,7,3,0,0,1953,1954,7,2,0,0,1954,1955, - 7,10,0,0,1955,278,1,0,0,0,1956,1957,7,12,0,0,1957,1958,7,19,0,0, - 1958,1959,7,13,0,0,1959,1960,7,13,0,0,1960,280,1,0,0,0,1961,1962, - 7,12,0,0,1962,1963,7,19,0,0,1963,1964,7,11,0,0,1964,1965,7,5,0,0, - 1965,1966,7,4,0,0,1966,1967,7,6,0,0,1967,1968,7,2,0,0,1968,1969, - 7,11,0,0,1969,282,1,0,0,0,1970,1971,7,12,0,0,1971,1972,7,19,0,0, - 1972,1973,7,11,0,0,1973,1974,7,5,0,0,1974,1975,7,4,0,0,1975,1976, - 7,6,0,0,1976,1977,7,2,0,0,1977,1978,7,11,0,0,1978,1979,7,18,0,0, - 1979,284,1,0,0,0,1980,1981,7,21,0,0,1981,1982,7,3,0,0,1982,1983, - 7,0,0,0,1983,1984,7,11,0,0,1984,1985,7,4,0,0,1985,286,1,0,0,0,1986, - 1987,7,21,0,0,1987,1988,7,3,0,0,1988,1989,7,2,0,0,1989,1990,7,19, - 0,0,1990,1991,7,16,0,0,1991,288,1,0,0,0,1992,1993,7,21,0,0,1993, - 1994,7,3,0,0,1994,1995,7,2,0,0,1995,1996,7,19,0,0,1996,1997,7,16, - 0,0,1997,1998,7,6,0,0,1998,1999,7,11,0,0,1999,2000,7,21,0,0,2000, - 290,1,0,0,0,2001,2002,7,17,0,0,2002,2003,7,0,0,0,2003,2004,7,7,0, - 0,2004,2005,7,6,0,0,2005,2006,7,11,0,0,2006,2007,7,21,0,0,2007,292, - 1,0,0,0,2008,2009,7,17,0,0,2009,2010,7,2,0,0,2010,2011,7,13,0,0, - 2011,2012,7,9,0,0,2012,2013,5,95,0,0,2013,2014,7,9,0,0,2014,2015, - 7,9,0,0,2015,2016,7,13,0,0,2016,2017,7,4,0,0,2017,2018,7,6,0,0,2018, - 2019,7,10,0,0,2019,2020,7,8,0,0,2020,294,1,0,0,0,2021,2022,7,17, - 0,0,2022,2023,7,2,0,0,2023,2024,7,19,0,0,2024,2025,7,3,0,0,2025, - 296,1,0,0,0,2026,2027,7,17,0,0,2027,2028,7,2,0,0,2028,2029,7,19, - 0,0,2029,2030,7,3,0,0,2030,2031,7,18,0,0,2031,298,1,0,0,0,2032,2033, - 7,6,0,0,2033,2034,7,9,0,0,2034,2035,7,23,0,0,2035,2036,7,16,0,0, - 2036,2037,7,3,0,0,2037,2038,7,2,0,0,2038,2039,7,16,0,0,2039,2040, - 7,8,0,0,2040,2041,7,3,0,0,2041,2042,7,4,0,0,2042,2043,7,6,0,0,2043, - 2044,7,8,0,0,2044,2045,7,18,0,0,2045,300,1,0,0,0,2046,2047,7,6,0, - 0,2047,2048,7,12,0,0,2048,302,1,0,0,0,2049,2050,7,6,0,0,2050,2051, - 7,21,0,0,2051,2052,7,11,0,0,2052,2053,7,2,0,0,2053,2054,7,3,0,0, - 2054,2055,7,8,0,0,2055,304,1,0,0,0,2056,2057,7,6,0,0,2057,2058,7, - 10,0,0,2058,2059,7,16,0,0,2059,2060,7,2,0,0,2060,2061,7,3,0,0,2061, - 2062,7,4,0,0,2062,306,1,0,0,0,2063,2064,7,6,0,0,2064,2065,7,11,0, - 0,2065,308,1,0,0,0,2066,2067,7,6,0,0,2067,2068,7,11,0,0,2068,2069, - 7,9,0,0,2069,2070,7,8,0,0,2070,2071,7,23,0,0,2071,310,1,0,0,0,2072, - 2073,7,6,0,0,2073,2074,7,11,0,0,2074,2075,7,9,0,0,2075,2076,7,8, - 0,0,2076,2077,7,23,0,0,2077,2078,7,8,0,0,2078,2079,7,18,0,0,2079, - 312,1,0,0,0,2080,2081,7,6,0,0,2081,2082,7,11,0,0,2082,2083,7,11, - 0,0,2083,2084,7,8,0,0,2084,2085,7,3,0,0,2085,314,1,0,0,0,2086,2087, - 7,6,0,0,2087,2088,7,11,0,0,2088,2089,7,16,0,0,2089,2090,7,0,0,0, - 2090,2091,7,4,0,0,2091,2092,7,17,0,0,2092,316,1,0,0,0,2093,2094, - 7,6,0,0,2094,2095,7,11,0,0,2095,2096,7,16,0,0,2096,2097,7,19,0,0, - 2097,2098,7,4,0,0,2098,2099,7,9,0,0,2099,2100,7,3,0,0,2100,2101, - 7,6,0,0,2101,2102,7,7,0,0,2102,2103,7,8,0,0,2103,2104,7,3,0,0,2104, - 318,1,0,0,0,2105,2106,7,6,0,0,2106,2107,7,11,0,0,2107,2108,7,16, - 0,0,2108,2109,7,19,0,0,2109,2110,7,4,0,0,2110,2111,7,12,0,0,2111, - 2112,7,2,0,0,2112,2113,7,3,0,0,2113,2114,7,10,0,0,2114,2115,7,0, - 0,0,2115,2116,7,4,0,0,2116,320,1,0,0,0,2117,2118,7,6,0,0,2118,2119, - 7,11,0,0,2119,2120,7,18,0,0,2120,2121,7,8,0,0,2121,2122,7,3,0,0, - 2122,2123,7,4,0,0,2123,322,1,0,0,0,2124,2125,7,6,0,0,2125,2126,7, - 11,0,0,2126,2127,7,4,0,0,2127,324,1,0,0,0,2128,2129,7,6,0,0,2129, - 2130,7,11,0,0,2130,2131,7,4,0,0,2131,2132,7,8,0,0,2132,2133,7,21, - 0,0,2133,2134,7,8,0,0,2134,2135,7,3,0,0,2135,326,1,0,0,0,2136,2137, - 7,6,0,0,2137,2138,7,11,0,0,2138,2139,7,4,0,0,2139,2140,7,8,0,0,2140, - 2141,7,3,0,0,2141,2142,7,18,0,0,2142,2143,7,8,0,0,2143,2144,7,5, - 0,0,2144,2145,7,4,0,0,2145,328,1,0,0,0,2146,2147,7,6,0,0,2147,2148, - 7,11,0,0,2148,2149,7,4,0,0,2149,2150,7,8,0,0,2150,2151,7,3,0,0,2151, - 2152,7,7,0,0,2152,2153,7,0,0,0,2153,2154,7,13,0,0,2154,330,1,0,0, - 0,2155,2156,7,6,0,0,2156,2157,7,11,0,0,2157,2158,7,4,0,0,2158,2159, - 7,2,0,0,2159,332,1,0,0,0,2160,2161,7,6,0,0,2161,2162,7,18,0,0,2162, - 334,1,0,0,0,2163,2164,7,6,0,0,2164,2165,7,18,0,0,2165,2166,7,2,0, - 0,2166,2167,7,13,0,0,2167,2168,7,0,0,0,2168,2169,7,4,0,0,2169,2170, - 7,6,0,0,2170,2171,7,2,0,0,2171,2172,7,11,0,0,2172,336,1,0,0,0,2173, - 2174,7,6,0,0,2174,2175,7,4,0,0,2175,2176,7,8,0,0,2176,2177,7,10, - 0,0,2177,2178,7,18,0,0,2178,338,1,0,0,0,2179,2180,7,24,0,0,2180, - 2181,7,0,0,0,2181,2182,7,3,0,0,2182,340,1,0,0,0,2183,2184,7,24,0, - 0,2184,2185,7,2,0,0,2185,2186,7,6,0,0,2186,2187,7,11,0,0,2187,342, - 1,0,0,0,2188,2189,7,24,0,0,2189,2190,7,2,0,0,2190,2191,7,6,0,0,2191, - 2192,7,11,0,0,2192,2193,7,5,0,0,2193,2194,7,2,0,0,2194,2195,7,18, - 0,0,2195,2196,7,4,0,0,2196,344,1,0,0,0,2197,2198,7,22,0,0,2198,2199, - 7,8,0,0,2199,2200,7,14,0,0,2200,346,1,0,0,0,2201,2202,7,22,0,0,2202, - 2203,7,8,0,0,2203,2204,7,14,0,0,2204,2205,7,18,0,0,2205,348,1,0, - 0,0,2206,2207,5,36,0,0,2207,2208,7,22,0,0,2208,2209,7,8,0,0,2209, - 2210,7,14,0,0,2210,2211,5,36,0,0,2211,350,1,0,0,0,2212,2213,7,22, - 0,0,2213,2214,7,6,0,0,2214,2215,7,13,0,0,2215,2216,7,13,0,0,2216, - 352,1,0,0,0,2217,2218,7,13,0,0,2218,2219,7,0,0,0,2219,2220,7,18, - 0,0,2220,2221,7,4,0,0,2221,354,1,0,0,0,2222,2223,7,13,0,0,2223,2224, - 7,0,0,0,2224,2225,7,4,0,0,2225,2226,7,8,0,0,2226,2227,7,3,0,0,2227, - 2228,7,0,0,0,2228,2229,7,13,0,0,2229,356,1,0,0,0,2230,2231,7,13, - 0,0,2231,2232,7,8,0,0,2232,2233,7,0,0,0,2233,2234,7,9,0,0,2234,2235, - 7,6,0,0,2235,2236,7,11,0,0,2236,2237,7,21,0,0,2237,358,1,0,0,0,2238, - 2239,7,13,0,0,2239,2240,7,8,0,0,2240,2241,7,12,0,0,2241,2242,7,4, - 0,0,2242,360,1,0,0,0,2243,2244,7,13,0,0,2244,2245,7,8,0,0,2245,2246, - 7,18,0,0,2246,2247,7,18,0,0,2247,362,1,0,0,0,2248,2249,7,13,0,0, - 2249,2250,7,8,0,0,2250,2251,7,7,0,0,2251,2252,7,8,0,0,2252,2253, - 7,13,0,0,2253,364,1,0,0,0,2254,2255,7,13,0,0,2255,2256,7,6,0,0,2256, - 2257,7,22,0,0,2257,2258,7,8,0,0,2258,366,1,0,0,0,2259,2260,7,13, - 0,0,2260,2261,7,6,0,0,2261,2262,7,10,0,0,2262,2263,7,6,0,0,2263, - 2264,7,4,0,0,2264,368,1,0,0,0,2265,2266,7,13,0,0,2266,2267,7,6,0, - 0,2267,2268,7,11,0,0,2268,2269,7,8,0,0,2269,2270,7,18,0,0,2270,370, - 1,0,0,0,2271,2272,7,13,0,0,2272,2273,7,2,0,0,2273,2274,7,0,0,0,2274, - 2275,7,9,0,0,2275,372,1,0,0,0,2276,2277,7,13,0,0,2277,2278,7,2,0, - 0,2278,2279,7,5,0,0,2279,2280,7,0,0,0,2280,2281,7,13,0,0,2281,374, - 1,0,0,0,2282,2283,7,13,0,0,2283,2284,7,2,0,0,2284,2285,7,5,0,0,2285, - 2286,7,0,0,0,2286,2287,7,4,0,0,2287,2288,7,6,0,0,2288,2289,7,2,0, - 0,2289,2290,7,11,0,0,2290,376,1,0,0,0,2291,2292,7,13,0,0,2292,2293, - 7,2,0,0,2293,2294,7,5,0,0,2294,2295,7,22,0,0,2295,378,1,0,0,0,2296, - 2297,7,13,0,0,2297,2298,7,2,0,0,2298,2299,7,5,0,0,2299,2300,7,22, - 0,0,2300,2301,7,18,0,0,2301,380,1,0,0,0,2302,2303,7,13,0,0,2303, - 2304,7,2,0,0,2304,2305,7,21,0,0,2305,2306,7,6,0,0,2306,2307,7,5, - 0,0,2307,2308,7,0,0,0,2308,2309,7,13,0,0,2309,382,1,0,0,0,2310,2311, - 7,13,0,0,2311,2312,7,2,0,0,2312,2313,7,11,0,0,2313,2314,7,21,0,0, - 2314,384,1,0,0,0,2315,2316,7,10,0,0,2316,2317,7,0,0,0,2317,2318, - 7,5,0,0,2318,2319,7,3,0,0,2319,2320,7,2,0,0,2320,386,1,0,0,0,2321, - 2322,7,10,0,0,2322,2323,7,0,0,0,2323,2324,7,11,0,0,2324,2325,7,0, - 0,0,2325,2326,7,21,0,0,2326,2327,7,8,0,0,2327,2328,7,9,0,0,2328, - 388,1,0,0,0,2329,2330,7,10,0,0,2330,2331,7,0,0,0,2331,2332,7,11, - 0,0,2332,2333,7,0,0,0,2333,2334,7,21,0,0,2334,2335,7,8,0,0,2335, - 2336,7,9,0,0,2336,2337,7,13,0,0,2337,2338,7,2,0,0,2338,2339,7,5, - 0,0,2339,2340,7,0,0,0,2340,2341,7,4,0,0,2341,2342,7,6,0,0,2342,2343, - 7,2,0,0,2343,2344,7,11,0,0,2344,390,1,0,0,0,2345,2346,7,10,0,0,2346, - 2347,7,0,0,0,2347,2348,7,11,0,0,2348,2349,7,0,0,0,2349,2350,7,21, - 0,0,2350,2351,7,8,0,0,2351,2352,7,10,0,0,2352,2353,7,8,0,0,2353, - 2354,7,11,0,0,2354,2355,7,4,0,0,2355,392,1,0,0,0,2356,2357,7,10, - 0,0,2357,2358,7,0,0,0,2358,2359,7,16,0,0,2359,394,1,0,0,0,2360,2361, - 7,10,0,0,2361,2362,7,0,0,0,2362,2363,7,16,0,0,2363,2364,7,24,0,0, - 2364,2365,7,2,0,0,2365,2366,7,6,0,0,2366,2367,7,11,0,0,2367,396, - 1,0,0,0,2368,2369,7,10,0,0,2369,2370,7,0,0,0,2370,2371,7,16,0,0, - 2371,2372,7,16,0,0,2372,2373,7,6,0,0,2373,2374,7,11,0,0,2374,2375, - 7,21,0,0,2375,398,1,0,0,0,2376,2377,7,10,0,0,2377,2378,7,0,0,0,2378, - 2379,7,4,0,0,2379,2380,7,5,0,0,2380,2381,7,17,0,0,2381,2382,7,8, - 0,0,2382,2383,7,9,0,0,2383,400,1,0,0,0,2384,2385,7,10,0,0,2385,2386, - 7,0,0,0,2386,2387,7,4,0,0,2387,2388,7,8,0,0,2388,2389,7,3,0,0,2389, - 2390,7,6,0,0,2390,2391,7,0,0,0,2391,2392,7,13,0,0,2392,2393,7,6, - 0,0,2393,2394,7,15,0,0,2394,2395,7,8,0,0,2395,2396,7,9,0,0,2396, - 402,1,0,0,0,2397,2398,7,10,0,0,2398,2399,7,8,0,0,2399,2400,7,3,0, - 0,2400,2401,7,21,0,0,2401,2402,7,8,0,0,2402,404,1,0,0,0,2403,2404, - 7,10,0,0,2404,2405,7,8,0,0,2405,2406,7,4,0,0,2406,2407,7,0,0,0,2407, - 2408,7,9,0,0,2408,2409,7,0,0,0,2409,2410,7,4,0,0,2410,2411,7,0,0, - 0,2411,406,1,0,0,0,2412,2413,7,10,0,0,2413,2414,7,6,0,0,2414,2415, - 7,11,0,0,2415,2416,7,19,0,0,2416,2417,7,18,0,0,2417,408,1,0,0,0, - 2418,2419,7,10,0,0,2419,2420,7,6,0,0,2420,2421,7,11,0,0,2421,2422, - 7,19,0,0,2422,2423,7,4,0,0,2423,2424,7,8,0,0,2424,410,1,0,0,0,2425, - 2426,7,10,0,0,2426,2427,7,6,0,0,2427,2428,7,11,0,0,2428,2429,7,19, - 0,0,2429,2430,7,4,0,0,2430,2431,7,8,0,0,2431,2432,7,18,0,0,2432, - 412,1,0,0,0,2433,2434,7,10,0,0,2434,2435,7,2,0,0,2435,2436,7,11, - 0,0,2436,2437,7,4,0,0,2437,2438,7,17,0,0,2438,414,1,0,0,0,2439,2440, - 7,10,0,0,2440,2441,7,2,0,0,2441,2442,7,11,0,0,2442,2443,7,4,0,0, - 2443,2444,7,17,0,0,2444,2445,7,18,0,0,2445,416,1,0,0,0,2446,2447, - 7,10,0,0,2447,2448,7,2,0,0,2448,2449,7,3,0,0,2449,2450,7,8,0,0,2450, - 418,1,0,0,0,2451,2452,7,10,0,0,2452,2453,7,2,0,0,2453,2454,7,7,0, - 0,2454,2455,7,8,0,0,2455,420,1,0,0,0,2456,2457,7,10,0,0,2457,2458, - 7,18,0,0,2458,2459,7,5,0,0,2459,2460,7,22,0,0,2460,422,1,0,0,0,2461, - 2462,7,11,0,0,2462,2463,7,2,0,0,2463,2464,7,11,0,0,2464,2465,7,8, - 0,0,2465,424,1,0,0,0,2466,2467,7,11,0,0,2467,2468,7,2,0,0,2468,2469, - 7,3,0,0,2469,2470,7,8,0,0,2470,2471,7,13,0,0,2471,2472,7,14,0,0, - 2472,426,1,0,0,0,2473,2474,7,11,0,0,2474,2475,7,2,0,0,2475,2476, - 7,18,0,0,2476,2477,7,5,0,0,2477,2478,7,0,0,0,2478,2479,7,11,0,0, - 2479,428,1,0,0,0,2480,2481,7,11,0,0,2481,2482,7,2,0,0,2482,2483, - 7,4,0,0,2483,430,1,0,0,0,2484,2485,7,11,0,0,2485,2486,7,2,0,0,2486, - 2487,7,7,0,0,2487,2488,7,0,0,0,2488,2489,7,13,0,0,2489,2490,7,6, - 0,0,2490,2491,7,9,0,0,2491,2492,7,0,0,0,2492,2493,7,4,0,0,2493,2494, - 7,8,0,0,2494,432,1,0,0,0,2495,2496,7,11,0,0,2496,2497,7,2,0,0,2497, - 2498,5,95,0,0,2498,2499,7,9,0,0,2499,2500,7,3,0,0,2500,2501,7,2, - 0,0,2501,2502,7,16,0,0,2502,434,1,0,0,0,2503,2504,7,11,0,0,2504, - 2505,7,19,0,0,2505,2506,7,13,0,0,2506,2507,7,13,0,0,2507,436,1,0, - 0,0,2508,2509,7,11,0,0,2509,2510,7,19,0,0,2510,2511,7,13,0,0,2511, - 2512,7,13,0,0,2512,2513,7,18,0,0,2513,438,1,0,0,0,2514,2515,7,2, - 0,0,2515,2516,7,12,0,0,2516,440,1,0,0,0,2517,2518,7,2,0,0,2518,2519, - 7,12,0,0,2519,2520,7,12,0,0,2520,2521,7,13,0,0,2521,2522,7,6,0,0, - 2522,2523,7,11,0,0,2523,2524,7,8,0,0,2524,442,1,0,0,0,2525,2526, - 7,2,0,0,2526,2527,7,12,0,0,2527,2528,7,12,0,0,2528,2529,7,18,0,0, - 2529,2530,7,8,0,0,2530,2531,7,4,0,0,2531,444,1,0,0,0,2532,2533,7, - 2,0,0,2533,2534,7,11,0,0,2534,446,1,0,0,0,2535,2536,7,2,0,0,2536, - 2537,7,11,0,0,2537,2538,7,13,0,0,2538,2539,7,14,0,0,2539,448,1,0, - 0,0,2540,2541,7,2,0,0,2541,2542,7,16,0,0,2542,2543,7,8,0,0,2543, - 2544,7,3,0,0,2544,2545,7,0,0,0,2545,2546,7,4,0,0,2546,2547,7,2,0, - 0,2547,2548,7,3,0,0,2548,450,1,0,0,0,2549,2550,7,2,0,0,2550,2551, - 7,16,0,0,2551,2552,7,4,0,0,2552,2553,7,6,0,0,2553,2554,7,2,0,0,2554, - 2555,7,11,0,0,2555,452,1,0,0,0,2556,2557,7,2,0,0,2557,2558,7,3,0, - 0,2558,454,1,0,0,0,2559,2560,7,2,0,0,2560,2561,7,3,0,0,2561,2562, - 7,9,0,0,2562,2563,7,8,0,0,2563,2564,7,3,0,0,2564,456,1,0,0,0,2565, - 2566,7,2,0,0,2566,2567,7,19,0,0,2567,2568,7,4,0,0,2568,458,1,0,0, - 0,2569,2570,7,2,0,0,2570,2571,7,19,0,0,2571,2572,7,4,0,0,2572,2573, - 7,8,0,0,2573,2574,7,3,0,0,2574,460,1,0,0,0,2575,2576,7,2,0,0,2576, - 2577,7,19,0,0,2577,2578,7,4,0,0,2578,2579,7,16,0,0,2579,2580,7,19, - 0,0,2580,2581,7,4,0,0,2581,2582,7,9,0,0,2582,2583,7,3,0,0,2583,2584, - 7,6,0,0,2584,2585,7,7,0,0,2585,2586,7,8,0,0,2586,2587,7,3,0,0,2587, - 462,1,0,0,0,2588,2589,7,2,0,0,2589,2590,7,19,0,0,2590,2591,7,4,0, - 0,2591,2592,7,16,0,0,2592,2593,7,19,0,0,2593,2594,7,4,0,0,2594,2595, - 7,12,0,0,2595,2596,7,2,0,0,2596,2597,7,3,0,0,2597,2598,7,10,0,0, - 2598,2599,7,0,0,0,2599,2600,7,4,0,0,2600,464,1,0,0,0,2601,2602,7, - 2,0,0,2602,2603,7,7,0,0,2603,2604,7,8,0,0,2604,2605,7,3,0,0,2605, - 466,1,0,0,0,2606,2607,7,2,0,0,2607,2608,7,7,0,0,2608,2609,7,8,0, - 0,2609,2610,7,3,0,0,2610,2611,7,20,0,0,2611,2612,7,3,0,0,2612,2613, - 7,6,0,0,2613,2614,7,4,0,0,2614,2615,7,8,0,0,2615,468,1,0,0,0,2616, - 2617,7,2,0,0,2617,2618,7,20,0,0,2618,2619,7,11,0,0,2619,2620,7,8, - 0,0,2620,2621,7,3,0,0,2621,470,1,0,0,0,2622,2623,7,16,0,0,2623,2624, - 7,0,0,0,2624,2625,7,3,0,0,2625,2626,7,4,0,0,2626,2627,7,6,0,0,2627, - 2628,7,4,0,0,2628,2629,7,6,0,0,2629,2630,7,2,0,0,2630,2631,7,11, - 0,0,2631,472,1,0,0,0,2632,2633,7,16,0,0,2633,2634,7,0,0,0,2634,2635, - 7,3,0,0,2635,2636,7,4,0,0,2636,2637,7,6,0,0,2637,2638,7,4,0,0,2638, - 2639,7,6,0,0,2639,2640,7,2,0,0,2640,2641,7,11,0,0,2641,2642,7,8, - 0,0,2642,2643,7,9,0,0,2643,474,1,0,0,0,2644,2645,7,16,0,0,2645,2646, - 7,0,0,0,2646,2647,7,3,0,0,2647,2648,7,4,0,0,2648,2649,7,6,0,0,2649, - 2650,7,4,0,0,2650,2651,7,6,0,0,2651,2652,7,2,0,0,2652,2653,7,11, - 0,0,2653,2654,7,18,0,0,2654,476,1,0,0,0,2655,2656,7,16,0,0,2656, - 2657,7,0,0,0,2657,2658,7,4,0,0,2658,2659,7,17,0,0,2659,478,1,0,0, - 0,2660,2661,7,16,0,0,2661,2662,7,8,0,0,2662,2663,7,3,0,0,2663,2664, - 7,5,0,0,2664,2665,7,8,0,0,2665,2666,7,11,0,0,2666,2667,7,4,0,0,2667, - 480,1,0,0,0,2668,2669,7,16,0,0,2669,2670,7,22,0,0,2670,2671,7,12, - 0,0,2671,2672,7,22,0,0,2672,2673,5,95,0,0,2673,2674,7,24,0,0,2674, - 2675,7,2,0,0,2675,2676,7,6,0,0,2676,2677,7,11,0,0,2677,482,1,0,0, - 0,2678,2679,7,16,0,0,2679,2680,7,13,0,0,2680,2681,7,0,0,0,2681,2682, - 7,11,0,0,2682,484,1,0,0,0,2683,2684,7,16,0,0,2684,2685,7,13,0,0, - 2685,2686,7,0,0,0,2686,2687,7,11,0,0,2687,2688,7,18,0,0,2688,486, - 1,0,0,0,2689,2690,7,16,0,0,2690,2691,7,13,0,0,2691,2692,7,19,0,0, - 2692,2693,7,18,0,0,2693,488,1,0,0,0,2694,2695,7,16,0,0,2695,2696, - 7,2,0,0,2696,2697,7,2,0,0,2697,2698,7,13,0,0,2698,490,1,0,0,0,2699, - 2700,7,16,0,0,2700,2701,7,3,0,0,2701,2702,7,8,0,0,2702,2703,7,5, - 0,0,2703,2704,7,8,0,0,2704,2705,7,9,0,0,2705,2706,7,6,0,0,2706,2707, - 7,11,0,0,2707,2708,7,21,0,0,2708,492,1,0,0,0,2709,2710,7,16,0,0, - 2710,2711,7,3,0,0,2711,2712,7,8,0,0,2712,2713,7,5,0,0,2713,2714, - 7,6,0,0,2714,2715,7,18,0,0,2715,2716,7,6,0,0,2716,2717,7,2,0,0,2717, - 2718,7,11,0,0,2718,494,1,0,0,0,2719,2720,7,16,0,0,2720,2721,7,3, - 0,0,2721,2722,7,8,0,0,2722,2723,7,16,0,0,2723,2724,7,0,0,0,2724, - 2725,7,3,0,0,2725,2726,7,8,0,0,2726,496,1,0,0,0,2727,2728,7,16,0, - 0,2728,2729,7,3,0,0,2729,2730,7,8,0,0,2730,2731,7,18,0,0,2731,2732, - 7,8,0,0,2732,2733,7,3,0,0,2733,2734,7,7,0,0,2734,2735,7,8,0,0,2735, - 498,1,0,0,0,2736,2737,7,16,0,0,2737,2738,7,3,0,0,2738,2739,7,6,0, - 0,2739,2740,7,10,0,0,2740,2741,7,0,0,0,2741,2742,7,3,0,0,2742,2743, - 7,14,0,0,2743,500,1,0,0,0,2744,2745,7,16,0,0,2745,2746,7,3,0,0,2746, - 2747,7,6,0,0,2747,2748,7,11,0,0,2748,2749,7,5,0,0,2749,2750,7,6, - 0,0,2750,2751,7,16,0,0,2751,2752,7,0,0,0,2752,2753,7,13,0,0,2753, - 2754,7,18,0,0,2754,502,1,0,0,0,2755,2756,7,16,0,0,2756,2757,7,3, - 0,0,2757,2758,7,2,0,0,2758,2759,7,5,0,0,2759,2760,7,8,0,0,2760,2761, - 7,9,0,0,2761,2762,7,19,0,0,2762,2763,7,3,0,0,2763,2764,7,8,0,0,2764, - 504,1,0,0,0,2765,2766,7,16,0,0,2766,2767,7,3,0,0,2767,2768,7,2,0, - 0,2768,2769,7,4,0,0,2769,2770,7,8,0,0,2770,2771,7,5,0,0,2771,2772, - 7,4,0,0,2772,2773,7,6,0,0,2773,2774,7,2,0,0,2774,2775,7,11,0,0,2775, - 506,1,0,0,0,2776,2777,7,16,0,0,2777,2778,7,19,0,0,2778,2779,7,3, - 0,0,2779,2780,7,21,0,0,2780,2781,7,8,0,0,2781,508,1,0,0,0,2782,2783, - 7,25,0,0,2783,2784,7,19,0,0,2784,2785,7,0,0,0,2785,2786,7,13,0,0, - 2786,2787,7,6,0,0,2787,2788,7,12,0,0,2788,2789,7,14,0,0,2789,510, - 1,0,0,0,2790,2791,7,25,0,0,2791,2792,7,19,0,0,2792,2793,7,0,0,0, - 2793,2794,7,3,0,0,2794,2795,7,4,0,0,2795,2796,7,8,0,0,2796,2797, - 7,3,0,0,2797,512,1,0,0,0,2798,2799,7,25,0,0,2799,2800,7,19,0,0,2800, - 2801,7,8,0,0,2801,2802,7,3,0,0,2802,2803,7,14,0,0,2803,514,1,0,0, - 0,2804,2805,7,25,0,0,2805,2806,7,19,0,0,2806,2807,7,8,0,0,2807,2808, - 7,3,0,0,2808,2809,7,14,0,0,2809,2810,5,95,0,0,2810,2811,7,16,0,0, - 2811,2812,7,0,0,0,2812,2813,7,3,0,0,2813,2814,7,0,0,0,2814,2815, - 7,13,0,0,2815,2816,7,13,0,0,2816,2817,7,8,0,0,2817,2818,7,13,0,0, - 2818,2819,7,6,0,0,2819,2820,7,18,0,0,2820,2821,7,10,0,0,2821,516, - 1,0,0,0,2822,2823,7,3,0,0,2823,2824,7,0,0,0,2824,2825,7,11,0,0,2825, - 2826,7,21,0,0,2826,2827,7,8,0,0,2827,518,1,0,0,0,2828,2829,7,3,0, - 0,2829,2830,7,8,0,0,2830,2831,7,0,0,0,2831,2832,7,9,0,0,2832,520, - 1,0,0,0,2833,2834,7,3,0,0,2834,2835,7,8,0,0,2835,2836,7,0,0,0,2836, - 2837,7,9,0,0,2837,2838,7,2,0,0,2838,2839,7,11,0,0,2839,2840,7,13, - 0,0,2840,2841,7,14,0,0,2841,522,1,0,0,0,2842,2843,7,3,0,0,2843,2844, - 7,8,0,0,2844,2845,7,0,0,0,2845,2846,7,9,0,0,2846,2847,7,18,0,0,2847, - 524,1,0,0,0,2848,2849,7,3,0,0,2849,2850,7,8,0,0,2850,2851,7,0,0, - 0,2851,2852,7,13,0,0,2852,526,1,0,0,0,2853,2854,7,3,0,0,2854,2855, - 7,8,0,0,2855,2856,7,1,0,0,2856,2857,7,19,0,0,2857,2858,7,6,0,0,2858, - 2859,7,13,0,0,2859,2860,7,9,0,0,2860,528,1,0,0,0,2861,2862,7,3,0, - 0,2862,2863,7,8,0,0,2863,2864,7,5,0,0,2864,2865,7,2,0,0,2865,2866, - 7,3,0,0,2866,2867,7,9,0,0,2867,2868,7,3,0,0,2868,2869,7,8,0,0,2869, - 2870,7,0,0,0,2870,2871,7,9,0,0,2871,2872,7,8,0,0,2872,2873,7,3,0, - 0,2873,530,1,0,0,0,2874,2875,7,3,0,0,2875,2876,7,8,0,0,2876,2877, - 7,5,0,0,2877,2878,7,2,0,0,2878,2879,7,3,0,0,2879,2880,7,9,0,0,2880, - 2881,7,20,0,0,2881,2882,7,3,0,0,2882,2883,7,6,0,0,2883,2884,7,4, - 0,0,2884,2885,7,8,0,0,2885,2886,7,3,0,0,2886,532,1,0,0,0,2887,2888, - 7,3,0,0,2888,2889,7,8,0,0,2889,2890,7,9,0,0,2890,2891,7,19,0,0,2891, - 2892,7,5,0,0,2892,2893,7,8,0,0,2893,534,1,0,0,0,2894,2895,7,3,0, - 0,2895,2896,7,8,0,0,2896,2897,7,12,0,0,2897,2898,7,8,0,0,2898,2899, - 7,3,0,0,2899,2900,7,8,0,0,2900,2901,7,11,0,0,2901,2902,7,5,0,0,2902, - 2903,7,8,0,0,2903,2904,7,18,0,0,2904,536,1,0,0,0,2905,2906,7,3,0, - 0,2906,2907,7,8,0,0,2907,2908,7,21,0,0,2908,2909,7,8,0,0,2909,2910, - 7,23,0,0,2910,2911,7,16,0,0,2911,538,1,0,0,0,2912,2913,7,3,0,0,2913, - 2914,7,8,0,0,2914,2915,7,13,0,0,2915,2916,7,2,0,0,2916,2917,7,0, - 0,0,2917,2918,7,9,0,0,2918,540,1,0,0,0,2919,2920,7,3,0,0,2920,2921, - 7,8,0,0,2921,2922,7,13,0,0,2922,2923,7,14,0,0,2923,542,1,0,0,0,2924, - 2925,7,3,0,0,2925,2926,7,8,0,0,2926,2927,7,10,0,0,2927,2928,7,2, - 0,0,2928,2929,7,4,0,0,2929,2930,7,8,0,0,2930,544,1,0,0,0,2931,2932, - 7,3,0,0,2932,2933,7,8,0,0,2933,2934,7,11,0,0,2934,2935,7,0,0,0,2935, - 2936,7,10,0,0,2936,2937,7,8,0,0,2937,546,1,0,0,0,2938,2939,7,3,0, - 0,2939,2940,7,8,0,0,2940,2941,7,2,0,0,2941,2942,7,16,0,0,2942,2943, - 7,4,0,0,2943,2944,7,6,0,0,2944,2945,7,10,0,0,2945,2946,7,6,0,0,2946, - 2947,7,15,0,0,2947,2948,7,0,0,0,2948,2949,7,4,0,0,2949,2950,7,6, - 0,0,2950,2951,7,2,0,0,2951,2952,7,11,0,0,2952,548,1,0,0,0,2953,2954, - 7,3,0,0,2954,2955,7,8,0,0,2955,2956,7,16,0,0,2956,2957,7,0,0,0,2957, - 2958,7,6,0,0,2958,2959,7,3,0,0,2959,550,1,0,0,0,2960,2961,7,3,0, - 0,2961,2962,7,8,0,0,2962,2963,7,16,0,0,2963,2964,7,13,0,0,2964,552, - 1,0,0,0,2965,2966,7,3,0,0,2966,2967,7,8,0,0,2967,2968,7,16,0,0,2968, - 2969,7,13,0,0,2969,2970,7,0,0,0,2970,2971,7,5,0,0,2971,2972,7,8, - 0,0,2972,554,1,0,0,0,2973,2974,7,3,0,0,2974,2975,7,8,0,0,2975,2976, - 7,16,0,0,2976,2977,7,13,0,0,2977,2978,7,6,0,0,2978,2979,7,5,0,0, - 2979,2980,7,0,0,0,2980,2981,7,4,0,0,2981,2982,7,6,0,0,2982,2983, - 7,2,0,0,2983,2984,7,11,0,0,2984,556,1,0,0,0,2985,2986,7,3,0,0,2986, - 2987,7,8,0,0,2987,2988,7,18,0,0,2988,2989,7,2,0,0,2989,2990,7,19, - 0,0,2990,2991,7,3,0,0,2991,2992,7,5,0,0,2992,2993,7,8,0,0,2993,558, - 1,0,0,0,2994,2995,7,3,0,0,2995,2996,7,8,0,0,2996,2997,7,18,0,0,2997, - 2998,7,16,0,0,2998,2999,7,8,0,0,2999,3000,7,5,0,0,3000,3001,7,4, - 0,0,3001,560,1,0,0,0,3002,3003,7,3,0,0,3003,3004,7,8,0,0,3004,3005, - 7,18,0,0,3005,3006,7,4,0,0,3006,3007,7,3,0,0,3007,3008,7,6,0,0,3008, - 3009,7,5,0,0,3009,3010,7,4,0,0,3010,562,1,0,0,0,3011,3012,7,3,0, - 0,3012,3013,7,8,0,0,3013,3014,7,7,0,0,3014,3015,7,2,0,0,3015,3016, - 7,22,0,0,3016,3017,7,8,0,0,3017,564,1,0,0,0,3018,3019,7,3,0,0,3019, - 3020,7,8,0,0,3020,3021,7,20,0,0,3021,3022,7,3,0,0,3022,3023,7,6, - 0,0,3023,3024,7,4,0,0,3024,3025,7,8,0,0,3025,566,1,0,0,0,3026,3027, - 7,3,0,0,3027,3028,7,6,0,0,3028,3029,7,21,0,0,3029,3030,7,17,0,0, - 3030,3031,7,4,0,0,3031,568,1,0,0,0,3032,3033,7,3,0,0,3033,3034,7, - 13,0,0,3034,3035,7,6,0,0,3035,3036,7,22,0,0,3036,3037,7,8,0,0,3037, - 570,1,0,0,0,3038,3039,7,3,0,0,3039,3040,7,2,0,0,3040,3041,7,13,0, - 0,3041,3042,7,8,0,0,3042,572,1,0,0,0,3043,3044,7,3,0,0,3044,3045, - 7,2,0,0,3045,3046,7,13,0,0,3046,3047,7,8,0,0,3047,3048,7,18,0,0, - 3048,574,1,0,0,0,3049,3050,7,3,0,0,3050,3051,7,2,0,0,3051,3052,7, - 13,0,0,3052,3053,7,13,0,0,3053,3054,7,1,0,0,3054,3055,7,0,0,0,3055, - 3056,7,5,0,0,3056,3057,7,22,0,0,3057,576,1,0,0,0,3058,3059,7,3,0, - 0,3059,3060,7,2,0,0,3060,3061,7,13,0,0,3061,3062,7,13,0,0,3062,3063, - 7,19,0,0,3063,3064,7,16,0,0,3064,578,1,0,0,0,3065,3066,7,3,0,0,3066, - 3067,7,2,0,0,3067,3068,7,20,0,0,3068,580,1,0,0,0,3069,3070,7,3,0, - 0,3070,3071,7,2,0,0,3071,3072,7,20,0,0,3072,3073,7,18,0,0,3073,582, - 1,0,0,0,3074,3075,7,18,0,0,3075,3076,7,5,0,0,3076,3077,7,17,0,0, - 3077,3078,7,8,0,0,3078,3079,7,9,0,0,3079,3080,7,19,0,0,3080,3081, - 7,13,0,0,3081,3082,7,8,0,0,3082,3083,7,9,0,0,3083,584,1,0,0,0,3084, - 3085,7,18,0,0,3085,3086,7,5,0,0,3086,3087,7,17,0,0,3087,3088,7,8, - 0,0,3088,3089,7,9,0,0,3089,3090,7,19,0,0,3090,3091,7,13,0,0,3091, - 3092,7,6,0,0,3092,3093,7,11,0,0,3093,3094,7,21,0,0,3094,3095,5,95, - 0,0,3095,3096,7,16,0,0,3096,3097,7,2,0,0,3097,3098,7,13,0,0,3098, - 3099,7,6,0,0,3099,3100,7,5,0,0,3100,3101,7,14,0,0,3101,586,1,0,0, - 0,3102,3103,7,18,0,0,3103,3104,7,5,0,0,3104,3105,7,17,0,0,3105,3106, - 7,8,0,0,3106,3107,7,10,0,0,3107,3108,7,0,0,0,3108,588,1,0,0,0,3109, - 3110,7,18,0,0,3110,3111,7,5,0,0,3111,3112,7,17,0,0,3112,3113,7,8, - 0,0,3113,3114,7,10,0,0,3114,3115,7,0,0,0,3115,3116,7,18,0,0,3116, - 590,1,0,0,0,3117,3118,7,18,0,0,3118,3119,7,8,0,0,3119,3120,7,5,0, - 0,3120,3121,7,2,0,0,3121,3122,7,11,0,0,3122,3123,7,9,0,0,3123,592, - 1,0,0,0,3124,3125,7,18,0,0,3125,3126,7,8,0,0,3126,3127,7,5,0,0,3127, - 3128,7,2,0,0,3128,3129,7,11,0,0,3129,3130,7,9,0,0,3130,3131,7,18, - 0,0,3131,594,1,0,0,0,3132,3133,7,18,0,0,3133,3134,7,8,0,0,3134,3135, - 7,13,0,0,3135,3136,7,8,0,0,3136,3137,7,5,0,0,3137,3138,7,4,0,0,3138, - 596,1,0,0,0,3139,3140,7,18,0,0,3140,3141,7,8,0,0,3141,3142,7,10, - 0,0,3142,3143,7,6,0,0,3143,598,1,0,0,0,3144,3145,7,18,0,0,3145,3146, - 7,8,0,0,3146,3147,7,3,0,0,3147,3148,7,9,0,0,3148,3149,7,8,0,0,3149, - 600,1,0,0,0,3150,3151,7,18,0,0,3151,3152,7,8,0,0,3152,3153,7,3,0, - 0,3153,3154,7,9,0,0,3154,3155,7,8,0,0,3155,3156,7,16,0,0,3156,3157, - 7,3,0,0,3157,3158,7,2,0,0,3158,3159,7,16,0,0,3159,3160,7,8,0,0,3160, - 3161,7,3,0,0,3161,3162,7,4,0,0,3162,3163,7,6,0,0,3163,3164,7,8,0, - 0,3164,3165,7,18,0,0,3165,602,1,0,0,0,3166,3167,7,18,0,0,3167,3168, - 7,8,0,0,3168,3169,7,3,0,0,3169,3170,7,7,0,0,3170,3171,7,8,0,0,3171, - 3172,7,3,0,0,3172,604,1,0,0,0,3173,3174,7,18,0,0,3174,3175,7,8,0, - 0,3175,3176,7,4,0,0,3176,606,1,0,0,0,3177,3178,7,18,0,0,3178,3179, - 7,8,0,0,3179,3180,7,4,0,0,3180,3181,7,18,0,0,3181,608,1,0,0,0,3182, - 3183,7,18,0,0,3183,3184,7,8,0,0,3184,3185,7,4,0,0,3185,3186,5,95, - 0,0,3186,3187,7,5,0,0,3187,3188,7,19,0,0,3188,3189,7,3,0,0,3189, - 3190,7,3,0,0,3190,3191,7,8,0,0,3191,3192,7,11,0,0,3192,3193,7,4, - 0,0,3193,3194,5,95,0,0,3194,3195,7,18,0,0,3195,3196,7,11,0,0,3196, - 3197,7,0,0,0,3197,3198,7,16,0,0,3198,3199,7,18,0,0,3199,3200,7,17, - 0,0,3200,3201,7,2,0,0,3201,3202,7,4,0,0,3202,610,1,0,0,0,3203,3204, - 7,18,0,0,3204,3205,7,17,0,0,3205,3206,7,0,0,0,3206,3207,7,3,0,0, - 3207,3208,7,8,0,0,3208,3209,7,9,0,0,3209,612,1,0,0,0,3210,3211,7, - 18,0,0,3211,3212,7,17,0,0,3212,3213,7,2,0,0,3213,3214,7,20,0,0,3214, - 614,1,0,0,0,3215,3216,7,18,0,0,3216,3217,7,17,0,0,3217,3218,7,2, - 0,0,3218,3219,7,20,0,0,3219,3220,5,95,0,0,3220,3221,7,9,0,0,3221, - 3222,7,0,0,0,3222,3223,7,4,0,0,3223,3224,7,0,0,0,3224,3225,7,1,0, - 0,3225,3226,7,0,0,0,3226,3227,7,18,0,0,3227,3228,7,8,0,0,3228,616, - 1,0,0,0,3229,3230,7,18,0,0,3230,3231,7,22,0,0,3231,3232,7,8,0,0, - 3232,3233,7,20,0,0,3233,3234,7,8,0,0,3234,3235,7,9,0,0,3235,618, - 1,0,0,0,3236,3237,7,18,0,0,3237,3238,7,10,0,0,3238,3239,7,0,0,0, - 3239,3240,7,13,0,0,3240,3241,7,13,0,0,3241,3242,7,6,0,0,3242,3243, - 7,11,0,0,3243,3244,7,4,0,0,3244,620,1,0,0,0,3245,3246,7,18,0,0,3246, - 3247,7,11,0,0,3247,3248,7,0,0,0,3248,3249,7,16,0,0,3249,3250,7,18, - 0,0,3250,3251,7,17,0,0,3251,3252,7,2,0,0,3252,3253,7,4,0,0,3253, - 622,1,0,0,0,3254,3255,7,18,0,0,3255,3256,7,2,0,0,3256,3257,7,10, - 0,0,3257,3258,7,8,0,0,3258,624,1,0,0,0,3259,3260,7,18,0,0,3260,3261, - 7,2,0,0,3261,3262,7,3,0,0,3262,3263,7,4,0,0,3263,626,1,0,0,0,3264, - 3265,7,18,0,0,3265,3266,7,2,0,0,3266,3267,7,3,0,0,3267,3268,7,4, - 0,0,3268,3269,7,8,0,0,3269,3270,7,9,0,0,3270,628,1,0,0,0,3271,3272, - 7,18,0,0,3272,3273,7,16,0,0,3273,3274,7,8,0,0,3274,3275,7,5,0,0, - 3275,630,1,0,0,0,3276,3277,7,18,0,0,3277,3278,7,18,0,0,3278,3279, - 7,13,0,0,3279,632,1,0,0,0,3280,3281,7,18,0,0,3281,3282,7,4,0,0,3282, - 3283,7,0,0,0,3283,3284,7,3,0,0,3284,3285,7,4,0,0,3285,634,1,0,0, - 0,3286,3287,7,18,0,0,3287,3288,7,4,0,0,3288,3289,7,0,0,0,3289,3290, - 7,4,0,0,3290,3291,7,6,0,0,3291,3292,7,18,0,0,3292,3293,7,4,0,0,3293, - 3294,7,6,0,0,3294,3295,7,5,0,0,3295,3296,7,18,0,0,3296,636,1,0,0, - 0,3297,3298,7,18,0,0,3298,3299,7,4,0,0,3299,3300,7,0,0,0,3300,3301, - 7,4,0,0,3301,3302,7,19,0,0,3302,3303,7,18,0,0,3303,638,1,0,0,0,3304, - 3305,7,18,0,0,3305,3306,7,4,0,0,3306,3307,7,2,0,0,3307,3308,7,3, - 0,0,3308,3309,7,8,0,0,3309,3310,7,9,0,0,3310,640,1,0,0,0,3311,3312, - 7,18,0,0,3312,3313,7,4,0,0,3313,3314,7,3,0,0,3314,3315,7,8,0,0,3315, - 3316,7,0,0,0,3316,3317,7,10,0,0,3317,3318,7,4,0,0,3318,3319,7,0, - 0,0,3319,3320,7,1,0,0,3320,3321,7,13,0,0,3321,3322,7,8,0,0,3322, - 642,1,0,0,0,3323,3324,7,18,0,0,3324,3325,7,4,0,0,3325,3326,7,3,0, - 0,3326,3327,7,6,0,0,3327,3328,7,11,0,0,3328,3329,7,21,0,0,3329,644, - 1,0,0,0,3330,3331,7,18,0,0,3331,3332,7,4,0,0,3332,3333,7,3,0,0,3333, - 3334,7,19,0,0,3334,3335,7,5,0,0,3335,3336,7,4,0,0,3336,646,1,0,0, - 0,3337,3338,7,18,0,0,3338,3339,7,19,0,0,3339,3340,7,10,0,0,3340, - 3341,7,10,0,0,3341,3342,7,0,0,0,3342,3343,7,3,0,0,3343,3344,7,14, - 0,0,3344,648,1,0,0,0,3345,3346,7,18,0,0,3346,3347,7,14,0,0,3347, - 3348,7,11,0,0,3348,3349,7,5,0,0,3349,650,1,0,0,0,3350,3351,7,18, - 0,0,3351,3352,7,14,0,0,3352,3353,7,18,0,0,3353,3354,7,4,0,0,3354, - 3355,7,8,0,0,3355,3356,7,10,0,0,3356,3357,5,95,0,0,3357,3358,7,4, - 0,0,3358,3359,7,6,0,0,3359,3360,7,10,0,0,3360,3361,7,8,0,0,3361, - 652,1,0,0,0,3362,3363,7,18,0,0,3363,3364,7,14,0,0,3364,3365,7,18, - 0,0,3365,3366,7,4,0,0,3366,3367,7,8,0,0,3367,3368,7,10,0,0,3368, - 3369,5,95,0,0,3369,3370,7,7,0,0,3370,3371,7,8,0,0,3371,3372,7,3, - 0,0,3372,3373,7,18,0,0,3373,3374,7,6,0,0,3374,3375,7,2,0,0,3375, - 3376,7,11,0,0,3376,654,1,0,0,0,3377,3378,7,4,0,0,3378,3379,7,0,0, - 0,3379,3380,7,1,0,0,3380,3381,7,13,0,0,3381,3382,7,8,0,0,3382,656, - 1,0,0,0,3383,3384,7,4,0,0,3384,3385,7,0,0,0,3385,3386,7,1,0,0,3386, - 3387,7,13,0,0,3387,3388,7,8,0,0,3388,3389,7,18,0,0,3389,658,1,0, - 0,0,3390,3391,7,4,0,0,3391,3392,7,0,0,0,3392,3393,7,1,0,0,3393,3394, - 7,13,0,0,3394,3395,7,8,0,0,3395,3396,7,18,0,0,3396,3397,7,0,0,0, - 3397,3398,7,10,0,0,3398,3399,7,16,0,0,3399,3400,7,13,0,0,3400,3401, - 7,8,0,0,3401,660,1,0,0,0,3402,3403,7,4,0,0,3403,3404,7,1,0,0,3404, - 3405,7,13,0,0,3405,3406,7,16,0,0,3406,3407,7,3,0,0,3407,3408,7,2, - 0,0,3408,3409,7,16,0,0,3409,3410,7,8,0,0,3410,3411,7,3,0,0,3411, - 3412,7,4,0,0,3412,3413,7,6,0,0,3413,3414,7,8,0,0,3414,3415,7,18, - 0,0,3415,662,1,0,0,0,3416,3417,7,4,0,0,3417,3418,7,8,0,0,3418,3419, - 7,10,0,0,3419,3420,7,16,0,0,3420,3421,7,2,0,0,3421,3422,7,3,0,0, - 3422,3423,7,0,0,0,3423,3424,7,3,0,0,3424,3425,7,14,0,0,3425,664, - 1,0,0,0,3426,3427,7,4,0,0,3427,3428,7,8,0,0,3428,3429,7,3,0,0,3429, - 3430,7,10,0,0,3430,3431,7,6,0,0,3431,3432,7,11,0,0,3432,3433,7,0, - 0,0,3433,3434,7,4,0,0,3434,3435,7,8,0,0,3435,3436,7,9,0,0,3436,666, - 1,0,0,0,3437,3438,7,4,0,0,3438,3439,7,17,0,0,3439,3440,7,8,0,0,3440, - 3441,7,11,0,0,3441,668,1,0,0,0,3442,3443,7,4,0,0,3443,3444,7,6,0, - 0,3444,3445,7,10,0,0,3445,3446,7,8,0,0,3446,670,1,0,0,0,3447,3448, - 7,4,0,0,3448,3449,7,6,0,0,3449,3450,7,10,0,0,3450,3451,7,8,0,0,3451, - 3452,7,18,0,0,3452,3453,7,4,0,0,3453,3454,7,0,0,0,3454,3455,7,10, - 0,0,3455,3456,7,16,0,0,3456,672,1,0,0,0,3457,3458,7,4,0,0,3458,3459, - 7,6,0,0,3459,3460,7,10,0,0,3460,3461,7,8,0,0,3461,3462,7,18,0,0, - 3462,3463,7,4,0,0,3463,3464,7,0,0,0,3464,3465,7,10,0,0,3465,3466, - 7,16,0,0,3466,3467,7,13,0,0,3467,3468,7,2,0,0,3468,3469,7,5,0,0, - 3469,3470,7,0,0,0,3470,3471,7,13,0,0,3471,3472,7,4,0,0,3472,3473, - 7,15,0,0,3473,674,1,0,0,0,3474,3475,7,4,0,0,3475,3476,7,6,0,0,3476, - 3477,7,10,0,0,3477,3478,7,8,0,0,3478,3479,7,18,0,0,3479,3480,7,4, - 0,0,3480,3481,7,0,0,0,3481,3482,7,10,0,0,3482,3483,7,16,0,0,3483, - 3484,7,4,0,0,3484,3485,7,15,0,0,3485,676,1,0,0,0,3486,3487,7,4,0, - 0,3487,3488,7,6,0,0,3488,3489,7,11,0,0,3489,3490,7,14,0,0,3490,3491, - 7,6,0,0,3491,3492,7,11,0,0,3492,3493,7,4,0,0,3493,678,1,0,0,0,3494, - 3495,7,4,0,0,3495,3496,7,2,0,0,3496,680,1,0,0,0,3497,3498,7,4,0, - 0,3498,3499,7,2,0,0,3499,3500,7,19,0,0,3500,3501,7,5,0,0,3501,3502, - 7,17,0,0,3502,682,1,0,0,0,3503,3504,7,4,0,0,3504,3505,7,3,0,0,3505, - 3506,7,0,0,0,3506,3507,7,6,0,0,3507,3508,7,13,0,0,3508,3509,7,6, - 0,0,3509,3510,7,11,0,0,3510,3511,7,21,0,0,3511,684,1,0,0,0,3512, - 3513,7,4,0,0,3513,3514,7,3,0,0,3514,3515,7,0,0,0,3515,3516,7,11, - 0,0,3516,3517,7,18,0,0,3517,3518,7,0,0,0,3518,3519,7,5,0,0,3519, - 3520,7,4,0,0,3520,3521,7,6,0,0,3521,3522,7,2,0,0,3522,3523,7,11, - 0,0,3523,686,1,0,0,0,3524,3525,7,4,0,0,3525,3526,7,3,0,0,3526,3527, - 7,0,0,0,3527,3528,7,11,0,0,3528,3529,7,18,0,0,3529,3530,7,0,0,0, - 3530,3531,7,5,0,0,3531,3532,7,4,0,0,3532,3533,7,6,0,0,3533,3534, - 7,2,0,0,3534,3535,7,11,0,0,3535,3536,7,0,0,0,3536,3537,7,13,0,0, - 3537,688,1,0,0,0,3538,3539,7,4,0,0,3539,3540,7,3,0,0,3540,3541,7, - 0,0,0,3541,3542,7,11,0,0,3542,3543,7,18,0,0,3543,3544,7,0,0,0,3544, - 3545,7,5,0,0,3545,3546,7,4,0,0,3546,3547,7,6,0,0,3547,3548,7,2,0, - 0,3548,3549,7,11,0,0,3549,3550,7,18,0,0,3550,690,1,0,0,0,3551,3552, - 7,4,0,0,3552,3553,7,3,0,0,3553,3554,7,0,0,0,3554,3555,7,11,0,0,3555, - 3556,7,18,0,0,3556,3557,7,12,0,0,3557,3558,7,2,0,0,3558,3559,7,3, - 0,0,3559,3560,7,10,0,0,3560,692,1,0,0,0,3561,3562,7,4,0,0,3562,3563, - 7,3,0,0,3563,3564,7,6,0,0,3564,3565,7,21,0,0,3565,3566,7,21,0,0, - 3566,3567,7,8,0,0,3567,3568,7,3,0,0,3568,694,1,0,0,0,3569,3570,7, - 4,0,0,3570,3571,7,3,0,0,3571,3572,7,6,0,0,3572,3573,7,10,0,0,3573, - 696,1,0,0,0,3574,3575,7,4,0,0,3575,3576,7,3,0,0,3576,3577,7,19,0, - 0,3577,3578,7,8,0,0,3578,698,1,0,0,0,3579,3580,7,4,0,0,3580,3581, - 7,3,0,0,3581,3582,7,19,0,0,3582,3583,7,11,0,0,3583,3584,7,5,0,0, - 3584,3585,7,0,0,0,3585,3586,7,4,0,0,3586,3587,7,8,0,0,3587,700,1, - 0,0,0,3588,3589,7,4,0,0,3589,3590,7,14,0,0,3590,3591,7,16,0,0,3591, - 3592,7,8,0,0,3592,702,1,0,0,0,3593,3594,7,19,0,0,3594,3595,7,11, - 0,0,3595,3596,7,0,0,0,3596,3597,7,3,0,0,3597,3598,7,5,0,0,3598,3599, - 7,17,0,0,3599,3600,7,6,0,0,3600,3601,7,7,0,0,3601,3602,7,8,0,0,3602, - 704,1,0,0,0,3603,3604,7,19,0,0,3604,3605,7,11,0,0,3605,3606,7,1, - 0,0,3606,3607,7,2,0,0,3607,3608,7,19,0,0,3608,3609,7,11,0,0,3609, - 3610,7,9,0,0,3610,3611,7,8,0,0,3611,3612,7,9,0,0,3612,706,1,0,0, - 0,3613,3614,7,19,0,0,3614,3615,7,11,0,0,3615,3616,7,9,0,0,3616,3617, - 7,2,0,0,3617,708,1,0,0,0,3618,3619,7,19,0,0,3619,3620,7,11,0,0,3620, - 3621,7,6,0,0,3621,3622,7,2,0,0,3622,3623,7,11,0,0,3623,710,1,0,0, - 0,3624,3625,7,19,0,0,3625,3626,7,11,0,0,3626,3627,7,6,0,0,3627,3628, - 7,2,0,0,3628,3629,7,11,0,0,3629,3630,7,4,0,0,3630,3631,7,14,0,0, - 3631,3632,7,16,0,0,3632,3633,7,8,0,0,3633,712,1,0,0,0,3634,3635, - 7,19,0,0,3635,3636,7,11,0,0,3636,3637,7,6,0,0,3637,3638,7,25,0,0, - 3638,3639,7,19,0,0,3639,3640,7,8,0,0,3640,714,1,0,0,0,3641,3642, - 7,19,0,0,3642,3643,7,11,0,0,3643,3644,7,6,0,0,3644,3645,7,25,0,0, - 3645,3646,7,19,0,0,3646,3647,7,8,0,0,3647,3648,7,24,0,0,3648,3649, - 7,2,0,0,3649,3650,7,6,0,0,3650,3651,7,11,0,0,3651,716,1,0,0,0,3652, - 3653,7,19,0,0,3653,3654,7,11,0,0,3654,3655,7,22,0,0,3655,3656,7, - 11,0,0,3656,3657,7,2,0,0,3657,3658,7,20,0,0,3658,3659,7,11,0,0,3659, - 718,1,0,0,0,3660,3661,7,19,0,0,3661,3662,7,11,0,0,3662,3663,7,13, - 0,0,3663,3664,7,2,0,0,3664,3665,7,5,0,0,3665,3666,7,22,0,0,3666, - 720,1,0,0,0,3667,3668,7,19,0,0,3668,3669,7,11,0,0,3669,3670,7,10, - 0,0,3670,3671,7,0,0,0,3671,3672,7,11,0,0,3672,3673,7,0,0,0,3673, - 3674,7,21,0,0,3674,3675,7,8,0,0,3675,3676,7,9,0,0,3676,722,1,0,0, - 0,3677,3678,7,19,0,0,3678,3679,7,11,0,0,3679,3680,7,18,0,0,3680, - 3681,7,8,0,0,3681,3682,7,4,0,0,3682,724,1,0,0,0,3683,3684,7,19,0, - 0,3684,3685,7,11,0,0,3685,3686,7,18,0,0,3686,3687,7,6,0,0,3687,3688, - 7,21,0,0,3688,3689,7,11,0,0,3689,3690,7,8,0,0,3690,3691,7,9,0,0, - 3691,726,1,0,0,0,3692,3693,7,19,0,0,3693,3694,7,16,0,0,3694,3695, - 7,9,0,0,3695,3696,7,0,0,0,3696,3697,7,4,0,0,3697,3698,7,8,0,0,3698, - 728,1,0,0,0,3699,3700,7,19,0,0,3700,3701,7,3,0,0,3701,3702,7,6,0, - 0,3702,730,1,0,0,0,3703,3704,7,19,0,0,3704,3705,7,3,0,0,3705,3706, - 7,13,0,0,3706,732,1,0,0,0,3707,3708,7,19,0,0,3708,3709,7,18,0,0, - 3709,3710,7,8,0,0,3710,734,1,0,0,0,3711,3712,7,19,0,0,3712,3713, - 7,18,0,0,3713,3714,7,8,0,0,3714,3715,7,3,0,0,3715,736,1,0,0,0,3716, - 3717,7,19,0,0,3717,3718,7,18,0,0,3718,3719,7,6,0,0,3719,3720,7,11, - 0,0,3720,3721,7,21,0,0,3721,738,1,0,0,0,3722,3723,7,19,0,0,3723, - 3724,7,4,0,0,3724,3725,7,5,0,0,3725,740,1,0,0,0,3726,3727,7,19,0, - 0,3727,3728,7,4,0,0,3728,3729,7,5,0,0,3729,3730,5,95,0,0,3730,3731, - 7,4,0,0,3731,3732,7,10,0,0,3732,3733,7,8,0,0,3733,3734,7,18,0,0, - 3734,3735,7,4,0,0,3735,3736,7,0,0,0,3736,3737,7,10,0,0,3737,3738, - 7,16,0,0,3738,742,1,0,0,0,3739,3740,7,7,0,0,3740,3741,7,0,0,0,3741, - 3742,7,13,0,0,3742,3743,7,6,0,0,3743,3744,7,9,0,0,3744,3745,7,0, - 0,0,3745,3746,7,4,0,0,3746,3747,7,8,0,0,3747,744,1,0,0,0,3748,3749, - 7,7,0,0,3749,3750,7,0,0,0,3750,3751,7,13,0,0,3751,3752,7,19,0,0, - 3752,3753,7,8,0,0,3753,3754,7,18,0,0,3754,746,1,0,0,0,3755,3756, - 5,36,0,0,3756,3757,7,7,0,0,3757,3758,7,0,0,0,3758,3759,7,13,0,0, - 3759,3760,7,19,0,0,3760,3761,7,8,0,0,3761,3762,5,36,0,0,3762,748, - 1,0,0,0,3763,3764,7,7,0,0,3764,3765,7,0,0,0,3765,3766,7,3,0,0,3766, - 3767,7,5,0,0,3767,3768,7,17,0,0,3768,3769,7,0,0,0,3769,3770,7,3, - 0,0,3770,750,1,0,0,0,3771,3772,7,7,0,0,3772,3773,7,8,0,0,3773,3774, - 7,5,0,0,3774,3775,7,4,0,0,3775,3776,7,2,0,0,3776,3777,7,3,0,0,3777, - 3778,7,6,0,0,3778,3779,7,15,0,0,3779,3780,7,0,0,0,3780,3781,7,4, - 0,0,3781,3782,7,6,0,0,3782,3783,7,2,0,0,3783,3784,7,11,0,0,3784, - 752,1,0,0,0,3785,3786,7,7,0,0,3786,3787,7,6,0,0,3787,3788,7,8,0, - 0,3788,3789,7,20,0,0,3789,754,1,0,0,0,3790,3791,7,7,0,0,3791,3792, - 7,6,0,0,3792,3793,7,8,0,0,3793,3794,7,20,0,0,3794,3795,7,18,0,0, - 3795,756,1,0,0,0,3796,3797,7,20,0,0,3797,3798,7,0,0,0,3798,3799, - 7,6,0,0,3799,3800,7,4,0,0,3800,758,1,0,0,0,3801,3802,7,20,0,0,3802, - 3803,7,8,0,0,3803,3804,7,8,0,0,3804,3805,7,22,0,0,3805,760,1,0,0, - 0,3806,3807,7,20,0,0,3807,3808,7,8,0,0,3808,3809,7,8,0,0,3809,3810, - 7,22,0,0,3810,3811,7,18,0,0,3811,762,1,0,0,0,3812,3813,7,20,0,0, - 3813,3814,7,17,0,0,3814,3815,7,8,0,0,3815,3816,7,11,0,0,3816,764, - 1,0,0,0,3817,3818,7,20,0,0,3818,3819,7,17,0,0,3819,3820,7,8,0,0, - 3820,3821,7,3,0,0,3821,3822,7,8,0,0,3822,766,1,0,0,0,3823,3824,7, - 20,0,0,3824,3825,7,17,0,0,3825,3826,7,6,0,0,3826,3827,7,13,0,0,3827, - 3828,7,8,0,0,3828,768,1,0,0,0,3829,3830,7,20,0,0,3830,3831,7,6,0, - 0,3831,3832,7,11,0,0,3832,3833,7,9,0,0,3833,3834,7,2,0,0,3834,3835, - 7,20,0,0,3835,770,1,0,0,0,3836,3837,7,20,0,0,3837,3838,7,6,0,0,3838, - 3839,7,4,0,0,3839,3840,7,17,0,0,3840,772,1,0,0,0,3841,3842,7,20, - 0,0,3842,3843,7,6,0,0,3843,3844,7,4,0,0,3844,3845,7,17,0,0,3845, - 3846,7,6,0,0,3846,3847,7,11,0,0,3847,774,1,0,0,0,3848,3849,7,20, - 0,0,3849,3850,7,2,0,0,3850,3851,7,3,0,0,3851,3852,7,22,0,0,3852, - 776,1,0,0,0,3853,3854,7,20,0,0,3854,3855,7,2,0,0,3855,3856,7,3,0, - 0,3856,3857,7,22,0,0,3857,3858,7,13,0,0,3858,3859,7,2,0,0,3859,3860, - 7,0,0,0,3860,3861,7,9,0,0,3861,778,1,0,0,0,3862,3863,7,20,0,0,3863, - 3864,7,3,0,0,3864,3865,7,6,0,0,3865,3866,7,4,0,0,3866,3867,7,8,0, - 0,3867,780,1,0,0,0,3868,3869,7,14,0,0,3869,3870,7,8,0,0,3870,3871, - 7,0,0,0,3871,3872,7,3,0,0,3872,782,1,0,0,0,3873,3874,7,14,0,0,3874, - 3875,7,8,0,0,3875,3876,7,0,0,0,3876,3877,7,3,0,0,3877,3878,7,18, - 0,0,3878,784,1,0,0,0,3879,3880,7,15,0,0,3880,3881,7,2,0,0,3881,3882, - 7,11,0,0,3882,3883,7,8,0,0,3883,786,1,0,0,0,3884,3885,5,46,0,0,3885, - 788,1,0,0,0,3886,3887,5,58,0,0,3887,790,1,0,0,0,3888,3889,5,44,0, - 0,3889,792,1,0,0,0,3890,3891,5,59,0,0,3891,794,1,0,0,0,3892,3893, - 5,40,0,0,3893,796,1,0,0,0,3894,3895,5,41,0,0,3895,798,1,0,0,0,3896, - 3897,5,91,0,0,3897,800,1,0,0,0,3898,3899,5,93,0,0,3899,802,1,0,0, - 0,3900,3901,5,123,0,0,3901,804,1,0,0,0,3902,3903,5,125,0,0,3903, - 806,1,0,0,0,3904,3908,5,61,0,0,3905,3906,5,61,0,0,3906,3908,5,61, - 0,0,3907,3904,1,0,0,0,3907,3905,1,0,0,0,3908,808,1,0,0,0,3909,3910, - 5,60,0,0,3910,3911,5,61,0,0,3911,3912,5,62,0,0,3912,810,1,0,0,0, - 3913,3914,5,60,0,0,3914,3918,5,62,0,0,3915,3916,5,33,0,0,3916,3918, - 5,61,0,0,3917,3913,1,0,0,0,3917,3915,1,0,0,0,3918,812,1,0,0,0,3919, - 3920,5,60,0,0,3920,3921,5,61,0,0,3921,814,1,0,0,0,3922,3923,5,60, - 0,0,3923,816,1,0,0,0,3924,3925,5,62,0,0,3925,3926,5,61,0,0,3926, - 818,1,0,0,0,3927,3928,5,62,0,0,3928,820,1,0,0,0,3929,3930,5,47,0, - 0,3930,822,1,0,0,0,3931,3932,5,43,0,0,3932,824,1,0,0,0,3933,3934, - 5,45,0,0,3934,826,1,0,0,0,3935,3936,5,42,0,0,3936,828,1,0,0,0,3937, - 3938,5,37,0,0,3938,830,1,0,0,0,3939,3940,7,9,0,0,3940,3941,7,6,0, - 0,3941,3942,7,7,0,0,3942,832,1,0,0,0,3943,3944,5,33,0,0,3944,834, - 1,0,0,0,3945,3946,5,38,0,0,3946,836,1,0,0,0,3947,3948,5,126,0,0, - 3948,838,1,0,0,0,3949,3950,5,124,0,0,3950,840,1,0,0,0,3951,3952, - 5,124,0,0,3952,3953,5,124,0,0,3953,842,1,0,0,0,3954,3955,5,94,0, - 0,3955,844,1,0,0,0,3956,3957,5,63,0,0,3957,846,1,0,0,0,3958,3959, - 5,36,0,0,3959,848,1,0,0,0,3960,3966,5,39,0,0,3961,3965,8,26,0,0, - 3962,3963,5,92,0,0,3963,3965,9,0,0,0,3964,3961,1,0,0,0,3964,3962, - 1,0,0,0,3965,3968,1,0,0,0,3966,3964,1,0,0,0,3966,3967,1,0,0,0,3967, - 3969,1,0,0,0,3968,3966,1,0,0,0,3969,3981,5,39,0,0,3970,3976,5,34, - 0,0,3971,3975,8,27,0,0,3972,3973,5,92,0,0,3973,3975,9,0,0,0,3974, - 3971,1,0,0,0,3974,3972,1,0,0,0,3975,3978,1,0,0,0,3976,3974,1,0,0, - 0,3976,3977,1,0,0,0,3977,3979,1,0,0,0,3978,3976,1,0,0,0,3979,3981, - 5,34,0,0,3980,3960,1,0,0,0,3980,3970,1,0,0,0,3981,3982,1,0,0,0,3982, - 3980,1,0,0,0,3982,3983,1,0,0,0,3983,850,1,0,0,0,3984,3994,3,849, - 424,0,3985,3986,5,48,0,0,3986,3989,7,23,0,0,3987,3990,3,867,433, - 0,3988,3990,3,869,434,0,3989,3987,1,0,0,0,3989,3988,1,0,0,0,3990, - 3991,1,0,0,0,3991,3989,1,0,0,0,3991,3992,1,0,0,0,3992,3994,1,0,0, - 0,3993,3984,1,0,0,0,3993,3985,1,0,0,0,3994,852,1,0,0,0,3995,3997, - 3,869,434,0,3996,3995,1,0,0,0,3997,3998,1,0,0,0,3998,3996,1,0,0, - 0,3998,3999,1,0,0,0,3999,4000,1,0,0,0,4000,4001,7,28,0,0,4001,854, - 1,0,0,0,4002,4004,3,859,429,0,4003,4005,7,1,0,0,4004,4003,1,0,0, - 0,4004,4005,1,0,0,0,4005,4006,1,0,0,0,4006,4007,7,9,0,0,4007,856, - 1,0,0,0,4008,4010,3,869,434,0,4009,4008,1,0,0,0,4010,4011,1,0,0, - 0,4011,4009,1,0,0,0,4011,4012,1,0,0,0,4012,4013,1,0,0,0,4013,4014, - 7,29,0,0,4014,858,1,0,0,0,4015,4017,3,869,434,0,4016,4015,1,0,0, - 0,4017,4018,1,0,0,0,4018,4016,1,0,0,0,4018,4019,1,0,0,0,4019,4031, - 1,0,0,0,4020,4024,3,787,393,0,4021,4023,3,869,434,0,4022,4021,1, - 0,0,0,4023,4026,1,0,0,0,4024,4022,1,0,0,0,4024,4025,1,0,0,0,4025, - 4028,1,0,0,0,4026,4024,1,0,0,0,4027,4029,3,871,435,0,4028,4027,1, - 0,0,0,4028,4029,1,0,0,0,4029,4032,1,0,0,0,4030,4032,3,871,435,0, - 4031,4020,1,0,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0,0,4032,860,1, - 0,0,0,4033,4036,3,865,432,0,4034,4036,3,869,434,0,4035,4033,1,0, - 0,0,4035,4034,1,0,0,0,4036,4042,1,0,0,0,4037,4041,3,865,432,0,4038, - 4041,3,869,434,0,4039,4041,5,95,0,0,4040,4037,1,0,0,0,4040,4038, - 1,0,0,0,4040,4039,1,0,0,0,4041,4044,1,0,0,0,4042,4040,1,0,0,0,4042, - 4043,1,0,0,0,4043,4055,1,0,0,0,4044,4042,1,0,0,0,4045,4055,3,863, - 431,0,4046,4048,5,96,0,0,4047,4049,3,873,436,0,4048,4047,1,0,0,0, - 4049,4050,1,0,0,0,4050,4048,1,0,0,0,4050,4051,1,0,0,0,4051,4052, - 1,0,0,0,4052,4053,5,96,0,0,4053,4055,1,0,0,0,4054,4035,1,0,0,0,4054, - 4045,1,0,0,0,4054,4046,1,0,0,0,4055,862,1,0,0,0,4056,4062,5,96,0, - 0,4057,4058,5,96,0,0,4058,4061,5,96,0,0,4059,4061,8,30,0,0,4060, - 4057,1,0,0,0,4060,4059,1,0,0,0,4061,4064,1,0,0,0,4062,4060,1,0,0, - 0,4062,4063,1,0,0,0,4063,4065,1,0,0,0,4064,4062,1,0,0,0,4065,4066, - 5,96,0,0,4066,864,1,0,0,0,4067,4068,7,31,0,0,4068,866,1,0,0,0,4069, - 4070,7,32,0,0,4070,868,1,0,0,0,4071,4072,2,48,57,0,4072,870,1,0, - 0,0,4073,4076,7,8,0,0,4074,4077,3,823,411,0,4075,4077,3,825,412, - 0,4076,4074,1,0,0,0,4076,4075,1,0,0,0,4076,4077,1,0,0,0,4077,4079, - 1,0,0,0,4078,4080,3,869,434,0,4079,4078,1,0,0,0,4080,4081,1,0,0, - 0,4081,4079,1,0,0,0,4081,4082,1,0,0,0,4082,872,1,0,0,0,4083,4100, - 7,33,0,0,4084,4100,3,823,411,0,4085,4100,3,827,413,0,4086,4100,3, - 845,422,0,4087,4100,3,825,412,0,4088,4100,3,787,393,0,4089,4100, - 3,795,397,0,4090,4100,3,797,398,0,4091,4100,3,799,399,0,4092,4100, - 3,801,400,0,4093,4100,3,803,401,0,4094,4100,3,805,402,0,4095,4100, - 3,843,421,0,4096,4100,3,839,419,0,4097,4100,3,847,423,0,4098,4100, - 3,833,416,0,4099,4083,1,0,0,0,4099,4084,1,0,0,0,4099,4085,1,0,0, - 0,4099,4086,1,0,0,0,4099,4087,1,0,0,0,4099,4088,1,0,0,0,4099,4089, - 1,0,0,0,4099,4090,1,0,0,0,4099,4091,1,0,0,0,4099,4092,1,0,0,0,4099, - 4093,1,0,0,0,4099,4094,1,0,0,0,4099,4095,1,0,0,0,4099,4096,1,0,0, - 0,4099,4097,1,0,0,0,4099,4098,1,0,0,0,4100,874,1,0,0,0,4101,4105, - 5,95,0,0,4102,4106,3,865,432,0,4103,4106,3,869,434,0,4104,4106,7, - 34,0,0,4105,4102,1,0,0,0,4105,4103,1,0,0,0,4105,4104,1,0,0,0,4106, - 4107,1,0,0,0,4107,4105,1,0,0,0,4107,4108,1,0,0,0,4108,876,1,0,0, - 0,4109,4110,7,35,0,0,4110,4111,1,0,0,0,4111,4112,6,438,0,0,4112, - 878,1,0,0,0,4113,4114,5,45,0,0,4114,4115,5,45,0,0,4115,4119,1,0, - 0,0,4116,4118,8,36,0,0,4117,4116,1,0,0,0,4118,4121,1,0,0,0,4119, - 4117,1,0,0,0,4119,4120,1,0,0,0,4120,4122,1,0,0,0,4121,4119,1,0,0, - 0,4122,4123,6,439,0,0,4123,880,1,0,0,0,4124,4127,3,883,441,0,4125, - 4127,3,885,442,0,4126,4124,1,0,0,0,4126,4125,1,0,0,0,4127,882,1, - 0,0,0,4128,4129,5,47,0,0,4129,4130,5,42,0,0,4130,4131,5,43,0,0,4131, - 4136,1,0,0,0,4132,4135,3,881,440,0,4133,4135,9,0,0,0,4134,4132,1, - 0,0,0,4134,4133,1,0,0,0,4135,4138,1,0,0,0,4136,4137,1,0,0,0,4136, - 4134,1,0,0,0,4137,4139,1,0,0,0,4138,4136,1,0,0,0,4139,4140,5,42, - 0,0,4140,4141,5,47,0,0,4141,4142,1,0,0,0,4142,4143,6,441,0,0,4143, - 884,1,0,0,0,4144,4145,5,47,0,0,4145,4146,5,42,0,0,4146,4151,1,0, - 0,0,4147,4150,3,881,440,0,4148,4150,9,0,0,0,4149,4147,1,0,0,0,4149, - 4148,1,0,0,0,4150,4153,1,0,0,0,4151,4152,1,0,0,0,4151,4149,1,0,0, - 0,4152,4154,1,0,0,0,4153,4151,1,0,0,0,4154,4155,5,42,0,0,4155,4156, - 5,47,0,0,4156,4157,1,0,0,0,4157,4158,6,442,0,0,4158,886,1,0,0,0, - 37,0,3907,3917,3964,3966,3974,3976,3980,3982,3989,3991,3993,3998, - 4004,4011,4018,4024,4028,4031,4035,4040,4042,4050,4054,4060,4062, - 4076,4081,4099,4105,4107,4119,4126,4134,4136,4149,4151,1,0,1,0 + 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, + 1,345,1,345,1,346,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,348,1,348, + 1,348,1,348,1,348,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,352,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,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,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,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,364,1,364,1,364,1,364,1,364,1,364,1,364,1,365,1,365,1,365,1,365, + 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,369,1,369,1,369,1,369,1,369,1,369,1,370,1,370,1,370, + 1,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, + 1,371,1,371,1,371,1,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,373,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,375,1,375,1,376,1,376,1,376,1,376,1,376,1,376,1,376,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,378, + 1,378,1,378,1,378,1,378,1,378,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,382, + 1,382,1,382,1,382,1,382,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,385,1,385,1,385,1,385,1,385,1,385, + 1,385,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,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,389,1,390,1,390,1,390,1,390,1,390,1,390, + 1,391,1,391,1,391,1,391,1,391,1,392,1,392,1,392,1,392,1,392,1,392, + 1,393,1,393,1,393,1,393,1,393,1,394,1,394,1,395,1,395,1,396,1,396, + 1,397,1,397,1,398,1,398,1,399,1,399,1,400,1,400,1,401,1,401,1,402, + 1,402,1,403,1,403,1,404,1,404,1,404,3,404,3920,8,404,1,405,1,405, + 1,405,1,405,1,406,1,406,1,406,1,406,3,406,3930,8,406,1,407,1,407, + 1,407,1,408,1,408,1,409,1,409,1,409,1,410,1,410,1,411,1,411,1,412, + 1,412,1,413,1,413,1,414,1,414,1,415,1,415,1,416,1,416,1,416,1,416, + 1,417,1,417,1,418,1,418,1,419,1,419,1,420,1,420,1,421,1,421,1,421, + 1,422,1,422,1,423,1,423,1,424,1,424,1,425,1,425,1,425,1,425,5,425, + 3977,8,425,10,425,12,425,3980,9,425,1,425,1,425,1,425,1,425,1,425, + 5,425,3987,8,425,10,425,12,425,3990,9,425,1,425,4,425,3993,8,425, + 11,425,12,425,3994,1,426,1,426,1,426,1,426,1,426,4,426,4002,8,426, + 11,426,12,426,4003,3,426,4006,8,426,1,427,4,427,4009,8,427,11,427, + 12,427,4010,1,427,1,427,1,428,1,428,3,428,4017,8,428,1,428,1,428, + 1,429,4,429,4022,8,429,11,429,12,429,4023,1,429,1,429,1,430,4,430, + 4029,8,430,11,430,12,430,4030,1,430,1,430,5,430,4035,8,430,10,430, + 12,430,4038,9,430,1,430,3,430,4041,8,430,1,430,3,430,4044,8,430, + 1,431,1,431,3,431,4048,8,431,1,431,1,431,1,431,5,431,4053,8,431, + 10,431,12,431,4056,9,431,1,431,1,431,1,431,4,431,4061,8,431,11,431, + 12,431,4062,1,431,1,431,3,431,4067,8,431,1,432,1,432,1,432,1,432, + 5,432,4073,8,432,10,432,12,432,4076,9,432,1,432,1,432,1,433,1,433, + 1,434,1,434,1,435,1,435,1,436,1,436,1,436,3,436,4089,8,436,1,436, + 4,436,4092,8,436,11,436,12,436,4093,1,437,1,437,1,437,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, + 3,437,4112,8,437,1,438,1,438,1,438,1,438,4,438,4118,8,438,11,438, + 12,438,4119,1,439,1,439,1,439,1,439,1,440,1,440,1,440,1,440,5,440, + 4130,8,440,10,440,12,440,4133,9,440,1,440,1,440,1,441,1,441,3,441, + 4139,8,441,1,442,1,442,1,442,1,442,1,442,1,442,5,442,4147,8,442, + 10,442,12,442,4150,9,442,1,442,1,442,1,442,1,442,1,442,1,443,1,443, + 1,443,1,443,1,443,5,443,4162,8,443,10,443,12,443,4165,9,443,1,443, + 1,443,1,443,1,443,1,443,2,4148,4163,0,444,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,0,867,0,869, + 0,871,0,873,0,875,0,877,433,879,434,881,435,883,436,885,437,887, + 438,1,0,37,2,0,65,65,97,97,2,0,66,66,98,98,2,0,79,79,111,111,2,0, + 82,82,114,114,2,0,84,84,116,116,2,0,67,67,99,99,2,0,73,73,105,105, + 2,0,86,86,118,118,2,0,69,69,101,101,2,0,68,68,100,100,2,0,77,77, + 109,109,2,0,78,78,110,110,2,0,70,70,102,102,2,0,76,76,108,108,2, + 0,89,89,121,121,2,0,90,90,122,122,2,0,80,80,112,112,2,0,72,72,104, + 104,2,0,83,83,115,115,2,0,85,85,117,117,2,0,87,87,119,119,2,0,71, + 71,103,103,2,0,75,75,107,107,2,0,88,88,120,120,2,0,74,74,106,106, + 2,0,81,81,113,113,2,0,39,39,92,92,2,0,34,34,92,92,6,0,76,76,83,83, + 89,89,108,108,115,115,121,121,8,0,66,66,71,71,75,75,77,77,98,98, + 103,103,107,107,109,109,1,0,96,96,2,0,65,90,97,122,2,0,65,70,97, + 102,4,0,48,57,65,90,95,95,97,122,3,0,45,46,58,58,95,95,3,0,9,10, + 13,13,32,32,2,0,10,10,13,13,4219,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,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,1,889,1,0,0,0, + 3,895,1,0,0,0,5,904,1,0,0,0,7,911,1,0,0,0,9,915,1,0,0,0,11,921,1, + 0,0,0,13,927,1,0,0,0,15,931,1,0,0,0,17,946,1,0,0,0,19,952,1,0,0, + 0,21,960,1,0,0,0,23,964,1,0,0,0,25,969,1,0,0,0,27,973,1,0,0,0,29, + 985,1,0,0,0,31,993,1,0,0,0,33,999,1,0,0,0,35,1002,1,0,0,0,37,1006, + 1,0,0,0,39,1010,1,0,0,0,41,1013,1,0,0,0,43,1027,1,0,0,0,45,1038, + 1,0,0,0,47,1044,1,0,0,0,49,1051,1,0,0,0,51,1059,1,0,0,0,53,1066, + 1,0,0,0,55,1073,1,0,0,0,57,1081,1,0,0,0,59,1086,1,0,0,0,61,1093, + 1,0,0,0,63,1101,1,0,0,0,65,1104,1,0,0,0,67,1110,1,0,0,0,69,1118, + 1,0,0,0,71,1123,1,0,0,0,73,1128,1,0,0,0,75,1132,1,0,0,0,77,1139, + 1,0,0,0,79,1144,1,0,0,0,81,1150,1,0,0,0,83,1158,1,0,0,0,85,1168, + 1,0,0,0,87,1182,1,0,0,0,89,1193,1,0,0,0,91,1200,1,0,0,0,93,1208, + 1,0,0,0,95,1216,1,0,0,0,97,1223,1,0,0,0,99,1231,1,0,0,0,101,1243, + 1,0,0,0,103,1256,1,0,0,0,105,1264,1,0,0,0,107,1276,1,0,0,0,109,1281, + 1,0,0,0,111,1292,1,0,0,0,113,1301,1,0,0,0,115,1306,1,0,0,0,117,1313, + 1,0,0,0,119,1318,1,0,0,0,121,1324,1,0,0,0,123,1329,1,0,0,0,125,1337, + 1,0,0,0,127,1350,1,0,0,0,129,1368,1,0,0,0,131,1375,1,0,0,0,133,1380, + 1,0,0,0,135,1389,1,0,0,0,137,1399,1,0,0,0,139,1409,1,0,0,0,141,1420, + 1,0,0,0,143,1425,1,0,0,0,145,1434,1,0,0,0,147,1438,1,0,0,0,149,1443, + 1,0,0,0,151,1453,1,0,0,0,153,1466,1,0,0,0,155,1479,1,0,0,0,157,1483, + 1,0,0,0,159,1489,1,0,0,0,161,1493,1,0,0,0,163,1501,1,0,0,0,165,1509, + 1,0,0,0,167,1517,1,0,0,0,169,1526,1,0,0,0,171,1534,1,0,0,0,173,1541, + 1,0,0,0,175,1551,1,0,0,0,177,1562,1,0,0,0,179,1567,1,0,0,0,181,1576, + 1,0,0,0,183,1583,1,0,0,0,185,1595,1,0,0,0,187,1605,1,0,0,0,189,1613, + 1,0,0,0,191,1622,1,0,0,0,193,1631,1,0,0,0,195,1642,1,0,0,0,197,1654, + 1,0,0,0,199,1657,1,0,0,0,201,1664,1,0,0,0,203,1669,1,0,0,0,205,1677, + 1,0,0,0,207,1682,1,0,0,0,209,1689,1,0,0,0,211,1694,1,0,0,0,213,1701, + 1,0,0,0,215,1709,1,0,0,0,217,1713,1,0,0,0,219,1722,1,0,0,0,221,1730, + 1,0,0,0,223,1736,1,0,0,0,225,1743,1,0,0,0,227,1752,1,0,0,0,229,1762, + 1,0,0,0,231,1770,1,0,0,0,233,1779,1,0,0,0,235,1786,1,0,0,0,237,1803, + 1,0,0,0,239,1811,1,0,0,0,241,1818,1,0,0,0,243,1829,1,0,0,0,245,1838, + 1,0,0,0,247,1847,1,0,0,0,249,1855,1,0,0,0,251,1861,1,0,0,0,253,1867, + 1,0,0,0,255,1874,1,0,0,0,257,1879,1,0,0,0,259,1890,1,0,0,0,261,1896, + 1,0,0,0,263,1902,1,0,0,0,265,1908,1,0,0,0,267,1918,1,0,0,0,269,1922, + 1,0,0,0,271,1928,1,0,0,0,273,1936,1,0,0,0,275,1943,1,0,0,0,277,1953, + 1,0,0,0,279,1958,1,0,0,0,281,1963,1,0,0,0,283,1972,1,0,0,0,285,1982, + 1,0,0,0,287,1988,1,0,0,0,289,1994,1,0,0,0,291,2003,1,0,0,0,293,2010, + 1,0,0,0,295,2023,1,0,0,0,297,2028,1,0,0,0,299,2034,1,0,0,0,301,2048, + 1,0,0,0,303,2051,1,0,0,0,305,2058,1,0,0,0,307,2065,1,0,0,0,309,2068, + 1,0,0,0,311,2074,1,0,0,0,313,2082,1,0,0,0,315,2088,1,0,0,0,317,2095, + 1,0,0,0,319,2107,1,0,0,0,321,2119,1,0,0,0,323,2126,1,0,0,0,325,2130, + 1,0,0,0,327,2138,1,0,0,0,329,2148,1,0,0,0,331,2157,1,0,0,0,333,2162, + 1,0,0,0,335,2165,1,0,0,0,337,2175,1,0,0,0,339,2181,1,0,0,0,341,2185, + 1,0,0,0,343,2190,1,0,0,0,345,2199,1,0,0,0,347,2203,1,0,0,0,349,2208, + 1,0,0,0,351,2214,1,0,0,0,353,2219,1,0,0,0,355,2224,1,0,0,0,357,2232, + 1,0,0,0,359,2240,1,0,0,0,361,2245,1,0,0,0,363,2250,1,0,0,0,365,2256, + 1,0,0,0,367,2266,1,0,0,0,369,2271,1,0,0,0,371,2277,1,0,0,0,373,2283, + 1,0,0,0,375,2288,1,0,0,0,377,2294,1,0,0,0,379,2303,1,0,0,0,381,2308, + 1,0,0,0,383,2314,1,0,0,0,385,2322,1,0,0,0,387,2327,1,0,0,0,389,2333, + 1,0,0,0,391,2341,1,0,0,0,393,2357,1,0,0,0,395,2368,1,0,0,0,397,2372, + 1,0,0,0,399,2380,1,0,0,0,401,2388,1,0,0,0,403,2396,1,0,0,0,405,2409, + 1,0,0,0,407,2415,1,0,0,0,409,2424,1,0,0,0,411,2430,1,0,0,0,413,2437, + 1,0,0,0,415,2445,1,0,0,0,417,2451,1,0,0,0,419,2458,1,0,0,0,421,2463, + 1,0,0,0,423,2468,1,0,0,0,425,2473,1,0,0,0,427,2478,1,0,0,0,429,2485, + 1,0,0,0,431,2492,1,0,0,0,433,2496,1,0,0,0,435,2507,1,0,0,0,437,2515, + 1,0,0,0,439,2520,1,0,0,0,441,2526,1,0,0,0,443,2529,1,0,0,0,445,2537, + 1,0,0,0,447,2544,1,0,0,0,449,2547,1,0,0,0,451,2552,1,0,0,0,453,2561, + 1,0,0,0,455,2568,1,0,0,0,457,2571,1,0,0,0,459,2577,1,0,0,0,461,2581, + 1,0,0,0,463,2587,1,0,0,0,465,2600,1,0,0,0,467,2613,1,0,0,0,469,2618, + 1,0,0,0,471,2628,1,0,0,0,473,2634,1,0,0,0,475,2644,1,0,0,0,477,2656, + 1,0,0,0,479,2667,1,0,0,0,481,2672,1,0,0,0,483,2680,1,0,0,0,485,2690, + 1,0,0,0,487,2695,1,0,0,0,489,2701,1,0,0,0,491,2706,1,0,0,0,493,2711, + 1,0,0,0,495,2721,1,0,0,0,497,2731,1,0,0,0,499,2739,1,0,0,0,501,2748, + 1,0,0,0,503,2756,1,0,0,0,505,2767,1,0,0,0,507,2777,1,0,0,0,509,2788, + 1,0,0,0,511,2794,1,0,0,0,513,2802,1,0,0,0,515,2810,1,0,0,0,517,2816, + 1,0,0,0,519,2834,1,0,0,0,521,2840,1,0,0,0,523,2845,1,0,0,0,525,2854, + 1,0,0,0,527,2860,1,0,0,0,529,2865,1,0,0,0,531,2873,1,0,0,0,533,2886, + 1,0,0,0,535,2899,1,0,0,0,537,2906,1,0,0,0,539,2917,1,0,0,0,541,2924, + 1,0,0,0,543,2931,1,0,0,0,545,2936,1,0,0,0,547,2943,1,0,0,0,549,2950, + 1,0,0,0,551,2965,1,0,0,0,553,2972,1,0,0,0,555,2977,1,0,0,0,557,2985, + 1,0,0,0,559,2997,1,0,0,0,561,3006,1,0,0,0,563,3014,1,0,0,0,565,3023, + 1,0,0,0,567,3030,1,0,0,0,569,3038,1,0,0,0,571,3044,1,0,0,0,573,3050, + 1,0,0,0,575,3055,1,0,0,0,577,3061,1,0,0,0,579,3070,1,0,0,0,581,3077, + 1,0,0,0,583,3081,1,0,0,0,585,3086,1,0,0,0,587,3096,1,0,0,0,589,3114, + 1,0,0,0,591,3121,1,0,0,0,593,3129,1,0,0,0,595,3136,1,0,0,0,597,3144, + 1,0,0,0,599,3151,1,0,0,0,601,3156,1,0,0,0,603,3162,1,0,0,0,605,3178, + 1,0,0,0,607,3185,1,0,0,0,609,3189,1,0,0,0,611,3194,1,0,0,0,613,3215, + 1,0,0,0,615,3222,1,0,0,0,617,3227,1,0,0,0,619,3241,1,0,0,0,621,3248, + 1,0,0,0,623,3257,1,0,0,0,625,3266,1,0,0,0,627,3271,1,0,0,0,629,3276, + 1,0,0,0,631,3283,1,0,0,0,633,3288,1,0,0,0,635,3292,1,0,0,0,637,3298, + 1,0,0,0,639,3309,1,0,0,0,641,3316,1,0,0,0,643,3323,1,0,0,0,645,3335, + 1,0,0,0,647,3342,1,0,0,0,649,3349,1,0,0,0,651,3357,1,0,0,0,653,3362, + 1,0,0,0,655,3374,1,0,0,0,657,3389,1,0,0,0,659,3395,1,0,0,0,661,3402, + 1,0,0,0,663,3414,1,0,0,0,665,3428,1,0,0,0,667,3438,1,0,0,0,669,3449, + 1,0,0,0,671,3454,1,0,0,0,673,3459,1,0,0,0,675,3469,1,0,0,0,677,3486, + 1,0,0,0,679,3498,1,0,0,0,681,3506,1,0,0,0,683,3509,1,0,0,0,685,3515, + 1,0,0,0,687,3524,1,0,0,0,689,3536,1,0,0,0,691,3550,1,0,0,0,693,3563, + 1,0,0,0,695,3573,1,0,0,0,697,3581,1,0,0,0,699,3586,1,0,0,0,701,3591, + 1,0,0,0,703,3600,1,0,0,0,705,3605,1,0,0,0,707,3615,1,0,0,0,709,3625, + 1,0,0,0,711,3630,1,0,0,0,713,3636,1,0,0,0,715,3646,1,0,0,0,717,3653, + 1,0,0,0,719,3664,1,0,0,0,721,3672,1,0,0,0,723,3679,1,0,0,0,725,3689, + 1,0,0,0,727,3695,1,0,0,0,729,3704,1,0,0,0,731,3711,1,0,0,0,733,3715, + 1,0,0,0,735,3719,1,0,0,0,737,3723,1,0,0,0,739,3728,1,0,0,0,741,3734, + 1,0,0,0,743,3738,1,0,0,0,745,3751,1,0,0,0,747,3760,1,0,0,0,749,3767, + 1,0,0,0,751,3775,1,0,0,0,753,3783,1,0,0,0,755,3797,1,0,0,0,757,3802, + 1,0,0,0,759,3808,1,0,0,0,761,3813,1,0,0,0,763,3818,1,0,0,0,765,3824, + 1,0,0,0,767,3829,1,0,0,0,769,3835,1,0,0,0,771,3841,1,0,0,0,773,3848, + 1,0,0,0,775,3853,1,0,0,0,777,3860,1,0,0,0,779,3865,1,0,0,0,781,3874, + 1,0,0,0,783,3880,1,0,0,0,785,3885,1,0,0,0,787,3891,1,0,0,0,789,3896, + 1,0,0,0,791,3898,1,0,0,0,793,3900,1,0,0,0,795,3902,1,0,0,0,797,3904, + 1,0,0,0,799,3906,1,0,0,0,801,3908,1,0,0,0,803,3910,1,0,0,0,805,3912, + 1,0,0,0,807,3914,1,0,0,0,809,3919,1,0,0,0,811,3921,1,0,0,0,813,3929, + 1,0,0,0,815,3931,1,0,0,0,817,3934,1,0,0,0,819,3936,1,0,0,0,821,3939, + 1,0,0,0,823,3941,1,0,0,0,825,3943,1,0,0,0,827,3945,1,0,0,0,829,3947, + 1,0,0,0,831,3949,1,0,0,0,833,3951,1,0,0,0,835,3955,1,0,0,0,837,3957, + 1,0,0,0,839,3959,1,0,0,0,841,3961,1,0,0,0,843,3963,1,0,0,0,845,3966, + 1,0,0,0,847,3968,1,0,0,0,849,3970,1,0,0,0,851,3992,1,0,0,0,853,4005, + 1,0,0,0,855,4008,1,0,0,0,857,4014,1,0,0,0,859,4021,1,0,0,0,861,4028, + 1,0,0,0,863,4066,1,0,0,0,865,4068,1,0,0,0,867,4079,1,0,0,0,869,4081, + 1,0,0,0,871,4083,1,0,0,0,873,4085,1,0,0,0,875,4111,1,0,0,0,877,4113, + 1,0,0,0,879,4121,1,0,0,0,881,4125,1,0,0,0,883,4138,1,0,0,0,885,4140, + 1,0,0,0,887,4156,1,0,0,0,889,890,7,0,0,0,890,891,7,1,0,0,891,892, + 7,2,0,0,892,893,7,3,0,0,893,894,7,4,0,0,894,2,1,0,0,0,895,896,7, + 0,0,0,896,897,7,5,0,0,897,898,7,4,0,0,898,899,7,6,0,0,899,900,7, + 7,0,0,900,901,7,0,0,0,901,902,7,4,0,0,902,903,7,8,0,0,903,4,1,0, + 0,0,904,905,7,0,0,0,905,906,7,5,0,0,906,907,7,4,0,0,907,908,7,6, + 0,0,908,909,7,7,0,0,909,910,7,8,0,0,910,6,1,0,0,0,911,912,7,0,0, + 0,912,913,7,9,0,0,913,914,7,9,0,0,914,8,1,0,0,0,915,916,7,0,0,0, + 916,917,7,9,0,0,917,918,7,10,0,0,918,919,7,6,0,0,919,920,7,11,0, + 0,920,10,1,0,0,0,921,922,7,0,0,0,922,923,7,12,0,0,923,924,7,4,0, + 0,924,925,7,8,0,0,925,926,7,3,0,0,926,12,1,0,0,0,927,928,7,0,0,0, + 928,929,7,13,0,0,929,930,7,13,0,0,930,14,1,0,0,0,931,932,7,0,0,0, + 932,933,7,13,0,0,933,934,7,13,0,0,934,935,7,2,0,0,935,936,7,5,0, + 0,936,937,5,95,0,0,937,938,7,12,0,0,938,939,7,3,0,0,939,940,7,0, + 0,0,940,941,7,5,0,0,941,942,7,4,0,0,942,943,7,6,0,0,943,944,7,2, + 0,0,944,945,7,11,0,0,945,16,1,0,0,0,946,947,7,0,0,0,947,948,7,13, + 0,0,948,949,7,4,0,0,949,950,7,8,0,0,950,951,7,3,0,0,951,18,1,0,0, + 0,952,953,7,0,0,0,953,954,7,11,0,0,954,955,7,0,0,0,955,956,7,13, + 0,0,956,957,7,14,0,0,957,958,7,15,0,0,958,959,7,8,0,0,959,20,1,0, + 0,0,960,961,7,0,0,0,961,962,7,11,0,0,962,963,7,9,0,0,963,22,1,0, + 0,0,964,965,7,0,0,0,965,966,7,11,0,0,966,967,7,4,0,0,967,968,7,6, + 0,0,968,24,1,0,0,0,969,970,7,0,0,0,970,971,7,11,0,0,971,972,7,14, + 0,0,972,26,1,0,0,0,973,974,7,0,0,0,974,975,7,16,0,0,975,976,7,16, + 0,0,976,977,7,13,0,0,977,978,7,6,0,0,978,979,7,5,0,0,979,980,7,0, + 0,0,980,981,7,4,0,0,981,982,7,6,0,0,982,983,7,2,0,0,983,984,7,11, + 0,0,984,28,1,0,0,0,985,986,7,0,0,0,986,987,7,3,0,0,987,988,7,5,0, + 0,988,989,7,17,0,0,989,990,7,6,0,0,990,991,7,7,0,0,991,992,7,8,0, + 0,992,30,1,0,0,0,993,994,7,0,0,0,994,995,7,3,0,0,995,996,7,3,0,0, + 996,997,7,0,0,0,997,998,7,14,0,0,998,32,1,0,0,0,999,1000,7,0,0,0, + 1000,1001,7,18,0,0,1001,34,1,0,0,0,1002,1003,7,0,0,0,1003,1004,7, + 18,0,0,1004,1005,7,5,0,0,1005,36,1,0,0,0,1006,1007,7,0,0,0,1007, + 1008,7,18,0,0,1008,1009,7,4,0,0,1009,38,1,0,0,0,1010,1011,7,0,0, + 0,1011,1012,7,4,0,0,1012,40,1,0,0,0,1013,1014,7,0,0,0,1014,1015, + 7,19,0,0,1015,1016,7,4,0,0,1016,1017,7,17,0,0,1017,1018,7,2,0,0, + 1018,1019,7,3,0,0,1019,1020,7,6,0,0,1020,1021,7,15,0,0,1021,1022, + 7,0,0,0,1022,1023,7,4,0,0,1023,1024,7,6,0,0,1024,1025,7,2,0,0,1025, + 1026,7,11,0,0,1026,42,1,0,0,0,1027,1028,7,0,0,0,1028,1029,7,19,0, + 0,1029,1030,7,4,0,0,1030,1031,7,2,0,0,1031,1032,7,5,0,0,1032,1033, + 7,2,0,0,1033,1034,7,10,0,0,1034,1035,7,10,0,0,1035,1036,7,6,0,0, + 1036,1037,7,4,0,0,1037,44,1,0,0,0,1038,1039,7,1,0,0,1039,1040,7, + 0,0,0,1040,1041,7,4,0,0,1041,1042,7,5,0,0,1042,1043,7,17,0,0,1043, + 46,1,0,0,0,1044,1045,7,1,0,0,1045,1046,7,8,0,0,1046,1047,7,12,0, + 0,1047,1048,7,2,0,0,1048,1049,7,3,0,0,1049,1050,7,8,0,0,1050,48, + 1,0,0,0,1051,1052,7,1,0,0,1052,1053,7,8,0,0,1053,1054,7,4,0,0,1054, + 1055,7,20,0,0,1055,1056,7,8,0,0,1056,1057,7,8,0,0,1057,1058,7,11, + 0,0,1058,50,1,0,0,0,1059,1060,7,1,0,0,1060,1061,7,6,0,0,1061,1062, + 7,21,0,0,1062,1063,7,6,0,0,1063,1064,7,11,0,0,1064,1065,7,4,0,0, + 1065,52,1,0,0,0,1066,1067,7,1,0,0,1067,1068,7,6,0,0,1068,1069,7, + 11,0,0,1069,1070,7,0,0,0,1070,1071,7,3,0,0,1071,1072,7,14,0,0,1072, + 54,1,0,0,0,1073,1074,7,1,0,0,1074,1075,7,2,0,0,1075,1076,7,2,0,0, + 1076,1077,7,13,0,0,1077,1078,7,8,0,0,1078,1079,7,0,0,0,1079,1080, + 7,11,0,0,1080,56,1,0,0,0,1081,1082,7,1,0,0,1082,1083,7,2,0,0,1083, + 1084,7,4,0,0,1084,1085,7,17,0,0,1085,58,1,0,0,0,1086,1087,7,1,0, + 0,1087,1088,7,19,0,0,1088,1089,7,5,0,0,1089,1090,7,22,0,0,1090,1091, + 7,8,0,0,1091,1092,7,4,0,0,1092,60,1,0,0,0,1093,1094,7,1,0,0,1094, + 1095,7,19,0,0,1095,1096,7,5,0,0,1096,1097,7,22,0,0,1097,1098,7,8, + 0,0,1098,1099,7,4,0,0,1099,1100,7,18,0,0,1100,62,1,0,0,0,1101,1102, + 7,1,0,0,1102,1103,7,14,0,0,1103,64,1,0,0,0,1104,1105,7,5,0,0,1105, + 1106,7,0,0,0,1106,1107,7,5,0,0,1107,1108,7,17,0,0,1108,1109,7,8, + 0,0,1109,66,1,0,0,0,1110,1111,7,5,0,0,1111,1112,7,0,0,0,1112,1113, + 7,18,0,0,1113,1114,7,5,0,0,1114,1115,7,0,0,0,1115,1116,7,9,0,0,1116, + 1117,7,8,0,0,1117,68,1,0,0,0,1118,1119,7,5,0,0,1119,1120,7,0,0,0, + 1120,1121,7,18,0,0,1121,1122,7,8,0,0,1122,70,1,0,0,0,1123,1124,7, + 5,0,0,1124,1125,7,0,0,0,1125,1126,7,18,0,0,1126,1127,7,4,0,0,1127, + 72,1,0,0,0,1128,1129,7,5,0,0,1129,1130,7,1,0,0,1130,1131,7,2,0,0, + 1131,74,1,0,0,0,1132,1133,7,5,0,0,1133,1134,7,17,0,0,1134,1135,7, + 0,0,0,1135,1136,7,11,0,0,1136,1137,7,21,0,0,1137,1138,7,8,0,0,1138, + 76,1,0,0,0,1139,1140,7,5,0,0,1140,1141,7,17,0,0,1141,1142,7,0,0, + 0,1142,1143,7,3,0,0,1143,78,1,0,0,0,1144,1145,7,5,0,0,1145,1146, + 7,17,0,0,1146,1147,7,8,0,0,1147,1148,7,5,0,0,1148,1149,7,22,0,0, + 1149,80,1,0,0,0,1150,1151,7,5,0,0,1151,1152,7,13,0,0,1152,1153,7, + 19,0,0,1153,1154,7,18,0,0,1154,1155,7,4,0,0,1155,1156,7,8,0,0,1156, + 1157,7,3,0,0,1157,82,1,0,0,0,1158,1159,7,5,0,0,1159,1160,7,13,0, + 0,1160,1161,7,19,0,0,1161,1162,7,18,0,0,1162,1163,7,4,0,0,1163,1164, + 7,8,0,0,1164,1165,7,3,0,0,1165,1166,7,8,0,0,1166,1167,7,9,0,0,1167, + 84,1,0,0,0,1168,1169,7,5,0,0,1169,1170,7,13,0,0,1170,1171,7,19,0, + 0,1171,1172,7,18,0,0,1172,1173,7,4,0,0,1173,1174,7,8,0,0,1174,1175, + 7,3,0,0,1175,1176,7,18,0,0,1176,1177,7,4,0,0,1177,1178,7,0,0,0,1178, + 1179,7,4,0,0,1179,1180,7,19,0,0,1180,1181,7,18,0,0,1181,86,1,0,0, + 0,1182,1183,7,5,0,0,1183,1184,7,2,0,0,1184,1185,7,13,0,0,1185,1186, + 7,13,0,0,1186,1187,7,8,0,0,1187,1188,7,5,0,0,1188,1189,7,4,0,0,1189, + 1190,7,6,0,0,1190,1191,7,2,0,0,1191,1192,7,11,0,0,1192,88,1,0,0, + 0,1193,1194,7,5,0,0,1194,1195,7,2,0,0,1195,1196,7,13,0,0,1196,1197, + 7,19,0,0,1197,1198,7,10,0,0,1198,1199,7,11,0,0,1199,90,1,0,0,0,1200, + 1201,7,5,0,0,1201,1202,7,2,0,0,1202,1203,7,13,0,0,1203,1204,7,19, + 0,0,1204,1205,7,10,0,0,1205,1206,7,11,0,0,1206,1207,7,18,0,0,1207, + 92,1,0,0,0,1208,1209,7,5,0,0,1209,1210,7,2,0,0,1210,1211,7,10,0, + 0,1211,1212,7,10,0,0,1212,1213,7,8,0,0,1213,1214,7,11,0,0,1214,1215, + 7,4,0,0,1215,94,1,0,0,0,1216,1217,7,5,0,0,1217,1218,7,2,0,0,1218, + 1219,7,10,0,0,1219,1220,7,10,0,0,1220,1221,7,6,0,0,1221,1222,7,4, + 0,0,1222,96,1,0,0,0,1223,1224,7,5,0,0,1224,1225,7,2,0,0,1225,1226, + 7,10,0,0,1226,1227,7,16,0,0,1227,1228,7,0,0,0,1228,1229,7,5,0,0, + 1229,1230,7,4,0,0,1230,98,1,0,0,0,1231,1232,7,5,0,0,1232,1233,7, + 2,0,0,1233,1234,7,10,0,0,1234,1235,7,16,0,0,1235,1236,7,0,0,0,1236, + 1237,7,5,0,0,1237,1238,7,4,0,0,1238,1239,7,6,0,0,1239,1240,7,2,0, + 0,1240,1241,7,11,0,0,1241,1242,7,18,0,0,1242,100,1,0,0,0,1243,1244, + 7,5,0,0,1244,1245,7,2,0,0,1245,1246,7,10,0,0,1246,1247,7,16,0,0, + 1247,1248,7,0,0,0,1248,1249,7,5,0,0,1249,1250,7,4,0,0,1250,1251, + 7,6,0,0,1251,1252,7,2,0,0,1252,1253,7,11,0,0,1253,1254,7,6,0,0,1254, + 1255,7,9,0,0,1255,102,1,0,0,0,1256,1257,7,5,0,0,1257,1258,7,2,0, + 0,1258,1259,7,10,0,0,1259,1260,7,16,0,0,1260,1261,7,19,0,0,1261, + 1262,7,4,0,0,1262,1263,7,8,0,0,1263,104,1,0,0,0,1264,1265,7,5,0, + 0,1265,1266,7,2,0,0,1266,1267,7,11,0,0,1267,1268,7,5,0,0,1268,1269, + 7,0,0,0,1269,1270,7,4,0,0,1270,1271,7,8,0,0,1271,1272,7,11,0,0,1272, + 1273,7,0,0,0,1273,1274,7,4,0,0,1274,1275,7,8,0,0,1275,106,1,0,0, + 0,1276,1277,7,5,0,0,1277,1278,7,2,0,0,1278,1279,7,11,0,0,1279,1280, + 7,12,0,0,1280,108,1,0,0,0,1281,1282,7,5,0,0,1282,1283,7,2,0,0,1283, + 1284,7,11,0,0,1284,1285,7,18,0,0,1285,1286,7,4,0,0,1286,1287,7,3, + 0,0,1287,1288,7,0,0,0,1288,1289,7,6,0,0,1289,1290,7,11,0,0,1290, + 1291,7,4,0,0,1291,110,1,0,0,0,1292,1293,7,5,0,0,1293,1294,7,2,0, + 0,1294,1295,7,11,0,0,1295,1296,7,4,0,0,1296,1297,7,6,0,0,1297,1298, + 7,11,0,0,1298,1299,7,19,0,0,1299,1300,7,8,0,0,1300,112,1,0,0,0,1301, + 1302,7,5,0,0,1302,1303,7,2,0,0,1303,1304,7,18,0,0,1304,1305,7,4, + 0,0,1305,114,1,0,0,0,1306,1307,7,5,0,0,1307,1308,7,3,0,0,1308,1309, + 7,8,0,0,1309,1310,7,0,0,0,1310,1311,7,4,0,0,1311,1312,7,8,0,0,1312, + 116,1,0,0,0,1313,1314,7,5,0,0,1314,1315,7,3,0,0,1315,1316,7,2,0, + 0,1316,1317,7,11,0,0,1317,118,1,0,0,0,1318,1319,7,5,0,0,1319,1320, + 7,3,0,0,1320,1321,7,2,0,0,1321,1322,7,18,0,0,1322,1323,7,18,0,0, + 1323,120,1,0,0,0,1324,1325,7,5,0,0,1325,1326,7,19,0,0,1326,1327, + 7,1,0,0,1327,1328,7,8,0,0,1328,122,1,0,0,0,1329,1330,7,5,0,0,1330, + 1331,7,19,0,0,1331,1332,7,3,0,0,1332,1333,7,3,0,0,1333,1334,7,8, + 0,0,1334,1335,7,11,0,0,1335,1336,7,4,0,0,1336,124,1,0,0,0,1337,1338, + 7,5,0,0,1338,1339,7,19,0,0,1339,1340,7,3,0,0,1340,1341,7,3,0,0,1341, + 1342,7,8,0,0,1342,1343,7,11,0,0,1343,1344,7,4,0,0,1344,1345,5,95, + 0,0,1345,1346,7,9,0,0,1346,1347,7,0,0,0,1347,1348,7,4,0,0,1348,1349, + 7,8,0,0,1349,126,1,0,0,0,1350,1351,7,5,0,0,1351,1352,7,19,0,0,1352, + 1353,7,3,0,0,1353,1354,7,3,0,0,1354,1355,7,8,0,0,1355,1356,7,11, + 0,0,1356,1357,7,4,0,0,1357,1358,5,95,0,0,1358,1359,7,4,0,0,1359, + 1360,7,6,0,0,1360,1361,7,10,0,0,1361,1362,7,8,0,0,1362,1363,7,18, + 0,0,1363,1364,7,4,0,0,1364,1365,7,0,0,0,1365,1366,7,10,0,0,1366, + 1367,7,16,0,0,1367,128,1,0,0,0,1368,1369,7,5,0,0,1369,1370,7,19, + 0,0,1370,1371,7,3,0,0,1371,1372,7,18,0,0,1372,1373,7,2,0,0,1373, + 1374,7,3,0,0,1374,130,1,0,0,0,1375,1376,7,9,0,0,1376,1377,7,0,0, + 0,1377,1378,7,4,0,0,1378,1379,7,0,0,0,1379,132,1,0,0,0,1380,1381, + 7,9,0,0,1381,1382,7,0,0,0,1382,1383,7,4,0,0,1383,1384,7,0,0,0,1384, + 1385,7,1,0,0,1385,1386,7,0,0,0,1386,1387,7,18,0,0,1387,1388,7,8, + 0,0,1388,134,1,0,0,0,1389,1390,7,9,0,0,1390,1391,7,0,0,0,1391,1392, + 7,4,0,0,1392,1393,7,0,0,0,1393,1394,7,1,0,0,1394,1395,7,0,0,0,1395, + 1396,7,18,0,0,1396,1397,7,8,0,0,1397,1398,7,18,0,0,1398,136,1,0, + 0,0,1399,1400,7,5,0,0,1400,1401,7,2,0,0,1401,1402,7,11,0,0,1402, + 1403,7,11,0,0,1403,1404,7,8,0,0,1404,1405,7,5,0,0,1405,1406,7,4, + 0,0,1406,1407,7,2,0,0,1407,1408,7,3,0,0,1408,138,1,0,0,0,1409,1410, + 7,5,0,0,1410,1411,7,2,0,0,1411,1412,7,11,0,0,1412,1413,7,11,0,0, + 1413,1414,7,8,0,0,1414,1415,7,5,0,0,1415,1416,7,4,0,0,1416,1417, + 7,2,0,0,1417,1418,7,3,0,0,1418,1419,7,18,0,0,1419,140,1,0,0,0,1420, + 1421,7,9,0,0,1421,1422,7,0,0,0,1422,1423,7,4,0,0,1423,1424,7,8,0, + 0,1424,142,1,0,0,0,1425,1426,7,9,0,0,1426,1427,7,0,0,0,1427,1428, + 7,4,0,0,1428,1429,7,8,0,0,1429,1430,7,4,0,0,1430,1431,7,6,0,0,1431, + 1432,7,10,0,0,1432,1433,7,8,0,0,1433,144,1,0,0,0,1434,1435,7,9,0, + 0,1435,1436,7,0,0,0,1436,1437,7,14,0,0,1437,146,1,0,0,0,1438,1439, + 7,9,0,0,1439,1440,7,0,0,0,1440,1441,7,14,0,0,1441,1442,7,18,0,0, + 1442,148,1,0,0,0,1443,1444,7,9,0,0,1444,1445,7,0,0,0,1445,1446,7, + 14,0,0,1446,1447,7,2,0,0,1447,1448,7,12,0,0,1448,1449,7,20,0,0,1449, + 1450,7,8,0,0,1450,1451,7,8,0,0,1451,1452,7,22,0,0,1452,150,1,0,0, + 0,1453,1454,7,9,0,0,1454,1455,7,1,0,0,1455,1456,7,16,0,0,1456,1457, + 7,3,0,0,1457,1458,7,2,0,0,1458,1459,7,16,0,0,1459,1460,7,8,0,0,1460, + 1461,7,3,0,0,1461,1462,7,4,0,0,1462,1463,7,6,0,0,1463,1464,7,8,0, + 0,1464,1465,7,18,0,0,1465,152,1,0,0,0,1466,1467,7,9,0,0,1467,1468, + 7,5,0,0,1468,1469,7,16,0,0,1469,1470,7,3,0,0,1470,1471,7,2,0,0,1471, + 1472,7,16,0,0,1472,1473,7,8,0,0,1473,1474,7,3,0,0,1474,1475,7,4, + 0,0,1475,1476,7,6,0,0,1476,1477,7,8,0,0,1477,1478,7,18,0,0,1478, + 154,1,0,0,0,1479,1480,7,9,0,0,1480,1481,7,9,0,0,1481,1482,7,13,0, + 0,1482,156,1,0,0,0,1483,1484,7,9,0,0,1484,1485,7,8,0,0,1485,1486, + 7,1,0,0,1486,1487,7,19,0,0,1487,1488,7,21,0,0,1488,158,1,0,0,0,1489, + 1490,7,9,0,0,1490,1491,7,8,0,0,1491,1492,7,5,0,0,1492,160,1,0,0, + 0,1493,1494,7,9,0,0,1494,1495,7,8,0,0,1495,1496,7,5,0,0,1496,1497, + 7,6,0,0,1497,1498,7,10,0,0,1498,1499,7,0,0,0,1499,1500,7,13,0,0, + 1500,162,1,0,0,0,1501,1502,7,11,0,0,1502,1503,7,19,0,0,1503,1504, + 7,10,0,0,1504,1505,7,8,0,0,1505,1506,7,3,0,0,1506,1507,7,6,0,0,1507, + 1508,7,5,0,0,1508,164,1,0,0,0,1509,1510,7,9,0,0,1510,1511,7,8,0, + 0,1511,1512,7,12,0,0,1512,1513,7,0,0,0,1513,1514,7,19,0,0,1514,1515, + 7,13,0,0,1515,1516,7,4,0,0,1516,166,1,0,0,0,1517,1518,7,9,0,0,1518, + 1519,7,8,0,0,1519,1520,7,12,0,0,1520,1521,7,8,0,0,1521,1522,7,3, + 0,0,1522,1523,7,3,0,0,1523,1524,7,8,0,0,1524,1525,7,9,0,0,1525,168, + 1,0,0,0,1526,1527,7,9,0,0,1527,1528,7,8,0,0,1528,1529,7,12,0,0,1529, + 1530,7,6,0,0,1530,1531,7,11,0,0,1531,1532,7,8,0,0,1532,1533,7,9, + 0,0,1533,170,1,0,0,0,1534,1535,7,9,0,0,1535,1536,7,8,0,0,1536,1537, + 7,13,0,0,1537,1538,7,8,0,0,1538,1539,7,4,0,0,1539,1540,7,8,0,0,1540, + 172,1,0,0,0,1541,1542,7,9,0,0,1542,1543,7,8,0,0,1543,1544,7,13,0, + 0,1544,1545,7,6,0,0,1545,1546,7,10,0,0,1546,1547,7,6,0,0,1547,1548, + 7,4,0,0,1548,1549,7,8,0,0,1549,1550,7,9,0,0,1550,174,1,0,0,0,1551, + 1552,7,9,0,0,1552,1553,7,8,0,0,1553,1554,7,16,0,0,1554,1555,7,8, + 0,0,1555,1556,7,11,0,0,1556,1557,7,9,0,0,1557,1558,7,8,0,0,1558, + 1559,7,11,0,0,1559,1560,7,5,0,0,1560,1561,7,14,0,0,1561,176,1,0, + 0,0,1562,1563,7,9,0,0,1563,1564,7,8,0,0,1564,1565,7,18,0,0,1565, + 1566,7,5,0,0,1566,178,1,0,0,0,1567,1568,7,9,0,0,1568,1569,7,8,0, + 0,1569,1570,7,18,0,0,1570,1571,7,5,0,0,1571,1572,7,3,0,0,1572,1573, + 7,6,0,0,1573,1574,7,1,0,0,1574,1575,7,8,0,0,1575,180,1,0,0,0,1576, + 1577,7,9,0,0,1577,1578,7,8,0,0,1578,1579,7,4,0,0,1579,1580,7,0,0, + 0,1580,1581,7,6,0,0,1581,1582,7,13,0,0,1582,182,1,0,0,0,1583,1584, + 7,9,0,0,1584,1585,7,6,0,0,1585,1586,7,3,0,0,1586,1587,7,8,0,0,1587, + 1588,7,5,0,0,1588,1589,7,4,0,0,1589,1590,7,2,0,0,1590,1591,7,3,0, + 0,1591,1592,7,6,0,0,1592,1593,7,8,0,0,1593,1594,7,18,0,0,1594,184, + 1,0,0,0,1595,1596,7,9,0,0,1596,1597,7,6,0,0,1597,1598,7,3,0,0,1598, + 1599,7,8,0,0,1599,1600,7,5,0,0,1600,1601,7,4,0,0,1601,1602,7,2,0, + 0,1602,1603,7,3,0,0,1603,1604,7,14,0,0,1604,186,1,0,0,0,1605,1606, + 7,9,0,0,1606,1607,7,6,0,0,1607,1608,7,18,0,0,1608,1609,7,0,0,0,1609, + 1610,7,1,0,0,1610,1611,7,13,0,0,1611,1612,7,8,0,0,1612,188,1,0,0, + 0,1613,1614,7,9,0,0,1614,1615,7,6,0,0,1615,1616,7,18,0,0,1616,1617, + 7,0,0,0,1617,1618,7,1,0,0,1618,1619,7,13,0,0,1619,1620,7,8,0,0,1620, + 1621,7,9,0,0,1621,190,1,0,0,0,1622,1623,7,9,0,0,1623,1624,7,6,0, + 0,1624,1625,7,18,0,0,1625,1626,7,4,0,0,1626,1627,7,6,0,0,1627,1628, + 7,11,0,0,1628,1629,7,5,0,0,1629,1630,7,4,0,0,1630,192,1,0,0,0,1631, + 1632,7,9,0,0,1632,1633,7,6,0,0,1633,1634,7,18,0,0,1634,1635,7,4, + 0,0,1635,1636,7,3,0,0,1636,1637,7,6,0,0,1637,1638,7,1,0,0,1638,1639, + 7,19,0,0,1639,1640,7,4,0,0,1640,1641,7,8,0,0,1641,194,1,0,0,0,1642, + 1643,7,9,0,0,1643,1644,7,6,0,0,1644,1645,7,18,0,0,1645,1646,7,4, + 0,0,1646,1647,7,3,0,0,1647,1648,7,6,0,0,1648,1649,7,1,0,0,1649,1650, + 7,19,0,0,1650,1651,7,4,0,0,1651,1652,7,8,0,0,1652,1653,7,9,0,0,1653, + 196,1,0,0,0,1654,1655,7,9,0,0,1655,1656,7,2,0,0,1656,198,1,0,0,0, + 1657,1658,7,9,0,0,1658,1659,7,2,0,0,1659,1660,7,19,0,0,1660,1661, + 7,1,0,0,1661,1662,7,13,0,0,1662,1663,7,8,0,0,1663,200,1,0,0,0,1664, + 1665,7,9,0,0,1665,1666,7,3,0,0,1666,1667,7,2,0,0,1667,1668,7,16, + 0,0,1668,202,1,0,0,0,1669,1670,7,3,0,0,1670,1671,7,8,0,0,1671,1672, + 7,5,0,0,1672,1673,7,2,0,0,1673,1674,7,7,0,0,1674,1675,7,8,0,0,1675, + 1676,7,3,0,0,1676,204,1,0,0,0,1677,1678,7,9,0,0,1678,1679,7,19,0, + 0,1679,1680,7,10,0,0,1680,1681,7,16,0,0,1681,206,1,0,0,0,1682,1683, + 5,36,0,0,1683,1684,7,8,0,0,1684,1685,7,13,0,0,1685,1686,7,8,0,0, + 1686,1687,7,10,0,0,1687,1688,5,36,0,0,1688,208,1,0,0,0,1689,1690, + 7,8,0,0,1690,1691,7,13,0,0,1691,1692,7,18,0,0,1692,1693,7,8,0,0, + 1693,210,1,0,0,0,1694,1695,7,8,0,0,1695,1696,7,11,0,0,1696,1697, + 7,0,0,0,1697,1698,7,1,0,0,1698,1699,7,13,0,0,1699,1700,7,8,0,0,1700, + 212,1,0,0,0,1701,1702,7,8,0,0,1702,1703,7,11,0,0,1703,1704,7,0,0, + 0,1704,1705,7,1,0,0,1705,1706,7,13,0,0,1706,1707,7,8,0,0,1707,1708, + 7,9,0,0,1708,214,1,0,0,0,1709,1710,7,8,0,0,1710,1711,7,11,0,0,1711, + 1712,7,9,0,0,1712,216,1,0,0,0,1713,1714,7,8,0,0,1714,1715,7,11,0, + 0,1715,1716,7,12,0,0,1716,1717,7,2,0,0,1717,1718,7,3,0,0,1718,1719, + 7,5,0,0,1719,1720,7,8,0,0,1720,1721,7,9,0,0,1721,218,1,0,0,0,1722, + 1723,7,8,0,0,1723,1724,7,18,0,0,1724,1725,7,5,0,0,1725,1726,7,0, + 0,0,1726,1727,7,16,0,0,1727,1728,7,8,0,0,1728,1729,7,9,0,0,1729, + 220,1,0,0,0,1730,1731,7,8,0,0,1731,1732,7,7,0,0,1732,1733,7,8,0, + 0,1733,1734,7,3,0,0,1734,1735,7,14,0,0,1735,222,1,0,0,0,1736,1737, + 7,8,0,0,1737,1738,7,23,0,0,1738,1739,7,5,0,0,1739,1740,7,8,0,0,1740, + 1741,7,16,0,0,1741,1742,7,4,0,0,1742,224,1,0,0,0,1743,1744,7,8,0, + 0,1744,1745,7,23,0,0,1745,1746,7,5,0,0,1746,1747,7,17,0,0,1747,1748, + 7,0,0,0,1748,1749,7,11,0,0,1749,1750,7,21,0,0,1750,1751,7,8,0,0, + 1751,226,1,0,0,0,1752,1753,7,8,0,0,1753,1754,7,23,0,0,1754,1755, + 7,5,0,0,1755,1756,7,13,0,0,1756,1757,7,19,0,0,1757,1758,7,18,0,0, + 1758,1759,7,6,0,0,1759,1760,7,7,0,0,1760,1761,7,8,0,0,1761,228,1, + 0,0,0,1762,1763,7,8,0,0,1763,1764,7,23,0,0,1764,1765,7,8,0,0,1765, + 1766,7,5,0,0,1766,1767,7,19,0,0,1767,1768,7,4,0,0,1768,1769,7,8, + 0,0,1769,230,1,0,0,0,1770,1771,7,8,0,0,1771,1772,7,23,0,0,1772,1773, + 7,8,0,0,1773,1774,7,5,0,0,1774,1775,7,19,0,0,1775,1776,7,4,0,0,1776, + 1777,7,8,0,0,1777,1778,7,9,0,0,1778,232,1,0,0,0,1779,1780,7,8,0, + 0,1780,1781,7,23,0,0,1781,1782,7,6,0,0,1782,1783,7,18,0,0,1783,1784, + 7,4,0,0,1784,1785,7,18,0,0,1785,234,1,0,0,0,1786,1787,7,8,0,0,1787, + 1788,7,23,0,0,1788,1789,7,16,0,0,1789,1790,7,6,0,0,1790,1791,7,3, + 0,0,1791,1792,7,8,0,0,1792,1793,5,95,0,0,1793,1794,7,18,0,0,1794, + 1795,7,11,0,0,1795,1796,7,0,0,0,1796,1797,7,16,0,0,1797,1798,7,18, + 0,0,1798,1799,7,17,0,0,1799,1800,7,2,0,0,1800,1801,7,4,0,0,1801, + 1802,7,18,0,0,1802,236,1,0,0,0,1803,1804,7,8,0,0,1804,1805,7,23, + 0,0,1805,1806,7,16,0,0,1806,1807,7,13,0,0,1807,1808,7,0,0,0,1808, + 1809,7,6,0,0,1809,1810,7,11,0,0,1810,238,1,0,0,0,1811,1812,7,8,0, + 0,1812,1813,7,23,0,0,1813,1814,7,16,0,0,1814,1815,7,2,0,0,1815,1816, + 7,3,0,0,1816,1817,7,4,0,0,1817,240,1,0,0,0,1818,1819,7,8,0,0,1819, + 1820,7,23,0,0,1820,1821,7,16,0,0,1821,1822,7,3,0,0,1822,1823,7,8, + 0,0,1823,1824,7,18,0,0,1824,1825,7,18,0,0,1825,1826,7,6,0,0,1826, + 1827,7,2,0,0,1827,1828,7,11,0,0,1828,242,1,0,0,0,1829,1830,7,8,0, + 0,1830,1831,7,23,0,0,1831,1832,7,4,0,0,1832,1833,7,8,0,0,1833,1834, + 7,11,0,0,1834,1835,7,9,0,0,1835,1836,7,8,0,0,1836,1837,7,9,0,0,1837, + 244,1,0,0,0,1838,1839,7,8,0,0,1839,1840,7,23,0,0,1840,1841,7,4,0, + 0,1841,1842,7,8,0,0,1842,1843,7,3,0,0,1843,1844,7,11,0,0,1844,1845, + 7,0,0,0,1845,1846,7,13,0,0,1846,246,1,0,0,0,1847,1848,7,8,0,0,1848, + 1849,7,23,0,0,1849,1850,7,4,0,0,1850,1851,7,3,0,0,1851,1852,7,0, + 0,0,1852,1853,7,5,0,0,1853,1854,7,4,0,0,1854,248,1,0,0,0,1855,1856, + 7,12,0,0,1856,1857,7,0,0,0,1857,1858,7,13,0,0,1858,1859,7,18,0,0, + 1859,1860,7,8,0,0,1860,250,1,0,0,0,1861,1862,7,12,0,0,1862,1863, + 7,8,0,0,1863,1864,7,4,0,0,1864,1865,7,5,0,0,1865,1866,7,17,0,0,1866, + 252,1,0,0,0,1867,1868,7,12,0,0,1868,1869,7,6,0,0,1869,1870,7,8,0, + 0,1870,1871,7,13,0,0,1871,1872,7,9,0,0,1872,1873,7,18,0,0,1873,254, + 1,0,0,0,1874,1875,7,12,0,0,1875,1876,7,6,0,0,1876,1877,7,13,0,0, + 1877,1878,7,8,0,0,1878,256,1,0,0,0,1879,1880,7,12,0,0,1880,1881, + 7,6,0,0,1881,1882,7,13,0,0,1882,1883,7,8,0,0,1883,1884,7,12,0,0, + 1884,1885,7,2,0,0,1885,1886,7,3,0,0,1886,1887,7,10,0,0,1887,1888, + 7,0,0,0,1888,1889,7,4,0,0,1889,258,1,0,0,0,1890,1891,7,12,0,0,1891, + 1892,7,6,0,0,1892,1893,7,3,0,0,1893,1894,7,18,0,0,1894,1895,7,4, + 0,0,1895,260,1,0,0,0,1896,1897,7,12,0,0,1897,1898,7,13,0,0,1898, + 1899,7,2,0,0,1899,1900,7,0,0,0,1900,1901,7,4,0,0,1901,262,1,0,0, + 0,1902,1903,7,12,0,0,1903,1904,7,13,0,0,1904,1905,7,2,0,0,1905,1906, + 7,2,0,0,1906,1907,7,3,0,0,1907,264,1,0,0,0,1908,1909,7,12,0,0,1909, + 1910,7,2,0,0,1910,1911,7,13,0,0,1911,1912,7,13,0,0,1912,1913,7,2, + 0,0,1913,1914,7,20,0,0,1914,1915,7,6,0,0,1915,1916,7,11,0,0,1916, + 1917,7,21,0,0,1917,266,1,0,0,0,1918,1919,7,12,0,0,1919,1920,7,2, + 0,0,1920,1921,7,3,0,0,1921,268,1,0,0,0,1922,1923,7,12,0,0,1923,1924, + 7,2,0,0,1924,1925,7,3,0,0,1925,1926,7,5,0,0,1926,1927,7,8,0,0,1927, + 270,1,0,0,0,1928,1929,7,12,0,0,1929,1930,7,2,0,0,1930,1931,7,3,0, + 0,1931,1932,7,8,0,0,1932,1933,7,6,0,0,1933,1934,7,21,0,0,1934,1935, + 7,11,0,0,1935,272,1,0,0,0,1936,1937,7,12,0,0,1937,1938,7,2,0,0,1938, + 1939,7,3,0,0,1939,1940,7,10,0,0,1940,1941,7,0,0,0,1941,1942,7,4, + 0,0,1942,274,1,0,0,0,1943,1944,7,12,0,0,1944,1945,7,2,0,0,1945,1946, + 7,3,0,0,1946,1947,7,10,0,0,1947,1948,7,0,0,0,1948,1949,7,4,0,0,1949, + 1950,7,4,0,0,1950,1951,7,8,0,0,1951,1952,7,9,0,0,1952,276,1,0,0, + 0,1953,1954,7,12,0,0,1954,1955,7,3,0,0,1955,1956,7,2,0,0,1956,1957, + 7,10,0,0,1957,278,1,0,0,0,1958,1959,7,12,0,0,1959,1960,7,19,0,0, + 1960,1961,7,13,0,0,1961,1962,7,13,0,0,1962,280,1,0,0,0,1963,1964, + 7,12,0,0,1964,1965,7,19,0,0,1965,1966,7,11,0,0,1966,1967,7,5,0,0, + 1967,1968,7,4,0,0,1968,1969,7,6,0,0,1969,1970,7,2,0,0,1970,1971, + 7,11,0,0,1971,282,1,0,0,0,1972,1973,7,12,0,0,1973,1974,7,19,0,0, + 1974,1975,7,11,0,0,1975,1976,7,5,0,0,1976,1977,7,4,0,0,1977,1978, + 7,6,0,0,1978,1979,7,2,0,0,1979,1980,7,11,0,0,1980,1981,7,18,0,0, + 1981,284,1,0,0,0,1982,1983,7,21,0,0,1983,1984,7,3,0,0,1984,1985, + 7,0,0,0,1985,1986,7,11,0,0,1986,1987,7,4,0,0,1987,286,1,0,0,0,1988, + 1989,7,21,0,0,1989,1990,7,3,0,0,1990,1991,7,2,0,0,1991,1992,7,19, + 0,0,1992,1993,7,16,0,0,1993,288,1,0,0,0,1994,1995,7,21,0,0,1995, + 1996,7,3,0,0,1996,1997,7,2,0,0,1997,1998,7,19,0,0,1998,1999,7,16, + 0,0,1999,2000,7,6,0,0,2000,2001,7,11,0,0,2001,2002,7,21,0,0,2002, + 290,1,0,0,0,2003,2004,7,17,0,0,2004,2005,7,0,0,0,2005,2006,7,7,0, + 0,2006,2007,7,6,0,0,2007,2008,7,11,0,0,2008,2009,7,21,0,0,2009,292, + 1,0,0,0,2010,2011,7,17,0,0,2011,2012,7,2,0,0,2012,2013,7,13,0,0, + 2013,2014,7,9,0,0,2014,2015,5,95,0,0,2015,2016,7,9,0,0,2016,2017, + 7,9,0,0,2017,2018,7,13,0,0,2018,2019,7,4,0,0,2019,2020,7,6,0,0,2020, + 2021,7,10,0,0,2021,2022,7,8,0,0,2022,294,1,0,0,0,2023,2024,7,17, + 0,0,2024,2025,7,2,0,0,2025,2026,7,19,0,0,2026,2027,7,3,0,0,2027, + 296,1,0,0,0,2028,2029,7,17,0,0,2029,2030,7,2,0,0,2030,2031,7,19, + 0,0,2031,2032,7,3,0,0,2032,2033,7,18,0,0,2033,298,1,0,0,0,2034,2035, + 7,6,0,0,2035,2036,7,9,0,0,2036,2037,7,23,0,0,2037,2038,7,16,0,0, + 2038,2039,7,3,0,0,2039,2040,7,2,0,0,2040,2041,7,16,0,0,2041,2042, + 7,8,0,0,2042,2043,7,3,0,0,2043,2044,7,4,0,0,2044,2045,7,6,0,0,2045, + 2046,7,8,0,0,2046,2047,7,18,0,0,2047,300,1,0,0,0,2048,2049,7,6,0, + 0,2049,2050,7,12,0,0,2050,302,1,0,0,0,2051,2052,7,6,0,0,2052,2053, + 7,21,0,0,2053,2054,7,11,0,0,2054,2055,7,2,0,0,2055,2056,7,3,0,0, + 2056,2057,7,8,0,0,2057,304,1,0,0,0,2058,2059,7,6,0,0,2059,2060,7, + 10,0,0,2060,2061,7,16,0,0,2061,2062,7,2,0,0,2062,2063,7,3,0,0,2063, + 2064,7,4,0,0,2064,306,1,0,0,0,2065,2066,7,6,0,0,2066,2067,7,11,0, + 0,2067,308,1,0,0,0,2068,2069,7,6,0,0,2069,2070,7,11,0,0,2070,2071, + 7,9,0,0,2071,2072,7,8,0,0,2072,2073,7,23,0,0,2073,310,1,0,0,0,2074, + 2075,7,6,0,0,2075,2076,7,11,0,0,2076,2077,7,9,0,0,2077,2078,7,8, + 0,0,2078,2079,7,23,0,0,2079,2080,7,8,0,0,2080,2081,7,18,0,0,2081, + 312,1,0,0,0,2082,2083,7,6,0,0,2083,2084,7,11,0,0,2084,2085,7,11, + 0,0,2085,2086,7,8,0,0,2086,2087,7,3,0,0,2087,314,1,0,0,0,2088,2089, + 7,6,0,0,2089,2090,7,11,0,0,2090,2091,7,16,0,0,2091,2092,7,0,0,0, + 2092,2093,7,4,0,0,2093,2094,7,17,0,0,2094,316,1,0,0,0,2095,2096, + 7,6,0,0,2096,2097,7,11,0,0,2097,2098,7,16,0,0,2098,2099,7,19,0,0, + 2099,2100,7,4,0,0,2100,2101,7,9,0,0,2101,2102,7,3,0,0,2102,2103, + 7,6,0,0,2103,2104,7,7,0,0,2104,2105,7,8,0,0,2105,2106,7,3,0,0,2106, + 318,1,0,0,0,2107,2108,7,6,0,0,2108,2109,7,11,0,0,2109,2110,7,16, + 0,0,2110,2111,7,19,0,0,2111,2112,7,4,0,0,2112,2113,7,12,0,0,2113, + 2114,7,2,0,0,2114,2115,7,3,0,0,2115,2116,7,10,0,0,2116,2117,7,0, + 0,0,2117,2118,7,4,0,0,2118,320,1,0,0,0,2119,2120,7,6,0,0,2120,2121, + 7,11,0,0,2121,2122,7,18,0,0,2122,2123,7,8,0,0,2123,2124,7,3,0,0, + 2124,2125,7,4,0,0,2125,322,1,0,0,0,2126,2127,7,6,0,0,2127,2128,7, + 11,0,0,2128,2129,7,4,0,0,2129,324,1,0,0,0,2130,2131,7,6,0,0,2131, + 2132,7,11,0,0,2132,2133,7,4,0,0,2133,2134,7,8,0,0,2134,2135,7,21, + 0,0,2135,2136,7,8,0,0,2136,2137,7,3,0,0,2137,326,1,0,0,0,2138,2139, + 7,6,0,0,2139,2140,7,11,0,0,2140,2141,7,4,0,0,2141,2142,7,8,0,0,2142, + 2143,7,3,0,0,2143,2144,7,18,0,0,2144,2145,7,8,0,0,2145,2146,7,5, + 0,0,2146,2147,7,4,0,0,2147,328,1,0,0,0,2148,2149,7,6,0,0,2149,2150, + 7,11,0,0,2150,2151,7,4,0,0,2151,2152,7,8,0,0,2152,2153,7,3,0,0,2153, + 2154,7,7,0,0,2154,2155,7,0,0,0,2155,2156,7,13,0,0,2156,330,1,0,0, + 0,2157,2158,7,6,0,0,2158,2159,7,11,0,0,2159,2160,7,4,0,0,2160,2161, + 7,2,0,0,2161,332,1,0,0,0,2162,2163,7,6,0,0,2163,2164,7,18,0,0,2164, + 334,1,0,0,0,2165,2166,7,6,0,0,2166,2167,7,18,0,0,2167,2168,7,2,0, + 0,2168,2169,7,13,0,0,2169,2170,7,0,0,0,2170,2171,7,4,0,0,2171,2172, + 7,6,0,0,2172,2173,7,2,0,0,2173,2174,7,11,0,0,2174,336,1,0,0,0,2175, + 2176,7,6,0,0,2176,2177,7,4,0,0,2177,2178,7,8,0,0,2178,2179,7,10, + 0,0,2179,2180,7,18,0,0,2180,338,1,0,0,0,2181,2182,7,24,0,0,2182, + 2183,7,0,0,0,2183,2184,7,3,0,0,2184,340,1,0,0,0,2185,2186,7,24,0, + 0,2186,2187,7,2,0,0,2187,2188,7,6,0,0,2188,2189,7,11,0,0,2189,342, + 1,0,0,0,2190,2191,7,24,0,0,2191,2192,7,2,0,0,2192,2193,7,6,0,0,2193, + 2194,7,11,0,0,2194,2195,7,5,0,0,2195,2196,7,2,0,0,2196,2197,7,18, + 0,0,2197,2198,7,4,0,0,2198,344,1,0,0,0,2199,2200,7,22,0,0,2200,2201, + 7,8,0,0,2201,2202,7,14,0,0,2202,346,1,0,0,0,2203,2204,7,22,0,0,2204, + 2205,7,8,0,0,2205,2206,7,14,0,0,2206,2207,7,18,0,0,2207,348,1,0, + 0,0,2208,2209,5,36,0,0,2209,2210,7,22,0,0,2210,2211,7,8,0,0,2211, + 2212,7,14,0,0,2212,2213,5,36,0,0,2213,350,1,0,0,0,2214,2215,7,22, + 0,0,2215,2216,7,6,0,0,2216,2217,7,13,0,0,2217,2218,7,13,0,0,2218, + 352,1,0,0,0,2219,2220,7,13,0,0,2220,2221,7,0,0,0,2221,2222,7,18, + 0,0,2222,2223,7,4,0,0,2223,354,1,0,0,0,2224,2225,7,13,0,0,2225,2226, + 7,0,0,0,2226,2227,7,4,0,0,2227,2228,7,8,0,0,2228,2229,7,3,0,0,2229, + 2230,7,0,0,0,2230,2231,7,13,0,0,2231,356,1,0,0,0,2232,2233,7,13, + 0,0,2233,2234,7,8,0,0,2234,2235,7,0,0,0,2235,2236,7,9,0,0,2236,2237, + 7,6,0,0,2237,2238,7,11,0,0,2238,2239,7,21,0,0,2239,358,1,0,0,0,2240, + 2241,7,13,0,0,2241,2242,7,8,0,0,2242,2243,7,12,0,0,2243,2244,7,4, + 0,0,2244,360,1,0,0,0,2245,2246,7,13,0,0,2246,2247,7,8,0,0,2247,2248, + 7,18,0,0,2248,2249,7,18,0,0,2249,362,1,0,0,0,2250,2251,7,13,0,0, + 2251,2252,7,8,0,0,2252,2253,7,7,0,0,2253,2254,7,8,0,0,2254,2255, + 7,13,0,0,2255,364,1,0,0,0,2256,2257,7,13,0,0,2257,2258,7,6,0,0,2258, + 2259,7,12,0,0,2259,2260,7,8,0,0,2260,2261,7,5,0,0,2261,2262,7,14, + 0,0,2262,2263,7,5,0,0,2263,2264,7,13,0,0,2264,2265,7,8,0,0,2265, + 366,1,0,0,0,2266,2267,7,13,0,0,2267,2268,7,6,0,0,2268,2269,7,22, + 0,0,2269,2270,7,8,0,0,2270,368,1,0,0,0,2271,2272,7,13,0,0,2272,2273, + 7,6,0,0,2273,2274,7,10,0,0,2274,2275,7,6,0,0,2275,2276,7,4,0,0,2276, + 370,1,0,0,0,2277,2278,7,13,0,0,2278,2279,7,6,0,0,2279,2280,7,11, + 0,0,2280,2281,7,8,0,0,2281,2282,7,18,0,0,2282,372,1,0,0,0,2283,2284, + 7,13,0,0,2284,2285,7,2,0,0,2285,2286,7,0,0,0,2286,2287,7,9,0,0,2287, + 374,1,0,0,0,2288,2289,7,13,0,0,2289,2290,7,2,0,0,2290,2291,7,5,0, + 0,2291,2292,7,0,0,0,2292,2293,7,13,0,0,2293,376,1,0,0,0,2294,2295, + 7,13,0,0,2295,2296,7,2,0,0,2296,2297,7,5,0,0,2297,2298,7,0,0,0,2298, + 2299,7,4,0,0,2299,2300,7,6,0,0,2300,2301,7,2,0,0,2301,2302,7,11, + 0,0,2302,378,1,0,0,0,2303,2304,7,13,0,0,2304,2305,7,2,0,0,2305,2306, + 7,5,0,0,2306,2307,7,22,0,0,2307,380,1,0,0,0,2308,2309,7,13,0,0,2309, + 2310,7,2,0,0,2310,2311,7,5,0,0,2311,2312,7,22,0,0,2312,2313,7,18, + 0,0,2313,382,1,0,0,0,2314,2315,7,13,0,0,2315,2316,7,2,0,0,2316,2317, + 7,21,0,0,2317,2318,7,6,0,0,2318,2319,7,5,0,0,2319,2320,7,0,0,0,2320, + 2321,7,13,0,0,2321,384,1,0,0,0,2322,2323,7,13,0,0,2323,2324,7,2, + 0,0,2324,2325,7,11,0,0,2325,2326,7,21,0,0,2326,386,1,0,0,0,2327, + 2328,7,10,0,0,2328,2329,7,0,0,0,2329,2330,7,5,0,0,2330,2331,7,3, + 0,0,2331,2332,7,2,0,0,2332,388,1,0,0,0,2333,2334,7,10,0,0,2334,2335, + 7,0,0,0,2335,2336,7,11,0,0,2336,2337,7,0,0,0,2337,2338,7,21,0,0, + 2338,2339,7,8,0,0,2339,2340,7,9,0,0,2340,390,1,0,0,0,2341,2342,7, + 10,0,0,2342,2343,7,0,0,0,2343,2344,7,11,0,0,2344,2345,7,0,0,0,2345, + 2346,7,21,0,0,2346,2347,7,8,0,0,2347,2348,7,9,0,0,2348,2349,7,13, + 0,0,2349,2350,7,2,0,0,2350,2351,7,5,0,0,2351,2352,7,0,0,0,2352,2353, + 7,4,0,0,2353,2354,7,6,0,0,2354,2355,7,2,0,0,2355,2356,7,11,0,0,2356, + 392,1,0,0,0,2357,2358,7,10,0,0,2358,2359,7,0,0,0,2359,2360,7,11, + 0,0,2360,2361,7,0,0,0,2361,2362,7,21,0,0,2362,2363,7,8,0,0,2363, + 2364,7,10,0,0,2364,2365,7,8,0,0,2365,2366,7,11,0,0,2366,2367,7,4, + 0,0,2367,394,1,0,0,0,2368,2369,7,10,0,0,2369,2370,7,0,0,0,2370,2371, + 7,16,0,0,2371,396,1,0,0,0,2372,2373,7,10,0,0,2373,2374,7,0,0,0,2374, + 2375,7,16,0,0,2375,2376,7,24,0,0,2376,2377,7,2,0,0,2377,2378,7,6, + 0,0,2378,2379,7,11,0,0,2379,398,1,0,0,0,2380,2381,7,10,0,0,2381, + 2382,7,0,0,0,2382,2383,7,16,0,0,2383,2384,7,16,0,0,2384,2385,7,6, + 0,0,2385,2386,7,11,0,0,2386,2387,7,21,0,0,2387,400,1,0,0,0,2388, + 2389,7,10,0,0,2389,2390,7,0,0,0,2390,2391,7,4,0,0,2391,2392,7,5, + 0,0,2392,2393,7,17,0,0,2393,2394,7,8,0,0,2394,2395,7,9,0,0,2395, + 402,1,0,0,0,2396,2397,7,10,0,0,2397,2398,7,0,0,0,2398,2399,7,4,0, + 0,2399,2400,7,8,0,0,2400,2401,7,3,0,0,2401,2402,7,6,0,0,2402,2403, + 7,0,0,0,2403,2404,7,13,0,0,2404,2405,7,6,0,0,2405,2406,7,15,0,0, + 2406,2407,7,8,0,0,2407,2408,7,9,0,0,2408,404,1,0,0,0,2409,2410,7, + 10,0,0,2410,2411,7,8,0,0,2411,2412,7,3,0,0,2412,2413,7,21,0,0,2413, + 2414,7,8,0,0,2414,406,1,0,0,0,2415,2416,7,10,0,0,2416,2417,7,8,0, + 0,2417,2418,7,4,0,0,2418,2419,7,0,0,0,2419,2420,7,9,0,0,2420,2421, + 7,0,0,0,2421,2422,7,4,0,0,2422,2423,7,0,0,0,2423,408,1,0,0,0,2424, + 2425,7,10,0,0,2425,2426,7,6,0,0,2426,2427,7,11,0,0,2427,2428,7,19, + 0,0,2428,2429,7,18,0,0,2429,410,1,0,0,0,2430,2431,7,10,0,0,2431, + 2432,7,6,0,0,2432,2433,7,11,0,0,2433,2434,7,19,0,0,2434,2435,7,4, + 0,0,2435,2436,7,8,0,0,2436,412,1,0,0,0,2437,2438,7,10,0,0,2438,2439, + 7,6,0,0,2439,2440,7,11,0,0,2440,2441,7,19,0,0,2441,2442,7,4,0,0, + 2442,2443,7,8,0,0,2443,2444,7,18,0,0,2444,414,1,0,0,0,2445,2446, + 7,10,0,0,2446,2447,7,2,0,0,2447,2448,7,11,0,0,2448,2449,7,4,0,0, + 2449,2450,7,17,0,0,2450,416,1,0,0,0,2451,2452,7,10,0,0,2452,2453, + 7,2,0,0,2453,2454,7,11,0,0,2454,2455,7,4,0,0,2455,2456,7,17,0,0, + 2456,2457,7,18,0,0,2457,418,1,0,0,0,2458,2459,7,10,0,0,2459,2460, + 7,2,0,0,2460,2461,7,3,0,0,2461,2462,7,8,0,0,2462,420,1,0,0,0,2463, + 2464,7,10,0,0,2464,2465,7,2,0,0,2465,2466,7,7,0,0,2466,2467,7,8, + 0,0,2467,422,1,0,0,0,2468,2469,7,10,0,0,2469,2470,7,18,0,0,2470, + 2471,7,5,0,0,2471,2472,7,22,0,0,2472,424,1,0,0,0,2473,2474,7,11, + 0,0,2474,2475,7,2,0,0,2475,2476,7,11,0,0,2476,2477,7,8,0,0,2477, + 426,1,0,0,0,2478,2479,7,11,0,0,2479,2480,7,2,0,0,2480,2481,7,3,0, + 0,2481,2482,7,8,0,0,2482,2483,7,13,0,0,2483,2484,7,14,0,0,2484,428, + 1,0,0,0,2485,2486,7,11,0,0,2486,2487,7,2,0,0,2487,2488,7,18,0,0, + 2488,2489,7,5,0,0,2489,2490,7,0,0,0,2490,2491,7,11,0,0,2491,430, + 1,0,0,0,2492,2493,7,11,0,0,2493,2494,7,2,0,0,2494,2495,7,4,0,0,2495, + 432,1,0,0,0,2496,2497,7,11,0,0,2497,2498,7,2,0,0,2498,2499,7,7,0, + 0,2499,2500,7,0,0,0,2500,2501,7,13,0,0,2501,2502,7,6,0,0,2502,2503, + 7,9,0,0,2503,2504,7,0,0,0,2504,2505,7,4,0,0,2505,2506,7,8,0,0,2506, + 434,1,0,0,0,2507,2508,7,11,0,0,2508,2509,7,2,0,0,2509,2510,5,95, + 0,0,2510,2511,7,9,0,0,2511,2512,7,3,0,0,2512,2513,7,2,0,0,2513,2514, + 7,16,0,0,2514,436,1,0,0,0,2515,2516,7,11,0,0,2516,2517,7,19,0,0, + 2517,2518,7,13,0,0,2518,2519,7,13,0,0,2519,438,1,0,0,0,2520,2521, + 7,11,0,0,2521,2522,7,19,0,0,2522,2523,7,13,0,0,2523,2524,7,13,0, + 0,2524,2525,7,18,0,0,2525,440,1,0,0,0,2526,2527,7,2,0,0,2527,2528, + 7,12,0,0,2528,442,1,0,0,0,2529,2530,7,2,0,0,2530,2531,7,12,0,0,2531, + 2532,7,12,0,0,2532,2533,7,13,0,0,2533,2534,7,6,0,0,2534,2535,7,11, + 0,0,2535,2536,7,8,0,0,2536,444,1,0,0,0,2537,2538,7,2,0,0,2538,2539, + 7,12,0,0,2539,2540,7,12,0,0,2540,2541,7,18,0,0,2541,2542,7,8,0,0, + 2542,2543,7,4,0,0,2543,446,1,0,0,0,2544,2545,7,2,0,0,2545,2546,7, + 11,0,0,2546,448,1,0,0,0,2547,2548,7,2,0,0,2548,2549,7,11,0,0,2549, + 2550,7,13,0,0,2550,2551,7,14,0,0,2551,450,1,0,0,0,2552,2553,7,2, + 0,0,2553,2554,7,16,0,0,2554,2555,7,8,0,0,2555,2556,7,3,0,0,2556, + 2557,7,0,0,0,2557,2558,7,4,0,0,2558,2559,7,2,0,0,2559,2560,7,3,0, + 0,2560,452,1,0,0,0,2561,2562,7,2,0,0,2562,2563,7,16,0,0,2563,2564, + 7,4,0,0,2564,2565,7,6,0,0,2565,2566,7,2,0,0,2566,2567,7,11,0,0,2567, + 454,1,0,0,0,2568,2569,7,2,0,0,2569,2570,7,3,0,0,2570,456,1,0,0,0, + 2571,2572,7,2,0,0,2572,2573,7,3,0,0,2573,2574,7,9,0,0,2574,2575, + 7,8,0,0,2575,2576,7,3,0,0,2576,458,1,0,0,0,2577,2578,7,2,0,0,2578, + 2579,7,19,0,0,2579,2580,7,4,0,0,2580,460,1,0,0,0,2581,2582,7,2,0, + 0,2582,2583,7,19,0,0,2583,2584,7,4,0,0,2584,2585,7,8,0,0,2585,2586, + 7,3,0,0,2586,462,1,0,0,0,2587,2588,7,2,0,0,2588,2589,7,19,0,0,2589, + 2590,7,4,0,0,2590,2591,7,16,0,0,2591,2592,7,19,0,0,2592,2593,7,4, + 0,0,2593,2594,7,9,0,0,2594,2595,7,3,0,0,2595,2596,7,6,0,0,2596,2597, + 7,7,0,0,2597,2598,7,8,0,0,2598,2599,7,3,0,0,2599,464,1,0,0,0,2600, + 2601,7,2,0,0,2601,2602,7,19,0,0,2602,2603,7,4,0,0,2603,2604,7,16, + 0,0,2604,2605,7,19,0,0,2605,2606,7,4,0,0,2606,2607,7,12,0,0,2607, + 2608,7,2,0,0,2608,2609,7,3,0,0,2609,2610,7,10,0,0,2610,2611,7,0, + 0,0,2611,2612,7,4,0,0,2612,466,1,0,0,0,2613,2614,7,2,0,0,2614,2615, + 7,7,0,0,2615,2616,7,8,0,0,2616,2617,7,3,0,0,2617,468,1,0,0,0,2618, + 2619,7,2,0,0,2619,2620,7,7,0,0,2620,2621,7,8,0,0,2621,2622,7,3,0, + 0,2622,2623,7,20,0,0,2623,2624,7,3,0,0,2624,2625,7,6,0,0,2625,2626, + 7,4,0,0,2626,2627,7,8,0,0,2627,470,1,0,0,0,2628,2629,7,2,0,0,2629, + 2630,7,20,0,0,2630,2631,7,11,0,0,2631,2632,7,8,0,0,2632,2633,7,3, + 0,0,2633,472,1,0,0,0,2634,2635,7,16,0,0,2635,2636,7,0,0,0,2636,2637, + 7,3,0,0,2637,2638,7,4,0,0,2638,2639,7,6,0,0,2639,2640,7,4,0,0,2640, + 2641,7,6,0,0,2641,2642,7,2,0,0,2642,2643,7,11,0,0,2643,474,1,0,0, + 0,2644,2645,7,16,0,0,2645,2646,7,0,0,0,2646,2647,7,3,0,0,2647,2648, + 7,4,0,0,2648,2649,7,6,0,0,2649,2650,7,4,0,0,2650,2651,7,6,0,0,2651, + 2652,7,2,0,0,2652,2653,7,11,0,0,2653,2654,7,8,0,0,2654,2655,7,9, + 0,0,2655,476,1,0,0,0,2656,2657,7,16,0,0,2657,2658,7,0,0,0,2658,2659, + 7,3,0,0,2659,2660,7,4,0,0,2660,2661,7,6,0,0,2661,2662,7,4,0,0,2662, + 2663,7,6,0,0,2663,2664,7,2,0,0,2664,2665,7,11,0,0,2665,2666,7,18, + 0,0,2666,478,1,0,0,0,2667,2668,7,16,0,0,2668,2669,7,0,0,0,2669,2670, + 7,4,0,0,2670,2671,7,17,0,0,2671,480,1,0,0,0,2672,2673,7,16,0,0,2673, + 2674,7,8,0,0,2674,2675,7,3,0,0,2675,2676,7,5,0,0,2676,2677,7,8,0, + 0,2677,2678,7,11,0,0,2678,2679,7,4,0,0,2679,482,1,0,0,0,2680,2681, + 7,16,0,0,2681,2682,7,22,0,0,2682,2683,7,12,0,0,2683,2684,7,22,0, + 0,2684,2685,5,95,0,0,2685,2686,7,24,0,0,2686,2687,7,2,0,0,2687,2688, + 7,6,0,0,2688,2689,7,11,0,0,2689,484,1,0,0,0,2690,2691,7,16,0,0,2691, + 2692,7,13,0,0,2692,2693,7,0,0,0,2693,2694,7,11,0,0,2694,486,1,0, + 0,0,2695,2696,7,16,0,0,2696,2697,7,13,0,0,2697,2698,7,0,0,0,2698, + 2699,7,11,0,0,2699,2700,7,18,0,0,2700,488,1,0,0,0,2701,2702,7,16, + 0,0,2702,2703,7,13,0,0,2703,2704,7,19,0,0,2704,2705,7,18,0,0,2705, + 490,1,0,0,0,2706,2707,7,16,0,0,2707,2708,7,2,0,0,2708,2709,7,2,0, + 0,2709,2710,7,13,0,0,2710,492,1,0,0,0,2711,2712,7,16,0,0,2712,2713, + 7,3,0,0,2713,2714,7,8,0,0,2714,2715,7,5,0,0,2715,2716,7,8,0,0,2716, + 2717,7,9,0,0,2717,2718,7,6,0,0,2718,2719,7,11,0,0,2719,2720,7,21, + 0,0,2720,494,1,0,0,0,2721,2722,7,16,0,0,2722,2723,7,3,0,0,2723,2724, + 7,8,0,0,2724,2725,7,5,0,0,2725,2726,7,6,0,0,2726,2727,7,18,0,0,2727, + 2728,7,6,0,0,2728,2729,7,2,0,0,2729,2730,7,11,0,0,2730,496,1,0,0, + 0,2731,2732,7,16,0,0,2732,2733,7,3,0,0,2733,2734,7,8,0,0,2734,2735, + 7,16,0,0,2735,2736,7,0,0,0,2736,2737,7,3,0,0,2737,2738,7,8,0,0,2738, + 498,1,0,0,0,2739,2740,7,16,0,0,2740,2741,7,3,0,0,2741,2742,7,8,0, + 0,2742,2743,7,18,0,0,2743,2744,7,8,0,0,2744,2745,7,3,0,0,2745,2746, + 7,7,0,0,2746,2747,7,8,0,0,2747,500,1,0,0,0,2748,2749,7,16,0,0,2749, + 2750,7,3,0,0,2750,2751,7,6,0,0,2751,2752,7,10,0,0,2752,2753,7,0, + 0,0,2753,2754,7,3,0,0,2754,2755,7,14,0,0,2755,502,1,0,0,0,2756,2757, + 7,16,0,0,2757,2758,7,3,0,0,2758,2759,7,6,0,0,2759,2760,7,11,0,0, + 2760,2761,7,5,0,0,2761,2762,7,6,0,0,2762,2763,7,16,0,0,2763,2764, + 7,0,0,0,2764,2765,7,13,0,0,2765,2766,7,18,0,0,2766,504,1,0,0,0,2767, + 2768,7,16,0,0,2768,2769,7,3,0,0,2769,2770,7,2,0,0,2770,2771,7,5, + 0,0,2771,2772,7,8,0,0,2772,2773,7,9,0,0,2773,2774,7,19,0,0,2774, + 2775,7,3,0,0,2775,2776,7,8,0,0,2776,506,1,0,0,0,2777,2778,7,16,0, + 0,2778,2779,7,3,0,0,2779,2780,7,2,0,0,2780,2781,7,4,0,0,2781,2782, + 7,8,0,0,2782,2783,7,5,0,0,2783,2784,7,4,0,0,2784,2785,7,6,0,0,2785, + 2786,7,2,0,0,2786,2787,7,11,0,0,2787,508,1,0,0,0,2788,2789,7,16, + 0,0,2789,2790,7,19,0,0,2790,2791,7,3,0,0,2791,2792,7,21,0,0,2792, + 2793,7,8,0,0,2793,510,1,0,0,0,2794,2795,7,25,0,0,2795,2796,7,19, + 0,0,2796,2797,7,0,0,0,2797,2798,7,13,0,0,2798,2799,7,6,0,0,2799, + 2800,7,12,0,0,2800,2801,7,14,0,0,2801,512,1,0,0,0,2802,2803,7,25, + 0,0,2803,2804,7,19,0,0,2804,2805,7,0,0,0,2805,2806,7,3,0,0,2806, + 2807,7,4,0,0,2807,2808,7,8,0,0,2808,2809,7,3,0,0,2809,514,1,0,0, + 0,2810,2811,7,25,0,0,2811,2812,7,19,0,0,2812,2813,7,8,0,0,2813,2814, + 7,3,0,0,2814,2815,7,14,0,0,2815,516,1,0,0,0,2816,2817,7,25,0,0,2817, + 2818,7,19,0,0,2818,2819,7,8,0,0,2819,2820,7,3,0,0,2820,2821,7,14, + 0,0,2821,2822,5,95,0,0,2822,2823,7,16,0,0,2823,2824,7,0,0,0,2824, + 2825,7,3,0,0,2825,2826,7,0,0,0,2826,2827,7,13,0,0,2827,2828,7,13, + 0,0,2828,2829,7,8,0,0,2829,2830,7,13,0,0,2830,2831,7,6,0,0,2831, + 2832,7,18,0,0,2832,2833,7,10,0,0,2833,518,1,0,0,0,2834,2835,7,3, + 0,0,2835,2836,7,0,0,0,2836,2837,7,11,0,0,2837,2838,7,21,0,0,2838, + 2839,7,8,0,0,2839,520,1,0,0,0,2840,2841,7,3,0,0,2841,2842,7,8,0, + 0,2842,2843,7,0,0,0,2843,2844,7,9,0,0,2844,522,1,0,0,0,2845,2846, + 7,3,0,0,2846,2847,7,8,0,0,2847,2848,7,0,0,0,2848,2849,7,9,0,0,2849, + 2850,7,2,0,0,2850,2851,7,11,0,0,2851,2852,7,13,0,0,2852,2853,7,14, + 0,0,2853,524,1,0,0,0,2854,2855,7,3,0,0,2855,2856,7,8,0,0,2856,2857, + 7,0,0,0,2857,2858,7,9,0,0,2858,2859,7,18,0,0,2859,526,1,0,0,0,2860, + 2861,7,3,0,0,2861,2862,7,8,0,0,2862,2863,7,0,0,0,2863,2864,7,13, + 0,0,2864,528,1,0,0,0,2865,2866,7,3,0,0,2866,2867,7,8,0,0,2867,2868, + 7,1,0,0,2868,2869,7,19,0,0,2869,2870,7,6,0,0,2870,2871,7,13,0,0, + 2871,2872,7,9,0,0,2872,530,1,0,0,0,2873,2874,7,3,0,0,2874,2875,7, + 8,0,0,2875,2876,7,5,0,0,2876,2877,7,2,0,0,2877,2878,7,3,0,0,2878, + 2879,7,9,0,0,2879,2880,7,3,0,0,2880,2881,7,8,0,0,2881,2882,7,0,0, + 0,2882,2883,7,9,0,0,2883,2884,7,8,0,0,2884,2885,7,3,0,0,2885,532, + 1,0,0,0,2886,2887,7,3,0,0,2887,2888,7,8,0,0,2888,2889,7,5,0,0,2889, + 2890,7,2,0,0,2890,2891,7,3,0,0,2891,2892,7,9,0,0,2892,2893,7,20, + 0,0,2893,2894,7,3,0,0,2894,2895,7,6,0,0,2895,2896,7,4,0,0,2896,2897, + 7,8,0,0,2897,2898,7,3,0,0,2898,534,1,0,0,0,2899,2900,7,3,0,0,2900, + 2901,7,8,0,0,2901,2902,7,9,0,0,2902,2903,7,19,0,0,2903,2904,7,5, + 0,0,2904,2905,7,8,0,0,2905,536,1,0,0,0,2906,2907,7,3,0,0,2907,2908, + 7,8,0,0,2908,2909,7,12,0,0,2909,2910,7,8,0,0,2910,2911,7,3,0,0,2911, + 2912,7,8,0,0,2912,2913,7,11,0,0,2913,2914,7,5,0,0,2914,2915,7,8, + 0,0,2915,2916,7,18,0,0,2916,538,1,0,0,0,2917,2918,7,3,0,0,2918,2919, + 7,8,0,0,2919,2920,7,21,0,0,2920,2921,7,8,0,0,2921,2922,7,23,0,0, + 2922,2923,7,16,0,0,2923,540,1,0,0,0,2924,2925,7,3,0,0,2925,2926, + 7,8,0,0,2926,2927,7,13,0,0,2927,2928,7,2,0,0,2928,2929,7,0,0,0,2929, + 2930,7,9,0,0,2930,542,1,0,0,0,2931,2932,7,3,0,0,2932,2933,7,8,0, + 0,2933,2934,7,13,0,0,2934,2935,7,14,0,0,2935,544,1,0,0,0,2936,2937, + 7,3,0,0,2937,2938,7,8,0,0,2938,2939,7,10,0,0,2939,2940,7,2,0,0,2940, + 2941,7,4,0,0,2941,2942,7,8,0,0,2942,546,1,0,0,0,2943,2944,7,3,0, + 0,2944,2945,7,8,0,0,2945,2946,7,11,0,0,2946,2947,7,0,0,0,2947,2948, + 7,10,0,0,2948,2949,7,8,0,0,2949,548,1,0,0,0,2950,2951,7,3,0,0,2951, + 2952,7,8,0,0,2952,2953,7,2,0,0,2953,2954,7,16,0,0,2954,2955,7,4, + 0,0,2955,2956,7,6,0,0,2956,2957,7,10,0,0,2957,2958,7,6,0,0,2958, + 2959,7,15,0,0,2959,2960,7,0,0,0,2960,2961,7,4,0,0,2961,2962,7,6, + 0,0,2962,2963,7,2,0,0,2963,2964,7,11,0,0,2964,550,1,0,0,0,2965,2966, + 7,3,0,0,2966,2967,7,8,0,0,2967,2968,7,16,0,0,2968,2969,7,0,0,0,2969, + 2970,7,6,0,0,2970,2971,7,3,0,0,2971,552,1,0,0,0,2972,2973,7,3,0, + 0,2973,2974,7,8,0,0,2974,2975,7,16,0,0,2975,2976,7,13,0,0,2976,554, + 1,0,0,0,2977,2978,7,3,0,0,2978,2979,7,8,0,0,2979,2980,7,16,0,0,2980, + 2981,7,13,0,0,2981,2982,7,0,0,0,2982,2983,7,5,0,0,2983,2984,7,8, + 0,0,2984,556,1,0,0,0,2985,2986,7,3,0,0,2986,2987,7,8,0,0,2987,2988, + 7,16,0,0,2988,2989,7,13,0,0,2989,2990,7,6,0,0,2990,2991,7,5,0,0, + 2991,2992,7,0,0,0,2992,2993,7,4,0,0,2993,2994,7,6,0,0,2994,2995, + 7,2,0,0,2995,2996,7,11,0,0,2996,558,1,0,0,0,2997,2998,7,3,0,0,2998, + 2999,7,8,0,0,2999,3000,7,18,0,0,3000,3001,7,2,0,0,3001,3002,7,19, + 0,0,3002,3003,7,3,0,0,3003,3004,7,5,0,0,3004,3005,7,8,0,0,3005,560, + 1,0,0,0,3006,3007,7,3,0,0,3007,3008,7,8,0,0,3008,3009,7,18,0,0,3009, + 3010,7,16,0,0,3010,3011,7,8,0,0,3011,3012,7,5,0,0,3012,3013,7,4, + 0,0,3013,562,1,0,0,0,3014,3015,7,3,0,0,3015,3016,7,8,0,0,3016,3017, + 7,18,0,0,3017,3018,7,4,0,0,3018,3019,7,3,0,0,3019,3020,7,6,0,0,3020, + 3021,7,5,0,0,3021,3022,7,4,0,0,3022,564,1,0,0,0,3023,3024,7,3,0, + 0,3024,3025,7,8,0,0,3025,3026,7,7,0,0,3026,3027,7,2,0,0,3027,3028, + 7,22,0,0,3028,3029,7,8,0,0,3029,566,1,0,0,0,3030,3031,7,3,0,0,3031, + 3032,7,8,0,0,3032,3033,7,20,0,0,3033,3034,7,3,0,0,3034,3035,7,6, + 0,0,3035,3036,7,4,0,0,3036,3037,7,8,0,0,3037,568,1,0,0,0,3038,3039, + 7,3,0,0,3039,3040,7,6,0,0,3040,3041,7,21,0,0,3041,3042,7,17,0,0, + 3042,3043,7,4,0,0,3043,570,1,0,0,0,3044,3045,7,3,0,0,3045,3046,7, + 13,0,0,3046,3047,7,6,0,0,3047,3048,7,22,0,0,3048,3049,7,8,0,0,3049, + 572,1,0,0,0,3050,3051,7,3,0,0,3051,3052,7,2,0,0,3052,3053,7,13,0, + 0,3053,3054,7,8,0,0,3054,574,1,0,0,0,3055,3056,7,3,0,0,3056,3057, + 7,2,0,0,3057,3058,7,13,0,0,3058,3059,7,8,0,0,3059,3060,7,18,0,0, + 3060,576,1,0,0,0,3061,3062,7,3,0,0,3062,3063,7,2,0,0,3063,3064,7, + 13,0,0,3064,3065,7,13,0,0,3065,3066,7,1,0,0,3066,3067,7,0,0,0,3067, + 3068,7,5,0,0,3068,3069,7,22,0,0,3069,578,1,0,0,0,3070,3071,7,3,0, + 0,3071,3072,7,2,0,0,3072,3073,7,13,0,0,3073,3074,7,13,0,0,3074,3075, + 7,19,0,0,3075,3076,7,16,0,0,3076,580,1,0,0,0,3077,3078,7,3,0,0,3078, + 3079,7,2,0,0,3079,3080,7,20,0,0,3080,582,1,0,0,0,3081,3082,7,3,0, + 0,3082,3083,7,2,0,0,3083,3084,7,20,0,0,3084,3085,7,18,0,0,3085,584, + 1,0,0,0,3086,3087,7,18,0,0,3087,3088,7,5,0,0,3088,3089,7,17,0,0, + 3089,3090,7,8,0,0,3090,3091,7,9,0,0,3091,3092,7,19,0,0,3092,3093, + 7,13,0,0,3093,3094,7,8,0,0,3094,3095,7,9,0,0,3095,586,1,0,0,0,3096, + 3097,7,18,0,0,3097,3098,7,5,0,0,3098,3099,7,17,0,0,3099,3100,7,8, + 0,0,3100,3101,7,9,0,0,3101,3102,7,19,0,0,3102,3103,7,13,0,0,3103, + 3104,7,6,0,0,3104,3105,7,11,0,0,3105,3106,7,21,0,0,3106,3107,5,95, + 0,0,3107,3108,7,16,0,0,3108,3109,7,2,0,0,3109,3110,7,13,0,0,3110, + 3111,7,6,0,0,3111,3112,7,5,0,0,3112,3113,7,14,0,0,3113,588,1,0,0, + 0,3114,3115,7,18,0,0,3115,3116,7,5,0,0,3116,3117,7,17,0,0,3117,3118, + 7,8,0,0,3118,3119,7,10,0,0,3119,3120,7,0,0,0,3120,590,1,0,0,0,3121, + 3122,7,18,0,0,3122,3123,7,5,0,0,3123,3124,7,17,0,0,3124,3125,7,8, + 0,0,3125,3126,7,10,0,0,3126,3127,7,0,0,0,3127,3128,7,18,0,0,3128, + 592,1,0,0,0,3129,3130,7,18,0,0,3130,3131,7,8,0,0,3131,3132,7,5,0, + 0,3132,3133,7,2,0,0,3133,3134,7,11,0,0,3134,3135,7,9,0,0,3135,594, + 1,0,0,0,3136,3137,7,18,0,0,3137,3138,7,8,0,0,3138,3139,7,5,0,0,3139, + 3140,7,2,0,0,3140,3141,7,11,0,0,3141,3142,7,9,0,0,3142,3143,7,18, + 0,0,3143,596,1,0,0,0,3144,3145,7,18,0,0,3145,3146,7,8,0,0,3146,3147, + 7,13,0,0,3147,3148,7,8,0,0,3148,3149,7,5,0,0,3149,3150,7,4,0,0,3150, + 598,1,0,0,0,3151,3152,7,18,0,0,3152,3153,7,8,0,0,3153,3154,7,10, + 0,0,3154,3155,7,6,0,0,3155,600,1,0,0,0,3156,3157,7,18,0,0,3157,3158, + 7,8,0,0,3158,3159,7,3,0,0,3159,3160,7,9,0,0,3160,3161,7,8,0,0,3161, + 602,1,0,0,0,3162,3163,7,18,0,0,3163,3164,7,8,0,0,3164,3165,7,3,0, + 0,3165,3166,7,9,0,0,3166,3167,7,8,0,0,3167,3168,7,16,0,0,3168,3169, + 7,3,0,0,3169,3170,7,2,0,0,3170,3171,7,16,0,0,3171,3172,7,8,0,0,3172, + 3173,7,3,0,0,3173,3174,7,4,0,0,3174,3175,7,6,0,0,3175,3176,7,8,0, + 0,3176,3177,7,18,0,0,3177,604,1,0,0,0,3178,3179,7,18,0,0,3179,3180, + 7,8,0,0,3180,3181,7,3,0,0,3181,3182,7,7,0,0,3182,3183,7,8,0,0,3183, + 3184,7,3,0,0,3184,606,1,0,0,0,3185,3186,7,18,0,0,3186,3187,7,8,0, + 0,3187,3188,7,4,0,0,3188,608,1,0,0,0,3189,3190,7,18,0,0,3190,3191, + 7,8,0,0,3191,3192,7,4,0,0,3192,3193,7,18,0,0,3193,610,1,0,0,0,3194, + 3195,7,18,0,0,3195,3196,7,8,0,0,3196,3197,7,4,0,0,3197,3198,5,95, + 0,0,3198,3199,7,5,0,0,3199,3200,7,19,0,0,3200,3201,7,3,0,0,3201, + 3202,7,3,0,0,3202,3203,7,8,0,0,3203,3204,7,11,0,0,3204,3205,7,4, + 0,0,3205,3206,5,95,0,0,3206,3207,7,18,0,0,3207,3208,7,11,0,0,3208, + 3209,7,0,0,0,3209,3210,7,16,0,0,3210,3211,7,18,0,0,3211,3212,7,17, + 0,0,3212,3213,7,2,0,0,3213,3214,7,4,0,0,3214,612,1,0,0,0,3215,3216, + 7,18,0,0,3216,3217,7,17,0,0,3217,3218,7,0,0,0,3218,3219,7,3,0,0, + 3219,3220,7,8,0,0,3220,3221,7,9,0,0,3221,614,1,0,0,0,3222,3223,7, + 18,0,0,3223,3224,7,17,0,0,3224,3225,7,2,0,0,3225,3226,7,20,0,0,3226, + 616,1,0,0,0,3227,3228,7,18,0,0,3228,3229,7,17,0,0,3229,3230,7,2, + 0,0,3230,3231,7,20,0,0,3231,3232,5,95,0,0,3232,3233,7,9,0,0,3233, + 3234,7,0,0,0,3234,3235,7,4,0,0,3235,3236,7,0,0,0,3236,3237,7,1,0, + 0,3237,3238,7,0,0,0,3238,3239,7,18,0,0,3239,3240,7,8,0,0,3240,618, + 1,0,0,0,3241,3242,7,18,0,0,3242,3243,7,22,0,0,3243,3244,7,8,0,0, + 3244,3245,7,20,0,0,3245,3246,7,8,0,0,3246,3247,7,9,0,0,3247,620, + 1,0,0,0,3248,3249,7,18,0,0,3249,3250,7,10,0,0,3250,3251,7,0,0,0, + 3251,3252,7,13,0,0,3252,3253,7,13,0,0,3253,3254,7,6,0,0,3254,3255, + 7,11,0,0,3255,3256,7,4,0,0,3256,622,1,0,0,0,3257,3258,7,18,0,0,3258, + 3259,7,11,0,0,3259,3260,7,0,0,0,3260,3261,7,16,0,0,3261,3262,7,18, + 0,0,3262,3263,7,17,0,0,3263,3264,7,2,0,0,3264,3265,7,4,0,0,3265, + 624,1,0,0,0,3266,3267,7,18,0,0,3267,3268,7,2,0,0,3268,3269,7,10, + 0,0,3269,3270,7,8,0,0,3270,626,1,0,0,0,3271,3272,7,18,0,0,3272,3273, + 7,2,0,0,3273,3274,7,3,0,0,3274,3275,7,4,0,0,3275,628,1,0,0,0,3276, + 3277,7,18,0,0,3277,3278,7,2,0,0,3278,3279,7,3,0,0,3279,3280,7,4, + 0,0,3280,3281,7,8,0,0,3281,3282,7,9,0,0,3282,630,1,0,0,0,3283,3284, + 7,18,0,0,3284,3285,7,16,0,0,3285,3286,7,8,0,0,3286,3287,7,5,0,0, + 3287,632,1,0,0,0,3288,3289,7,18,0,0,3289,3290,7,18,0,0,3290,3291, + 7,13,0,0,3291,634,1,0,0,0,3292,3293,7,18,0,0,3293,3294,7,4,0,0,3294, + 3295,7,0,0,0,3295,3296,7,3,0,0,3296,3297,7,4,0,0,3297,636,1,0,0, + 0,3298,3299,7,18,0,0,3299,3300,7,4,0,0,3300,3301,7,0,0,0,3301,3302, + 7,4,0,0,3302,3303,7,6,0,0,3303,3304,7,18,0,0,3304,3305,7,4,0,0,3305, + 3306,7,6,0,0,3306,3307,7,5,0,0,3307,3308,7,18,0,0,3308,638,1,0,0, + 0,3309,3310,7,18,0,0,3310,3311,7,4,0,0,3311,3312,7,0,0,0,3312,3313, + 7,4,0,0,3313,3314,7,19,0,0,3314,3315,7,18,0,0,3315,640,1,0,0,0,3316, + 3317,7,18,0,0,3317,3318,7,4,0,0,3318,3319,7,2,0,0,3319,3320,7,3, + 0,0,3320,3321,7,8,0,0,3321,3322,7,9,0,0,3322,642,1,0,0,0,3323,3324, + 7,18,0,0,3324,3325,7,4,0,0,3325,3326,7,3,0,0,3326,3327,7,8,0,0,3327, + 3328,7,0,0,0,3328,3329,7,10,0,0,3329,3330,7,4,0,0,3330,3331,7,0, + 0,0,3331,3332,7,1,0,0,3332,3333,7,13,0,0,3333,3334,7,8,0,0,3334, + 644,1,0,0,0,3335,3336,7,18,0,0,3336,3337,7,4,0,0,3337,3338,7,3,0, + 0,3338,3339,7,6,0,0,3339,3340,7,11,0,0,3340,3341,7,21,0,0,3341,646, + 1,0,0,0,3342,3343,7,18,0,0,3343,3344,7,4,0,0,3344,3345,7,3,0,0,3345, + 3346,7,19,0,0,3346,3347,7,5,0,0,3347,3348,7,4,0,0,3348,648,1,0,0, + 0,3349,3350,7,18,0,0,3350,3351,7,19,0,0,3351,3352,7,10,0,0,3352, + 3353,7,10,0,0,3353,3354,7,0,0,0,3354,3355,7,3,0,0,3355,3356,7,14, + 0,0,3356,650,1,0,0,0,3357,3358,7,18,0,0,3358,3359,7,14,0,0,3359, + 3360,7,11,0,0,3360,3361,7,5,0,0,3361,652,1,0,0,0,3362,3363,7,18, + 0,0,3363,3364,7,14,0,0,3364,3365,7,18,0,0,3365,3366,7,4,0,0,3366, + 3367,7,8,0,0,3367,3368,7,10,0,0,3368,3369,5,95,0,0,3369,3370,7,4, + 0,0,3370,3371,7,6,0,0,3371,3372,7,10,0,0,3372,3373,7,8,0,0,3373, + 654,1,0,0,0,3374,3375,7,18,0,0,3375,3376,7,14,0,0,3376,3377,7,18, + 0,0,3377,3378,7,4,0,0,3378,3379,7,8,0,0,3379,3380,7,10,0,0,3380, + 3381,5,95,0,0,3381,3382,7,7,0,0,3382,3383,7,8,0,0,3383,3384,7,3, + 0,0,3384,3385,7,18,0,0,3385,3386,7,6,0,0,3386,3387,7,2,0,0,3387, + 3388,7,11,0,0,3388,656,1,0,0,0,3389,3390,7,4,0,0,3390,3391,7,0,0, + 0,3391,3392,7,1,0,0,3392,3393,7,13,0,0,3393,3394,7,8,0,0,3394,658, + 1,0,0,0,3395,3396,7,4,0,0,3396,3397,7,0,0,0,3397,3398,7,1,0,0,3398, + 3399,7,13,0,0,3399,3400,7,8,0,0,3400,3401,7,18,0,0,3401,660,1,0, + 0,0,3402,3403,7,4,0,0,3403,3404,7,0,0,0,3404,3405,7,1,0,0,3405,3406, + 7,13,0,0,3406,3407,7,8,0,0,3407,3408,7,18,0,0,3408,3409,7,0,0,0, + 3409,3410,7,10,0,0,3410,3411,7,16,0,0,3411,3412,7,13,0,0,3412,3413, + 7,8,0,0,3413,662,1,0,0,0,3414,3415,7,4,0,0,3415,3416,7,1,0,0,3416, + 3417,7,13,0,0,3417,3418,7,16,0,0,3418,3419,7,3,0,0,3419,3420,7,2, + 0,0,3420,3421,7,16,0,0,3421,3422,7,8,0,0,3422,3423,7,3,0,0,3423, + 3424,7,4,0,0,3424,3425,7,6,0,0,3425,3426,7,8,0,0,3426,3427,7,18, + 0,0,3427,664,1,0,0,0,3428,3429,7,4,0,0,3429,3430,7,8,0,0,3430,3431, + 7,10,0,0,3431,3432,7,16,0,0,3432,3433,7,2,0,0,3433,3434,7,3,0,0, + 3434,3435,7,0,0,0,3435,3436,7,3,0,0,3436,3437,7,14,0,0,3437,666, + 1,0,0,0,3438,3439,7,4,0,0,3439,3440,7,8,0,0,3440,3441,7,3,0,0,3441, + 3442,7,10,0,0,3442,3443,7,6,0,0,3443,3444,7,11,0,0,3444,3445,7,0, + 0,0,3445,3446,7,4,0,0,3446,3447,7,8,0,0,3447,3448,7,9,0,0,3448,668, + 1,0,0,0,3449,3450,7,4,0,0,3450,3451,7,17,0,0,3451,3452,7,8,0,0,3452, + 3453,7,11,0,0,3453,670,1,0,0,0,3454,3455,7,4,0,0,3455,3456,7,6,0, + 0,3456,3457,7,10,0,0,3457,3458,7,8,0,0,3458,672,1,0,0,0,3459,3460, + 7,4,0,0,3460,3461,7,6,0,0,3461,3462,7,10,0,0,3462,3463,7,8,0,0,3463, + 3464,7,18,0,0,3464,3465,7,4,0,0,3465,3466,7,0,0,0,3466,3467,7,10, + 0,0,3467,3468,7,16,0,0,3468,674,1,0,0,0,3469,3470,7,4,0,0,3470,3471, + 7,6,0,0,3471,3472,7,10,0,0,3472,3473,7,8,0,0,3473,3474,7,18,0,0, + 3474,3475,7,4,0,0,3475,3476,7,0,0,0,3476,3477,7,10,0,0,3477,3478, + 7,16,0,0,3478,3479,7,13,0,0,3479,3480,7,2,0,0,3480,3481,7,5,0,0, + 3481,3482,7,0,0,0,3482,3483,7,13,0,0,3483,3484,7,4,0,0,3484,3485, + 7,15,0,0,3485,676,1,0,0,0,3486,3487,7,4,0,0,3487,3488,7,6,0,0,3488, + 3489,7,10,0,0,3489,3490,7,8,0,0,3490,3491,7,18,0,0,3491,3492,7,4, + 0,0,3492,3493,7,0,0,0,3493,3494,7,10,0,0,3494,3495,7,16,0,0,3495, + 3496,7,4,0,0,3496,3497,7,15,0,0,3497,678,1,0,0,0,3498,3499,7,4,0, + 0,3499,3500,7,6,0,0,3500,3501,7,11,0,0,3501,3502,7,14,0,0,3502,3503, + 7,6,0,0,3503,3504,7,11,0,0,3504,3505,7,4,0,0,3505,680,1,0,0,0,3506, + 3507,7,4,0,0,3507,3508,7,2,0,0,3508,682,1,0,0,0,3509,3510,7,4,0, + 0,3510,3511,7,2,0,0,3511,3512,7,19,0,0,3512,3513,7,5,0,0,3513,3514, + 7,17,0,0,3514,684,1,0,0,0,3515,3516,7,4,0,0,3516,3517,7,3,0,0,3517, + 3518,7,0,0,0,3518,3519,7,6,0,0,3519,3520,7,13,0,0,3520,3521,7,6, + 0,0,3521,3522,7,11,0,0,3522,3523,7,21,0,0,3523,686,1,0,0,0,3524, + 3525,7,4,0,0,3525,3526,7,3,0,0,3526,3527,7,0,0,0,3527,3528,7,11, + 0,0,3528,3529,7,18,0,0,3529,3530,7,0,0,0,3530,3531,7,5,0,0,3531, + 3532,7,4,0,0,3532,3533,7,6,0,0,3533,3534,7,2,0,0,3534,3535,7,11, + 0,0,3535,688,1,0,0,0,3536,3537,7,4,0,0,3537,3538,7,3,0,0,3538,3539, + 7,0,0,0,3539,3540,7,11,0,0,3540,3541,7,18,0,0,3541,3542,7,0,0,0, + 3542,3543,7,5,0,0,3543,3544,7,4,0,0,3544,3545,7,6,0,0,3545,3546, + 7,2,0,0,3546,3547,7,11,0,0,3547,3548,7,0,0,0,3548,3549,7,13,0,0, + 3549,690,1,0,0,0,3550,3551,7,4,0,0,3551,3552,7,3,0,0,3552,3553,7, + 0,0,0,3553,3554,7,11,0,0,3554,3555,7,18,0,0,3555,3556,7,0,0,0,3556, + 3557,7,5,0,0,3557,3558,7,4,0,0,3558,3559,7,6,0,0,3559,3560,7,2,0, + 0,3560,3561,7,11,0,0,3561,3562,7,18,0,0,3562,692,1,0,0,0,3563,3564, + 7,4,0,0,3564,3565,7,3,0,0,3565,3566,7,0,0,0,3566,3567,7,11,0,0,3567, + 3568,7,18,0,0,3568,3569,7,12,0,0,3569,3570,7,2,0,0,3570,3571,7,3, + 0,0,3571,3572,7,10,0,0,3572,694,1,0,0,0,3573,3574,7,4,0,0,3574,3575, + 7,3,0,0,3575,3576,7,6,0,0,3576,3577,7,21,0,0,3577,3578,7,21,0,0, + 3578,3579,7,8,0,0,3579,3580,7,3,0,0,3580,696,1,0,0,0,3581,3582,7, + 4,0,0,3582,3583,7,3,0,0,3583,3584,7,6,0,0,3584,3585,7,10,0,0,3585, + 698,1,0,0,0,3586,3587,7,4,0,0,3587,3588,7,3,0,0,3588,3589,7,19,0, + 0,3589,3590,7,8,0,0,3590,700,1,0,0,0,3591,3592,7,4,0,0,3592,3593, + 7,3,0,0,3593,3594,7,19,0,0,3594,3595,7,11,0,0,3595,3596,7,5,0,0, + 3596,3597,7,0,0,0,3597,3598,7,4,0,0,3598,3599,7,8,0,0,3599,702,1, + 0,0,0,3600,3601,7,4,0,0,3601,3602,7,14,0,0,3602,3603,7,16,0,0,3603, + 3604,7,8,0,0,3604,704,1,0,0,0,3605,3606,7,19,0,0,3606,3607,7,11, + 0,0,3607,3608,7,0,0,0,3608,3609,7,3,0,0,3609,3610,7,5,0,0,3610,3611, + 7,17,0,0,3611,3612,7,6,0,0,3612,3613,7,7,0,0,3613,3614,7,8,0,0,3614, + 706,1,0,0,0,3615,3616,7,19,0,0,3616,3617,7,11,0,0,3617,3618,7,1, + 0,0,3618,3619,7,2,0,0,3619,3620,7,19,0,0,3620,3621,7,11,0,0,3621, + 3622,7,9,0,0,3622,3623,7,8,0,0,3623,3624,7,9,0,0,3624,708,1,0,0, + 0,3625,3626,7,19,0,0,3626,3627,7,11,0,0,3627,3628,7,9,0,0,3628,3629, + 7,2,0,0,3629,710,1,0,0,0,3630,3631,7,19,0,0,3631,3632,7,11,0,0,3632, + 3633,7,6,0,0,3633,3634,7,2,0,0,3634,3635,7,11,0,0,3635,712,1,0,0, + 0,3636,3637,7,19,0,0,3637,3638,7,11,0,0,3638,3639,7,6,0,0,3639,3640, + 7,2,0,0,3640,3641,7,11,0,0,3641,3642,7,4,0,0,3642,3643,7,14,0,0, + 3643,3644,7,16,0,0,3644,3645,7,8,0,0,3645,714,1,0,0,0,3646,3647, + 7,19,0,0,3647,3648,7,11,0,0,3648,3649,7,6,0,0,3649,3650,7,25,0,0, + 3650,3651,7,19,0,0,3651,3652,7,8,0,0,3652,716,1,0,0,0,3653,3654, + 7,19,0,0,3654,3655,7,11,0,0,3655,3656,7,6,0,0,3656,3657,7,25,0,0, + 3657,3658,7,19,0,0,3658,3659,7,8,0,0,3659,3660,7,24,0,0,3660,3661, + 7,2,0,0,3661,3662,7,6,0,0,3662,3663,7,11,0,0,3663,718,1,0,0,0,3664, + 3665,7,19,0,0,3665,3666,7,11,0,0,3666,3667,7,22,0,0,3667,3668,7, + 11,0,0,3668,3669,7,2,0,0,3669,3670,7,20,0,0,3670,3671,7,11,0,0,3671, + 720,1,0,0,0,3672,3673,7,19,0,0,3673,3674,7,11,0,0,3674,3675,7,13, + 0,0,3675,3676,7,2,0,0,3676,3677,7,5,0,0,3677,3678,7,22,0,0,3678, + 722,1,0,0,0,3679,3680,7,19,0,0,3680,3681,7,11,0,0,3681,3682,7,10, + 0,0,3682,3683,7,0,0,0,3683,3684,7,11,0,0,3684,3685,7,0,0,0,3685, + 3686,7,21,0,0,3686,3687,7,8,0,0,3687,3688,7,9,0,0,3688,724,1,0,0, + 0,3689,3690,7,19,0,0,3690,3691,7,11,0,0,3691,3692,7,18,0,0,3692, + 3693,7,8,0,0,3693,3694,7,4,0,0,3694,726,1,0,0,0,3695,3696,7,19,0, + 0,3696,3697,7,11,0,0,3697,3698,7,18,0,0,3698,3699,7,6,0,0,3699,3700, + 7,21,0,0,3700,3701,7,11,0,0,3701,3702,7,8,0,0,3702,3703,7,9,0,0, + 3703,728,1,0,0,0,3704,3705,7,19,0,0,3705,3706,7,16,0,0,3706,3707, + 7,9,0,0,3707,3708,7,0,0,0,3708,3709,7,4,0,0,3709,3710,7,8,0,0,3710, + 730,1,0,0,0,3711,3712,7,19,0,0,3712,3713,7,3,0,0,3713,3714,7,6,0, + 0,3714,732,1,0,0,0,3715,3716,7,19,0,0,3716,3717,7,3,0,0,3717,3718, + 7,13,0,0,3718,734,1,0,0,0,3719,3720,7,19,0,0,3720,3721,7,18,0,0, + 3721,3722,7,8,0,0,3722,736,1,0,0,0,3723,3724,7,19,0,0,3724,3725, + 7,18,0,0,3725,3726,7,8,0,0,3726,3727,7,3,0,0,3727,738,1,0,0,0,3728, + 3729,7,19,0,0,3729,3730,7,18,0,0,3730,3731,7,6,0,0,3731,3732,7,11, + 0,0,3732,3733,7,21,0,0,3733,740,1,0,0,0,3734,3735,7,19,0,0,3735, + 3736,7,4,0,0,3736,3737,7,5,0,0,3737,742,1,0,0,0,3738,3739,7,19,0, + 0,3739,3740,7,4,0,0,3740,3741,7,5,0,0,3741,3742,5,95,0,0,3742,3743, + 7,4,0,0,3743,3744,7,10,0,0,3744,3745,7,8,0,0,3745,3746,7,18,0,0, + 3746,3747,7,4,0,0,3747,3748,7,0,0,0,3748,3749,7,10,0,0,3749,3750, + 7,16,0,0,3750,744,1,0,0,0,3751,3752,7,7,0,0,3752,3753,7,0,0,0,3753, + 3754,7,13,0,0,3754,3755,7,6,0,0,3755,3756,7,9,0,0,3756,3757,7,0, + 0,0,3757,3758,7,4,0,0,3758,3759,7,8,0,0,3759,746,1,0,0,0,3760,3761, + 7,7,0,0,3761,3762,7,0,0,0,3762,3763,7,13,0,0,3763,3764,7,19,0,0, + 3764,3765,7,8,0,0,3765,3766,7,18,0,0,3766,748,1,0,0,0,3767,3768, + 5,36,0,0,3768,3769,7,7,0,0,3769,3770,7,0,0,0,3770,3771,7,13,0,0, + 3771,3772,7,19,0,0,3772,3773,7,8,0,0,3773,3774,5,36,0,0,3774,750, + 1,0,0,0,3775,3776,7,7,0,0,3776,3777,7,0,0,0,3777,3778,7,3,0,0,3778, + 3779,7,5,0,0,3779,3780,7,17,0,0,3780,3781,7,0,0,0,3781,3782,7,3, + 0,0,3782,752,1,0,0,0,3783,3784,7,7,0,0,3784,3785,7,8,0,0,3785,3786, + 7,5,0,0,3786,3787,7,4,0,0,3787,3788,7,2,0,0,3788,3789,7,3,0,0,3789, + 3790,7,6,0,0,3790,3791,7,15,0,0,3791,3792,7,0,0,0,3792,3793,7,4, + 0,0,3793,3794,7,6,0,0,3794,3795,7,2,0,0,3795,3796,7,11,0,0,3796, + 754,1,0,0,0,3797,3798,7,7,0,0,3798,3799,7,6,0,0,3799,3800,7,8,0, + 0,3800,3801,7,20,0,0,3801,756,1,0,0,0,3802,3803,7,7,0,0,3803,3804, + 7,6,0,0,3804,3805,7,8,0,0,3805,3806,7,20,0,0,3806,3807,7,18,0,0, + 3807,758,1,0,0,0,3808,3809,7,20,0,0,3809,3810,7,0,0,0,3810,3811, + 7,6,0,0,3811,3812,7,4,0,0,3812,760,1,0,0,0,3813,3814,7,20,0,0,3814, + 3815,7,8,0,0,3815,3816,7,8,0,0,3816,3817,7,22,0,0,3817,762,1,0,0, + 0,3818,3819,7,20,0,0,3819,3820,7,8,0,0,3820,3821,7,8,0,0,3821,3822, + 7,22,0,0,3822,3823,7,18,0,0,3823,764,1,0,0,0,3824,3825,7,20,0,0, + 3825,3826,7,17,0,0,3826,3827,7,8,0,0,3827,3828,7,11,0,0,3828,766, + 1,0,0,0,3829,3830,7,20,0,0,3830,3831,7,17,0,0,3831,3832,7,8,0,0, + 3832,3833,7,3,0,0,3833,3834,7,8,0,0,3834,768,1,0,0,0,3835,3836,7, + 20,0,0,3836,3837,7,17,0,0,3837,3838,7,6,0,0,3838,3839,7,13,0,0,3839, + 3840,7,8,0,0,3840,770,1,0,0,0,3841,3842,7,20,0,0,3842,3843,7,6,0, + 0,3843,3844,7,11,0,0,3844,3845,7,9,0,0,3845,3846,7,2,0,0,3846,3847, + 7,20,0,0,3847,772,1,0,0,0,3848,3849,7,20,0,0,3849,3850,7,6,0,0,3850, + 3851,7,4,0,0,3851,3852,7,17,0,0,3852,774,1,0,0,0,3853,3854,7,20, + 0,0,3854,3855,7,6,0,0,3855,3856,7,4,0,0,3856,3857,7,17,0,0,3857, + 3858,7,6,0,0,3858,3859,7,11,0,0,3859,776,1,0,0,0,3860,3861,7,20, + 0,0,3861,3862,7,2,0,0,3862,3863,7,3,0,0,3863,3864,7,22,0,0,3864, + 778,1,0,0,0,3865,3866,7,20,0,0,3866,3867,7,2,0,0,3867,3868,7,3,0, + 0,3868,3869,7,22,0,0,3869,3870,7,13,0,0,3870,3871,7,2,0,0,3871,3872, + 7,0,0,0,3872,3873,7,9,0,0,3873,780,1,0,0,0,3874,3875,7,20,0,0,3875, + 3876,7,3,0,0,3876,3877,7,6,0,0,3877,3878,7,4,0,0,3878,3879,7,8,0, + 0,3879,782,1,0,0,0,3880,3881,7,14,0,0,3881,3882,7,8,0,0,3882,3883, + 7,0,0,0,3883,3884,7,3,0,0,3884,784,1,0,0,0,3885,3886,7,14,0,0,3886, + 3887,7,8,0,0,3887,3888,7,0,0,0,3888,3889,7,3,0,0,3889,3890,7,18, + 0,0,3890,786,1,0,0,0,3891,3892,7,15,0,0,3892,3893,7,2,0,0,3893,3894, + 7,11,0,0,3894,3895,7,8,0,0,3895,788,1,0,0,0,3896,3897,5,46,0,0,3897, + 790,1,0,0,0,3898,3899,5,58,0,0,3899,792,1,0,0,0,3900,3901,5,44,0, + 0,3901,794,1,0,0,0,3902,3903,5,59,0,0,3903,796,1,0,0,0,3904,3905, + 5,40,0,0,3905,798,1,0,0,0,3906,3907,5,41,0,0,3907,800,1,0,0,0,3908, + 3909,5,91,0,0,3909,802,1,0,0,0,3910,3911,5,93,0,0,3911,804,1,0,0, + 0,3912,3913,5,123,0,0,3913,806,1,0,0,0,3914,3915,5,125,0,0,3915, + 808,1,0,0,0,3916,3920,5,61,0,0,3917,3918,5,61,0,0,3918,3920,5,61, + 0,0,3919,3916,1,0,0,0,3919,3917,1,0,0,0,3920,810,1,0,0,0,3921,3922, + 5,60,0,0,3922,3923,5,61,0,0,3923,3924,5,62,0,0,3924,812,1,0,0,0, + 3925,3926,5,60,0,0,3926,3930,5,62,0,0,3927,3928,5,33,0,0,3928,3930, + 5,61,0,0,3929,3925,1,0,0,0,3929,3927,1,0,0,0,3930,814,1,0,0,0,3931, + 3932,5,60,0,0,3932,3933,5,61,0,0,3933,816,1,0,0,0,3934,3935,5,60, + 0,0,3935,818,1,0,0,0,3936,3937,5,62,0,0,3937,3938,5,61,0,0,3938, + 820,1,0,0,0,3939,3940,5,62,0,0,3940,822,1,0,0,0,3941,3942,5,47,0, + 0,3942,824,1,0,0,0,3943,3944,5,43,0,0,3944,826,1,0,0,0,3945,3946, + 5,45,0,0,3946,828,1,0,0,0,3947,3948,5,42,0,0,3948,830,1,0,0,0,3949, + 3950,5,37,0,0,3950,832,1,0,0,0,3951,3952,7,9,0,0,3952,3953,7,6,0, + 0,3953,3954,7,7,0,0,3954,834,1,0,0,0,3955,3956,5,33,0,0,3956,836, + 1,0,0,0,3957,3958,5,38,0,0,3958,838,1,0,0,0,3959,3960,5,126,0,0, + 3960,840,1,0,0,0,3961,3962,5,124,0,0,3962,842,1,0,0,0,3963,3964, + 5,124,0,0,3964,3965,5,124,0,0,3965,844,1,0,0,0,3966,3967,5,94,0, + 0,3967,846,1,0,0,0,3968,3969,5,63,0,0,3969,848,1,0,0,0,3970,3971, + 5,36,0,0,3971,850,1,0,0,0,3972,3978,5,39,0,0,3973,3977,8,26,0,0, + 3974,3975,5,92,0,0,3975,3977,9,0,0,0,3976,3973,1,0,0,0,3976,3974, + 1,0,0,0,3977,3980,1,0,0,0,3978,3976,1,0,0,0,3978,3979,1,0,0,0,3979, + 3981,1,0,0,0,3980,3978,1,0,0,0,3981,3993,5,39,0,0,3982,3988,5,34, + 0,0,3983,3987,8,27,0,0,3984,3985,5,92,0,0,3985,3987,9,0,0,0,3986, + 3983,1,0,0,0,3986,3984,1,0,0,0,3987,3990,1,0,0,0,3988,3986,1,0,0, + 0,3988,3989,1,0,0,0,3989,3991,1,0,0,0,3990,3988,1,0,0,0,3991,3993, + 5,34,0,0,3992,3972,1,0,0,0,3992,3982,1,0,0,0,3993,3994,1,0,0,0,3994, + 3992,1,0,0,0,3994,3995,1,0,0,0,3995,852,1,0,0,0,3996,4006,3,851, + 425,0,3997,3998,5,48,0,0,3998,4001,7,23,0,0,3999,4002,3,869,434, + 0,4000,4002,3,871,435,0,4001,3999,1,0,0,0,4001,4000,1,0,0,0,4002, + 4003,1,0,0,0,4003,4001,1,0,0,0,4003,4004,1,0,0,0,4004,4006,1,0,0, + 0,4005,3996,1,0,0,0,4005,3997,1,0,0,0,4006,854,1,0,0,0,4007,4009, + 3,871,435,0,4008,4007,1,0,0,0,4009,4010,1,0,0,0,4010,4008,1,0,0, + 0,4010,4011,1,0,0,0,4011,4012,1,0,0,0,4012,4013,7,28,0,0,4013,856, + 1,0,0,0,4014,4016,3,861,430,0,4015,4017,7,1,0,0,4016,4015,1,0,0, + 0,4016,4017,1,0,0,0,4017,4018,1,0,0,0,4018,4019,7,9,0,0,4019,858, + 1,0,0,0,4020,4022,3,871,435,0,4021,4020,1,0,0,0,4022,4023,1,0,0, + 0,4023,4021,1,0,0,0,4023,4024,1,0,0,0,4024,4025,1,0,0,0,4025,4026, + 7,29,0,0,4026,860,1,0,0,0,4027,4029,3,871,435,0,4028,4027,1,0,0, + 0,4029,4030,1,0,0,0,4030,4028,1,0,0,0,4030,4031,1,0,0,0,4031,4043, + 1,0,0,0,4032,4036,3,789,394,0,4033,4035,3,871,435,0,4034,4033,1, + 0,0,0,4035,4038,1,0,0,0,4036,4034,1,0,0,0,4036,4037,1,0,0,0,4037, + 4040,1,0,0,0,4038,4036,1,0,0,0,4039,4041,3,873,436,0,4040,4039,1, + 0,0,0,4040,4041,1,0,0,0,4041,4044,1,0,0,0,4042,4044,3,873,436,0, + 4043,4032,1,0,0,0,4043,4042,1,0,0,0,4043,4044,1,0,0,0,4044,862,1, + 0,0,0,4045,4048,3,867,433,0,4046,4048,3,871,435,0,4047,4045,1,0, + 0,0,4047,4046,1,0,0,0,4048,4054,1,0,0,0,4049,4053,3,867,433,0,4050, + 4053,3,871,435,0,4051,4053,5,95,0,0,4052,4049,1,0,0,0,4052,4050, + 1,0,0,0,4052,4051,1,0,0,0,4053,4056,1,0,0,0,4054,4052,1,0,0,0,4054, + 4055,1,0,0,0,4055,4067,1,0,0,0,4056,4054,1,0,0,0,4057,4067,3,865, + 432,0,4058,4060,5,96,0,0,4059,4061,3,875,437,0,4060,4059,1,0,0,0, + 4061,4062,1,0,0,0,4062,4060,1,0,0,0,4062,4063,1,0,0,0,4063,4064, + 1,0,0,0,4064,4065,5,96,0,0,4065,4067,1,0,0,0,4066,4047,1,0,0,0,4066, + 4057,1,0,0,0,4066,4058,1,0,0,0,4067,864,1,0,0,0,4068,4074,5,96,0, + 0,4069,4070,5,96,0,0,4070,4073,5,96,0,0,4071,4073,8,30,0,0,4072, + 4069,1,0,0,0,4072,4071,1,0,0,0,4073,4076,1,0,0,0,4074,4072,1,0,0, + 0,4074,4075,1,0,0,0,4075,4077,1,0,0,0,4076,4074,1,0,0,0,4077,4078, + 5,96,0,0,4078,866,1,0,0,0,4079,4080,7,31,0,0,4080,868,1,0,0,0,4081, + 4082,7,32,0,0,4082,870,1,0,0,0,4083,4084,2,48,57,0,4084,872,1,0, + 0,0,4085,4088,7,8,0,0,4086,4089,3,825,412,0,4087,4089,3,827,413, + 0,4088,4086,1,0,0,0,4088,4087,1,0,0,0,4088,4089,1,0,0,0,4089,4091, + 1,0,0,0,4090,4092,3,871,435,0,4091,4090,1,0,0,0,4092,4093,1,0,0, + 0,4093,4091,1,0,0,0,4093,4094,1,0,0,0,4094,874,1,0,0,0,4095,4112, + 7,33,0,0,4096,4112,3,825,412,0,4097,4112,3,829,414,0,4098,4112,3, + 847,423,0,4099,4112,3,827,413,0,4100,4112,3,789,394,0,4101,4112, + 3,797,398,0,4102,4112,3,799,399,0,4103,4112,3,801,400,0,4104,4112, + 3,803,401,0,4105,4112,3,805,402,0,4106,4112,3,807,403,0,4107,4112, + 3,845,422,0,4108,4112,3,841,420,0,4109,4112,3,849,424,0,4110,4112, + 3,835,417,0,4111,4095,1,0,0,0,4111,4096,1,0,0,0,4111,4097,1,0,0, + 0,4111,4098,1,0,0,0,4111,4099,1,0,0,0,4111,4100,1,0,0,0,4111,4101, + 1,0,0,0,4111,4102,1,0,0,0,4111,4103,1,0,0,0,4111,4104,1,0,0,0,4111, + 4105,1,0,0,0,4111,4106,1,0,0,0,4111,4107,1,0,0,0,4111,4108,1,0,0, + 0,4111,4109,1,0,0,0,4111,4110,1,0,0,0,4112,876,1,0,0,0,4113,4117, + 5,95,0,0,4114,4118,3,867,433,0,4115,4118,3,871,435,0,4116,4118,7, + 34,0,0,4117,4114,1,0,0,0,4117,4115,1,0,0,0,4117,4116,1,0,0,0,4118, + 4119,1,0,0,0,4119,4117,1,0,0,0,4119,4120,1,0,0,0,4120,878,1,0,0, + 0,4121,4122,7,35,0,0,4122,4123,1,0,0,0,4123,4124,6,439,0,0,4124, + 880,1,0,0,0,4125,4126,5,45,0,0,4126,4127,5,45,0,0,4127,4131,1,0, + 0,0,4128,4130,8,36,0,0,4129,4128,1,0,0,0,4130,4133,1,0,0,0,4131, + 4129,1,0,0,0,4131,4132,1,0,0,0,4132,4134,1,0,0,0,4133,4131,1,0,0, + 0,4134,4135,6,440,0,0,4135,882,1,0,0,0,4136,4139,3,885,442,0,4137, + 4139,3,887,443,0,4138,4136,1,0,0,0,4138,4137,1,0,0,0,4139,884,1, + 0,0,0,4140,4141,5,47,0,0,4141,4142,5,42,0,0,4142,4143,5,43,0,0,4143, + 4148,1,0,0,0,4144,4147,3,883,441,0,4145,4147,9,0,0,0,4146,4144,1, + 0,0,0,4146,4145,1,0,0,0,4147,4150,1,0,0,0,4148,4149,1,0,0,0,4148, + 4146,1,0,0,0,4149,4151,1,0,0,0,4150,4148,1,0,0,0,4151,4152,5,42, + 0,0,4152,4153,5,47,0,0,4153,4154,1,0,0,0,4154,4155,6,442,0,0,4155, + 886,1,0,0,0,4156,4157,5,47,0,0,4157,4158,5,42,0,0,4158,4163,1,0, + 0,0,4159,4162,3,883,441,0,4160,4162,9,0,0,0,4161,4159,1,0,0,0,4161, + 4160,1,0,0,0,4162,4165,1,0,0,0,4163,4164,1,0,0,0,4163,4161,1,0,0, + 0,4164,4166,1,0,0,0,4165,4163,1,0,0,0,4166,4167,5,42,0,0,4167,4168, + 5,47,0,0,4168,4169,1,0,0,0,4169,4170,6,443,0,0,4170,888,1,0,0,0, + 37,0,3919,3929,3976,3978,3986,3988,3992,3994,4001,4003,4005,4010, + 4016,4023,4030,4036,4040,4043,4047,4052,4054,4062,4066,4072,4074, + 4088,4093,4111,4117,4119,4131,4138,4146,4148,4161,4163,1,0,1,0 ]; private static __ATN: antlr.ATN; diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index 73c47e3..b954137 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -182,6 +182,7 @@ null 'LEFT' 'LESS' 'LEVEL' +'LIFECYCLE' 'LIKE' 'LIMIT' 'LINES' @@ -622,6 +623,7 @@ KW_LEADING KW_LEFT KW_LESS KW_LEVEL +KW_LIFECYCLE KW_LIKE KW_LIMIT KW_LINES @@ -989,6 +991,7 @@ executedAsSpec definedAsSpec showStmtIdentifier tableComment +tableLifecycle createTablePartitionSpec createTablePartitionColumnTypeSpec createTablePartitionColumnSpec @@ -1402,4 +1405,4 @@ dropMappingStatement atn: -[4, 1, 437, 5519, 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, 1, 0, 5, 0, 1042, 8, 0, 10, 0, 12, 0, 1045, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 1051, 8, 1, 1, 1, 3, 1, 1054, 8, 1, 1, 2, 1, 2, 5, 2, 1058, 8, 2, 10, 2, 12, 2, 1061, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1073, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1083, 8, 3, 1, 3, 3, 3, 1086, 8, 3, 1, 3, 1, 3, 3, 3, 1090, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1110, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 1115, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1120, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1126, 8, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 3, 9, 1133, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1146, 8, 10, 1, 11, 1, 11, 3, 11, 1150, 8, 11, 1, 11, 1, 11, 3, 11, 1154, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1159, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1166, 8, 12, 1, 12, 1, 12, 3, 12, 1170, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 1175, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1182, 8, 14, 1, 14, 1, 14, 3, 14, 1186, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 5, 16, 1195, 8, 16, 10, 16, 12, 16, 1198, 9, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1203, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1210, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1259, 8, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1287, 8, 28, 1, 28, 1, 28, 3, 28, 1291, 8, 28, 1, 28, 1, 28, 3, 28, 1295, 8, 28, 1, 28, 3, 28, 1298, 8, 28, 1, 28, 3, 28, 1301, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1306, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1312, 8, 28, 1, 28, 1, 28, 3, 28, 1316, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1322, 8, 28, 3, 28, 1324, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1339, 8, 32, 10, 32, 12, 32, 1342, 9, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 3, 35, 1353, 8, 35, 1, 35, 1, 35, 3, 35, 1357, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 3, 37, 1364, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1372, 8, 37, 1, 37, 3, 37, 1375, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1380, 8, 38, 1, 38, 1, 38, 3, 38, 1384, 8, 38, 1, 38, 3, 38, 1387, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1397, 8, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1405, 8, 40, 5, 40, 1407, 8, 40, 10, 40, 12, 40, 1410, 9, 40, 3, 40, 1412, 8, 40, 1, 41, 1, 41, 3, 41, 1416, 8, 41, 1, 42, 1, 42, 3, 42, 1420, 8, 42, 1, 42, 3, 42, 1423, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1428, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1434, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1439, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1444, 8, 43, 1, 43, 1, 43, 3, 43, 1448, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1459, 8, 44, 3, 44, 1461, 8, 44, 1, 44, 1, 44, 3, 44, 1465, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1475, 8, 47, 1, 47, 1, 47, 3, 47, 1479, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1485, 8, 47, 1, 47, 3, 47, 1488, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1495, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1500, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1508, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1513, 8, 47, 1, 47, 1, 47, 3, 47, 1517, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1525, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1530, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1536, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1542, 8, 47, 1, 47, 3, 47, 1545, 8, 47, 1, 47, 3, 47, 1548, 8, 47, 1, 47, 3, 47, 1551, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1560, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1568, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1573, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1581, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1588, 8, 47, 1, 47, 3, 47, 1591, 8, 47, 1, 47, 3, 47, 1594, 8, 47, 3, 47, 1596, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1604, 8, 47, 1, 47, 3, 47, 1607, 8, 47, 1, 47, 3, 47, 1610, 8, 47, 1, 47, 3, 47, 1613, 8, 47, 1, 47, 3, 47, 1616, 8, 47, 1, 47, 3, 47, 1619, 8, 47, 1, 47, 3, 47, 1622, 8, 47, 1, 47, 3, 47, 1625, 8, 47, 1, 47, 3, 47, 1628, 8, 47, 1, 47, 3, 47, 1631, 8, 47, 1, 47, 3, 47, 1634, 8, 47, 3, 47, 1636, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1648, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1654, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1662, 8, 47, 3, 47, 1664, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1674, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1680, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1695, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1712, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1717, 8, 56, 1, 57, 1, 57, 3, 57, 1721, 8, 57, 1, 57, 1, 57, 3, 57, 1725, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1732, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1737, 8, 58, 10, 58, 12, 58, 1740, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1745, 8, 58, 1, 59, 1, 59, 3, 59, 1749, 8, 59, 1, 59, 3, 59, 1752, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1757, 8, 59, 10, 59, 12, 59, 1760, 9, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1782, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1787, 8, 64, 1, 64, 1, 64, 3, 64, 1791, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 1799, 8, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1808, 8, 68, 1, 68, 1, 68, 3, 68, 1812, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1818, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1824, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1831, 8, 69, 1, 69, 3, 69, 1834, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1840, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1845, 8, 70, 10, 70, 12, 70, 1848, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1855, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1862, 8, 73, 10, 73, 12, 73, 1865, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1873, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1880, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1900, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1907, 8, 80, 3, 80, 1909, 8, 80, 1, 81, 1, 81, 1, 81, 5, 81, 1914, 8, 81, 10, 81, 12, 81, 1917, 9, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1926, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1934, 8, 84, 1, 85, 1, 85, 3, 85, 1938, 8, 85, 1, 85, 1, 85, 3, 85, 1942, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1955, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1964, 8, 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, 89, 1, 89, 3, 89, 1980, 8, 89, 1, 89, 1, 89, 3, 89, 1984, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1989, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1994, 8, 89, 1, 89, 3, 89, 1997, 8, 89, 1, 89, 3, 89, 2000, 8, 89, 1, 89, 1, 89, 3, 89, 2004, 8, 89, 1, 89, 3, 89, 2007, 8, 89, 1, 89, 3, 89, 2010, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2015, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2023, 8, 91, 1, 91, 1, 91, 3, 91, 2027, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2034, 8, 91, 1, 91, 3, 91, 2037, 8, 91, 1, 91, 3, 91, 2040, 8, 91, 1, 91, 3, 91, 2043, 8, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2055, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2061, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2087, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2095, 8, 99, 1, 99, 1, 99, 3, 99, 2099, 8, 99, 1, 99, 3, 99, 2102, 8, 99, 1, 99, 3, 99, 2105, 8, 99, 1, 99, 3, 99, 2108, 8, 99, 1, 99, 3, 99, 2111, 8, 99, 1, 99, 3, 99, 2114, 8, 99, 1, 99, 3, 99, 2117, 8, 99, 1, 99, 3, 99, 2120, 8, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2129, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2139, 8, 101, 1, 101, 3, 101, 2142, 8, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2162, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2168, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2174, 8, 105, 1, 105, 3, 105, 2177, 8, 105, 3, 105, 2179, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 3, 107, 2186, 8, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2193, 8, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2203, 8, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2208, 8, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2215, 8, 111, 10, 111, 12, 111, 2218, 9, 111, 1, 112, 1, 112, 1, 112, 5, 112, 2223, 8, 112, 10, 112, 12, 112, 2226, 9, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2231, 8, 113, 10, 113, 12, 113, 2234, 9, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2243, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2256, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2269, 8, 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, 118, 1, 118, 3, 118, 2290, 8, 118, 1, 119, 1, 119, 3, 119, 2294, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 2309, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2315, 8, 123, 1, 123, 3, 123, 2318, 8, 123, 1, 123, 3, 123, 2321, 8, 123, 1, 123, 3, 123, 2324, 8, 123, 1, 123, 3, 123, 2327, 8, 123, 1, 124, 1, 124, 3, 124, 2331, 8, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2343, 8, 127, 10, 127, 12, 127, 2346, 9, 127, 1, 127, 1, 127, 1, 127, 5, 127, 2351, 8, 127, 10, 127, 12, 127, 2354, 9, 127, 3, 127, 2356, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2371, 8, 130, 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, 133, 1, 133, 1, 133, 1, 133, 1, 133, 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, 135, 1, 135, 1, 135, 3, 135, 2405, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2413, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2418, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2426, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2431, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2436, 8, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 5, 137, 2444, 8, 137, 10, 137, 12, 137, 2447, 9, 137, 1, 138, 1, 138, 1, 138, 5, 138, 2452, 8, 138, 10, 138, 12, 138, 2455, 9, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2460, 8, 139, 10, 139, 12, 139, 2463, 9, 139, 1, 140, 1, 140, 1, 140, 5, 140, 2468, 8, 140, 10, 140, 12, 140, 2471, 9, 140, 1, 141, 1, 141, 1, 141, 5, 141, 2476, 8, 141, 10, 141, 12, 141, 2479, 9, 141, 1, 141, 3, 141, 2482, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2492, 8, 143, 5, 143, 2494, 8, 143, 10, 143, 12, 143, 2497, 9, 143, 1, 144, 1, 144, 1, 144, 5, 144, 2502, 8, 144, 10, 144, 12, 144, 2505, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 3, 146, 2513, 8, 146, 1, 146, 3, 146, 2516, 8, 146, 1, 147, 1, 147, 3, 147, 2520, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2527, 8, 149, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2533, 8, 151, 1, 151, 1, 151, 3, 151, 2537, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2543, 8, 152, 1, 153, 1, 153, 3, 153, 2547, 8, 153, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2559, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2568, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2579, 8, 157, 1, 158, 1, 158, 3, 158, 2583, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 2588, 8, 159, 10, 159, 12, 159, 2591, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 5, 161, 2600, 8, 161, 10, 161, 12, 161, 2603, 9, 161, 1, 162, 1, 162, 1, 163, 1, 163, 3, 163, 2609, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 2618, 8, 166, 1, 166, 3, 166, 2621, 8, 166, 1, 167, 1, 167, 1, 167, 5, 167, 2626, 8, 167, 10, 167, 12, 167, 2629, 9, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2634, 8, 168, 1, 169, 1, 169, 1, 170, 1, 170, 3, 170, 2640, 8, 170, 1, 170, 3, 170, 2643, 8, 170, 1, 170, 3, 170, 2646, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2652, 8, 171, 1, 172, 1, 172, 3, 172, 2656, 8, 172, 1, 173, 1, 173, 3, 173, 2660, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2665, 8, 174, 1, 174, 1, 174, 3, 174, 2669, 8, 174, 1, 175, 1, 175, 3, 175, 2673, 8, 175, 1, 176, 1, 176, 3, 176, 2677, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2685, 8, 176, 1, 177, 1, 177, 3, 177, 2689, 8, 177, 1, 177, 1, 177, 3, 177, 2693, 8, 177, 1, 178, 1, 178, 3, 178, 2697, 8, 178, 1, 179, 1, 179, 3, 179, 2701, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2709, 8, 179, 1, 180, 1, 180, 3, 180, 2713, 8, 180, 1, 180, 1, 180, 3, 180, 2717, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2725, 8, 181, 1, 182, 1, 182, 1, 182, 3, 182, 2730, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2735, 8, 183, 1, 184, 1, 184, 3, 184, 2739, 8, 184, 1, 185, 1, 185, 3, 185, 2743, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2750, 8, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 5, 188, 2757, 8, 188, 10, 188, 12, 188, 2760, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2767, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2779, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2797, 8, 190, 1, 190, 3, 190, 2800, 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2806, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 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, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2832, 8, 195, 1, 196, 3, 196, 2835, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2841, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2847, 8, 198, 10, 198, 12, 198, 2850, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2857, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 5, 200, 2868, 8, 200, 10, 200, 12, 200, 2871, 9, 200, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2877, 8, 201, 1, 201, 3, 201, 2880, 8, 201, 1, 201, 3, 201, 2883, 8, 201, 1, 201, 3, 201, 2886, 8, 201, 1, 201, 3, 201, 2889, 8, 201, 1, 201, 3, 201, 2892, 8, 201, 1, 201, 3, 201, 2895, 8, 201, 1, 201, 3, 201, 2898, 8, 201, 1, 201, 3, 201, 2901, 8, 201, 1, 201, 3, 201, 2904, 8, 201, 1, 201, 3, 201, 2907, 8, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2912, 8, 201, 1, 201, 3, 201, 2915, 8, 201, 1, 201, 3, 201, 2918, 8, 201, 1, 201, 3, 201, 2921, 8, 201, 1, 201, 3, 201, 2924, 8, 201, 1, 201, 3, 201, 2927, 8, 201, 1, 201, 3, 201, 2930, 8, 201, 1, 201, 3, 201, 2933, 8, 201, 1, 201, 3, 201, 2936, 8, 201, 1, 201, 3, 201, 2939, 8, 201, 1, 201, 3, 201, 2942, 8, 201, 3, 201, 2944, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2950, 8, 202, 1, 203, 1, 203, 3, 203, 2954, 8, 203, 1, 203, 3, 203, 2957, 8, 203, 1, 203, 3, 203, 2960, 8, 203, 1, 203, 3, 203, 2963, 8, 203, 1, 203, 3, 203, 2966, 8, 203, 1, 203, 3, 203, 2969, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2976, 8, 203, 1, 204, 1, 204, 3, 204, 2980, 8, 204, 1, 204, 3, 204, 2983, 8, 204, 1, 204, 3, 204, 2986, 8, 204, 1, 204, 3, 204, 2989, 8, 204, 1, 204, 3, 204, 2992, 8, 204, 1, 204, 3, 204, 2995, 8, 204, 1, 205, 1, 205, 1, 205, 4, 205, 3000, 8, 205, 11, 205, 12, 205, 3001, 1, 206, 3, 206, 3005, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3013, 8, 207, 1, 207, 1, 207, 3, 207, 3017, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3024, 8, 207, 3, 207, 3026, 8, 207, 1, 208, 3, 208, 3029, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3034, 8, 208, 1, 208, 3, 208, 3037, 8, 208, 1, 208, 1, 208, 3, 208, 3041, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3046, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3052, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 3066, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 3072, 8, 213, 10, 213, 12, 213, 3075, 9, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 3081, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3087, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 5, 216, 3094, 8, 216, 10, 216, 12, 216, 3097, 9, 216, 3, 216, 3099, 8, 216, 1, 217, 1, 217, 3, 217, 3103, 8, 217, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 3, 221, 3116, 8, 221, 1, 222, 1, 222, 3, 222, 3120, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 4, 224, 3129, 8, 224, 11, 224, 12, 224, 3130, 1, 225, 1, 225, 1, 225, 4, 225, 3136, 8, 225, 11, 225, 12, 225, 3137, 1, 226, 1, 226, 3, 226, 3142, 8, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3147, 8, 226, 1, 226, 3, 226, 3150, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 5, 227, 3160, 8, 227, 10, 227, 12, 227, 3163, 9, 227, 1, 227, 3, 227, 3166, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3173, 8, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3178, 8, 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, 231, 1, 231, 1, 231, 3, 231, 3198, 8, 231, 1, 232, 1, 232, 1, 232, 4, 232, 3203, 8, 232, 11, 232, 12, 232, 3204, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3228, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3244, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3261, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3267, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3284, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3297, 8, 241, 1, 242, 1, 242, 3, 242, 3301, 8, 242, 1, 243, 1, 243, 3, 243, 3305, 8, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 3, 245, 3312, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 3340, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3347, 8, 251, 1, 252, 1, 252, 1, 252, 3, 252, 3352, 8, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3357, 8, 253, 1, 254, 1, 254, 1, 254, 3, 254, 3362, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3367, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 3, 256, 3375, 8, 256, 1, 256, 1, 256, 1, 256, 1, 256, 3, 256, 3381, 8, 256, 1, 256, 1, 256, 3, 256, 3385, 8, 256, 1, 256, 3, 256, 3388, 8, 256, 1, 256, 3, 256, 3391, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3397, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3404, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 3, 259, 3414, 8, 259, 1, 260, 1, 260, 3, 260, 3418, 8, 260, 1, 260, 4, 260, 3421, 8, 260, 11, 260, 12, 260, 3422, 1, 261, 1, 261, 3, 261, 3427, 8, 261, 1, 262, 1, 262, 5, 262, 3431, 8, 262, 10, 262, 12, 262, 3434, 9, 262, 1, 263, 1, 263, 5, 263, 3438, 8, 263, 10, 263, 12, 263, 3441, 9, 263, 1, 264, 1, 264, 5, 264, 3445, 8, 264, 10, 264, 12, 264, 3448, 9, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 3, 267, 3458, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 3465, 8, 267, 10, 267, 12, 267, 3468, 9, 267, 1, 267, 3, 267, 3471, 8, 267, 1, 267, 3, 267, 3474, 8, 267, 1, 267, 3, 267, 3477, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 3, 268, 3485, 8, 268, 1, 268, 3, 268, 3488, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3496, 8, 269, 1, 269, 3, 269, 3499, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3507, 8, 270, 1, 270, 1, 270, 3, 270, 3511, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3516, 8, 270, 1, 271, 1, 271, 3, 271, 3520, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 3, 273, 3529, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 5, 276, 3543, 8, 276, 10, 276, 12, 276, 3546, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 3560, 8, 279, 3, 279, 3562, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 3578, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 3585, 8, 282, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 3, 287, 3602, 8, 287, 1, 287, 3, 287, 3605, 8, 287, 1, 287, 3, 287, 3608, 8, 287, 1, 287, 3, 287, 3611, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 3617, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 3640, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 3648, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 3662, 8, 292, 1, 292, 3, 292, 3665, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 3670, 8, 293, 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, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 3696, 8, 297, 1, 298, 1, 298, 3, 298, 3700, 8, 298, 1, 298, 3, 298, 3703, 8, 298, 1, 298, 3, 298, 3706, 8, 298, 1, 298, 1, 298, 3, 298, 3710, 8, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3715, 8, 298, 1, 298, 3, 298, 3718, 8, 298, 1, 298, 3, 298, 3721, 8, 298, 1, 298, 3, 298, 3724, 8, 298, 1, 298, 3, 298, 3727, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3733, 8, 298, 1, 298, 3, 298, 3736, 8, 298, 1, 298, 3, 298, 3739, 8, 298, 1, 298, 3, 298, 3742, 8, 298, 1, 298, 3, 298, 3745, 8, 298, 1, 298, 3, 298, 3748, 8, 298, 1, 298, 3, 298, 3751, 8, 298, 1, 298, 3, 298, 3754, 8, 298, 1, 298, 3, 298, 3757, 8, 298, 1, 298, 1, 298, 3, 298, 3761, 8, 298, 3, 298, 3763, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3769, 8, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3774, 8, 298, 1, 298, 3, 298, 3777, 8, 298, 1, 298, 3, 298, 3780, 8, 298, 1, 298, 3, 298, 3783, 8, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3789, 8, 298, 1, 298, 3, 298, 3792, 8, 298, 1, 298, 3, 298, 3795, 8, 298, 1, 298, 3, 298, 3798, 8, 298, 1, 298, 3, 298, 3801, 8, 298, 1, 298, 3, 298, 3804, 8, 298, 1, 298, 3, 298, 3807, 8, 298, 1, 298, 3, 298, 3810, 8, 298, 1, 298, 3, 298, 3813, 8, 298, 1, 298, 1, 298, 3, 298, 3817, 8, 298, 3, 298, 3819, 8, 298, 3, 298, 3821, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 3826, 8, 299, 1, 299, 1, 299, 3, 299, 3830, 8, 299, 1, 299, 3, 299, 3833, 8, 299, 1, 299, 3, 299, 3836, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3841, 8, 299, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 3, 304, 3859, 8, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 5, 305, 3866, 8, 305, 10, 305, 12, 305, 3869, 9, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 5, 307, 3878, 8, 307, 10, 307, 12, 307, 3881, 9, 307, 1, 308, 1, 308, 1, 308, 5, 308, 3886, 8, 308, 10, 308, 12, 308, 3889, 9, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 4, 310, 3898, 8, 310, 11, 310, 12, 310, 3899, 1, 310, 3, 310, 3903, 8, 310, 1, 311, 1, 311, 5, 311, 3907, 8, 311, 10, 311, 12, 311, 3910, 9, 311, 1, 311, 1, 311, 5, 311, 3914, 8, 311, 10, 311, 12, 311, 3917, 9, 311, 1, 311, 1, 311, 5, 311, 3921, 8, 311, 10, 311, 12, 311, 3924, 9, 311, 1, 311, 1, 311, 5, 311, 3928, 8, 311, 10, 311, 12, 311, 3931, 9, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 3937, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 3946, 8, 312, 5, 312, 3948, 8, 312, 10, 312, 12, 312, 3951, 9, 312, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 3957, 8, 313, 1, 313, 5, 313, 3960, 8, 313, 10, 313, 12, 313, 3963, 9, 313, 1, 314, 3, 314, 3966, 8, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 3982, 8, 317, 1, 317, 1, 317, 3, 317, 3986, 8, 317, 3, 317, 3988, 8, 317, 1, 317, 3, 317, 3991, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4002, 8, 318, 10, 318, 12, 318, 4005, 9, 318, 3, 318, 4007, 8, 318, 1, 318, 3, 318, 4010, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4020, 8, 318, 10, 318, 12, 318, 4023, 9, 318, 3, 318, 4025, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4032, 8, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4039, 8, 318, 10, 318, 12, 318, 4042, 9, 318, 1, 318, 1, 318, 3, 318, 4046, 8, 318, 3, 318, 4048, 8, 318, 3, 318, 4050, 8, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 4065, 8, 320, 10, 320, 12, 320, 4068, 9, 320, 3, 320, 4070, 8, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 4079, 8, 321, 1, 321, 1, 321, 1, 322, 1, 322, 3, 322, 4085, 8, 322, 1, 323, 1, 323, 3, 323, 4089, 8, 323, 1, 323, 3, 323, 4092, 8, 323, 1, 323, 3, 323, 4095, 8, 323, 1, 323, 3, 323, 4098, 8, 323, 1, 323, 3, 323, 4101, 8, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 4113, 8, 324, 1, 325, 1, 325, 3, 325, 4117, 8, 325, 1, 325, 3, 325, 4120, 8, 325, 1, 325, 3, 325, 4123, 8, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 3, 328, 4131, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 4138, 8, 329, 1, 329, 3, 329, 4141, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4148, 8, 330, 1, 330, 3, 330, 4151, 8, 330, 1, 331, 1, 331, 1, 331, 3, 331, 4156, 8, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4163, 8, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4171, 8, 333, 1, 333, 1, 333, 1, 334, 1, 334, 3, 334, 4177, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4182, 8, 334, 1, 334, 1, 334, 3, 334, 4186, 8, 334, 1, 335, 1, 335, 1, 335, 3, 335, 4191, 8, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 3, 336, 4198, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 4210, 8, 336, 10, 336, 12, 336, 4213, 9, 336, 3, 336, 4215, 8, 336, 1, 336, 1, 336, 3, 336, 4219, 8, 336, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 5, 341, 4234, 8, 341, 10, 341, 12, 341, 4237, 9, 341, 1, 341, 1, 341, 1, 341, 5, 341, 4242, 8, 341, 10, 341, 12, 341, 4245, 9, 341, 3, 341, 4247, 8, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 4260, 8, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 5, 344, 4267, 8, 344, 10, 344, 12, 344, 4270, 9, 344, 3, 344, 4272, 8, 344, 1, 344, 1, 344, 1, 345, 1, 345, 3, 345, 4278, 8, 345, 1, 345, 3, 345, 4281, 8, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4286, 8, 345, 1, 345, 3, 345, 4289, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 5, 347, 4296, 8, 347, 10, 347, 12, 347, 4299, 9, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 4312, 8, 348, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 4318, 8, 348, 3, 348, 4320, 8, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 3, 349, 4328, 8, 349, 1, 349, 3, 349, 4331, 8, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 4339, 8, 349, 10, 349, 12, 349, 4342, 9, 349, 1, 349, 1, 349, 3, 349, 4346, 8, 349, 3, 349, 4348, 8, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4360, 8, 350, 1, 350, 1, 350, 1, 350, 1, 350, 3, 350, 4366, 8, 350, 3, 350, 4368, 8, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 3, 351, 4375, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4380, 8, 352, 10, 352, 12, 352, 4383, 9, 352, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 4389, 8, 353, 10, 353, 12, 353, 4392, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 3, 355, 4401, 8, 355, 1, 355, 3, 355, 4404, 8, 355, 1, 355, 3, 355, 4407, 8, 355, 1, 355, 3, 355, 4410, 8, 355, 1, 356, 1, 356, 3, 356, 4414, 8, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 4423, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 4432, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 4440, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 4446, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 4456, 8, 362, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 3, 364, 4463, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 5, 364, 4469, 8, 364, 10, 364, 12, 364, 4472, 9, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 4481, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 5, 365, 4489, 8, 365, 10, 365, 12, 365, 4492, 9, 365, 1, 365, 1, 365, 3, 365, 4496, 8, 365, 1, 366, 1, 366, 3, 366, 4500, 8, 366, 1, 367, 1, 367, 3, 367, 4504, 8, 367, 1, 367, 1, 367, 5, 367, 4508, 8, 367, 10, 367, 12, 367, 4511, 9, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 4531, 8, 373, 1, 374, 1, 374, 4, 374, 4535, 8, 374, 11, 374, 12, 374, 4536, 1, 375, 1, 375, 3, 375, 4541, 8, 375, 1, 376, 1, 376, 3, 376, 4545, 8, 376, 1, 376, 3, 376, 4548, 8, 376, 1, 376, 1, 376, 5, 376, 4552, 8, 376, 10, 376, 12, 376, 4555, 9, 376, 1, 377, 1, 377, 3, 377, 4559, 8, 377, 1, 377, 3, 377, 4562, 8, 377, 1, 378, 1, 378, 3, 378, 4566, 8, 378, 1, 379, 1, 379, 1, 379, 1, 379, 5, 379, 4572, 8, 379, 10, 379, 12, 379, 4575, 9, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 5, 380, 4582, 8, 380, 10, 380, 12, 380, 4585, 9, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 5, 381, 4592, 8, 381, 10, 381, 12, 381, 4595, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 4613, 8, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 4620, 8, 386, 1, 386, 3, 386, 4623, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4634, 8, 387, 1, 387, 1, 387, 1, 387, 5, 387, 4639, 8, 387, 10, 387, 12, 387, 4642, 9, 387, 3, 387, 4644, 8, 387, 3, 387, 4646, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4657, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4667, 8, 387, 3, 387, 4669, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4675, 8, 388, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 4681, 8, 390, 1, 391, 1, 391, 3, 391, 4685, 8, 391, 1, 392, 1, 392, 1, 393, 1, 393, 3, 393, 4691, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 4700, 8, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 4, 395, 4711, 8, 395, 11, 395, 12, 395, 4712, 1, 395, 1, 395, 3, 395, 4717, 8, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 4, 396, 4727, 8, 396, 11, 396, 12, 396, 4728, 1, 396, 1, 396, 3, 396, 4733, 8, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 4742, 8, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 4754, 8, 398, 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, 3, 400, 4771, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 4786, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 404, 1, 404, 4, 404, 4794, 8, 404, 11, 404, 12, 404, 4795, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 3, 406, 4804, 8, 406, 1, 407, 1, 407, 1, 407, 3, 407, 4809, 8, 407, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 4830, 8, 411, 1, 411, 1, 411, 3, 411, 4834, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 4850, 8, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 4865, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 5, 415, 4874, 8, 415, 10, 415, 12, 415, 4877, 9, 415, 1, 416, 1, 416, 1, 417, 5, 417, 4882, 8, 417, 10, 417, 12, 417, 4885, 9, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 5, 419, 4895, 8, 419, 10, 419, 12, 419, 4898, 9, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 5, 421, 4906, 8, 421, 10, 421, 12, 421, 4909, 9, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 5, 423, 4917, 8, 423, 10, 423, 12, 423, 4920, 9, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 4928, 8, 425, 10, 425, 12, 425, 4931, 9, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 4939, 8, 427, 10, 427, 12, 427, 4942, 9, 427, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 4950, 8, 429, 10, 429, 12, 429, 4953, 9, 429, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 3, 431, 4962, 8, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 3, 433, 4971, 8, 433, 1, 434, 1, 434, 3, 434, 4975, 8, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 4983, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 4996, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 439, 1, 439, 3, 439, 5006, 8, 439, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 5012, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 5025, 8, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 5034, 8, 443, 10, 443, 12, 443, 5037, 9, 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, 3, 444, 5051, 8, 444, 1, 445, 1, 445, 1, 445, 3, 445, 5056, 8, 445, 1, 446, 1, 446, 1, 447, 5, 447, 5061, 8, 447, 10, 447, 12, 447, 5064, 9, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 5, 449, 5074, 8, 449, 10, 449, 12, 449, 5077, 9, 449, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 5, 451, 5085, 8, 451, 10, 451, 12, 451, 5088, 9, 451, 1, 452, 1, 452, 1, 453, 1, 453, 1, 454, 1, 454, 3, 454, 5096, 8, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 5, 455, 5103, 8, 455, 10, 455, 12, 455, 5106, 9, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 3, 456, 5113, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 5, 457, 5119, 8, 457, 10, 457, 12, 457, 5122, 9, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 3, 459, 5132, 8, 459, 1, 460, 1, 460, 1, 461, 1, 461, 1, 462, 1, 462, 3, 462, 5140, 8, 462, 1, 463, 1, 463, 1, 463, 3, 463, 5145, 8, 463, 1, 464, 1, 464, 1, 465, 1, 465, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 5, 468, 5159, 8, 468, 10, 468, 12, 468, 5162, 9, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 3, 469, 5169, 8, 469, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 5, 471, 5176, 8, 471, 10, 471, 12, 471, 5179, 9, 471, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 5, 475, 5196, 8, 475, 10, 475, 12, 475, 5199, 9, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 3, 476, 5215, 8, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 5224, 8, 477, 1, 478, 1, 478, 1, 478, 5, 478, 5229, 8, 478, 10, 478, 12, 478, 5232, 9, 478, 1, 479, 1, 479, 1, 479, 3, 479, 5237, 8, 479, 1, 480, 1, 480, 1, 480, 5, 480, 5242, 8, 480, 10, 480, 12, 480, 5245, 9, 480, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 5251, 8, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 3, 481, 5260, 8, 481, 3, 481, 5262, 8, 481, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 3, 483, 5269, 8, 483, 1, 484, 1, 484, 1, 485, 1, 485, 1, 486, 1, 486, 1, 487, 1, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 1, 495, 3, 495, 5308, 8, 495, 1, 495, 1, 495, 3, 495, 5312, 8, 495, 3, 495, 5314, 8, 495, 1, 496, 1, 496, 3, 496, 5318, 8, 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, 497, 1, 497, 3, 497, 5335, 8, 497, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 5341, 8, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 499, 5, 499, 5348, 8, 499, 10, 499, 12, 499, 5351, 9, 499, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 5, 502, 5361, 8, 502, 10, 502, 12, 502, 5364, 9, 502, 1, 503, 1, 503, 1, 503, 5, 503, 5369, 8, 503, 10, 503, 12, 503, 5372, 9, 503, 1, 504, 1, 504, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 507, 1, 507, 3, 507, 5386, 8, 507, 1, 508, 1, 508, 1, 508, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 3, 510, 5415, 8, 510, 1, 510, 1, 510, 1, 510, 3, 510, 5420, 8, 510, 3, 510, 5422, 8, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 3, 512, 5442, 8, 512, 1, 513, 1, 513, 1, 513, 5, 513, 5447, 8, 513, 10, 513, 12, 513, 5450, 9, 513, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 3, 515, 5472, 8, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 3, 517, 5489, 8, 517, 1, 517, 1, 517, 1, 517, 3, 517, 5494, 8, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5505, 8, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5510, 8, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 0, 0, 520, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 0, 56, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 225, 225, 324, 324, 2, 0, 34, 34, 281, 281, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 294, 294, 2, 0, 68, 68, 295, 295, 1, 0, 155, 156, 2, 0, 114, 114, 306, 306, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 189, 189, 298, 298, 308, 308, 364, 364, 3, 0, 4, 4, 101, 101, 325, 325, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 350, 350, 2, 0, 216, 216, 372, 372, 2, 0, 213, 213, 271, 271, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 375, 375, 4, 0, 112, 112, 164, 164, 204, 204, 355, 355, 2, 0, 7, 7, 96, 96, 2, 0, 224, 224, 390, 390, 2, 0, 188, 188, 195, 195, 2, 0, 42, 42, 314, 314, 2, 0, 425, 425, 430, 430, 2, 0, 140, 140, 284, 284, 3, 0, 12, 12, 230, 230, 299, 299, 2, 0, 240, 240, 291, 291, 2, 0, 197, 197, 267, 267, 2, 0, 353, 353, 430, 430, 2, 0, 133, 133, 246, 246, 3, 0, 412, 413, 417, 417, 419, 419, 2, 0, 411, 411, 414, 416, 1, 0, 412, 413, 3, 0, 183, 183, 269, 269, 285, 285, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 312, 312, 2, 0, 125, 125, 349, 349, 2, 0, 404, 404, 406, 410, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 183, 183, 197, 197, 215, 215, 227, 227, 263, 263, 269, 269, 285, 285, 310, 310, 322, 323, 339, 339, 356, 356, 382, 382, 404, 416, 418, 420, 422, 422, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 182, 184, 186, 188, 192, 194, 196, 198, 201, 203, 203, 205, 208, 210, 211, 213, 214, 216, 217, 219, 219, 221, 222, 225, 226, 231, 232, 234, 235, 237, 239, 242, 245, 251, 251, 253, 254, 256, 258, 260, 261, 264, 266, 270, 281, 283, 283, 286, 287, 292, 297, 299, 302, 304, 309, 311, 311, 313, 316, 318, 324, 326, 327, 329, 329, 331, 333, 338, 339, 341, 341, 343, 345, 348, 348, 351, 352, 354, 354, 356, 356, 359, 363, 365, 367, 370, 372, 374, 374, 376, 381, 384, 384, 387, 393, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 197, 197, 263, 263, 310, 310, 336, 336, 4, 0, 198, 198, 241, 241, 299, 299, 321, 321, 2, 0, 212, 212, 430, 431, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 391, 392, 1, 0, 207, 208, 1, 0, 380, 381, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 205, 206, 1, 0, 296, 297, 1, 0, 80, 82, 2, 0, 4, 4, 101, 101, 3, 0, 14, 14, 144, 144, 368, 368, 5919, 0, 1043, 1, 0, 0, 0, 2, 1050, 1, 0, 0, 0, 4, 1055, 1, 0, 0, 0, 6, 1089, 1, 0, 0, 0, 8, 1091, 1, 0, 0, 0, 10, 1093, 1, 0, 0, 0, 12, 1109, 1, 0, 0, 0, 14, 1111, 1, 0, 0, 0, 16, 1127, 1, 0, 0, 0, 18, 1130, 1, 0, 0, 0, 20, 1139, 1, 0, 0, 0, 22, 1147, 1, 0, 0, 0, 24, 1160, 1, 0, 0, 0, 26, 1171, 1, 0, 0, 0, 28, 1176, 1, 0, 0, 0, 30, 1187, 1, 0, 0, 0, 32, 1191, 1, 0, 0, 0, 34, 1199, 1, 0, 0, 0, 36, 1204, 1, 0, 0, 0, 38, 1258, 1, 0, 0, 0, 40, 1260, 1, 0, 0, 0, 42, 1263, 1, 0, 0, 0, 44, 1265, 1, 0, 0, 0, 46, 1269, 1, 0, 0, 0, 48, 1271, 1, 0, 0, 0, 50, 1274, 1, 0, 0, 0, 52, 1277, 1, 0, 0, 0, 54, 1281, 1, 0, 0, 0, 56, 1323, 1, 0, 0, 0, 58, 1325, 1, 0, 0, 0, 60, 1328, 1, 0, 0, 0, 62, 1331, 1, 0, 0, 0, 64, 1335, 1, 0, 0, 0, 66, 1343, 1, 0, 0, 0, 68, 1346, 1, 0, 0, 0, 70, 1349, 1, 0, 0, 0, 72, 1358, 1, 0, 0, 0, 74, 1361, 1, 0, 0, 0, 76, 1376, 1, 0, 0, 0, 78, 1388, 1, 0, 0, 0, 80, 1393, 1, 0, 0, 0, 82, 1413, 1, 0, 0, 0, 84, 1417, 1, 0, 0, 0, 86, 1424, 1, 0, 0, 0, 88, 1449, 1, 0, 0, 0, 90, 1466, 1, 0, 0, 0, 92, 1468, 1, 0, 0, 0, 94, 1663, 1, 0, 0, 0, 96, 1673, 1, 0, 0, 0, 98, 1675, 1, 0, 0, 0, 100, 1683, 1, 0, 0, 0, 102, 1688, 1, 0, 0, 0, 104, 1690, 1, 0, 0, 0, 106, 1696, 1, 0, 0, 0, 108, 1700, 1, 0, 0, 0, 110, 1704, 1, 0, 0, 0, 112, 1708, 1, 0, 0, 0, 114, 1718, 1, 0, 0, 0, 116, 1729, 1, 0, 0, 0, 118, 1746, 1, 0, 0, 0, 120, 1764, 1, 0, 0, 0, 122, 1769, 1, 0, 0, 0, 124, 1772, 1, 0, 0, 0, 126, 1776, 1, 0, 0, 0, 128, 1783, 1, 0, 0, 0, 130, 1792, 1, 0, 0, 0, 132, 1798, 1, 0, 0, 0, 134, 1800, 1, 0, 0, 0, 136, 1817, 1, 0, 0, 0, 138, 1839, 1, 0, 0, 0, 140, 1841, 1, 0, 0, 0, 142, 1849, 1, 0, 0, 0, 144, 1856, 1, 0, 0, 0, 146, 1858, 1, 0, 0, 0, 148, 1872, 1, 0, 0, 0, 150, 1879, 1, 0, 0, 0, 152, 1881, 1, 0, 0, 0, 154, 1885, 1, 0, 0, 0, 156, 1889, 1, 0, 0, 0, 158, 1893, 1, 0, 0, 0, 160, 1897, 1, 0, 0, 0, 162, 1910, 1, 0, 0, 0, 164, 1918, 1, 0, 0, 0, 166, 1921, 1, 0, 0, 0, 168, 1923, 1, 0, 0, 0, 170, 1935, 1, 0, 0, 0, 172, 1945, 1, 0, 0, 0, 174, 1948, 1, 0, 0, 0, 176, 1959, 1, 0, 0, 0, 178, 1967, 1, 0, 0, 0, 180, 2011, 1, 0, 0, 0, 182, 2020, 1, 0, 0, 0, 184, 2047, 1, 0, 0, 0, 186, 2060, 1, 0, 0, 0, 188, 2062, 1, 0, 0, 0, 190, 2068, 1, 0, 0, 0, 192, 2071, 1, 0, 0, 0, 194, 2077, 1, 0, 0, 0, 196, 2083, 1, 0, 0, 0, 198, 2090, 1, 0, 0, 0, 200, 2124, 1, 0, 0, 0, 202, 2132, 1, 0, 0, 0, 204, 2145, 1, 0, 0, 0, 206, 2150, 1, 0, 0, 0, 208, 2161, 1, 0, 0, 0, 210, 2178, 1, 0, 0, 0, 212, 2180, 1, 0, 0, 0, 214, 2185, 1, 0, 0, 0, 216, 2192, 1, 0, 0, 0, 218, 2194, 1, 0, 0, 0, 220, 2197, 1, 0, 0, 0, 222, 2211, 1, 0, 0, 0, 224, 2219, 1, 0, 0, 0, 226, 2227, 1, 0, 0, 0, 228, 2235, 1, 0, 0, 0, 230, 2255, 1, 0, 0, 0, 232, 2257, 1, 0, 0, 0, 234, 2274, 1, 0, 0, 0, 236, 2279, 1, 0, 0, 0, 238, 2293, 1, 0, 0, 0, 240, 2295, 1, 0, 0, 0, 242, 2298, 1, 0, 0, 0, 244, 2301, 1, 0, 0, 0, 246, 2310, 1, 0, 0, 0, 248, 2330, 1, 0, 0, 0, 250, 2332, 1, 0, 0, 0, 252, 2335, 1, 0, 0, 0, 254, 2355, 1, 0, 0, 0, 256, 2357, 1, 0, 0, 0, 258, 2361, 1, 0, 0, 0, 260, 2363, 1, 0, 0, 0, 262, 2372, 1, 0, 0, 0, 264, 2378, 1, 0, 0, 0, 266, 2384, 1, 0, 0, 0, 268, 2389, 1, 0, 0, 0, 270, 2435, 1, 0, 0, 0, 272, 2437, 1, 0, 0, 0, 274, 2440, 1, 0, 0, 0, 276, 2448, 1, 0, 0, 0, 278, 2456, 1, 0, 0, 0, 280, 2464, 1, 0, 0, 0, 282, 2481, 1, 0, 0, 0, 284, 2483, 1, 0, 0, 0, 286, 2485, 1, 0, 0, 0, 288, 2498, 1, 0, 0, 0, 290, 2506, 1, 0, 0, 0, 292, 2515, 1, 0, 0, 0, 294, 2519, 1, 0, 0, 0, 296, 2521, 1, 0, 0, 0, 298, 2526, 1, 0, 0, 0, 300, 2528, 1, 0, 0, 0, 302, 2532, 1, 0, 0, 0, 304, 2538, 1, 0, 0, 0, 306, 2546, 1, 0, 0, 0, 308, 2548, 1, 0, 0, 0, 310, 2551, 1, 0, 0, 0, 312, 2558, 1, 0, 0, 0, 314, 2569, 1, 0, 0, 0, 316, 2582, 1, 0, 0, 0, 318, 2584, 1, 0, 0, 0, 320, 2592, 1, 0, 0, 0, 322, 2596, 1, 0, 0, 0, 324, 2604, 1, 0, 0, 0, 326, 2608, 1, 0, 0, 0, 328, 2610, 1, 0, 0, 0, 330, 2612, 1, 0, 0, 0, 332, 2615, 1, 0, 0, 0, 334, 2622, 1, 0, 0, 0, 336, 2630, 1, 0, 0, 0, 338, 2635, 1, 0, 0, 0, 340, 2639, 1, 0, 0, 0, 342, 2647, 1, 0, 0, 0, 344, 2655, 1, 0, 0, 0, 346, 2659, 1, 0, 0, 0, 348, 2661, 1, 0, 0, 0, 350, 2672, 1, 0, 0, 0, 352, 2676, 1, 0, 0, 0, 354, 2688, 1, 0, 0, 0, 356, 2696, 1, 0, 0, 0, 358, 2700, 1, 0, 0, 0, 360, 2712, 1, 0, 0, 0, 362, 2724, 1, 0, 0, 0, 364, 2729, 1, 0, 0, 0, 366, 2734, 1, 0, 0, 0, 368, 2736, 1, 0, 0, 0, 370, 2740, 1, 0, 0, 0, 372, 2744, 1, 0, 0, 0, 374, 2751, 1, 0, 0, 0, 376, 2753, 1, 0, 0, 0, 378, 2766, 1, 0, 0, 0, 380, 2805, 1, 0, 0, 0, 382, 2807, 1, 0, 0, 0, 384, 2812, 1, 0, 0, 0, 386, 2817, 1, 0, 0, 0, 388, 2824, 1, 0, 0, 0, 390, 2829, 1, 0, 0, 0, 392, 2834, 1, 0, 0, 0, 394, 2840, 1, 0, 0, 0, 396, 2842, 1, 0, 0, 0, 398, 2851, 1, 0, 0, 0, 400, 2863, 1, 0, 0, 0, 402, 2943, 1, 0, 0, 0, 404, 2949, 1, 0, 0, 0, 406, 2975, 1, 0, 0, 0, 408, 2977, 1, 0, 0, 0, 410, 2999, 1, 0, 0, 0, 412, 3004, 1, 0, 0, 0, 414, 3008, 1, 0, 0, 0, 416, 3040, 1, 0, 0, 0, 418, 3042, 1, 0, 0, 0, 420, 3053, 1, 0, 0, 0, 422, 3059, 1, 0, 0, 0, 424, 3065, 1, 0, 0, 0, 426, 3067, 1, 0, 0, 0, 428, 3076, 1, 0, 0, 0, 430, 3086, 1, 0, 0, 0, 432, 3088, 1, 0, 0, 0, 434, 3102, 1, 0, 0, 0, 436, 3104, 1, 0, 0, 0, 438, 3107, 1, 0, 0, 0, 440, 3111, 1, 0, 0, 0, 442, 3113, 1, 0, 0, 0, 444, 3117, 1, 0, 0, 0, 446, 3121, 1, 0, 0, 0, 448, 3125, 1, 0, 0, 0, 450, 3132, 1, 0, 0, 0, 452, 3139, 1, 0, 0, 0, 454, 3161, 1, 0, 0, 0, 456, 3167, 1, 0, 0, 0, 458, 3182, 1, 0, 0, 0, 460, 3189, 1, 0, 0, 0, 462, 3197, 1, 0, 0, 0, 464, 3199, 1, 0, 0, 0, 466, 3206, 1, 0, 0, 0, 468, 3210, 1, 0, 0, 0, 470, 3213, 1, 0, 0, 0, 472, 3216, 1, 0, 0, 0, 474, 3219, 1, 0, 0, 0, 476, 3266, 1, 0, 0, 0, 478, 3283, 1, 0, 0, 0, 480, 3285, 1, 0, 0, 0, 482, 3296, 1, 0, 0, 0, 484, 3300, 1, 0, 0, 0, 486, 3304, 1, 0, 0, 0, 488, 3306, 1, 0, 0, 0, 490, 3311, 1, 0, 0, 0, 492, 3313, 1, 0, 0, 0, 494, 3318, 1, 0, 0, 0, 496, 3323, 1, 0, 0, 0, 498, 3328, 1, 0, 0, 0, 500, 3333, 1, 0, 0, 0, 502, 3339, 1, 0, 0, 0, 504, 3348, 1, 0, 0, 0, 506, 3353, 1, 0, 0, 0, 508, 3366, 1, 0, 0, 0, 510, 3368, 1, 0, 0, 0, 512, 3372, 1, 0, 0, 0, 514, 3392, 1, 0, 0, 0, 516, 3405, 1, 0, 0, 0, 518, 3413, 1, 0, 0, 0, 520, 3415, 1, 0, 0, 0, 522, 3424, 1, 0, 0, 0, 524, 3428, 1, 0, 0, 0, 526, 3435, 1, 0, 0, 0, 528, 3442, 1, 0, 0, 0, 530, 3449, 1, 0, 0, 0, 532, 3452, 1, 0, 0, 0, 534, 3455, 1, 0, 0, 0, 536, 3487, 1, 0, 0, 0, 538, 3498, 1, 0, 0, 0, 540, 3515, 1, 0, 0, 0, 542, 3517, 1, 0, 0, 0, 544, 3521, 1, 0, 0, 0, 546, 3528, 1, 0, 0, 0, 548, 3530, 1, 0, 0, 0, 550, 3535, 1, 0, 0, 0, 552, 3539, 1, 0, 0, 0, 554, 3547, 1, 0, 0, 0, 556, 3551, 1, 0, 0, 0, 558, 3561, 1, 0, 0, 0, 560, 3563, 1, 0, 0, 0, 562, 3569, 1, 0, 0, 0, 564, 3573, 1, 0, 0, 0, 566, 3586, 1, 0, 0, 0, 568, 3588, 1, 0, 0, 0, 570, 3592, 1, 0, 0, 0, 572, 3595, 1, 0, 0, 0, 574, 3598, 1, 0, 0, 0, 576, 3618, 1, 0, 0, 0, 578, 3622, 1, 0, 0, 0, 580, 3629, 1, 0, 0, 0, 582, 3643, 1, 0, 0, 0, 584, 3664, 1, 0, 0, 0, 586, 3669, 1, 0, 0, 0, 588, 3671, 1, 0, 0, 0, 590, 3676, 1, 0, 0, 0, 592, 3681, 1, 0, 0, 0, 594, 3695, 1, 0, 0, 0, 596, 3820, 1, 0, 0, 0, 598, 3822, 1, 0, 0, 0, 600, 3842, 1, 0, 0, 0, 602, 3845, 1, 0, 0, 0, 604, 3848, 1, 0, 0, 0, 606, 3851, 1, 0, 0, 0, 608, 3855, 1, 0, 0, 0, 610, 3867, 1, 0, 0, 0, 612, 3872, 1, 0, 0, 0, 614, 3874, 1, 0, 0, 0, 616, 3882, 1, 0, 0, 0, 618, 3890, 1, 0, 0, 0, 620, 3902, 1, 0, 0, 0, 622, 3936, 1, 0, 0, 0, 624, 3938, 1, 0, 0, 0, 626, 3956, 1, 0, 0, 0, 628, 3965, 1, 0, 0, 0, 630, 3970, 1, 0, 0, 0, 632, 3974, 1, 0, 0, 0, 634, 3990, 1, 0, 0, 0, 636, 4049, 1, 0, 0, 0, 638, 4051, 1, 0, 0, 0, 640, 4053, 1, 0, 0, 0, 642, 4073, 1, 0, 0, 0, 644, 4084, 1, 0, 0, 0, 646, 4086, 1, 0, 0, 0, 648, 4102, 1, 0, 0, 0, 650, 4114, 1, 0, 0, 0, 652, 4124, 1, 0, 0, 0, 654, 4126, 1, 0, 0, 0, 656, 4130, 1, 0, 0, 0, 658, 4140, 1, 0, 0, 0, 660, 4150, 1, 0, 0, 0, 662, 4155, 1, 0, 0, 0, 664, 4162, 1, 0, 0, 0, 666, 4166, 1, 0, 0, 0, 668, 4185, 1, 0, 0, 0, 670, 4190, 1, 0, 0, 0, 672, 4192, 1, 0, 0, 0, 674, 4220, 1, 0, 0, 0, 676, 4223, 1, 0, 0, 0, 678, 4225, 1, 0, 0, 0, 680, 4227, 1, 0, 0, 0, 682, 4246, 1, 0, 0, 0, 684, 4248, 1, 0, 0, 0, 686, 4250, 1, 0, 0, 0, 688, 4254, 1, 0, 0, 0, 690, 4288, 1, 0, 0, 0, 692, 4290, 1, 0, 0, 0, 694, 4292, 1, 0, 0, 0, 696, 4300, 1, 0, 0, 0, 698, 4347, 1, 0, 0, 0, 700, 4349, 1, 0, 0, 0, 702, 4374, 1, 0, 0, 0, 704, 4376, 1, 0, 0, 0, 706, 4384, 1, 0, 0, 0, 708, 4393, 1, 0, 0, 0, 710, 4409, 1, 0, 0, 0, 712, 4413, 1, 0, 0, 0, 714, 4415, 1, 0, 0, 0, 716, 4424, 1, 0, 0, 0, 718, 4439, 1, 0, 0, 0, 720, 4445, 1, 0, 0, 0, 722, 4447, 1, 0, 0, 0, 724, 4455, 1, 0, 0, 0, 726, 4457, 1, 0, 0, 0, 728, 4462, 1, 0, 0, 0, 730, 4475, 1, 0, 0, 0, 732, 4499, 1, 0, 0, 0, 734, 4501, 1, 0, 0, 0, 736, 4514, 1, 0, 0, 0, 738, 4516, 1, 0, 0, 0, 740, 4519, 1, 0, 0, 0, 742, 4522, 1, 0, 0, 0, 744, 4524, 1, 0, 0, 0, 746, 4528, 1, 0, 0, 0, 748, 4534, 1, 0, 0, 0, 750, 4540, 1, 0, 0, 0, 752, 4542, 1, 0, 0, 0, 754, 4556, 1, 0, 0, 0, 756, 4565, 1, 0, 0, 0, 758, 4567, 1, 0, 0, 0, 760, 4578, 1, 0, 0, 0, 762, 4586, 1, 0, 0, 0, 764, 4596, 1, 0, 0, 0, 766, 4600, 1, 0, 0, 0, 768, 4604, 1, 0, 0, 0, 770, 4608, 1, 0, 0, 0, 772, 4614, 1, 0, 0, 0, 774, 4668, 1, 0, 0, 0, 776, 4674, 1, 0, 0, 0, 778, 4676, 1, 0, 0, 0, 780, 4680, 1, 0, 0, 0, 782, 4684, 1, 0, 0, 0, 784, 4686, 1, 0, 0, 0, 786, 4690, 1, 0, 0, 0, 788, 4692, 1, 0, 0, 0, 790, 4703, 1, 0, 0, 0, 792, 4720, 1, 0, 0, 0, 794, 4736, 1, 0, 0, 0, 796, 4753, 1, 0, 0, 0, 798, 4755, 1, 0, 0, 0, 800, 4770, 1, 0, 0, 0, 802, 4785, 1, 0, 0, 0, 804, 4787, 1, 0, 0, 0, 806, 4789, 1, 0, 0, 0, 808, 4791, 1, 0, 0, 0, 810, 4797, 1, 0, 0, 0, 812, 4803, 1, 0, 0, 0, 814, 4808, 1, 0, 0, 0, 816, 4810, 1, 0, 0, 0, 818, 4813, 1, 0, 0, 0, 820, 4815, 1, 0, 0, 0, 822, 4833, 1, 0, 0, 0, 824, 4849, 1, 0, 0, 0, 826, 4851, 1, 0, 0, 0, 828, 4864, 1, 0, 0, 0, 830, 4866, 1, 0, 0, 0, 832, 4878, 1, 0, 0, 0, 834, 4883, 1, 0, 0, 0, 836, 4888, 1, 0, 0, 0, 838, 4890, 1, 0, 0, 0, 840, 4899, 1, 0, 0, 0, 842, 4901, 1, 0, 0, 0, 844, 4910, 1, 0, 0, 0, 846, 4912, 1, 0, 0, 0, 848, 4921, 1, 0, 0, 0, 850, 4923, 1, 0, 0, 0, 852, 4932, 1, 0, 0, 0, 854, 4934, 1, 0, 0, 0, 856, 4943, 1, 0, 0, 0, 858, 4945, 1, 0, 0, 0, 860, 4954, 1, 0, 0, 0, 862, 4961, 1, 0, 0, 0, 864, 4963, 1, 0, 0, 0, 866, 4970, 1, 0, 0, 0, 868, 4972, 1, 0, 0, 0, 870, 4982, 1, 0, 0, 0, 872, 4995, 1, 0, 0, 0, 874, 4997, 1, 0, 0, 0, 876, 5001, 1, 0, 0, 0, 878, 5005, 1, 0, 0, 0, 880, 5011, 1, 0, 0, 0, 882, 5013, 1, 0, 0, 0, 884, 5024, 1, 0, 0, 0, 886, 5026, 1, 0, 0, 0, 888, 5050, 1, 0, 0, 0, 890, 5052, 1, 0, 0, 0, 892, 5057, 1, 0, 0, 0, 894, 5062, 1, 0, 0, 0, 896, 5067, 1, 0, 0, 0, 898, 5069, 1, 0, 0, 0, 900, 5078, 1, 0, 0, 0, 902, 5080, 1, 0, 0, 0, 904, 5089, 1, 0, 0, 0, 906, 5091, 1, 0, 0, 0, 908, 5093, 1, 0, 0, 0, 910, 5097, 1, 0, 0, 0, 912, 5109, 1, 0, 0, 0, 914, 5114, 1, 0, 0, 0, 916, 5125, 1, 0, 0, 0, 918, 5131, 1, 0, 0, 0, 920, 5133, 1, 0, 0, 0, 922, 5135, 1, 0, 0, 0, 924, 5139, 1, 0, 0, 0, 926, 5141, 1, 0, 0, 0, 928, 5146, 1, 0, 0, 0, 930, 5148, 1, 0, 0, 0, 932, 5150, 1, 0, 0, 0, 934, 5152, 1, 0, 0, 0, 936, 5155, 1, 0, 0, 0, 938, 5163, 1, 0, 0, 0, 940, 5170, 1, 0, 0, 0, 942, 5172, 1, 0, 0, 0, 944, 5180, 1, 0, 0, 0, 946, 5182, 1, 0, 0, 0, 948, 5187, 1, 0, 0, 0, 950, 5192, 1, 0, 0, 0, 952, 5214, 1, 0, 0, 0, 954, 5223, 1, 0, 0, 0, 956, 5225, 1, 0, 0, 0, 958, 5236, 1, 0, 0, 0, 960, 5238, 1, 0, 0, 0, 962, 5246, 1, 0, 0, 0, 964, 5263, 1, 0, 0, 0, 966, 5266, 1, 0, 0, 0, 968, 5270, 1, 0, 0, 0, 970, 5272, 1, 0, 0, 0, 972, 5274, 1, 0, 0, 0, 974, 5276, 1, 0, 0, 0, 976, 5278, 1, 0, 0, 0, 978, 5280, 1, 0, 0, 0, 980, 5282, 1, 0, 0, 0, 982, 5284, 1, 0, 0, 0, 984, 5286, 1, 0, 0, 0, 986, 5288, 1, 0, 0, 0, 988, 5290, 1, 0, 0, 0, 990, 5292, 1, 0, 0, 0, 992, 5317, 1, 0, 0, 0, 994, 5322, 1, 0, 0, 0, 996, 5336, 1, 0, 0, 0, 998, 5344, 1, 0, 0, 0, 1000, 5352, 1, 0, 0, 0, 1002, 5354, 1, 0, 0, 0, 1004, 5357, 1, 0, 0, 0, 1006, 5365, 1, 0, 0, 0, 1008, 5373, 1, 0, 0, 0, 1010, 5377, 1, 0, 0, 0, 1012, 5379, 1, 0, 0, 0, 1014, 5385, 1, 0, 0, 0, 1016, 5387, 1, 0, 0, 0, 1018, 5390, 1, 0, 0, 0, 1020, 5400, 1, 0, 0, 0, 1022, 5423, 1, 0, 0, 0, 1024, 5441, 1, 0, 0, 0, 1026, 5443, 1, 0, 0, 0, 1028, 5451, 1, 0, 0, 0, 1030, 5459, 1, 0, 0, 0, 1032, 5473, 1, 0, 0, 0, 1034, 5479, 1, 0, 0, 0, 1036, 5495, 1, 0, 0, 0, 1038, 5511, 1, 0, 0, 0, 1040, 1042, 3, 2, 1, 0, 1041, 1040, 1, 0, 0, 0, 1042, 1045, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1046, 1047, 5, 0, 0, 1, 1047, 1, 1, 0, 0, 0, 1048, 1051, 3, 4, 2, 0, 1049, 1051, 3, 12, 6, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1049, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1054, 5, 397, 0, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 3, 1, 0, 0, 0, 1055, 1065, 5, 119, 0, 0, 1056, 1058, 3, 6, 3, 0, 1057, 1056, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1062, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1062, 1066, 3, 12, 6, 0, 1063, 1064, 5, 283, 0, 0, 1064, 1066, 3, 392, 196, 0, 1065, 1059, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1066, 5, 1, 0, 0, 0, 1067, 1090, 5, 122, 0, 0, 1068, 1090, 5, 138, 0, 0, 1069, 1090, 5, 88, 0, 0, 1070, 1072, 5, 37, 0, 0, 1071, 1073, 7, 0, 0, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1090, 1, 0, 0, 0, 1074, 1090, 5, 191, 0, 0, 1075, 1090, 5, 21, 0, 0, 1076, 1090, 5, 10, 0, 0, 1077, 1090, 5, 274, 0, 0, 1078, 1090, 5, 190, 0, 0, 1079, 1090, 5, 19, 0, 0, 1080, 1082, 5, 376, 0, 0, 1081, 1083, 3, 8, 4, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1085, 1, 0, 0, 0, 1084, 1086, 3, 10, 5, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1090, 1, 0, 0, 0, 1087, 1090, 5, 79, 0, 0, 1088, 1090, 5, 78, 0, 0, 1089, 1067, 1, 0, 0, 0, 1089, 1068, 1, 0, 0, 0, 1089, 1069, 1, 0, 0, 0, 1089, 1070, 1, 0, 0, 0, 1089, 1074, 1, 0, 0, 0, 1089, 1075, 1, 0, 0, 0, 1089, 1076, 1, 0, 0, 0, 1089, 1077, 1, 0, 0, 0, 1089, 1078, 1, 0, 0, 0, 1089, 1079, 1, 0, 0, 0, 1089, 1080, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1088, 1, 0, 0, 0, 1090, 7, 1, 0, 0, 0, 1091, 1092, 5, 224, 0, 0, 1092, 9, 1, 0, 0, 0, 1093, 1094, 7, 1, 0, 0, 1094, 11, 1, 0, 0, 0, 1095, 1110, 3, 392, 196, 0, 1096, 1110, 3, 14, 7, 0, 1097, 1110, 3, 20, 10, 0, 1098, 1110, 3, 22, 11, 0, 1099, 1110, 3, 24, 12, 0, 1100, 1110, 3, 28, 14, 0, 1101, 1110, 3, 36, 18, 0, 1102, 1110, 3, 38, 19, 0, 1103, 1110, 3, 420, 210, 0, 1104, 1110, 3, 428, 214, 0, 1105, 1110, 3, 430, 215, 0, 1106, 1110, 3, 452, 226, 0, 1107, 1110, 3, 946, 473, 0, 1108, 1110, 3, 948, 474, 0, 1109, 1095, 1, 0, 0, 0, 1109, 1096, 1, 0, 0, 0, 1109, 1097, 1, 0, 0, 0, 1109, 1098, 1, 0, 0, 0, 1109, 1099, 1, 0, 0, 0, 1109, 1100, 1, 0, 0, 0, 1109, 1101, 1, 0, 0, 0, 1109, 1102, 1, 0, 0, 0, 1109, 1103, 1, 0, 0, 0, 1109, 1104, 1, 0, 0, 0, 1109, 1105, 1, 0, 0, 0, 1109, 1106, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1108, 1, 0, 0, 0, 1110, 13, 1, 0, 0, 0, 1111, 1112, 5, 186, 0, 0, 1112, 1114, 5, 66, 0, 0, 1113, 1115, 5, 187, 0, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 5, 158, 0, 0, 1117, 1119, 5, 425, 0, 0, 1118, 1120, 5, 234, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 5, 166, 0, 0, 1122, 1123, 5, 328, 0, 0, 1123, 1125, 3, 908, 454, 0, 1124, 1126, 3, 78, 39, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 15, 1, 0, 0, 0, 1127, 1128, 5, 152, 0, 0, 1128, 1129, 5, 253, 0, 0, 1129, 17, 1, 0, 0, 0, 1130, 1132, 5, 134, 0, 0, 1131, 1133, 5, 203, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 5, 278, 0, 0, 1135, 1136, 5, 398, 0, 0, 1136, 1137, 5, 425, 0, 0, 1137, 1138, 5, 399, 0, 0, 1138, 19, 1, 0, 0, 0, 1139, 1140, 5, 120, 0, 0, 1140, 1141, 5, 328, 0, 0, 1141, 1142, 3, 908, 454, 0, 1142, 1143, 5, 340, 0, 0, 1143, 1145, 5, 425, 0, 0, 1144, 1146, 3, 18, 9, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 21, 1, 0, 0, 0, 1147, 1153, 5, 153, 0, 0, 1148, 1150, 5, 123, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 5, 328, 0, 0, 1152, 1154, 3, 908, 454, 0, 1153, 1149, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 5, 139, 0, 0, 1156, 1158, 5, 425, 0, 0, 1157, 1159, 3, 272, 136, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 23, 1, 0, 0, 0, 1160, 1161, 5, 276, 0, 0, 1161, 1162, 5, 103, 0, 0, 1162, 1165, 3, 26, 13, 0, 1163, 1164, 5, 277, 0, 0, 1164, 1166, 3, 26, 13, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1168, 5, 386, 0, 0, 1168, 1170, 3, 30, 15, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 25, 1, 0, 0, 0, 1171, 1174, 3, 652, 326, 0, 1172, 1173, 5, 394, 0, 0, 1173, 1175, 3, 34, 17, 0, 1174, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 27, 1, 0, 0, 0, 1176, 1177, 5, 276, 0, 0, 1177, 1178, 5, 186, 0, 0, 1178, 1181, 3, 26, 13, 0, 1179, 1180, 5, 166, 0, 0, 1180, 1182, 3, 652, 326, 0, 1181, 1179, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1185, 1, 0, 0, 0, 1183, 1184, 5, 386, 0, 0, 1184, 1186, 3, 30, 15, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 29, 1, 0, 0, 0, 1187, 1188, 5, 398, 0, 0, 1188, 1189, 3, 32, 16, 0, 1189, 1190, 5, 399, 0, 0, 1190, 31, 1, 0, 0, 0, 1191, 1196, 3, 256, 128, 0, 1192, 1193, 5, 396, 0, 0, 1193, 1195, 3, 256, 128, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 33, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 5, 425, 0, 0, 1200, 1201, 5, 394, 0, 0, 1201, 1203, 5, 425, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 35, 1, 0, 0, 0, 1204, 1205, 5, 276, 0, 0, 1205, 1206, 5, 319, 0, 0, 1206, 1209, 3, 652, 326, 0, 1207, 1208, 5, 386, 0, 0, 1208, 1210, 3, 30, 15, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 37, 1, 0, 0, 0, 1211, 1259, 3, 56, 28, 0, 1212, 1259, 3, 68, 34, 0, 1213, 1259, 3, 70, 35, 0, 1214, 1259, 3, 596, 298, 0, 1215, 1259, 3, 76, 38, 0, 1216, 1259, 3, 74, 37, 0, 1217, 1259, 3, 474, 237, 0, 1218, 1259, 3, 86, 43, 0, 1219, 1259, 3, 94, 47, 0, 1220, 1259, 3, 160, 80, 0, 1221, 1259, 3, 182, 91, 0, 1222, 1259, 3, 198, 99, 0, 1223, 1259, 3, 202, 101, 0, 1224, 1259, 3, 206, 103, 0, 1225, 1259, 3, 204, 102, 0, 1226, 1259, 3, 196, 98, 0, 1227, 1259, 3, 200, 100, 0, 1228, 1259, 3, 168, 84, 0, 1229, 1259, 3, 174, 87, 0, 1230, 1259, 3, 170, 85, 0, 1231, 1259, 3, 172, 86, 0, 1232, 1259, 3, 176, 88, 0, 1233, 1259, 3, 178, 89, 0, 1234, 1259, 3, 180, 90, 0, 1235, 1259, 3, 88, 44, 0, 1236, 1259, 3, 98, 49, 0, 1237, 1259, 3, 104, 52, 0, 1238, 1259, 3, 100, 50, 0, 1239, 1259, 3, 106, 53, 0, 1240, 1259, 3, 108, 54, 0, 1241, 1259, 3, 110, 55, 0, 1242, 1259, 3, 112, 56, 0, 1243, 1259, 3, 114, 57, 0, 1244, 1259, 3, 128, 64, 0, 1245, 1259, 3, 120, 60, 0, 1246, 1259, 3, 130, 65, 0, 1247, 1259, 3, 122, 61, 0, 1248, 1259, 3, 116, 58, 0, 1249, 1259, 3, 118, 59, 0, 1250, 1259, 3, 126, 63, 0, 1251, 1259, 3, 124, 62, 0, 1252, 1259, 3, 448, 224, 0, 1253, 1259, 3, 450, 225, 0, 1254, 1259, 3, 464, 232, 0, 1255, 1259, 3, 952, 476, 0, 1256, 1259, 3, 598, 299, 0, 1257, 1259, 3, 608, 304, 0, 1258, 1211, 1, 0, 0, 0, 1258, 1212, 1, 0, 0, 0, 1258, 1213, 1, 0, 0, 0, 1258, 1214, 1, 0, 0, 0, 1258, 1215, 1, 0, 0, 0, 1258, 1216, 1, 0, 0, 0, 1258, 1217, 1, 0, 0, 0, 1258, 1218, 1, 0, 0, 0, 1258, 1219, 1, 0, 0, 0, 1258, 1220, 1, 0, 0, 0, 1258, 1221, 1, 0, 0, 0, 1258, 1222, 1, 0, 0, 0, 1258, 1223, 1, 0, 0, 0, 1258, 1224, 1, 0, 0, 0, 1258, 1225, 1, 0, 0, 0, 1258, 1226, 1, 0, 0, 0, 1258, 1227, 1, 0, 0, 0, 1258, 1228, 1, 0, 0, 0, 1258, 1229, 1, 0, 0, 0, 1258, 1230, 1, 0, 0, 0, 1258, 1231, 1, 0, 0, 0, 1258, 1232, 1, 0, 0, 0, 1258, 1233, 1, 0, 0, 0, 1258, 1234, 1, 0, 0, 0, 1258, 1235, 1, 0, 0, 0, 1258, 1236, 1, 0, 0, 0, 1258, 1237, 1, 0, 0, 0, 1258, 1238, 1, 0, 0, 0, 1258, 1239, 1, 0, 0, 0, 1258, 1240, 1, 0, 0, 0, 1258, 1241, 1, 0, 0, 0, 1258, 1242, 1, 0, 0, 0, 1258, 1243, 1, 0, 0, 0, 1258, 1244, 1, 0, 0, 0, 1258, 1245, 1, 0, 0, 0, 1258, 1246, 1, 0, 0, 0, 1258, 1247, 1, 0, 0, 0, 1258, 1248, 1, 0, 0, 0, 1258, 1249, 1, 0, 0, 0, 1258, 1250, 1, 0, 0, 0, 1258, 1251, 1, 0, 0, 0, 1258, 1252, 1, 0, 0, 0, 1258, 1253, 1, 0, 0, 0, 1258, 1254, 1, 0, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1258, 1257, 1, 0, 0, 0, 1259, 39, 1, 0, 0, 0, 1260, 1261, 5, 151, 0, 0, 1261, 1262, 5, 117, 0, 0, 1262, 41, 1, 0, 0, 0, 1263, 1264, 7, 2, 0, 0, 1264, 43, 1, 0, 0, 0, 1265, 1266, 5, 151, 0, 0, 1266, 1267, 5, 215, 0, 0, 1267, 1268, 5, 117, 0, 0, 1268, 45, 1, 0, 0, 0, 1269, 1270, 5, 135, 0, 0, 1270, 47, 1, 0, 0, 0, 1271, 1272, 3, 968, 484, 0, 1272, 1273, 5, 283, 0, 0, 1273, 49, 1, 0, 0, 0, 1274, 1275, 3, 970, 485, 0, 1275, 1276, 5, 283, 0, 0, 1276, 51, 1, 0, 0, 0, 1277, 1278, 5, 320, 0, 0, 1278, 1279, 5, 17, 0, 0, 1279, 1280, 5, 92, 0, 0, 1280, 53, 1, 0, 0, 0, 1281, 1282, 5, 227, 0, 0, 1282, 1283, 5, 277, 0, 0, 1283, 55, 1, 0, 0, 0, 1284, 1286, 5, 58, 0, 0, 1285, 1287, 5, 272, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 3, 92, 46, 0, 1289, 1291, 3, 44, 22, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 3, 654, 327, 0, 1293, 1295, 3, 72, 36, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 3, 58, 29, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1305, 1, 0, 0, 0, 1302, 1303, 5, 386, 0, 0, 1303, 1304, 5, 76, 0, 0, 1304, 1306, 3, 62, 31, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1324, 1, 0, 0, 0, 1307, 1308, 5, 58, 0, 0, 1308, 1309, 5, 272, 0, 0, 1309, 1311, 3, 92, 46, 0, 1310, 1312, 3, 44, 22, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 3, 654, 327, 0, 1314, 1316, 3, 72, 36, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1321, 3, 66, 33, 0, 1318, 1319, 5, 386, 0, 0, 1319, 1320, 5, 76, 0, 0, 1320, 1322, 3, 62, 31, 0, 1321, 1318, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1284, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1324, 57, 1, 0, 0, 0, 1325, 1326, 5, 188, 0, 0, 1326, 1327, 5, 425, 0, 0, 1327, 59, 1, 0, 0, 0, 1328, 1329, 5, 195, 0, 0, 1329, 1330, 5, 425, 0, 0, 1330, 61, 1, 0, 0, 0, 1331, 1332, 5, 398, 0, 0, 1332, 1333, 3, 64, 32, 0, 1333, 1334, 5, 399, 0, 0, 1334, 63, 1, 0, 0, 0, 1335, 1340, 3, 256, 128, 0, 1336, 1337, 5, 396, 0, 0, 1337, 1339, 3, 256, 128, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 65, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1344, 5, 369, 0, 0, 1344, 1345, 3, 652, 326, 0, 1345, 67, 1, 0, 0, 0, 1346, 1347, 5, 367, 0, 0, 1347, 1348, 3, 652, 326, 0, 1348, 69, 1, 0, 0, 0, 1349, 1350, 5, 101, 0, 0, 1350, 1352, 3, 92, 46, 0, 1351, 1353, 3, 40, 20, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1356, 3, 652, 326, 0, 1355, 1357, 3, 42, 21, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 71, 1, 0, 0, 0, 1358, 1359, 5, 47, 0, 0, 1359, 1360, 5, 425, 0, 0, 1360, 73, 1, 0, 0, 0, 1361, 1363, 5, 350, 0, 0, 1362, 1364, 5, 328, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1371, 3, 542, 271, 0, 1366, 1367, 5, 46, 0, 0, 1367, 1368, 5, 398, 0, 0, 1368, 1369, 3, 280, 140, 0, 1369, 1370, 5, 399, 0, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1366, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1375, 3, 46, 23, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 75, 1, 0, 0, 0, 1376, 1377, 5, 101, 0, 0, 1377, 1379, 5, 328, 0, 0, 1378, 1380, 3, 40, 20, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1383, 3, 658, 329, 0, 1382, 1384, 5, 254, 0, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1386, 1, 0, 0, 0, 1385, 1387, 3, 18, 9, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 77, 1, 0, 0, 0, 1388, 1389, 5, 160, 0, 0, 1389, 1390, 5, 425, 0, 0, 1390, 1391, 5, 300, 0, 0, 1391, 1392, 5, 425, 0, 0, 1392, 79, 1, 0, 0, 0, 1393, 1396, 3, 924, 462, 0, 1394, 1395, 5, 394, 0, 0, 1395, 1397, 3, 924, 462, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1411, 1, 0, 0, 0, 1398, 1408, 3, 924, 462, 0, 1399, 1404, 5, 394, 0, 0, 1400, 1405, 5, 104, 0, 0, 1401, 1405, 5, 175, 0, 0, 1402, 1405, 5, 374, 0, 0, 1403, 1405, 3, 924, 462, 0, 1404, 1400, 1, 0, 0, 0, 1404, 1401, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1399, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1411, 1398, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 81, 1, 0, 0, 0, 1413, 1415, 3, 80, 40, 0, 1414, 1416, 3, 910, 455, 0, 1415, 1414, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 83, 1, 0, 0, 0, 1417, 1419, 3, 656, 328, 0, 1418, 1420, 3, 910, 455, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 1, 0, 0, 0, 1421, 1423, 3, 286, 143, 0, 1422, 1421, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 85, 1, 0, 0, 0, 1424, 1447, 7, 3, 0, 0, 1425, 1427, 3, 92, 46, 0, 1426, 1428, 5, 122, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 3, 652, 326, 0, 1430, 1448, 1, 0, 0, 0, 1431, 1433, 5, 69, 0, 0, 1432, 1434, 5, 122, 0, 0, 1433, 1432, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1448, 3, 652, 326, 0, 1436, 1438, 5, 141, 0, 0, 1437, 1439, 5, 122, 0, 0, 1438, 1437, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1448, 3, 780, 390, 0, 1441, 1444, 5, 138, 0, 0, 1442, 1444, 5, 122, 0, 0, 1443, 1441, 1, 0, 0, 0, 1443, 1442, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1448, 3, 84, 42, 0, 1446, 1448, 3, 84, 42, 0, 1447, 1425, 1, 0, 0, 0, 1447, 1431, 1, 0, 0, 0, 1447, 1436, 1, 0, 0, 0, 1447, 1443, 1, 0, 0, 0, 1447, 1446, 1, 0, 0, 0, 1448, 87, 1, 0, 0, 0, 1449, 1450, 5, 10, 0, 0, 1450, 1451, 5, 328, 0, 0, 1451, 1464, 3, 908, 454, 0, 1452, 1453, 5, 52, 0, 0, 1453, 1460, 5, 318, 0, 0, 1454, 1461, 5, 214, 0, 0, 1455, 1456, 5, 134, 0, 0, 1456, 1458, 5, 46, 0, 0, 1457, 1459, 3, 280, 140, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1461, 1, 0, 0, 0, 1460, 1454, 1, 0, 0, 0, 1460, 1455, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1465, 1, 0, 0, 0, 1462, 1463, 5, 33, 0, 0, 1463, 1465, 5, 203, 0, 0, 1464, 1452, 1, 0, 0, 0, 1464, 1462, 1, 0, 0, 0, 1465, 89, 1, 0, 0, 0, 1466, 1467, 7, 4, 0, 0, 1467, 91, 1, 0, 0, 0, 1468, 1469, 7, 5, 0, 0, 1469, 93, 1, 0, 0, 0, 1470, 1471, 5, 307, 0, 0, 1471, 1474, 7, 6, 0, 0, 1472, 1473, 5, 183, 0, 0, 1473, 1475, 3, 216, 108, 0, 1474, 1472, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1664, 1, 0, 0, 0, 1476, 1478, 5, 307, 0, 0, 1477, 1479, 5, 122, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1484, 5, 329, 0, 0, 1481, 1482, 3, 90, 45, 0, 1482, 1483, 3, 652, 326, 0, 1483, 1485, 1, 0, 0, 0, 1484, 1481, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1488, 3, 96, 48, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1664, 1, 0, 0, 0, 1489, 1490, 5, 307, 0, 0, 1490, 1494, 5, 378, 0, 0, 1491, 1492, 3, 90, 45, 0, 1492, 1493, 3, 652, 326, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1491, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1499, 1, 0, 0, 0, 1496, 1497, 5, 183, 0, 0, 1497, 1500, 3, 216, 108, 0, 1498, 1500, 3, 216, 108, 0, 1499, 1496, 1, 0, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1664, 1, 0, 0, 0, 1501, 1502, 5, 307, 0, 0, 1502, 1503, 5, 201, 0, 0, 1503, 1507, 5, 378, 0, 0, 1504, 1505, 3, 90, 45, 0, 1505, 1506, 3, 652, 326, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1512, 1, 0, 0, 0, 1509, 1510, 5, 183, 0, 0, 1510, 1513, 3, 216, 108, 0, 1511, 1513, 3, 216, 108, 0, 1512, 1509, 1, 0, 0, 0, 1512, 1511, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1664, 1, 0, 0, 0, 1514, 1516, 5, 307, 0, 0, 1515, 1517, 5, 314, 0, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 5, 46, 0, 0, 1519, 1520, 3, 90, 45, 0, 1520, 1524, 3, 656, 328, 0, 1521, 1522, 3, 90, 45, 0, 1522, 1523, 3, 652, 326, 0, 1523, 1525, 1, 0, 0, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 183, 0, 0, 1527, 1530, 3, 216, 108, 0, 1528, 1530, 3, 216, 108, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1528, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1664, 1, 0, 0, 0, 1531, 1532, 5, 307, 0, 0, 1532, 1535, 5, 142, 0, 0, 1533, 1534, 5, 183, 0, 0, 1534, 1536, 3, 780, 390, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1664, 1, 0, 0, 0, 1537, 1538, 5, 307, 0, 0, 1538, 1539, 5, 238, 0, 0, 1539, 1541, 3, 656, 328, 0, 1540, 1542, 3, 910, 455, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 1, 0, 0, 0, 1543, 1545, 3, 674, 337, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1548, 3, 762, 381, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1550, 1, 0, 0, 0, 1549, 1551, 3, 418, 209, 0, 1550, 1549, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1664, 1, 0, 0, 0, 1552, 1553, 5, 307, 0, 0, 1553, 1559, 5, 58, 0, 0, 1554, 1555, 3, 92, 46, 0, 1555, 1556, 3, 652, 326, 0, 1556, 1560, 1, 0, 0, 0, 1557, 1558, 5, 328, 0, 0, 1558, 1560, 3, 658, 329, 0, 1559, 1554, 1, 0, 0, 0, 1559, 1557, 1, 0, 0, 0, 1560, 1664, 1, 0, 0, 0, 1561, 1562, 5, 307, 0, 0, 1562, 1563, 5, 328, 0, 0, 1563, 1567, 5, 122, 0, 0, 1564, 1565, 3, 90, 45, 0, 1565, 1566, 3, 652, 326, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 5, 183, 0, 0, 1570, 1572, 3, 216, 108, 0, 1571, 1573, 3, 910, 455, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1664, 1, 0, 0, 0, 1574, 1575, 5, 307, 0, 0, 1575, 1576, 5, 331, 0, 0, 1576, 1580, 3, 658, 329, 0, 1577, 1578, 5, 398, 0, 0, 1578, 1579, 5, 425, 0, 0, 1579, 1581, 5, 399, 0, 0, 1580, 1577, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1664, 1, 0, 0, 0, 1582, 1583, 5, 307, 0, 0, 1583, 1595, 5, 190, 0, 0, 1584, 1585, 3, 92, 46, 0, 1585, 1587, 3, 652, 326, 0, 1586, 1588, 5, 122, 0, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1596, 1, 0, 0, 0, 1589, 1591, 3, 82, 41, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1594, 5, 122, 0, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1596, 1, 0, 0, 0, 1595, 1584, 1, 0, 0, 0, 1595, 1590, 1, 0, 0, 0, 1596, 1664, 1, 0, 0, 0, 1597, 1598, 5, 307, 0, 0, 1598, 1635, 5, 50, 0, 0, 1599, 1636, 3, 466, 233, 0, 1600, 1601, 3, 92, 46, 0, 1601, 1603, 3, 652, 326, 0, 1602, 1604, 3, 468, 234, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1607, 3, 470, 235, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1609, 1, 0, 0, 0, 1608, 1610, 3, 472, 236, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1613, 3, 762, 381, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1616, 3, 418, 209, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1636, 1, 0, 0, 0, 1617, 1619, 3, 82, 41, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 1, 0, 0, 0, 1620, 1622, 3, 468, 234, 0, 1621, 1620, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1625, 3, 470, 235, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1628, 3, 472, 236, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1630, 1, 0, 0, 0, 1629, 1631, 3, 762, 381, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 418, 209, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1599, 1, 0, 0, 0, 1635, 1600, 1, 0, 0, 0, 1635, 1618, 1, 0, 0, 0, 1636, 1664, 1, 0, 0, 0, 1637, 1638, 5, 307, 0, 0, 1638, 1664, 5, 345, 0, 0, 1639, 1640, 5, 307, 0, 0, 1640, 1641, 5, 54, 0, 0, 1641, 1664, 5, 425, 0, 0, 1642, 1643, 5, 307, 0, 0, 1643, 1647, 5, 279, 0, 0, 1644, 1645, 5, 242, 0, 0, 1645, 1648, 3, 924, 462, 0, 1646, 1648, 5, 243, 0, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1646, 1, 0, 0, 0, 1648, 1664, 1, 0, 0, 0, 1649, 1650, 5, 307, 0, 0, 1650, 1664, 5, 70, 0, 0, 1651, 1653, 5, 307, 0, 0, 1652, 1654, 5, 138, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 7, 7, 0, 0, 1656, 1657, 5, 223, 0, 0, 1657, 1661, 3, 658, 329, 0, 1658, 1659, 3, 90, 45, 0, 1659, 1660, 3, 652, 326, 0, 1660, 1662, 1, 0, 0, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1470, 1, 0, 0, 0, 1663, 1476, 1, 0, 0, 0, 1663, 1489, 1, 0, 0, 0, 1663, 1501, 1, 0, 0, 0, 1663, 1514, 1, 0, 0, 0, 1663, 1531, 1, 0, 0, 0, 1663, 1537, 1, 0, 0, 0, 1663, 1552, 1, 0, 0, 0, 1663, 1561, 1, 0, 0, 0, 1663, 1574, 1, 0, 0, 0, 1663, 1582, 1, 0, 0, 0, 1663, 1597, 1, 0, 0, 0, 1663, 1637, 1, 0, 0, 0, 1663, 1639, 1, 0, 0, 0, 1663, 1642, 1, 0, 0, 0, 1663, 1649, 1, 0, 0, 0, 1663, 1651, 1, 0, 0, 0, 1664, 95, 1, 0, 0, 0, 1665, 1666, 5, 383, 0, 0, 1666, 1667, 3, 924, 462, 0, 1667, 1668, 5, 404, 0, 0, 1668, 1669, 5, 425, 0, 0, 1669, 1674, 1, 0, 0, 0, 1670, 1671, 5, 183, 0, 0, 1671, 1674, 3, 216, 108, 0, 1672, 1674, 3, 216, 108, 0, 1673, 1665, 1, 0, 0, 0, 1673, 1670, 1, 0, 0, 0, 1673, 1672, 1, 0, 0, 0, 1674, 97, 1, 0, 0, 0, 1675, 1676, 5, 189, 0, 0, 1676, 1677, 5, 328, 0, 0, 1677, 1679, 3, 658, 329, 0, 1678, 1680, 3, 910, 455, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 3, 102, 51, 0, 1682, 99, 1, 0, 0, 0, 1683, 1684, 5, 189, 0, 0, 1684, 1685, 3, 92, 46, 0, 1685, 1686, 3, 652, 326, 0, 1686, 1687, 3, 102, 51, 0, 1687, 101, 1, 0, 0, 0, 1688, 1689, 7, 8, 0, 0, 1689, 103, 1, 0, 0, 0, 1690, 1691, 5, 360, 0, 0, 1691, 1692, 5, 328, 0, 0, 1692, 1694, 3, 658, 329, 0, 1693, 1695, 3, 910, 455, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 105, 1, 0, 0, 0, 1696, 1697, 5, 360, 0, 0, 1697, 1698, 3, 92, 46, 0, 1698, 1699, 3, 652, 326, 0, 1699, 107, 1, 0, 0, 0, 1700, 1701, 5, 58, 0, 0, 1701, 1702, 5, 286, 0, 0, 1702, 1703, 3, 924, 462, 0, 1703, 109, 1, 0, 0, 0, 1704, 1705, 5, 101, 0, 0, 1705, 1706, 5, 286, 0, 0, 1706, 1707, 3, 924, 462, 0, 1707, 111, 1, 0, 0, 0, 1708, 1709, 5, 143, 0, 0, 1709, 1711, 3, 140, 70, 0, 1710, 1712, 3, 134, 67, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 5, 340, 0, 0, 1714, 1716, 3, 146, 73, 0, 1715, 1717, 3, 152, 76, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 113, 1, 0, 0, 0, 1718, 1720, 5, 282, 0, 0, 1719, 1721, 3, 154, 77, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1724, 3, 140, 70, 0, 1723, 1725, 3, 134, 67, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 5, 139, 0, 0, 1727, 1728, 3, 146, 73, 0, 1728, 115, 1, 0, 0, 0, 1729, 1731, 5, 143, 0, 0, 1730, 1732, 5, 286, 0, 0, 1731, 1730, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1738, 3, 924, 462, 0, 1734, 1735, 5, 396, 0, 0, 1735, 1737, 3, 924, 462, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 340, 0, 0, 1742, 1744, 3, 146, 73, 0, 1743, 1745, 3, 158, 79, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 117, 1, 0, 0, 0, 1746, 1748, 5, 282, 0, 0, 1747, 1749, 3, 156, 78, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1751, 1, 0, 0, 0, 1750, 1752, 5, 286, 0, 0, 1751, 1750, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1758, 3, 924, 462, 0, 1754, 1755, 5, 396, 0, 0, 1755, 1757, 3, 924, 462, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1760, 1, 0, 0, 0, 1758, 1756, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1762, 5, 139, 0, 0, 1762, 1763, 3, 146, 73, 0, 1763, 119, 1, 0, 0, 0, 1764, 1765, 5, 307, 0, 0, 1765, 1766, 5, 286, 0, 0, 1766, 1767, 5, 143, 0, 0, 1767, 1768, 3, 148, 74, 0, 1768, 121, 1, 0, 0, 0, 1769, 1770, 5, 307, 0, 0, 1770, 1771, 5, 287, 0, 0, 1771, 123, 1, 0, 0, 0, 1772, 1773, 5, 307, 0, 0, 1773, 1774, 5, 62, 0, 0, 1774, 1775, 5, 287, 0, 0, 1775, 125, 1, 0, 0, 0, 1776, 1777, 5, 303, 0, 0, 1777, 1781, 5, 286, 0, 0, 1778, 1782, 5, 7, 0, 0, 1779, 1782, 5, 212, 0, 0, 1780, 1782, 3, 924, 462, 0, 1781, 1778, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1780, 1, 0, 0, 0, 1782, 127, 1, 0, 0, 0, 1783, 1784, 5, 307, 0, 0, 1784, 1786, 5, 143, 0, 0, 1785, 1787, 3, 148, 74, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1790, 1, 0, 0, 0, 1788, 1789, 5, 223, 0, 0, 1789, 1791, 3, 132, 66, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 129, 1, 0, 0, 0, 1792, 1793, 5, 307, 0, 0, 1793, 1794, 5, 251, 0, 0, 1794, 1795, 3, 924, 462, 0, 1795, 131, 1, 0, 0, 0, 1796, 1799, 5, 7, 0, 0, 1797, 1799, 3, 138, 69, 0, 1798, 1796, 1, 0, 0, 0, 1798, 1797, 1, 0, 0, 0, 1799, 133, 1, 0, 0, 0, 1800, 1801, 5, 223, 0, 0, 1801, 1802, 3, 136, 68, 0, 1802, 135, 1, 0, 0, 0, 1803, 1804, 3, 92, 46, 0, 1804, 1805, 3, 652, 326, 0, 1805, 1818, 1, 0, 0, 0, 1806, 1808, 5, 328, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 3, 658, 329, 0, 1810, 1812, 3, 910, 455, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1818, 1, 0, 0, 0, 1813, 1814, 5, 365, 0, 0, 1814, 1818, 5, 425, 0, 0, 1815, 1816, 5, 302, 0, 0, 1816, 1818, 3, 924, 462, 0, 1817, 1803, 1, 0, 0, 0, 1817, 1807, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 137, 1, 0, 0, 0, 1819, 1820, 3, 92, 46, 0, 1820, 1821, 3, 652, 326, 0, 1821, 1840, 1, 0, 0, 0, 1822, 1824, 5, 328, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1830, 3, 658, 329, 0, 1826, 1827, 5, 398, 0, 0, 1827, 1828, 3, 280, 140, 0, 1828, 1829, 5, 399, 0, 0, 1829, 1831, 1, 0, 0, 0, 1830, 1826, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1834, 3, 910, 455, 0, 1833, 1832, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1840, 1, 0, 0, 0, 1835, 1836, 5, 365, 0, 0, 1836, 1840, 5, 425, 0, 0, 1837, 1838, 5, 302, 0, 0, 1838, 1840, 3, 924, 462, 0, 1839, 1819, 1, 0, 0, 0, 1839, 1823, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 139, 1, 0, 0, 0, 1841, 1846, 3, 142, 71, 0, 1842, 1843, 5, 396, 0, 0, 1843, 1845, 3, 142, 71, 0, 1844, 1842, 1, 0, 0, 0, 1845, 1848, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 141, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 1854, 3, 144, 72, 0, 1850, 1851, 5, 398, 0, 0, 1851, 1852, 3, 280, 140, 0, 1852, 1853, 5, 399, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1850, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 143, 1, 0, 0, 0, 1856, 1857, 7, 9, 0, 0, 1857, 145, 1, 0, 0, 0, 1858, 1863, 3, 148, 74, 0, 1859, 1860, 5, 396, 0, 0, 1860, 1862, 3, 148, 74, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1865, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 147, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1866, 1867, 5, 368, 0, 0, 1867, 1873, 3, 928, 464, 0, 1868, 1869, 5, 144, 0, 0, 1869, 1873, 3, 928, 464, 0, 1870, 1871, 5, 286, 0, 0, 1871, 1873, 3, 924, 462, 0, 1872, 1866, 1, 0, 0, 0, 1872, 1868, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1873, 149, 1, 0, 0, 0, 1874, 1875, 5, 368, 0, 0, 1875, 1880, 3, 928, 464, 0, 1876, 1877, 5, 286, 0, 0, 1877, 1880, 3, 924, 462, 0, 1878, 1880, 3, 924, 462, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1876, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 151, 1, 0, 0, 0, 1881, 1882, 5, 386, 0, 0, 1882, 1883, 5, 143, 0, 0, 1883, 1884, 5, 226, 0, 0, 1884, 153, 1, 0, 0, 0, 1885, 1886, 5, 143, 0, 0, 1886, 1887, 5, 226, 0, 0, 1887, 1888, 5, 134, 0, 0, 1888, 155, 1, 0, 0, 0, 1889, 1890, 5, 5, 0, 0, 1890, 1891, 5, 226, 0, 0, 1891, 1892, 5, 134, 0, 0, 1892, 157, 1, 0, 0, 0, 1893, 1894, 5, 386, 0, 0, 1894, 1895, 5, 5, 0, 0, 1895, 1896, 5, 226, 0, 0, 1896, 159, 1, 0, 0, 0, 1897, 1899, 5, 211, 0, 0, 1898, 1900, 5, 275, 0, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 5, 328, 0, 0, 1902, 1908, 3, 658, 329, 0, 1903, 1904, 7, 10, 0, 0, 1904, 1906, 5, 238, 0, 0, 1905, 1907, 3, 914, 457, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1903, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 161, 1, 0, 0, 0, 1910, 1915, 3, 164, 82, 0, 1911, 1912, 5, 396, 0, 0, 1912, 1914, 3, 164, 82, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 163, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 3, 166, 83, 0, 1919, 1920, 5, 425, 0, 0, 1920, 165, 1, 0, 0, 0, 1921, 1922, 7, 11, 0, 0, 1922, 167, 1, 0, 0, 0, 1923, 1925, 5, 58, 0, 0, 1924, 1926, 5, 332, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 5, 141, 0, 0, 1928, 1929, 3, 778, 389, 0, 1929, 1930, 5, 17, 0, 0, 1930, 1933, 5, 425, 0, 0, 1931, 1932, 5, 369, 0, 0, 1932, 1934, 3, 162, 81, 0, 1933, 1931, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 169, 1, 0, 0, 0, 1935, 1937, 5, 101, 0, 0, 1936, 1938, 5, 332, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 5, 141, 0, 0, 1940, 1942, 3, 40, 20, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1944, 3, 780, 390, 0, 1944, 171, 1, 0, 0, 0, 1945, 1946, 5, 270, 0, 0, 1946, 1947, 7, 12, 0, 0, 1947, 173, 1, 0, 0, 0, 1948, 1949, 5, 58, 0, 0, 1949, 1950, 5, 332, 0, 0, 1950, 1951, 5, 193, 0, 0, 1951, 1952, 5, 431, 0, 0, 1952, 1954, 5, 398, 0, 0, 1953, 1955, 3, 274, 137, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 5, 399, 0, 0, 1957, 1958, 3, 826, 413, 0, 1958, 175, 1, 0, 0, 0, 1959, 1960, 5, 101, 0, 0, 1960, 1961, 5, 332, 0, 0, 1961, 1963, 5, 193, 0, 0, 1962, 1964, 3, 40, 20, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 5, 431, 0, 0, 1966, 177, 1, 0, 0, 0, 1967, 1968, 5, 58, 0, 0, 1968, 1969, 5, 155, 0, 0, 1969, 1970, 3, 924, 462, 0, 1970, 1971, 5, 223, 0, 0, 1971, 1972, 5, 328, 0, 0, 1972, 1973, 3, 658, 329, 0, 1973, 1974, 3, 290, 145, 0, 1974, 1975, 5, 17, 0, 0, 1975, 1979, 5, 425, 0, 0, 1976, 1977, 5, 386, 0, 0, 1977, 1978, 5, 84, 0, 0, 1978, 1980, 5, 264, 0, 0, 1979, 1976, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1982, 5, 150, 0, 0, 1982, 1984, 3, 252, 126, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1988, 1, 0, 0, 0, 1985, 1986, 5, 154, 0, 0, 1986, 1987, 5, 328, 0, 0, 1987, 1989, 3, 658, 329, 0, 1988, 1985, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1993, 1, 0, 0, 0, 1990, 1991, 5, 237, 0, 0, 1991, 1992, 5, 32, 0, 0, 1992, 1994, 3, 290, 145, 0, 1993, 1990, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1999, 1, 0, 0, 0, 1995, 1997, 3, 248, 124, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2000, 3, 270, 135, 0, 1999, 1996, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 2002, 5, 188, 0, 0, 2002, 2004, 5, 425, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2007, 3, 250, 125, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, 3, 218, 109, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 179, 1, 0, 0, 0, 2011, 2012, 5, 101, 0, 0, 2012, 2014, 5, 155, 0, 0, 2013, 2015, 3, 40, 20, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 3, 924, 462, 0, 2017, 2018, 5, 223, 0, 0, 2018, 2019, 3, 658, 329, 0, 2019, 181, 1, 0, 0, 0, 2020, 2022, 5, 58, 0, 0, 2021, 2023, 3, 54, 27, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2026, 5, 377, 0, 0, 2025, 2027, 3, 44, 22, 0, 2026, 2025, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2033, 3, 664, 332, 0, 2029, 2030, 5, 398, 0, 0, 2030, 2031, 3, 334, 167, 0, 2031, 2032, 5, 399, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 2029, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2037, 3, 218, 109, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2040, 3, 184, 92, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2042, 1, 0, 0, 0, 2041, 2043, 3, 250, 125, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 17, 0, 0, 2045, 2046, 3, 412, 206, 0, 2046, 183, 1, 0, 0, 0, 2047, 2048, 5, 237, 0, 0, 2048, 2054, 5, 223, 0, 0, 2049, 2050, 5, 398, 0, 0, 2050, 2055, 3, 280, 140, 0, 2051, 2052, 5, 315, 0, 0, 2052, 2053, 5, 398, 0, 0, 2053, 2055, 3, 226, 113, 0, 2054, 2049, 1, 0, 0, 0, 2054, 2051, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 399, 0, 0, 2057, 185, 1, 0, 0, 0, 2058, 2061, 3, 188, 94, 0, 2059, 2061, 3, 190, 95, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2059, 1, 0, 0, 0, 2061, 187, 1, 0, 0, 0, 2062, 2063, 5, 42, 0, 0, 2063, 2064, 5, 223, 0, 0, 2064, 2065, 5, 398, 0, 0, 2065, 2066, 3, 280, 140, 0, 2066, 2067, 5, 399, 0, 0, 2067, 189, 1, 0, 0, 0, 2068, 2069, 3, 192, 96, 0, 2069, 2070, 3, 194, 97, 0, 2070, 191, 1, 0, 0, 0, 2071, 2072, 5, 98, 0, 0, 2072, 2073, 5, 223, 0, 0, 2073, 2074, 5, 398, 0, 0, 2074, 2075, 3, 280, 140, 0, 2075, 2076, 5, 399, 0, 0, 2076, 193, 1, 0, 0, 0, 2077, 2078, 5, 314, 0, 0, 2078, 2079, 5, 223, 0, 0, 2079, 2080, 5, 398, 0, 0, 2080, 2081, 3, 280, 140, 0, 2081, 2082, 5, 399, 0, 0, 2082, 195, 1, 0, 0, 0, 2083, 2084, 5, 101, 0, 0, 2084, 2086, 5, 377, 0, 0, 2085, 2087, 3, 40, 20, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2089, 3, 662, 331, 0, 2089, 197, 1, 0, 0, 0, 2090, 2091, 5, 58, 0, 0, 2091, 2092, 5, 201, 0, 0, 2092, 2094, 5, 377, 0, 0, 2093, 2095, 3, 44, 22, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 3, 664, 332, 0, 2097, 2099, 3, 50, 25, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 218, 109, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 184, 92, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2108, 3, 186, 93, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 1, 0, 0, 0, 2109, 2111, 3, 248, 124, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 270, 135, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 272, 136, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 250, 125, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2122, 5, 17, 0, 0, 2122, 2123, 3, 412, 206, 0, 2123, 199, 1, 0, 0, 0, 2124, 2125, 5, 101, 0, 0, 2125, 2126, 5, 201, 0, 0, 2126, 2128, 5, 377, 0, 0, 2127, 2129, 3, 40, 20, 0, 2128, 2127, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2131, 3, 662, 331, 0, 2131, 201, 1, 0, 0, 0, 2132, 2133, 5, 58, 0, 0, 2133, 2134, 5, 292, 0, 0, 2134, 2135, 5, 257, 0, 0, 2135, 2136, 3, 924, 462, 0, 2136, 2138, 3, 210, 105, 0, 2137, 2139, 3, 212, 106, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2142, 3, 294, 147, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2144, 3, 214, 107, 0, 2144, 203, 1, 0, 0, 0, 2145, 2146, 5, 101, 0, 0, 2146, 2147, 5, 292, 0, 0, 2147, 2148, 5, 257, 0, 0, 2148, 2149, 3, 924, 462, 0, 2149, 205, 1, 0, 0, 0, 2150, 2151, 5, 9, 0, 0, 2151, 2152, 5, 292, 0, 0, 2152, 2153, 5, 257, 0, 0, 2153, 2154, 3, 924, 462, 0, 2154, 2155, 3, 208, 104, 0, 2155, 207, 1, 0, 0, 0, 2156, 2162, 3, 210, 105, 0, 2157, 2162, 3, 212, 106, 0, 2158, 2162, 3, 294, 147, 0, 2159, 2162, 3, 214, 107, 0, 2160, 2162, 5, 115, 0, 0, 2161, 2156, 1, 0, 0, 0, 2161, 2157, 1, 0, 0, 0, 2161, 2158, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 209, 1, 0, 0, 0, 2163, 2164, 5, 59, 0, 0, 2164, 2179, 5, 425, 0, 0, 2165, 2167, 5, 111, 0, 0, 2166, 2168, 5, 430, 0, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2176, 3, 824, 412, 0, 2170, 2174, 5, 20, 0, 0, 2171, 2172, 5, 222, 0, 0, 2172, 2174, 5, 32, 0, 0, 2173, 2170, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 5, 425, 0, 0, 2176, 2173, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2163, 1, 0, 0, 0, 2178, 2165, 1, 0, 0, 0, 2179, 211, 1, 0, 0, 0, 2180, 2181, 5, 116, 0, 0, 2181, 2182, 5, 17, 0, 0, 2182, 2183, 5, 425, 0, 0, 2183, 213, 1, 0, 0, 0, 2184, 2186, 5, 85, 0, 0, 2185, 2184, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2188, 5, 17, 0, 0, 2188, 2189, 3, 2, 1, 0, 2189, 215, 1, 0, 0, 0, 2190, 2193, 3, 924, 462, 0, 2191, 2193, 5, 425, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2191, 1, 0, 0, 0, 2193, 217, 1, 0, 0, 0, 2194, 2195, 5, 47, 0, 0, 2195, 2196, 5, 425, 0, 0, 2196, 219, 1, 0, 0, 0, 2197, 2198, 5, 237, 0, 0, 2198, 2207, 5, 32, 0, 0, 2199, 2202, 5, 398, 0, 0, 2200, 2203, 3, 222, 111, 0, 2201, 2203, 3, 224, 112, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2201, 1, 0, 0, 0, 2203, 2208, 1, 0, 0, 0, 2204, 2205, 5, 315, 0, 0, 2205, 2206, 5, 398, 0, 0, 2206, 2208, 3, 226, 113, 0, 2207, 2199, 1, 0, 0, 0, 2207, 2204, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2210, 5, 399, 0, 0, 2210, 221, 1, 0, 0, 0, 2211, 2216, 3, 348, 174, 0, 2212, 2213, 5, 396, 0, 0, 2213, 2215, 3, 348, 174, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2218, 1, 0, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 223, 1, 0, 0, 0, 2218, 2216, 1, 0, 0, 0, 2219, 2224, 3, 282, 141, 0, 2220, 2221, 5, 396, 0, 0, 2221, 2223, 3, 282, 141, 0, 2222, 2220, 1, 0, 0, 0, 2223, 2226, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 225, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2232, 3, 228, 114, 0, 2228, 2229, 5, 396, 0, 0, 2229, 2231, 3, 228, 114, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2234, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 227, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2236, 3, 230, 115, 0, 2236, 229, 1, 0, 0, 0, 2237, 2256, 3, 282, 141, 0, 2238, 2243, 3, 974, 487, 0, 2239, 2243, 3, 976, 488, 0, 2240, 2243, 3, 980, 490, 0, 2241, 2243, 3, 982, 491, 0, 2242, 2238, 1, 0, 0, 0, 2242, 2239, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 5, 398, 0, 0, 2245, 2246, 3, 282, 141, 0, 2246, 2247, 5, 399, 0, 0, 2247, 2256, 1, 0, 0, 0, 2248, 2249, 7, 13, 0, 0, 2249, 2250, 5, 398, 0, 0, 2250, 2251, 5, 430, 0, 0, 2251, 2252, 5, 396, 0, 0, 2252, 2253, 3, 282, 141, 0, 2253, 2254, 5, 399, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2237, 1, 0, 0, 0, 2255, 2242, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 231, 1, 0, 0, 0, 2257, 2258, 5, 42, 0, 0, 2258, 2259, 5, 32, 0, 0, 2259, 2260, 5, 398, 0, 0, 2260, 2261, 3, 280, 140, 0, 2261, 2268, 5, 399, 0, 0, 2262, 2263, 5, 314, 0, 0, 2263, 2264, 5, 32, 0, 0, 2264, 2265, 5, 398, 0, 0, 2265, 2266, 3, 288, 144, 0, 2266, 2267, 5, 399, 0, 0, 2267, 2269, 1, 0, 0, 0, 2268, 2262, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2271, 5, 166, 0, 0, 2271, 2272, 5, 430, 0, 0, 2272, 2273, 5, 31, 0, 0, 2273, 233, 1, 0, 0, 0, 2274, 2275, 5, 42, 0, 0, 2275, 2276, 5, 166, 0, 0, 2276, 2277, 5, 430, 0, 0, 2277, 2278, 5, 31, 0, 0, 2278, 235, 1, 0, 0, 0, 2279, 2280, 5, 309, 0, 0, 2280, 2281, 5, 32, 0, 0, 2281, 2282, 5, 398, 0, 0, 2282, 2283, 3, 280, 140, 0, 2283, 2284, 5, 399, 0, 0, 2284, 2285, 5, 223, 0, 0, 2285, 2286, 5, 398, 0, 0, 2286, 2287, 3, 316, 158, 0, 2287, 2289, 5, 399, 0, 0, 2288, 2290, 3, 52, 26, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 237, 1, 0, 0, 0, 2291, 2294, 3, 244, 122, 0, 2292, 2294, 3, 246, 123, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 239, 1, 0, 0, 0, 2295, 2296, 5, 265, 0, 0, 2296, 2297, 5, 425, 0, 0, 2297, 241, 1, 0, 0, 0, 2298, 2299, 5, 266, 0, 0, 2299, 2300, 5, 425, 0, 0, 2300, 243, 1, 0, 0, 0, 2301, 2302, 5, 290, 0, 0, 2302, 2303, 5, 137, 0, 0, 2303, 2304, 5, 300, 0, 0, 2304, 2308, 5, 425, 0, 0, 2305, 2306, 5, 386, 0, 0, 2306, 2307, 5, 301, 0, 0, 2307, 2309, 3, 252, 126, 0, 2308, 2305, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 245, 1, 0, 0, 0, 2310, 2311, 5, 290, 0, 0, 2311, 2312, 5, 137, 0, 0, 2312, 2314, 5, 87, 0, 0, 2313, 2315, 3, 260, 130, 0, 2314, 2313, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2318, 3, 262, 131, 0, 2317, 2316, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2320, 1, 0, 0, 0, 2319, 2321, 3, 264, 132, 0, 2320, 2319, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2324, 3, 266, 133, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2327, 3, 268, 134, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 247, 1, 0, 0, 0, 2328, 2331, 3, 246, 123, 0, 2329, 2331, 3, 244, 122, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2329, 1, 0, 0, 0, 2331, 249, 1, 0, 0, 0, 2332, 2333, 5, 331, 0, 0, 2333, 2334, 3, 252, 126, 0, 2334, 251, 1, 0, 0, 0, 2335, 2336, 5, 398, 0, 0, 2336, 2337, 3, 254, 127, 0, 2337, 2338, 5, 399, 0, 0, 2338, 253, 1, 0, 0, 0, 2339, 2344, 3, 256, 128, 0, 2340, 2341, 5, 396, 0, 0, 2341, 2343, 3, 256, 128, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2346, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2356, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2352, 3, 258, 129, 0, 2348, 2349, 5, 396, 0, 0, 2349, 2351, 3, 258, 129, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2339, 1, 0, 0, 0, 2355, 2347, 1, 0, 0, 0, 2356, 255, 1, 0, 0, 0, 2357, 2358, 5, 425, 0, 0, 2358, 2359, 5, 404, 0, 0, 2359, 2360, 5, 425, 0, 0, 2360, 257, 1, 0, 0, 0, 2361, 2362, 5, 425, 0, 0, 2362, 259, 1, 0, 0, 0, 2363, 2364, 5, 127, 0, 0, 2364, 2365, 5, 333, 0, 0, 2365, 2366, 5, 32, 0, 0, 2366, 2370, 5, 425, 0, 0, 2367, 2368, 5, 110, 0, 0, 2368, 2369, 5, 32, 0, 0, 2369, 2371, 5, 425, 0, 0, 2370, 2367, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 261, 1, 0, 0, 0, 2372, 2373, 5, 44, 0, 0, 2373, 2374, 5, 169, 0, 0, 2374, 2375, 5, 333, 0, 0, 2375, 2376, 5, 32, 0, 0, 2376, 2377, 5, 425, 0, 0, 2377, 263, 1, 0, 0, 0, 2378, 2379, 5, 197, 0, 0, 2379, 2380, 5, 174, 0, 0, 2380, 2381, 5, 333, 0, 0, 2381, 2382, 5, 32, 0, 0, 2382, 2383, 5, 425, 0, 0, 2383, 265, 1, 0, 0, 0, 2384, 2385, 5, 185, 0, 0, 2385, 2386, 5, 333, 0, 0, 2386, 2387, 5, 32, 0, 0, 2387, 2388, 5, 425, 0, 0, 2388, 267, 1, 0, 0, 0, 2389, 2390, 5, 218, 0, 0, 2390, 2391, 5, 85, 0, 0, 2391, 2392, 5, 17, 0, 0, 2392, 2393, 5, 425, 0, 0, 2393, 269, 1, 0, 0, 0, 2394, 2395, 5, 320, 0, 0, 2395, 2396, 5, 17, 0, 0, 2396, 2397, 5, 160, 0, 0, 2397, 2398, 5, 425, 0, 0, 2398, 2399, 5, 232, 0, 0, 2399, 2404, 5, 425, 0, 0, 2400, 2401, 5, 159, 0, 0, 2401, 2402, 5, 425, 0, 0, 2402, 2403, 5, 231, 0, 0, 2403, 2405, 5, 425, 0, 0, 2404, 2400, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2436, 1, 0, 0, 0, 2406, 2407, 5, 320, 0, 0, 2407, 2408, 5, 32, 0, 0, 2408, 2412, 5, 425, 0, 0, 2409, 2410, 5, 386, 0, 0, 2410, 2411, 5, 301, 0, 0, 2411, 2413, 3, 252, 126, 0, 2412, 2409, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2417, 1, 0, 0, 0, 2414, 2415, 5, 320, 0, 0, 2415, 2416, 5, 17, 0, 0, 2416, 2418, 3, 924, 462, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2436, 1, 0, 0, 0, 2419, 2420, 5, 320, 0, 0, 2420, 2421, 5, 32, 0, 0, 2421, 2425, 3, 924, 462, 0, 2422, 2423, 5, 386, 0, 0, 2423, 2424, 5, 301, 0, 0, 2424, 2426, 3, 252, 126, 0, 2425, 2422, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2430, 1, 0, 0, 0, 2427, 2428, 5, 320, 0, 0, 2428, 2429, 5, 17, 0, 0, 2429, 2431, 3, 924, 462, 0, 2430, 2427, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2436, 1, 0, 0, 0, 2432, 2433, 5, 320, 0, 0, 2433, 2434, 5, 17, 0, 0, 2434, 2436, 3, 924, 462, 0, 2435, 2394, 1, 0, 0, 0, 2435, 2406, 1, 0, 0, 0, 2435, 2419, 1, 0, 0, 0, 2435, 2432, 1, 0, 0, 0, 2436, 271, 1, 0, 0, 0, 2437, 2438, 5, 188, 0, 0, 2438, 2439, 5, 425, 0, 0, 2439, 273, 1, 0, 0, 0, 2440, 2445, 3, 342, 171, 0, 2441, 2442, 5, 396, 0, 0, 2442, 2444, 3, 342, 171, 0, 2443, 2441, 1, 0, 0, 0, 2444, 2447, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 275, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2448, 2453, 3, 344, 172, 0, 2449, 2450, 5, 396, 0, 0, 2450, 2452, 3, 344, 172, 0, 2451, 2449, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 277, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2456, 2461, 3, 372, 186, 0, 2457, 2458, 5, 396, 0, 0, 2458, 2460, 3, 372, 186, 0, 2459, 2457, 1, 0, 0, 0, 2460, 2463, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 279, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2469, 3, 282, 141, 0, 2465, 2466, 5, 396, 0, 0, 2466, 2468, 3, 282, 141, 0, 2467, 2465, 1, 0, 0, 0, 2468, 2471, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 281, 1, 0, 0, 0, 2471, 2469, 1, 0, 0, 0, 2472, 2477, 3, 924, 462, 0, 2473, 2474, 5, 394, 0, 0, 2474, 2476, 3, 924, 462, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2482, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2482, 4, 141, 0, 0, 2481, 2472, 1, 0, 0, 0, 2481, 2480, 1, 0, 0, 0, 2482, 283, 1, 0, 0, 0, 2483, 2484, 3, 924, 462, 0, 2484, 285, 1, 0, 0, 0, 2485, 2495, 3, 282, 141, 0, 2486, 2491, 5, 394, 0, 0, 2487, 2492, 5, 104, 0, 0, 2488, 2492, 5, 175, 0, 0, 2489, 2492, 5, 374, 0, 0, 2490, 2492, 3, 924, 462, 0, 2491, 2487, 1, 0, 0, 0, 2491, 2488, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2486, 1, 0, 0, 0, 2494, 2497, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 287, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2498, 2503, 3, 332, 166, 0, 2499, 2500, 5, 396, 0, 0, 2500, 2502, 3, 332, 166, 0, 2501, 2499, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 289, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2507, 5, 398, 0, 0, 2507, 2508, 3, 280, 140, 0, 2508, 2509, 5, 399, 0, 0, 2509, 291, 1, 0, 0, 0, 2510, 2512, 3, 294, 147, 0, 2511, 2513, 3, 296, 148, 0, 2512, 2511, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2516, 3, 298, 149, 0, 2515, 2510, 1, 0, 0, 0, 2515, 2514, 1, 0, 0, 0, 2516, 293, 1, 0, 0, 0, 2517, 2520, 3, 968, 484, 0, 2518, 2520, 3, 970, 485, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2518, 1, 0, 0, 0, 2520, 295, 1, 0, 0, 0, 2521, 2522, 7, 14, 0, 0, 2522, 297, 1, 0, 0, 0, 2523, 2527, 5, 109, 0, 0, 2524, 2525, 5, 215, 0, 0, 2525, 2527, 5, 109, 0, 0, 2526, 2523, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 299, 1, 0, 0, 0, 2528, 2529, 7, 15, 0, 0, 2529, 301, 1, 0, 0, 0, 2530, 2531, 5, 55, 0, 0, 2531, 2533, 3, 924, 462, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 3, 306, 153, 0, 2535, 2537, 3, 368, 184, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 303, 1, 0, 0, 0, 2538, 2539, 5, 55, 0, 0, 2539, 2540, 3, 924, 462, 0, 2540, 2542, 3, 306, 153, 0, 2541, 2543, 3, 370, 185, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 305, 1, 0, 0, 0, 2544, 2547, 3, 308, 154, 0, 2545, 2547, 3, 310, 155, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2545, 1, 0, 0, 0, 2547, 307, 1, 0, 0, 0, 2548, 2549, 3, 366, 183, 0, 2549, 2550, 3, 290, 145, 0, 2550, 309, 1, 0, 0, 0, 2551, 2552, 5, 40, 0, 0, 2552, 2553, 5, 398, 0, 0, 2553, 2554, 3, 826, 413, 0, 2554, 2555, 5, 399, 0, 0, 2555, 311, 1, 0, 0, 0, 2556, 2557, 5, 55, 0, 0, 2557, 2559, 3, 924, 462, 0, 2558, 2556, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2561, 5, 136, 0, 0, 2561, 2562, 5, 173, 0, 0, 2562, 2563, 3, 290, 145, 0, 2563, 2564, 5, 268, 0, 0, 2564, 2565, 3, 658, 329, 0, 2565, 2567, 3, 290, 145, 0, 2566, 2568, 3, 368, 184, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 313, 1, 0, 0, 0, 2569, 2570, 5, 55, 0, 0, 2570, 2571, 3, 924, 462, 0, 2571, 2572, 5, 136, 0, 0, 2572, 2573, 5, 173, 0, 0, 2573, 2574, 3, 290, 145, 0, 2574, 2575, 5, 268, 0, 0, 2575, 2576, 3, 658, 329, 0, 2576, 2578, 3, 290, 145, 0, 2577, 2579, 3, 370, 185, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 315, 1, 0, 0, 0, 2580, 2583, 3, 322, 161, 0, 2581, 2583, 3, 318, 159, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2581, 1, 0, 0, 0, 2583, 317, 1, 0, 0, 0, 2584, 2589, 3, 320, 160, 0, 2585, 2586, 5, 396, 0, 0, 2586, 2588, 3, 320, 160, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 319, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2593, 5, 398, 0, 0, 2593, 2594, 3, 322, 161, 0, 2594, 2595, 5, 399, 0, 0, 2595, 321, 1, 0, 0, 0, 2596, 2601, 3, 324, 162, 0, 2597, 2598, 5, 396, 0, 0, 2598, 2600, 3, 324, 162, 0, 2599, 2597, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 323, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2605, 3, 802, 401, 0, 2605, 325, 1, 0, 0, 0, 2606, 2609, 3, 324, 162, 0, 2607, 2609, 3, 320, 160, 0, 2608, 2606, 1, 0, 0, 0, 2608, 2607, 1, 0, 0, 0, 2609, 327, 1, 0, 0, 0, 2610, 2611, 7, 16, 0, 0, 2611, 329, 1, 0, 0, 0, 2612, 2613, 5, 219, 0, 0, 2613, 2614, 7, 17, 0, 0, 2614, 331, 1, 0, 0, 0, 2615, 2617, 3, 282, 141, 0, 2616, 2618, 3, 328, 164, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 330, 165, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 333, 1, 0, 0, 0, 2622, 2627, 3, 336, 168, 0, 2623, 2624, 5, 396, 0, 0, 2624, 2626, 3, 336, 168, 0, 2625, 2623, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 335, 1, 0, 0, 0, 2629, 2627, 1, 0, 0, 0, 2630, 2633, 3, 284, 142, 0, 2631, 2632, 5, 47, 0, 0, 2632, 2634, 5, 425, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 337, 1, 0, 0, 0, 2635, 2636, 7, 16, 0, 0, 2636, 339, 1, 0, 0, 0, 2637, 2640, 3, 282, 141, 0, 2638, 2640, 3, 826, 413, 0, 2639, 2637, 1, 0, 0, 0, 2639, 2638, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 338, 169, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 330, 165, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 341, 1, 0, 0, 0, 2647, 2648, 3, 284, 142, 0, 2648, 2651, 3, 374, 187, 0, 2649, 2650, 5, 47, 0, 0, 2650, 2652, 5, 425, 0, 0, 2651, 2649, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 343, 1, 0, 0, 0, 2653, 2656, 3, 346, 173, 0, 2654, 2656, 3, 348, 174, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2654, 1, 0, 0, 0, 2656, 345, 1, 0, 0, 0, 2657, 2660, 3, 312, 156, 0, 2658, 2660, 3, 302, 151, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2658, 1, 0, 0, 0, 2660, 347, 1, 0, 0, 0, 2661, 2662, 3, 284, 142, 0, 2662, 2664, 3, 374, 187, 0, 2663, 2665, 3, 350, 175, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2668, 1, 0, 0, 0, 2666, 2667, 5, 47, 0, 0, 2667, 2669, 5, 425, 0, 0, 2668, 2666, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 349, 1, 0, 0, 0, 2670, 2673, 3, 352, 176, 0, 2671, 2673, 3, 354, 177, 0, 2672, 2670, 1, 0, 0, 0, 2672, 2671, 1, 0, 0, 0, 2673, 351, 1, 0, 0, 0, 2674, 2675, 5, 55, 0, 0, 2675, 2677, 3, 924, 462, 0, 2676, 2674, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 5, 268, 0, 0, 2679, 2680, 3, 658, 329, 0, 2680, 2681, 5, 398, 0, 0, 2681, 2682, 3, 282, 141, 0, 2682, 2684, 5, 399, 0, 0, 2683, 2685, 3, 368, 184, 0, 2684, 2683, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 353, 1, 0, 0, 0, 2686, 2687, 5, 55, 0, 0, 2687, 2689, 3, 924, 462, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2692, 3, 362, 181, 0, 2691, 2693, 3, 368, 184, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 355, 1, 0, 0, 0, 2694, 2697, 3, 358, 179, 0, 2695, 2697, 3, 360, 180, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2695, 1, 0, 0, 0, 2697, 357, 1, 0, 0, 0, 2698, 2699, 5, 55, 0, 0, 2699, 2701, 3, 924, 462, 0, 2700, 2698, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2703, 5, 268, 0, 0, 2703, 2704, 3, 658, 329, 0, 2704, 2705, 5, 398, 0, 0, 2705, 2706, 3, 282, 141, 0, 2706, 2708, 5, 399, 0, 0, 2707, 2709, 3, 370, 185, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 359, 1, 0, 0, 0, 2710, 2711, 5, 55, 0, 0, 2711, 2713, 3, 924, 462, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2716, 3, 362, 181, 0, 2715, 2717, 3, 370, 185, 0, 2716, 2715, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 361, 1, 0, 0, 0, 2718, 2719, 5, 215, 0, 0, 2719, 2725, 5, 218, 0, 0, 2720, 2721, 5, 83, 0, 0, 2721, 2725, 3, 364, 182, 0, 2722, 2725, 3, 310, 155, 0, 2723, 2725, 3, 366, 183, 0, 2724, 2718, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2723, 1, 0, 0, 0, 2725, 363, 1, 0, 0, 0, 2726, 2730, 3, 802, 401, 0, 2727, 2730, 3, 774, 387, 0, 2728, 2730, 3, 788, 394, 0, 2729, 2726, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2729, 2728, 1, 0, 0, 0, 2730, 365, 1, 0, 0, 0, 2731, 2732, 5, 250, 0, 0, 2732, 2735, 5, 173, 0, 0, 2733, 2735, 5, 357, 0, 0, 2734, 2731, 1, 0, 0, 0, 2734, 2733, 1, 0, 0, 0, 2735, 367, 1, 0, 0, 0, 2736, 2738, 3, 292, 146, 0, 2737, 2739, 3, 300, 150, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 369, 1, 0, 0, 0, 2740, 2742, 3, 292, 146, 0, 2741, 2743, 3, 300, 150, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 371, 1, 0, 0, 0, 2744, 2745, 3, 284, 142, 0, 2745, 2746, 5, 395, 0, 0, 2746, 2749, 3, 374, 187, 0, 2747, 2748, 5, 47, 0, 0, 2748, 2750, 5, 425, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 373, 1, 0, 0, 0, 2751, 2752, 3, 378, 189, 0, 2752, 375, 1, 0, 0, 0, 2753, 2758, 3, 374, 187, 0, 2754, 2755, 5, 396, 0, 0, 2755, 2757, 3, 374, 187, 0, 2756, 2754, 1, 0, 0, 0, 2757, 2760, 1, 0, 0, 0, 2758, 2756, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 377, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2761, 2767, 3, 380, 190, 0, 2762, 2767, 3, 382, 191, 0, 2763, 2767, 3, 384, 192, 0, 2764, 2767, 3, 386, 193, 0, 2765, 2767, 3, 388, 194, 0, 2766, 2761, 1, 0, 0, 0, 2766, 2762, 1, 0, 0, 0, 2766, 2763, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2765, 1, 0, 0, 0, 2767, 379, 1, 0, 0, 0, 2768, 2806, 5, 339, 0, 0, 2769, 2806, 5, 310, 0, 0, 2770, 2806, 5, 162, 0, 0, 2771, 2806, 5, 163, 0, 0, 2772, 2806, 5, 26, 0, 0, 2773, 2806, 5, 28, 0, 0, 2774, 2806, 5, 131, 0, 0, 2775, 2806, 5, 263, 0, 0, 2776, 2778, 5, 100, 0, 0, 2777, 2779, 5, 247, 0, 0, 2778, 2777, 1, 0, 0, 0, 2778, 2779, 1, 0, 0, 0, 2779, 2806, 1, 0, 0, 0, 2780, 2806, 5, 71, 0, 0, 2781, 2806, 5, 72, 0, 0, 2782, 2806, 5, 336, 0, 0, 2783, 2806, 5, 337, 0, 0, 2784, 2785, 5, 336, 0, 0, 2785, 2786, 5, 386, 0, 0, 2786, 2787, 5, 187, 0, 0, 2787, 2788, 5, 335, 0, 0, 2788, 2806, 5, 393, 0, 0, 2789, 2806, 5, 322, 0, 0, 2790, 2806, 5, 27, 0, 0, 2791, 2799, 3, 988, 494, 0, 2792, 2793, 5, 398, 0, 0, 2793, 2796, 5, 430, 0, 0, 2794, 2795, 5, 396, 0, 0, 2795, 2797, 5, 430, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2800, 5, 399, 0, 0, 2799, 2792, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2806, 1, 0, 0, 0, 2801, 2802, 7, 18, 0, 0, 2802, 2803, 5, 398, 0, 0, 2803, 2804, 5, 430, 0, 0, 2804, 2806, 5, 399, 0, 0, 2805, 2768, 1, 0, 0, 0, 2805, 2769, 1, 0, 0, 0, 2805, 2770, 1, 0, 0, 0, 2805, 2771, 1, 0, 0, 0, 2805, 2772, 1, 0, 0, 0, 2805, 2773, 1, 0, 0, 0, 2805, 2774, 1, 0, 0, 0, 2805, 2775, 1, 0, 0, 0, 2805, 2776, 1, 0, 0, 0, 2805, 2780, 1, 0, 0, 0, 2805, 2781, 1, 0, 0, 0, 2805, 2782, 1, 0, 0, 0, 2805, 2783, 1, 0, 0, 0, 2805, 2784, 1, 0, 0, 0, 2805, 2789, 1, 0, 0, 0, 2805, 2790, 1, 0, 0, 0, 2805, 2791, 1, 0, 0, 0, 2805, 2801, 1, 0, 0, 0, 2806, 381, 1, 0, 0, 0, 2807, 2808, 5, 16, 0, 0, 2808, 2809, 5, 408, 0, 0, 2809, 2810, 3, 378, 189, 0, 2810, 2811, 5, 410, 0, 0, 2811, 383, 1, 0, 0, 0, 2812, 2813, 5, 323, 0, 0, 2813, 2814, 5, 408, 0, 0, 2814, 2815, 3, 278, 139, 0, 2815, 2816, 5, 410, 0, 0, 2816, 385, 1, 0, 0, 0, 2817, 2818, 5, 197, 0, 0, 2818, 2819, 5, 408, 0, 0, 2819, 2820, 3, 380, 190, 0, 2820, 2821, 5, 396, 0, 0, 2821, 2822, 3, 378, 189, 0, 2822, 2823, 5, 410, 0, 0, 2823, 387, 1, 0, 0, 0, 2824, 2825, 5, 356, 0, 0, 2825, 2826, 5, 408, 0, 0, 2826, 2827, 3, 376, 188, 0, 2827, 2828, 5, 410, 0, 0, 2828, 389, 1, 0, 0, 0, 2829, 2831, 7, 19, 0, 0, 2830, 2832, 7, 20, 0, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 391, 1, 0, 0, 0, 2833, 2835, 3, 396, 198, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 3, 394, 197, 0, 2837, 393, 1, 0, 0, 0, 2838, 2841, 3, 400, 200, 0, 2839, 2841, 3, 404, 202, 0, 2840, 2838, 1, 0, 0, 0, 2840, 2839, 1, 0, 0, 0, 2841, 395, 1, 0, 0, 0, 2842, 2843, 5, 386, 0, 0, 2843, 2848, 3, 398, 199, 0, 2844, 2845, 5, 396, 0, 0, 2845, 2847, 3, 398, 199, 0, 2846, 2844, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 397, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2856, 3, 924, 462, 0, 2852, 2853, 5, 398, 0, 0, 2853, 2854, 3, 280, 140, 0, 2854, 2855, 5, 399, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2859, 5, 17, 0, 0, 2859, 2860, 5, 398, 0, 0, 2860, 2861, 3, 392, 196, 0, 2861, 2862, 5, 399, 0, 0, 2862, 399, 1, 0, 0, 0, 2863, 2869, 3, 402, 201, 0, 2864, 2865, 3, 390, 195, 0, 2865, 2866, 3, 402, 201, 0, 2866, 2868, 1, 0, 0, 0, 2867, 2864, 1, 0, 0, 0, 2868, 2871, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2869, 2870, 1, 0, 0, 0, 2870, 401, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2872, 2873, 3, 618, 309, 0, 2873, 2874, 3, 414, 207, 0, 2874, 2876, 3, 690, 345, 0, 2875, 2877, 3, 636, 318, 0, 2876, 2875, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2880, 3, 674, 337, 0, 2879, 2878, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2882, 1, 0, 0, 0, 2881, 2883, 3, 722, 361, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2885, 1, 0, 0, 0, 2884, 2886, 3, 738, 369, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2889, 3, 706, 353, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2891, 1, 0, 0, 0, 2890, 2892, 3, 740, 370, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2895, 3, 762, 381, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2897, 1, 0, 0, 0, 2896, 2898, 3, 764, 382, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2901, 3, 768, 384, 0, 2900, 2899, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2903, 1, 0, 0, 0, 2902, 2904, 3, 770, 385, 0, 2903, 2902, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2907, 3, 418, 209, 0, 2906, 2905, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2944, 1, 0, 0, 0, 2908, 2909, 3, 618, 309, 0, 2909, 2911, 3, 690, 345, 0, 2910, 2912, 3, 636, 318, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2914, 1, 0, 0, 0, 2913, 2915, 3, 674, 337, 0, 2914, 2913, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2917, 1, 0, 0, 0, 2916, 2918, 3, 722, 361, 0, 2917, 2916, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 1, 0, 0, 0, 2919, 2921, 3, 738, 369, 0, 2920, 2919, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2924, 3, 706, 353, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2926, 1, 0, 0, 0, 2925, 2927, 3, 740, 370, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2930, 3, 762, 381, 0, 2929, 2928, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2932, 1, 0, 0, 0, 2931, 2933, 3, 764, 382, 0, 2932, 2931, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2935, 1, 0, 0, 0, 2934, 2936, 3, 768, 384, 0, 2935, 2934, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2938, 1, 0, 0, 0, 2937, 2939, 3, 770, 385, 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2942, 3, 418, 209, 0, 2941, 2940, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2872, 1, 0, 0, 0, 2943, 2908, 1, 0, 0, 0, 2944, 403, 1, 0, 0, 0, 2945, 2946, 3, 414, 207, 0, 2946, 2947, 3, 408, 204, 0, 2947, 2950, 1, 0, 0, 0, 2948, 2950, 3, 408, 204, 0, 2949, 2945, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 405, 1, 0, 0, 0, 2951, 2953, 3, 690, 345, 0, 2952, 2954, 3, 618, 309, 0, 2953, 2952, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2957, 3, 674, 337, 0, 2956, 2955, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2959, 1, 0, 0, 0, 2958, 2960, 3, 722, 361, 0, 2959, 2958, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2962, 1, 0, 0, 0, 2961, 2963, 3, 738, 369, 0, 2962, 2961, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2966, 3, 706, 353, 0, 2965, 2964, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2968, 1, 0, 0, 0, 2967, 2969, 3, 740, 370, 0, 2968, 2967, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2976, 1, 0, 0, 0, 2970, 2971, 5, 398, 0, 0, 2971, 2972, 3, 408, 204, 0, 2972, 2973, 5, 399, 0, 0, 2973, 2976, 1, 0, 0, 0, 2974, 2976, 3, 678, 339, 0, 2975, 2951, 1, 0, 0, 0, 2975, 2970, 1, 0, 0, 0, 2975, 2974, 1, 0, 0, 0, 2976, 407, 1, 0, 0, 0, 2977, 2979, 3, 406, 203, 0, 2978, 2980, 3, 410, 205, 0, 2979, 2978, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2983, 3, 762, 381, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2986, 3, 764, 382, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2988, 1, 0, 0, 0, 2987, 2989, 3, 768, 384, 0, 2988, 2987, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 1, 0, 0, 0, 2990, 2992, 3, 770, 385, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2995, 3, 418, 209, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 409, 1, 0, 0, 0, 2996, 2997, 3, 390, 195, 0, 2997, 2998, 3, 406, 203, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2996, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 411, 1, 0, 0, 0, 3003, 3005, 3, 396, 198, 0, 3004, 3003, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 3, 408, 204, 0, 3007, 413, 1, 0, 0, 0, 3008, 3025, 5, 161, 0, 0, 3009, 3010, 5, 234, 0, 0, 3010, 3012, 3, 416, 208, 0, 3011, 3013, 3, 44, 22, 0, 3012, 3011, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3026, 1, 0, 0, 0, 3014, 3016, 5, 166, 0, 0, 3015, 3017, 5, 328, 0, 0, 3016, 3015, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3023, 3, 908, 454, 0, 3019, 3020, 5, 398, 0, 0, 3020, 3021, 3, 280, 140, 0, 3021, 3022, 5, 399, 0, 0, 3022, 3024, 1, 0, 0, 0, 3023, 3019, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3026, 1, 0, 0, 0, 3025, 3009, 1, 0, 0, 0, 3025, 3014, 1, 0, 0, 0, 3026, 415, 1, 0, 0, 0, 3027, 3029, 5, 187, 0, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 5, 93, 0, 0, 3031, 3033, 5, 425, 0, 0, 3032, 3034, 3, 248, 124, 0, 3033, 3032, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3036, 1, 0, 0, 0, 3035, 3037, 3, 270, 135, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3041, 1, 0, 0, 0, 3038, 3039, 5, 328, 0, 0, 3039, 3041, 3, 908, 454, 0, 3040, 3028, 1, 0, 0, 0, 3040, 3038, 1, 0, 0, 0, 3041, 417, 1, 0, 0, 0, 3042, 3051, 5, 184, 0, 0, 3043, 3044, 5, 430, 0, 0, 3044, 3046, 5, 396, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3052, 5, 430, 0, 0, 3048, 3049, 5, 430, 0, 0, 3049, 3050, 5, 222, 0, 0, 3050, 3052, 5, 430, 0, 0, 3051, 3045, 1, 0, 0, 0, 3051, 3048, 1, 0, 0, 0, 3052, 419, 1, 0, 0, 0, 3053, 3054, 5, 86, 0, 0, 3054, 3055, 5, 139, 0, 0, 3055, 3057, 3, 658, 329, 0, 3056, 3058, 3, 674, 337, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 421, 1, 0, 0, 0, 3059, 3060, 3, 282, 141, 0, 3060, 3061, 5, 404, 0, 0, 3061, 3062, 3, 424, 212, 0, 3062, 423, 1, 0, 0, 0, 3063, 3066, 3, 612, 306, 0, 3064, 3066, 3, 846, 423, 0, 3065, 3063, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 425, 1, 0, 0, 0, 3067, 3068, 5, 303, 0, 0, 3068, 3073, 3, 422, 211, 0, 3069, 3070, 5, 396, 0, 0, 3070, 3072, 3, 422, 211, 0, 3071, 3069, 1, 0, 0, 0, 3072, 3075, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 427, 1, 0, 0, 0, 3075, 3073, 1, 0, 0, 0, 3076, 3077, 5, 364, 0, 0, 3077, 3078, 3, 658, 329, 0, 3078, 3080, 3, 426, 213, 0, 3079, 3081, 3, 674, 337, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 429, 1, 0, 0, 0, 3082, 3087, 3, 432, 216, 0, 3083, 3087, 3, 442, 221, 0, 3084, 3087, 3, 444, 222, 0, 3085, 3087, 3, 446, 223, 0, 3086, 3082, 1, 0, 0, 0, 3086, 3083, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3086, 3085, 1, 0, 0, 0, 3087, 431, 1, 0, 0, 0, 3088, 3089, 5, 317, 0, 0, 3089, 3098, 5, 343, 0, 0, 3090, 3095, 3, 434, 217, 0, 3091, 3092, 5, 396, 0, 0, 3092, 3094, 3, 434, 217, 0, 3093, 3091, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3099, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3090, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 433, 1, 0, 0, 0, 3100, 3103, 3, 438, 219, 0, 3101, 3103, 3, 436, 218, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3101, 1, 0, 0, 0, 3103, 435, 1, 0, 0, 0, 3104, 3105, 5, 260, 0, 0, 3105, 3106, 7, 21, 0, 0, 3106, 437, 1, 0, 0, 0, 3107, 3108, 5, 168, 0, 0, 3108, 3109, 5, 182, 0, 0, 3109, 3110, 3, 440, 220, 0, 3110, 439, 1, 0, 0, 0, 3111, 3112, 5, 311, 0, 0, 3112, 441, 1, 0, 0, 0, 3113, 3115, 5, 48, 0, 0, 3114, 3116, 5, 388, 0, 0, 3115, 3114, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 443, 1, 0, 0, 0, 3117, 3119, 5, 288, 0, 0, 3118, 3120, 5, 388, 0, 0, 3119, 3118, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 445, 1, 0, 0, 0, 3121, 3122, 5, 303, 0, 0, 3122, 3123, 5, 22, 0, 0, 3123, 3124, 3, 906, 453, 0, 3124, 447, 1, 0, 0, 0, 3125, 3126, 5, 1, 0, 0, 3126, 3128, 5, 345, 0, 0, 3127, 3129, 5, 430, 0, 0, 3128, 3127, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 449, 1, 0, 0, 0, 3132, 3133, 5, 1, 0, 0, 3133, 3135, 5, 50, 0, 0, 3134, 3136, 5, 430, 0, 0, 3135, 3134, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3135, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 451, 1, 0, 0, 0, 3139, 3141, 5, 202, 0, 0, 3140, 3142, 5, 435, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 166, 0, 0, 3144, 3149, 3, 658, 329, 0, 3145, 3147, 5, 17, 0, 0, 3146, 3145, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 3, 924, 462, 0, 3149, 3146, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 5, 369, 0, 0, 3152, 3153, 3, 626, 313, 0, 3153, 3154, 5, 223, 0, 0, 3154, 3155, 3, 826, 413, 0, 3155, 3156, 3, 454, 227, 0, 3156, 453, 1, 0, 0, 0, 3157, 3160, 3, 458, 229, 0, 3158, 3160, 3, 460, 230, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3158, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3165, 1, 0, 0, 0, 3163, 3161, 1, 0, 0, 0, 3164, 3166, 3, 456, 228, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 455, 1, 0, 0, 0, 3167, 3168, 5, 382, 0, 0, 3168, 3169, 5, 215, 0, 0, 3169, 3172, 5, 200, 0, 0, 3170, 3171, 5, 11, 0, 0, 3171, 3173, 3, 826, 413, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 5, 334, 0, 0, 3175, 3177, 5, 161, 0, 0, 3176, 3178, 3, 290, 145, 0, 3177, 3176, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 5, 373, 0, 0, 3180, 3181, 3, 684, 342, 0, 3181, 457, 1, 0, 0, 0, 3182, 3183, 5, 382, 0, 0, 3183, 3184, 5, 200, 0, 0, 3184, 3185, 5, 11, 0, 0, 3185, 3186, 3, 826, 413, 0, 3186, 3187, 5, 334, 0, 0, 3187, 3188, 3, 462, 231, 0, 3188, 459, 1, 0, 0, 0, 3189, 3190, 5, 382, 0, 0, 3190, 3191, 5, 200, 0, 0, 3191, 3192, 5, 334, 0, 0, 3192, 3193, 3, 462, 231, 0, 3193, 461, 1, 0, 0, 0, 3194, 3195, 5, 364, 0, 0, 3195, 3198, 3, 426, 213, 0, 3196, 3198, 5, 86, 0, 0, 3197, 3194, 1, 0, 0, 0, 3197, 3196, 1, 0, 0, 0, 3198, 463, 1, 0, 0, 0, 3199, 3200, 5, 176, 0, 0, 3200, 3202, 5, 257, 0, 0, 3201, 3203, 5, 425, 0, 0, 3202, 3201, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 465, 1, 0, 0, 0, 3206, 3207, 5, 51, 0, 0, 3207, 3208, 5, 404, 0, 0, 3208, 3209, 5, 430, 0, 0, 3209, 467, 1, 0, 0, 0, 3210, 3211, 5, 245, 0, 0, 3211, 3212, 5, 425, 0, 0, 3212, 469, 1, 0, 0, 0, 3213, 3214, 5, 351, 0, 0, 3214, 3215, 5, 425, 0, 0, 3215, 471, 1, 0, 0, 0, 3216, 3217, 5, 319, 0, 0, 3217, 3218, 5, 425, 0, 0, 3218, 473, 1, 0, 0, 0, 3219, 3243, 5, 9, 0, 0, 3220, 3221, 5, 328, 0, 0, 3221, 3222, 3, 658, 329, 0, 3222, 3223, 3, 476, 238, 0, 3223, 3244, 1, 0, 0, 0, 3224, 3225, 5, 377, 0, 0, 3225, 3227, 3, 662, 331, 0, 3226, 3228, 5, 17, 0, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 3, 482, 241, 0, 3230, 3244, 1, 0, 0, 0, 3231, 3232, 5, 201, 0, 0, 3232, 3233, 5, 377, 0, 0, 3233, 3234, 3, 662, 331, 0, 3234, 3235, 3, 484, 242, 0, 3235, 3244, 1, 0, 0, 0, 3236, 3237, 3, 92, 46, 0, 3237, 3238, 3, 490, 245, 0, 3238, 3244, 1, 0, 0, 0, 3239, 3240, 5, 69, 0, 0, 3240, 3244, 3, 586, 293, 0, 3241, 3242, 5, 155, 0, 0, 3242, 3244, 3, 582, 291, 0, 3243, 3220, 1, 0, 0, 0, 3243, 3224, 1, 0, 0, 0, 3243, 3231, 1, 0, 0, 0, 3243, 3236, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3241, 1, 0, 0, 0, 3244, 475, 1, 0, 0, 0, 3245, 3267, 3, 500, 250, 0, 3246, 3267, 3, 532, 266, 0, 3247, 3267, 3, 534, 267, 0, 3248, 3267, 3, 520, 260, 0, 3249, 3267, 3, 524, 262, 0, 3250, 3267, 3, 526, 263, 0, 3251, 3267, 3, 528, 264, 0, 3252, 3267, 3, 536, 268, 0, 3253, 3267, 3, 558, 279, 0, 3254, 3267, 3, 560, 280, 0, 3255, 3267, 3, 480, 240, 0, 3256, 3267, 3, 510, 255, 0, 3257, 3267, 3, 504, 252, 0, 3258, 3267, 3, 478, 239, 0, 3259, 3261, 3, 910, 455, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3267, 3, 478, 239, 0, 3263, 3267, 3, 576, 288, 0, 3264, 3267, 3, 578, 289, 0, 3265, 3267, 3, 580, 290, 0, 3266, 3245, 1, 0, 0, 0, 3266, 3246, 1, 0, 0, 0, 3266, 3247, 1, 0, 0, 0, 3266, 3248, 1, 0, 0, 0, 3266, 3249, 1, 0, 0, 0, 3266, 3250, 1, 0, 0, 0, 3266, 3251, 1, 0, 0, 0, 3266, 3252, 1, 0, 0, 0, 3266, 3253, 1, 0, 0, 0, 3266, 3254, 1, 0, 0, 0, 3266, 3255, 1, 0, 0, 0, 3266, 3256, 1, 0, 0, 0, 3266, 3257, 1, 0, 0, 0, 3266, 3258, 1, 0, 0, 0, 3266, 3260, 1, 0, 0, 0, 3266, 3263, 1, 0, 0, 0, 3266, 3264, 1, 0, 0, 0, 3266, 3265, 1, 0, 0, 0, 3267, 477, 1, 0, 0, 0, 3268, 3284, 3, 544, 272, 0, 3269, 3284, 3, 556, 278, 0, 3270, 3284, 3, 566, 283, 0, 3271, 3284, 3, 540, 270, 0, 3272, 3284, 3, 562, 281, 0, 3273, 3284, 3, 568, 284, 0, 3274, 3284, 3, 548, 274, 0, 3275, 3284, 3, 546, 273, 0, 3276, 3284, 3, 574, 287, 0, 3277, 3284, 3, 514, 257, 0, 3278, 3284, 3, 516, 258, 0, 3279, 3284, 3, 512, 256, 0, 3280, 3284, 3, 502, 251, 0, 3281, 3284, 3, 506, 253, 0, 3282, 3284, 3, 508, 254, 0, 3283, 3268, 1, 0, 0, 0, 3283, 3269, 1, 0, 0, 0, 3283, 3270, 1, 0, 0, 0, 3283, 3271, 1, 0, 0, 0, 3283, 3272, 1, 0, 0, 0, 3283, 3273, 1, 0, 0, 0, 3283, 3274, 1, 0, 0, 0, 3283, 3275, 1, 0, 0, 0, 3283, 3276, 1, 0, 0, 0, 3283, 3277, 1, 0, 0, 0, 3283, 3278, 1, 0, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3280, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3283, 3282, 1, 0, 0, 0, 3284, 479, 1, 0, 0, 0, 3285, 3286, 5, 236, 0, 0, 3286, 3287, 5, 45, 0, 0, 3287, 3288, 5, 398, 0, 0, 3288, 3289, 3, 342, 171, 0, 3289, 3290, 5, 399, 0, 0, 3290, 481, 1, 0, 0, 0, 3291, 3297, 3, 538, 269, 0, 3292, 3297, 3, 500, 250, 0, 3293, 3297, 3, 520, 260, 0, 3294, 3297, 3, 534, 267, 0, 3295, 3297, 3, 412, 206, 0, 3296, 3291, 1, 0, 0, 0, 3296, 3292, 1, 0, 0, 0, 3296, 3293, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3295, 1, 0, 0, 0, 3297, 483, 1, 0, 0, 0, 3298, 3301, 3, 486, 243, 0, 3299, 3301, 3, 488, 244, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3299, 1, 0, 0, 0, 3301, 485, 1, 0, 0, 0, 3302, 3305, 3, 48, 24, 0, 3303, 3305, 3, 50, 25, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3303, 1, 0, 0, 0, 3305, 487, 1, 0, 0, 0, 3306, 3307, 5, 264, 0, 0, 3307, 489, 1, 0, 0, 0, 3308, 3312, 3, 492, 246, 0, 3309, 3312, 3, 494, 247, 0, 3310, 3312, 3, 496, 248, 0, 3311, 3308, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3311, 3310, 1, 0, 0, 0, 3312, 491, 1, 0, 0, 0, 3313, 3314, 3, 652, 326, 0, 3314, 3315, 5, 303, 0, 0, 3315, 3316, 5, 76, 0, 0, 3316, 3317, 3, 62, 31, 0, 3317, 493, 1, 0, 0, 0, 3318, 3319, 3, 652, 326, 0, 3319, 3320, 5, 303, 0, 0, 3320, 3321, 5, 235, 0, 0, 3321, 3322, 3, 150, 75, 0, 3322, 495, 1, 0, 0, 0, 3323, 3324, 3, 652, 326, 0, 3324, 3325, 5, 303, 0, 0, 3325, 3326, 7, 22, 0, 0, 3326, 3327, 5, 425, 0, 0, 3327, 497, 1, 0, 0, 0, 3328, 3329, 3, 652, 326, 0, 3329, 3330, 5, 303, 0, 0, 3330, 3331, 5, 195, 0, 0, 3331, 3332, 5, 425, 0, 0, 3332, 499, 1, 0, 0, 0, 3333, 3334, 5, 273, 0, 0, 3334, 3335, 5, 340, 0, 0, 3335, 3336, 3, 660, 330, 0, 3336, 501, 1, 0, 0, 0, 3337, 3340, 5, 4, 0, 0, 3338, 3340, 5, 277, 0, 0, 3339, 3337, 1, 0, 0, 0, 3339, 3338, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 5, 46, 0, 0, 3342, 3343, 5, 398, 0, 0, 3343, 3344, 3, 274, 137, 0, 3344, 3346, 5, 399, 0, 0, 3345, 3347, 3, 42, 21, 0, 3346, 3345, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 503, 1, 0, 0, 0, 3348, 3351, 5, 4, 0, 0, 3349, 3352, 3, 314, 157, 0, 3350, 3352, 3, 304, 152, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3350, 1, 0, 0, 0, 3352, 505, 1, 0, 0, 0, 3353, 3354, 5, 364, 0, 0, 3354, 3356, 5, 46, 0, 0, 3355, 3357, 3, 42, 21, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 507, 1, 0, 0, 0, 3358, 3359, 3, 294, 147, 0, 3359, 3361, 5, 217, 0, 0, 3360, 3362, 5, 34, 0, 0, 3361, 3360, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3367, 1, 0, 0, 0, 3363, 3364, 3, 294, 147, 0, 3364, 3365, 5, 221, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3358, 1, 0, 0, 0, 3366, 3363, 1, 0, 0, 0, 3367, 509, 1, 0, 0, 0, 3368, 3369, 5, 101, 0, 0, 3369, 3370, 5, 55, 0, 0, 3370, 3371, 3, 924, 462, 0, 3371, 511, 1, 0, 0, 0, 3372, 3374, 5, 38, 0, 0, 3373, 3375, 5, 45, 0, 0, 3374, 3373, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 3, 282, 141, 0, 3377, 3378, 3, 284, 142, 0, 3378, 3380, 3, 374, 187, 0, 3379, 3381, 3, 356, 178, 0, 3380, 3379, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3384, 1, 0, 0, 0, 3382, 3383, 5, 47, 0, 0, 3383, 3385, 5, 425, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3388, 3, 518, 259, 0, 3387, 3386, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3390, 1, 0, 0, 0, 3389, 3391, 3, 42, 21, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 513, 1, 0, 0, 0, 3392, 3393, 5, 364, 0, 0, 3393, 3394, 5, 318, 0, 0, 3394, 3396, 5, 134, 0, 0, 3395, 3397, 5, 45, 0, 0, 3396, 3395, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 3, 282, 141, 0, 3399, 3400, 5, 303, 0, 0, 3400, 3403, 3, 252, 126, 0, 3401, 3402, 5, 47, 0, 0, 3402, 3404, 5, 425, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 515, 1, 0, 0, 0, 3405, 3406, 5, 364, 0, 0, 3406, 3407, 5, 318, 0, 0, 3407, 3408, 5, 303, 0, 0, 3408, 3409, 3, 252, 126, 0, 3409, 517, 1, 0, 0, 0, 3410, 3414, 5, 130, 0, 0, 3411, 3412, 5, 6, 0, 0, 3412, 3414, 3, 924, 462, 0, 3413, 3410, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 519, 1, 0, 0, 0, 3415, 3417, 5, 4, 0, 0, 3416, 3418, 3, 44, 22, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3420, 1, 0, 0, 0, 3419, 3421, 3, 522, 261, 0, 3420, 3419, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3420, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 521, 1, 0, 0, 0, 3424, 3426, 3, 910, 455, 0, 3425, 3427, 3, 530, 265, 0, 3426, 3425, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 523, 1, 0, 0, 0, 3428, 3432, 5, 341, 0, 0, 3429, 3431, 3, 910, 455, 0, 3430, 3429, 1, 0, 0, 0, 3431, 3434, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 525, 1, 0, 0, 0, 3434, 3432, 1, 0, 0, 0, 3435, 3439, 5, 15, 0, 0, 3436, 3438, 3, 910, 455, 0, 3437, 3436, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 527, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3446, 5, 352, 0, 0, 3443, 3445, 3, 910, 455, 0, 3444, 3443, 1, 0, 0, 0, 3445, 3448, 1, 0, 0, 0, 3446, 3444, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 529, 1, 0, 0, 0, 3448, 3446, 1, 0, 0, 0, 3449, 3450, 5, 188, 0, 0, 3450, 3451, 5, 425, 0, 0, 3451, 531, 1, 0, 0, 0, 3452, 3453, 5, 102, 0, 0, 3453, 3454, 5, 238, 0, 0, 3454, 533, 1, 0, 0, 0, 3455, 3457, 5, 101, 0, 0, 3456, 3458, 3, 40, 20, 0, 3457, 3456, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3460, 5, 236, 0, 0, 3460, 3466, 3, 914, 457, 0, 3461, 3462, 5, 396, 0, 0, 3462, 3463, 5, 236, 0, 0, 3463, 3465, 3, 914, 457, 0, 3464, 3461, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 3471, 3, 16, 8, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3474, 5, 254, 0, 0, 3473, 3472, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3477, 3, 18, 9, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 535, 1, 0, 0, 0, 3478, 3479, 5, 303, 0, 0, 3479, 3480, 5, 331, 0, 0, 3480, 3488, 3, 252, 126, 0, 3481, 3482, 5, 362, 0, 0, 3482, 3484, 5, 331, 0, 0, 3483, 3485, 3, 40, 20, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 3, 252, 126, 0, 3487, 3478, 1, 0, 0, 0, 3487, 3481, 1, 0, 0, 0, 3488, 537, 1, 0, 0, 0, 3489, 3490, 5, 303, 0, 0, 3490, 3491, 5, 331, 0, 0, 3491, 3499, 3, 252, 126, 0, 3492, 3493, 5, 362, 0, 0, 3493, 3495, 5, 331, 0, 0, 3494, 3496, 3, 40, 20, 0, 3495, 3494, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3497, 1, 0, 0, 0, 3497, 3499, 3, 252, 126, 0, 3498, 3489, 1, 0, 0, 0, 3498, 3492, 1, 0, 0, 0, 3499, 539, 1, 0, 0, 0, 3500, 3510, 5, 303, 0, 0, 3501, 3502, 5, 300, 0, 0, 3502, 3506, 5, 425, 0, 0, 3503, 3504, 5, 386, 0, 0, 3504, 3505, 5, 301, 0, 0, 3505, 3507, 3, 252, 126, 0, 3506, 3503, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3511, 1, 0, 0, 0, 3508, 3509, 5, 301, 0, 0, 3509, 3511, 3, 252, 126, 0, 3510, 3501, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3516, 1, 0, 0, 0, 3512, 3513, 5, 362, 0, 0, 3513, 3514, 5, 301, 0, 0, 3514, 3516, 3, 252, 126, 0, 3515, 3500, 1, 0, 0, 0, 3515, 3512, 1, 0, 0, 0, 3516, 541, 1, 0, 0, 0, 3517, 3519, 3, 658, 329, 0, 3518, 3520, 3, 910, 455, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 543, 1, 0, 0, 0, 3521, 3522, 5, 303, 0, 0, 3522, 3523, 5, 129, 0, 0, 3523, 3524, 3, 584, 292, 0, 3524, 545, 1, 0, 0, 0, 3525, 3526, 5, 215, 0, 0, 3526, 3529, 7, 23, 0, 0, 3527, 3529, 3, 232, 116, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 547, 1, 0, 0, 0, 3530, 3531, 5, 303, 0, 0, 3531, 3532, 5, 309, 0, 0, 3532, 3533, 5, 188, 0, 0, 3533, 3534, 3, 550, 275, 0, 3534, 549, 1, 0, 0, 0, 3535, 3536, 5, 398, 0, 0, 3536, 3537, 3, 552, 276, 0, 3537, 3538, 5, 399, 0, 0, 3538, 551, 1, 0, 0, 0, 3539, 3544, 3, 554, 277, 0, 3540, 3541, 5, 396, 0, 0, 3541, 3543, 3, 554, 277, 0, 3542, 3540, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 553, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3548, 3, 326, 163, 0, 3548, 3549, 5, 404, 0, 0, 3549, 3550, 5, 425, 0, 0, 3550, 555, 1, 0, 0, 0, 3551, 3552, 5, 303, 0, 0, 3552, 3553, 5, 188, 0, 0, 3553, 3554, 5, 425, 0, 0, 3554, 557, 1, 0, 0, 0, 3555, 3562, 3, 236, 118, 0, 3556, 3559, 5, 215, 0, 0, 3557, 3560, 5, 309, 0, 0, 3558, 3560, 3, 52, 26, 0, 3559, 3557, 1, 0, 0, 0, 3559, 3558, 1, 0, 0, 0, 3560, 3562, 1, 0, 0, 0, 3561, 3555, 1, 0, 0, 0, 3561, 3556, 1, 0, 0, 0, 3562, 559, 1, 0, 0, 0, 3563, 3564, 5, 113, 0, 0, 3564, 3565, 3, 910, 455, 0, 3565, 3566, 5, 386, 0, 0, 3566, 3567, 5, 328, 0, 0, 3567, 3568, 3, 658, 329, 0, 3568, 561, 1, 0, 0, 0, 3569, 3570, 5, 273, 0, 0, 3570, 3571, 5, 340, 0, 0, 3571, 3572, 3, 910, 455, 0, 3572, 563, 1, 0, 0, 0, 3573, 3574, 5, 364, 0, 0, 3574, 3575, 5, 318, 0, 0, 3575, 3577, 5, 134, 0, 0, 3576, 3578, 5, 45, 0, 0, 3577, 3576, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 3, 282, 141, 0, 3580, 3581, 5, 303, 0, 0, 3581, 3584, 3, 252, 126, 0, 3582, 3583, 5, 47, 0, 0, 3583, 3585, 5, 425, 0, 0, 3584, 3582, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 565, 1, 0, 0, 0, 3586, 3587, 5, 53, 0, 0, 3587, 567, 1, 0, 0, 0, 3588, 3589, 5, 166, 0, 0, 3589, 3590, 5, 430, 0, 0, 3590, 3591, 5, 31, 0, 0, 3591, 569, 1, 0, 0, 0, 3592, 3593, 5, 11, 0, 0, 3593, 3594, 5, 379, 0, 0, 3594, 571, 1, 0, 0, 0, 3595, 3596, 5, 245, 0, 0, 3596, 3597, 5, 425, 0, 0, 3597, 573, 1, 0, 0, 0, 3598, 3599, 5, 49, 0, 0, 3599, 3601, 5, 425, 0, 0, 3600, 3602, 3, 570, 285, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3605, 3, 234, 117, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 762, 381, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 572, 286, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3613, 5, 386, 0, 0, 3613, 3614, 5, 234, 0, 0, 3614, 3615, 5, 331, 0, 0, 3615, 3617, 3, 252, 126, 0, 3616, 3612, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 575, 1, 0, 0, 0, 3618, 3619, 5, 303, 0, 0, 3619, 3620, 5, 235, 0, 0, 3620, 3621, 3, 148, 74, 0, 3621, 577, 1, 0, 0, 0, 3622, 3623, 5, 303, 0, 0, 3623, 3624, 5, 236, 0, 0, 3624, 3625, 5, 315, 0, 0, 3625, 3626, 5, 398, 0, 0, 3626, 3627, 3, 226, 113, 0, 3627, 3628, 5, 399, 0, 0, 3628, 579, 1, 0, 0, 0, 3629, 3639, 5, 115, 0, 0, 3630, 3631, 5, 288, 0, 0, 3631, 3632, 5, 398, 0, 0, 3632, 3640, 7, 24, 0, 0, 3633, 3634, 5, 118, 0, 0, 3634, 3635, 5, 398, 0, 0, 3635, 3640, 5, 425, 0, 0, 3636, 3637, 5, 305, 0, 0, 3637, 3638, 5, 398, 0, 0, 3638, 3640, 5, 430, 0, 0, 3639, 3630, 1, 0, 0, 0, 3639, 3633, 1, 0, 0, 0, 3639, 3636, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 5, 399, 0, 0, 3642, 581, 1, 0, 0, 0, 3643, 3644, 3, 924, 462, 0, 3644, 3645, 5, 223, 0, 0, 3645, 3647, 3, 658, 329, 0, 3646, 3648, 3, 910, 455, 0, 3647, 3646, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 3650, 5, 264, 0, 0, 3650, 583, 1, 0, 0, 0, 3651, 3652, 5, 160, 0, 0, 3652, 3653, 5, 425, 0, 0, 3653, 3654, 5, 232, 0, 0, 3654, 3655, 5, 425, 0, 0, 3655, 3656, 5, 300, 0, 0, 3656, 3661, 5, 425, 0, 0, 3657, 3658, 5, 159, 0, 0, 3658, 3659, 5, 425, 0, 0, 3659, 3660, 5, 231, 0, 0, 3660, 3662, 5, 425, 0, 0, 3661, 3657, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3665, 1, 0, 0, 0, 3663, 3665, 3, 924, 462, 0, 3664, 3651, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 585, 1, 0, 0, 0, 3666, 3670, 3, 588, 294, 0, 3667, 3670, 3, 590, 295, 0, 3668, 3670, 3, 592, 296, 0, 3669, 3666, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 587, 1, 0, 0, 0, 3671, 3672, 3, 652, 326, 0, 3672, 3673, 5, 303, 0, 0, 3673, 3674, 5, 77, 0, 0, 3674, 3675, 3, 606, 303, 0, 3675, 589, 1, 0, 0, 0, 3676, 3677, 3, 652, 326, 0, 3677, 3678, 5, 303, 0, 0, 3678, 3679, 5, 235, 0, 0, 3679, 3680, 3, 150, 75, 0, 3680, 591, 1, 0, 0, 0, 3681, 3682, 3, 652, 326, 0, 3682, 3683, 5, 303, 0, 0, 3683, 3684, 5, 366, 0, 0, 3684, 3685, 5, 425, 0, 0, 3685, 593, 1, 0, 0, 0, 3686, 3687, 5, 183, 0, 0, 3687, 3696, 5, 128, 0, 0, 3688, 3689, 5, 183, 0, 0, 3689, 3690, 5, 128, 0, 0, 3690, 3691, 3, 924, 462, 0, 3691, 3692, 5, 425, 0, 0, 3692, 3696, 1, 0, 0, 0, 3693, 3694, 5, 183, 0, 0, 3694, 3696, 3, 658, 329, 0, 3695, 3686, 1, 0, 0, 0, 3695, 3688, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3696, 595, 1, 0, 0, 0, 3697, 3699, 5, 58, 0, 0, 3698, 3700, 5, 332, 0, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3702, 1, 0, 0, 0, 3701, 3703, 5, 344, 0, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3705, 1, 0, 0, 0, 3704, 3706, 5, 123, 0, 0, 3705, 3704, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3709, 5, 328, 0, 0, 3708, 3710, 3, 44, 22, 0, 3709, 3708, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3762, 3, 660, 330, 0, 3712, 3714, 3, 594, 297, 0, 3713, 3715, 3, 220, 110, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3717, 1, 0, 0, 0, 3716, 3718, 3, 248, 124, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3721, 3, 270, 135, 0, 3720, 3719, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3723, 1, 0, 0, 0, 3722, 3724, 3, 272, 136, 0, 3723, 3722, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 1, 0, 0, 0, 3725, 3727, 3, 250, 125, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3763, 1, 0, 0, 0, 3728, 3729, 5, 398, 0, 0, 3729, 3730, 3, 276, 138, 0, 3730, 3731, 5, 399, 0, 0, 3731, 3733, 1, 0, 0, 0, 3732, 3728, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3735, 1, 0, 0, 0, 3734, 3736, 3, 218, 109, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 220, 110, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3741, 1, 0, 0, 0, 3740, 3742, 3, 232, 116, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3744, 1, 0, 0, 0, 3743, 3745, 3, 236, 118, 0, 3744, 3743, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3747, 1, 0, 0, 0, 3746, 3748, 3, 248, 124, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3750, 1, 0, 0, 0, 3749, 3751, 3, 270, 135, 0, 3750, 3749, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3753, 1, 0, 0, 0, 3752, 3754, 3, 272, 136, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3757, 3, 250, 125, 0, 3756, 3755, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3759, 5, 17, 0, 0, 3759, 3761, 3, 412, 206, 0, 3760, 3758, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3763, 1, 0, 0, 0, 3762, 3712, 1, 0, 0, 0, 3762, 3732, 1, 0, 0, 0, 3763, 3821, 1, 0, 0, 0, 3764, 3765, 5, 58, 0, 0, 3765, 3766, 5, 194, 0, 0, 3766, 3768, 5, 328, 0, 0, 3767, 3769, 3, 44, 22, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3818, 3, 660, 330, 0, 3771, 3773, 3, 594, 297, 0, 3772, 3774, 3, 248, 124, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 1, 0, 0, 0, 3775, 3777, 3, 270, 135, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, 1, 0, 0, 0, 3778, 3780, 3, 272, 136, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3783, 3, 250, 125, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3819, 1, 0, 0, 0, 3784, 3785, 5, 398, 0, 0, 3785, 3786, 3, 276, 138, 0, 3786, 3787, 5, 399, 0, 0, 3787, 3789, 1, 0, 0, 0, 3788, 3784, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3791, 1, 0, 0, 0, 3790, 3792, 3, 218, 109, 0, 3791, 3790, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3795, 3, 220, 110, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3797, 1, 0, 0, 0, 3796, 3798, 3, 232, 116, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3801, 3, 236, 118, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3802, 1, 0, 0, 0, 3803, 3804, 1, 0, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3807, 3, 270, 135, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3810, 3, 272, 136, 0, 3809, 3808, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 250, 125, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3816, 1, 0, 0, 0, 3814, 3815, 5, 17, 0, 0, 3815, 3817, 3, 412, 206, 0, 3816, 3814, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3819, 1, 0, 0, 0, 3818, 3771, 1, 0, 0, 0, 3818, 3788, 1, 0, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3697, 1, 0, 0, 0, 3820, 3764, 1, 0, 0, 0, 3821, 597, 1, 0, 0, 0, 3822, 3823, 5, 58, 0, 0, 3823, 3825, 5, 69, 0, 0, 3824, 3826, 3, 44, 22, 0, 3825, 3824, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3827, 1, 0, 0, 0, 3827, 3829, 3, 924, 462, 0, 3828, 3830, 3, 604, 302, 0, 3829, 3828, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3833, 3, 602, 301, 0, 3832, 3831, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3836, 3, 600, 300, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3840, 1, 0, 0, 0, 3837, 3838, 5, 386, 0, 0, 3838, 3839, 5, 77, 0, 0, 3839, 3841, 3, 606, 303, 0, 3840, 3837, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 599, 1, 0, 0, 0, 3842, 3843, 5, 47, 0, 0, 3843, 3844, 5, 425, 0, 0, 3844, 601, 1, 0, 0, 0, 3845, 3846, 5, 366, 0, 0, 3846, 3847, 5, 425, 0, 0, 3847, 603, 1, 0, 0, 0, 3848, 3849, 5, 351, 0, 0, 3849, 3850, 5, 425, 0, 0, 3850, 605, 1, 0, 0, 0, 3851, 3852, 5, 398, 0, 0, 3852, 3853, 3, 64, 32, 0, 3853, 3854, 5, 399, 0, 0, 3854, 607, 1, 0, 0, 0, 3855, 3856, 5, 101, 0, 0, 3856, 3858, 5, 69, 0, 0, 3857, 3859, 3, 40, 20, 0, 3858, 3857, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 3861, 3, 924, 462, 0, 3861, 609, 1, 0, 0, 0, 3862, 3863, 3, 924, 462, 0, 3863, 3864, 5, 394, 0, 0, 3864, 3866, 1, 0, 0, 0, 3865, 3862, 1, 0, 0, 0, 3866, 3869, 1, 0, 0, 0, 3867, 3865, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3870, 1, 0, 0, 0, 3869, 3867, 1, 0, 0, 0, 3870, 3871, 5, 414, 0, 0, 3871, 611, 1, 0, 0, 0, 3872, 3873, 5, 83, 0, 0, 3873, 613, 1, 0, 0, 0, 3874, 3879, 3, 826, 413, 0, 3875, 3876, 5, 396, 0, 0, 3876, 3878, 3, 826, 413, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3881, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 615, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3887, 3, 924, 462, 0, 3883, 3884, 5, 396, 0, 0, 3884, 3886, 3, 924, 462, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 617, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 139, 0, 0, 3891, 3892, 3, 620, 310, 0, 3892, 619, 1, 0, 0, 0, 3893, 3894, 3, 632, 316, 0, 3894, 3897, 3, 628, 314, 0, 3895, 3896, 5, 396, 0, 0, 3896, 3898, 3, 628, 314, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3903, 3, 624, 312, 0, 3902, 3893, 1, 0, 0, 0, 3902, 3901, 1, 0, 0, 0, 3903, 621, 1, 0, 0, 0, 3904, 3908, 3, 646, 323, 0, 3905, 3907, 3, 636, 318, 0, 3906, 3905, 1, 0, 0, 0, 3907, 3910, 1, 0, 0, 0, 3908, 3906, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3937, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3911, 3915, 3, 688, 344, 0, 3912, 3914, 3, 636, 318, 0, 3913, 3912, 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3937, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3922, 3, 666, 333, 0, 3919, 3921, 3, 636, 318, 0, 3920, 3919, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3937, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3929, 3, 672, 336, 0, 3926, 3928, 3, 636, 318, 0, 3927, 3926, 1, 0, 0, 0, 3928, 3931, 1, 0, 0, 0, 3929, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3937, 1, 0, 0, 0, 3931, 3929, 1, 0, 0, 0, 3932, 3933, 5, 398, 0, 0, 3933, 3934, 3, 624, 312, 0, 3934, 3935, 5, 399, 0, 0, 3935, 3937, 1, 0, 0, 0, 3936, 3904, 1, 0, 0, 0, 3936, 3911, 1, 0, 0, 0, 3936, 3918, 1, 0, 0, 0, 3936, 3925, 1, 0, 0, 0, 3936, 3932, 1, 0, 0, 0, 3937, 623, 1, 0, 0, 0, 3938, 3949, 3, 622, 311, 0, 3939, 3940, 3, 634, 317, 0, 3940, 3945, 3, 626, 313, 0, 3941, 3942, 5, 223, 0, 0, 3942, 3946, 3, 826, 413, 0, 3943, 3944, 5, 369, 0, 0, 3944, 3946, 3, 290, 145, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3939, 1, 0, 0, 0, 3948, 3951, 1, 0, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 625, 1, 0, 0, 0, 3951, 3949, 1, 0, 0, 0, 3952, 3957, 3, 646, 323, 0, 3953, 3957, 3, 688, 344, 0, 3954, 3957, 3, 666, 333, 0, 3955, 3957, 3, 672, 336, 0, 3956, 3952, 1, 0, 0, 0, 3956, 3953, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3955, 1, 0, 0, 0, 3957, 3961, 1, 0, 0, 0, 3958, 3960, 3, 636, 318, 0, 3959, 3958, 1, 0, 0, 0, 3960, 3963, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 627, 1, 0, 0, 0, 3963, 3961, 1, 0, 0, 0, 3964, 3966, 5, 249, 0, 0, 3965, 3964, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3968, 3, 650, 325, 0, 3968, 3969, 3, 630, 315, 0, 3969, 629, 1, 0, 0, 0, 3970, 3971, 5, 398, 0, 0, 3971, 3972, 3, 614, 307, 0, 3972, 3973, 5, 399, 0, 0, 3973, 631, 1, 0, 0, 0, 3974, 3975, 5, 358, 0, 0, 3975, 633, 1, 0, 0, 0, 3976, 3991, 5, 396, 0, 0, 3977, 3988, 5, 157, 0, 0, 3978, 3988, 5, 60, 0, 0, 3979, 3981, 7, 25, 0, 0, 3980, 3982, 5, 230, 0, 0, 3981, 3980, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3988, 1, 0, 0, 0, 3983, 3985, 5, 180, 0, 0, 3984, 3986, 7, 26, 0, 0, 3985, 3984, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 1, 0, 0, 0, 3987, 3977, 1, 0, 0, 0, 3987, 3978, 1, 0, 0, 0, 3987, 3979, 1, 0, 0, 0, 3987, 3983, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 5, 171, 0, 0, 3990, 3976, 1, 0, 0, 0, 3990, 3987, 1, 0, 0, 0, 3991, 635, 1, 0, 0, 0, 3992, 3993, 5, 178, 0, 0, 3993, 3994, 5, 377, 0, 0, 3994, 3995, 5, 230, 0, 0, 3995, 3996, 3, 774, 387, 0, 3996, 4006, 3, 638, 319, 0, 3997, 3998, 5, 17, 0, 0, 3998, 4003, 3, 924, 462, 0, 3999, 4000, 5, 396, 0, 0, 4000, 4002, 3, 924, 462, 0, 4001, 3999, 1, 0, 0, 0, 4002, 4005, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4006, 3997, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4050, 1, 0, 0, 0, 4008, 4010, 5, 396, 0, 0, 4009, 4008, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4047, 5, 178, 0, 0, 4012, 4013, 5, 377, 0, 0, 4013, 4014, 3, 774, 387, 0, 4014, 4024, 3, 638, 319, 0, 4015, 4016, 5, 17, 0, 0, 4016, 4021, 3, 924, 462, 0, 4017, 4018, 5, 396, 0, 0, 4018, 4020, 3, 924, 462, 0, 4019, 4017, 1, 0, 0, 0, 4020, 4023, 1, 0, 0, 0, 4021, 4019, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4025, 1, 0, 0, 0, 4023, 4021, 1, 0, 0, 0, 4024, 4015, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4048, 1, 0, 0, 0, 4026, 4027, 5, 328, 0, 0, 4027, 4028, 5, 398, 0, 0, 4028, 4029, 3, 680, 340, 0, 4029, 4031, 5, 399, 0, 0, 4030, 4032, 5, 17, 0, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4045, 3, 638, 319, 0, 4034, 4035, 5, 398, 0, 0, 4035, 4040, 3, 924, 462, 0, 4036, 4037, 5, 396, 0, 0, 4037, 4039, 3, 924, 462, 0, 4038, 4036, 1, 0, 0, 0, 4039, 4042, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4043, 1, 0, 0, 0, 4042, 4040, 1, 0, 0, 0, 4043, 4044, 5, 399, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4034, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4012, 1, 0, 0, 0, 4047, 4026, 1, 0, 0, 0, 4048, 4050, 1, 0, 0, 0, 4049, 3992, 1, 0, 0, 0, 4049, 4009, 1, 0, 0, 0, 4050, 637, 1, 0, 0, 0, 4051, 4052, 3, 924, 462, 0, 4052, 639, 1, 0, 0, 0, 4053, 4054, 5, 330, 0, 0, 4054, 4055, 5, 398, 0, 0, 4055, 4056, 5, 30, 0, 0, 4056, 4057, 5, 430, 0, 0, 4057, 4058, 5, 229, 0, 0, 4058, 4059, 5, 220, 0, 0, 4059, 4069, 5, 430, 0, 0, 4060, 4061, 5, 223, 0, 0, 4061, 4066, 3, 826, 413, 0, 4062, 4063, 5, 396, 0, 0, 4063, 4065, 3, 826, 413, 0, 4064, 4062, 1, 0, 0, 0, 4065, 4068, 1, 0, 0, 0, 4066, 4064, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4070, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4069, 4060, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 5, 399, 0, 0, 4072, 641, 1, 0, 0, 0, 4073, 4074, 5, 330, 0, 0, 4074, 4078, 5, 398, 0, 0, 4075, 4076, 5, 430, 0, 0, 4076, 4079, 7, 27, 0, 0, 4077, 4079, 5, 429, 0, 0, 4078, 4075, 1, 0, 0, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 5, 399, 0, 0, 4081, 643, 1, 0, 0, 0, 4082, 4085, 3, 640, 320, 0, 4083, 4085, 3, 642, 321, 0, 4084, 4082, 1, 0, 0, 0, 4084, 4083, 1, 0, 0, 0, 4085, 645, 1, 0, 0, 0, 4086, 4088, 3, 656, 328, 0, 4087, 4089, 3, 252, 126, 0, 4088, 4087, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4092, 3, 644, 322, 0, 4091, 4090, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4094, 1, 0, 0, 0, 4093, 4095, 3, 648, 324, 0, 4094, 4093, 1, 0, 0, 0, 4094, 4095, 1, 0, 0, 0, 4095, 4100, 1, 0, 0, 0, 4096, 4098, 5, 17, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 3, 924, 462, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 647, 1, 0, 0, 0, 4102, 4112, 5, 134, 0, 0, 4103, 4104, 5, 326, 0, 0, 4104, 4105, 5, 17, 0, 0, 4105, 4106, 5, 220, 0, 0, 4106, 4113, 3, 826, 413, 0, 4107, 4108, 5, 134, 0, 0, 4108, 4109, 5, 327, 0, 0, 4109, 4110, 5, 17, 0, 0, 4110, 4111, 5, 220, 0, 0, 4111, 4113, 5, 430, 0, 0, 4112, 4103, 1, 0, 0, 0, 4112, 4107, 1, 0, 0, 0, 4113, 649, 1, 0, 0, 0, 4114, 4116, 3, 656, 328, 0, 4115, 4117, 3, 644, 322, 0, 4116, 4115, 1, 0, 0, 0, 4116, 4117, 1, 0, 0, 0, 4117, 4122, 1, 0, 0, 0, 4118, 4120, 5, 17, 0, 0, 4119, 4118, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 3, 924, 462, 0, 4122, 4119, 1, 0, 0, 0, 4122, 4123, 1, 0, 0, 0, 4123, 651, 1, 0, 0, 0, 4124, 4125, 3, 924, 462, 0, 4125, 653, 1, 0, 0, 0, 4126, 4127, 3, 924, 462, 0, 4127, 655, 1, 0, 0, 0, 4128, 4131, 3, 658, 329, 0, 4129, 4131, 3, 662, 331, 0, 4130, 4128, 1, 0, 0, 0, 4130, 4129, 1, 0, 0, 0, 4131, 657, 1, 0, 0, 0, 4132, 4133, 3, 924, 462, 0, 4133, 4134, 5, 394, 0, 0, 4134, 4137, 3, 924, 462, 0, 4135, 4136, 5, 394, 0, 0, 4136, 4138, 3, 924, 462, 0, 4137, 4135, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4141, 1, 0, 0, 0, 4139, 4141, 3, 924, 462, 0, 4140, 4132, 1, 0, 0, 0, 4140, 4139, 1, 0, 0, 0, 4141, 659, 1, 0, 0, 0, 4142, 4143, 3, 924, 462, 0, 4143, 4144, 5, 394, 0, 0, 4144, 4147, 3, 924, 462, 0, 4145, 4146, 5, 394, 0, 0, 4146, 4148, 3, 924, 462, 0, 4147, 4145, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4151, 1, 0, 0, 0, 4149, 4151, 3, 924, 462, 0, 4150, 4142, 1, 0, 0, 0, 4150, 4149, 1, 0, 0, 0, 4151, 661, 1, 0, 0, 0, 4152, 4153, 3, 924, 462, 0, 4153, 4154, 5, 394, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4152, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 3, 924, 462, 0, 4158, 663, 1, 0, 0, 0, 4159, 4160, 3, 924, 462, 0, 4160, 4161, 5, 394, 0, 0, 4161, 4163, 1, 0, 0, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4165, 3, 924, 462, 0, 4165, 665, 1, 0, 0, 0, 4166, 4167, 5, 398, 0, 0, 4167, 4168, 3, 392, 196, 0, 4168, 4170, 5, 399, 0, 0, 4169, 4171, 5, 17, 0, 0, 4170, 4169, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 3, 924, 462, 0, 4173, 667, 1, 0, 0, 0, 4174, 4176, 3, 766, 383, 0, 4175, 4177, 3, 762, 381, 0, 4176, 4175, 1, 0, 0, 0, 4176, 4177, 1, 0, 0, 0, 4177, 4186, 1, 0, 0, 0, 4178, 4186, 3, 762, 381, 0, 4179, 4181, 3, 768, 384, 0, 4180, 4182, 3, 770, 385, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4186, 1, 0, 0, 0, 4183, 4186, 3, 770, 385, 0, 4184, 4186, 3, 764, 382, 0, 4185, 4174, 1, 0, 0, 0, 4185, 4178, 1, 0, 0, 0, 4185, 4179, 1, 0, 0, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4184, 1, 0, 0, 0, 4186, 669, 1, 0, 0, 0, 4187, 4191, 3, 666, 333, 0, 4188, 4191, 3, 646, 323, 0, 4189, 4191, 3, 672, 336, 0, 4190, 4187, 1, 0, 0, 0, 4190, 4188, 1, 0, 0, 0, 4190, 4189, 1, 0, 0, 0, 4191, 671, 1, 0, 0, 0, 4192, 4193, 3, 924, 462, 0, 4193, 4194, 5, 398, 0, 0, 4194, 4195, 5, 223, 0, 0, 4195, 4197, 3, 670, 335, 0, 4196, 4198, 3, 668, 334, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4214, 1, 0, 0, 0, 4199, 4200, 5, 431, 0, 0, 4200, 4201, 5, 398, 0, 0, 4201, 4202, 3, 826, 413, 0, 4202, 4211, 5, 399, 0, 0, 4203, 4204, 5, 396, 0, 0, 4204, 4205, 5, 431, 0, 0, 4205, 4206, 5, 398, 0, 0, 4206, 4207, 3, 826, 413, 0, 4207, 4208, 5, 399, 0, 0, 4208, 4210, 1, 0, 0, 0, 4209, 4203, 1, 0, 0, 0, 4210, 4213, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4215, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 4199, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 1, 0, 0, 0, 4216, 4218, 5, 399, 0, 0, 4217, 4219, 3, 924, 462, 0, 4218, 4217, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 673, 1, 0, 0, 0, 4220, 4221, 5, 383, 0, 0, 4221, 4222, 3, 676, 338, 0, 4222, 675, 1, 0, 0, 0, 4223, 4224, 3, 826, 413, 0, 4224, 677, 1, 0, 0, 0, 4225, 4226, 3, 680, 340, 0, 4226, 679, 1, 0, 0, 0, 4227, 4228, 5, 373, 0, 0, 4228, 4229, 3, 682, 341, 0, 4229, 681, 1, 0, 0, 0, 4230, 4235, 3, 684, 342, 0, 4231, 4232, 5, 396, 0, 0, 4232, 4234, 3, 684, 342, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4237, 1, 0, 0, 0, 4235, 4233, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4247, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4238, 4243, 3, 686, 343, 0, 4239, 4240, 5, 396, 0, 0, 4240, 4242, 3, 684, 342, 0, 4241, 4239, 1, 0, 0, 0, 4242, 4245, 1, 0, 0, 0, 4243, 4241, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4247, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4246, 4230, 1, 0, 0, 0, 4246, 4238, 1, 0, 0, 0, 4247, 683, 1, 0, 0, 0, 4248, 4249, 3, 744, 372, 0, 4249, 685, 1, 0, 0, 0, 4250, 4251, 5, 398, 0, 0, 4251, 4252, 3, 752, 376, 0, 4252, 4253, 5, 399, 0, 0, 4253, 687, 1, 0, 0, 0, 4254, 4255, 5, 328, 0, 0, 4255, 4256, 5, 398, 0, 0, 4256, 4257, 3, 680, 340, 0, 4257, 4259, 5, 399, 0, 0, 4258, 4260, 5, 17, 0, 0, 4259, 4258, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4271, 3, 638, 319, 0, 4262, 4263, 5, 398, 0, 0, 4263, 4268, 3, 924, 462, 0, 4264, 4265, 5, 396, 0, 0, 4265, 4267, 3, 924, 462, 0, 4266, 4264, 1, 0, 0, 0, 4267, 4270, 1, 0, 0, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4269, 1, 0, 0, 0, 4269, 4272, 1, 0, 0, 0, 4270, 4268, 1, 0, 0, 0, 4271, 4262, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 5, 399, 0, 0, 4274, 689, 1, 0, 0, 0, 4275, 4277, 5, 298, 0, 0, 4276, 4278, 5, 435, 0, 0, 4277, 4276, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 4285, 1, 0, 0, 0, 4279, 4281, 3, 692, 346, 0, 4280, 4279, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4286, 3, 694, 347, 0, 4283, 4284, 5, 346, 0, 0, 4284, 4286, 3, 696, 348, 0, 4285, 4280, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4286, 4289, 1, 0, 0, 0, 4287, 4289, 3, 700, 350, 0, 4288, 4275, 1, 0, 0, 0, 4288, 4287, 1, 0, 0, 0, 4289, 691, 1, 0, 0, 0, 4290, 4291, 7, 20, 0, 0, 4291, 693, 1, 0, 0, 0, 4292, 4297, 3, 698, 349, 0, 4293, 4294, 5, 396, 0, 0, 4294, 4296, 3, 698, 349, 0, 4295, 4293, 1, 0, 0, 0, 4296, 4299, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 695, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4301, 5, 398, 0, 0, 4301, 4302, 3, 704, 352, 0, 4302, 4303, 5, 399, 0, 0, 4303, 4304, 3, 238, 119, 0, 4304, 4305, 3, 242, 121, 0, 4305, 4306, 5, 369, 0, 0, 4306, 4319, 5, 425, 0, 0, 4307, 4317, 5, 17, 0, 0, 4308, 4311, 5, 398, 0, 0, 4309, 4312, 3, 616, 308, 0, 4310, 4312, 3, 274, 137, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4314, 5, 399, 0, 0, 4314, 4318, 1, 0, 0, 0, 4315, 4318, 3, 616, 308, 0, 4316, 4318, 3, 274, 137, 0, 4317, 4308, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4317, 4316, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4307, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4322, 3, 238, 119, 0, 4322, 4323, 3, 240, 120, 0, 4323, 697, 1, 0, 0, 0, 4324, 4348, 3, 610, 305, 0, 4325, 4328, 3, 282, 141, 0, 4326, 4328, 3, 826, 413, 0, 4327, 4325, 1, 0, 0, 0, 4327, 4326, 1, 0, 0, 0, 4328, 4345, 1, 0, 0, 0, 4329, 4331, 5, 17, 0, 0, 4330, 4329, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4346, 3, 924, 462, 0, 4333, 4334, 5, 17, 0, 0, 4334, 4335, 5, 398, 0, 0, 4335, 4340, 3, 924, 462, 0, 4336, 4337, 5, 396, 0, 0, 4337, 4339, 3, 924, 462, 0, 4338, 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4341, 1, 0, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, 4344, 5, 399, 0, 0, 4344, 4346, 1, 0, 0, 0, 4345, 4330, 1, 0, 0, 0, 4345, 4333, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4348, 1, 0, 0, 0, 4347, 4324, 1, 0, 0, 0, 4347, 4327, 1, 0, 0, 0, 4348, 699, 1, 0, 0, 0, 4349, 4350, 7, 28, 0, 0, 4350, 4351, 3, 704, 352, 0, 4351, 4352, 3, 238, 119, 0, 4352, 4353, 3, 242, 121, 0, 4353, 4354, 5, 369, 0, 0, 4354, 4367, 5, 425, 0, 0, 4355, 4365, 5, 17, 0, 0, 4356, 4359, 5, 398, 0, 0, 4357, 4360, 3, 616, 308, 0, 4358, 4360, 3, 274, 137, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4362, 5, 399, 0, 0, 4362, 4366, 1, 0, 0, 0, 4363, 4366, 3, 616, 308, 0, 4364, 4366, 3, 274, 137, 0, 4365, 4356, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4364, 1, 0, 0, 0, 4366, 4368, 1, 0, 0, 0, 4367, 4355, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 3, 238, 119, 0, 4370, 4371, 3, 240, 120, 0, 4371, 701, 1, 0, 0, 0, 4372, 4375, 3, 610, 305, 0, 4373, 4375, 3, 826, 413, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4373, 1, 0, 0, 0, 4375, 703, 1, 0, 0, 0, 4376, 4381, 3, 702, 351, 0, 4377, 4378, 5, 396, 0, 0, 4378, 4380, 3, 702, 351, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 705, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 5, 385, 0, 0, 4385, 4390, 3, 708, 354, 0, 4386, 4387, 5, 396, 0, 0, 4387, 4389, 3, 708, 354, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 707, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4394, 3, 924, 462, 0, 4394, 4395, 5, 17, 0, 0, 4395, 4396, 3, 710, 355, 0, 4396, 709, 1, 0, 0, 0, 4397, 4410, 3, 924, 462, 0, 4398, 4400, 5, 398, 0, 0, 4399, 4401, 3, 924, 462, 0, 4400, 4399, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4403, 1, 0, 0, 0, 4402, 4404, 3, 668, 334, 0, 4403, 4402, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4406, 1, 0, 0, 0, 4405, 4407, 3, 712, 356, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4410, 5, 399, 0, 0, 4409, 4397, 1, 0, 0, 0, 4409, 4398, 1, 0, 0, 0, 4410, 711, 1, 0, 0, 0, 4411, 4414, 3, 714, 357, 0, 4412, 4414, 3, 716, 358, 0, 4413, 4411, 1, 0, 0, 0, 4413, 4412, 1, 0, 0, 0, 4414, 713, 1, 0, 0, 0, 4415, 4422, 5, 291, 0, 0, 4416, 4423, 3, 718, 359, 0, 4417, 4418, 5, 25, 0, 0, 4418, 4419, 3, 720, 360, 0, 4419, 4420, 5, 11, 0, 0, 4420, 4421, 3, 720, 360, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4416, 1, 0, 0, 0, 4422, 4417, 1, 0, 0, 0, 4423, 715, 1, 0, 0, 0, 4424, 4431, 5, 259, 0, 0, 4425, 4432, 3, 718, 359, 0, 4426, 4427, 5, 25, 0, 0, 4427, 4428, 3, 720, 360, 0, 4428, 4429, 5, 11, 0, 0, 4429, 4430, 3, 720, 360, 0, 4430, 4432, 1, 0, 0, 0, 4431, 4425, 1, 0, 0, 0, 4431, 4426, 1, 0, 0, 0, 4432, 717, 1, 0, 0, 0, 4433, 4434, 5, 353, 0, 0, 4434, 4440, 5, 246, 0, 0, 4435, 4436, 5, 62, 0, 0, 4436, 4440, 5, 290, 0, 0, 4437, 4438, 5, 430, 0, 0, 4438, 4440, 5, 246, 0, 0, 4439, 4433, 1, 0, 0, 0, 4439, 4435, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 719, 1, 0, 0, 0, 4441, 4442, 7, 29, 0, 0, 4442, 4446, 7, 30, 0, 0, 4443, 4444, 5, 62, 0, 0, 4444, 4446, 5, 290, 0, 0, 4445, 4441, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4446, 721, 1, 0, 0, 0, 4447, 4448, 5, 144, 0, 0, 4448, 4449, 5, 32, 0, 0, 4449, 4450, 3, 724, 362, 0, 4450, 723, 1, 0, 0, 0, 4451, 4456, 3, 282, 141, 0, 4452, 4456, 3, 728, 364, 0, 4453, 4456, 3, 730, 365, 0, 4454, 4456, 3, 726, 363, 0, 4455, 4451, 1, 0, 0, 0, 4455, 4452, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4454, 1, 0, 0, 0, 4456, 725, 1, 0, 0, 0, 4457, 4458, 5, 398, 0, 0, 4458, 4459, 5, 399, 0, 0, 4459, 727, 1, 0, 0, 0, 4460, 4463, 5, 289, 0, 0, 4461, 4463, 5, 61, 0, 0, 4462, 4460, 1, 0, 0, 0, 4462, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4465, 5, 398, 0, 0, 4465, 4470, 3, 826, 413, 0, 4466, 4467, 5, 396, 0, 0, 4467, 4469, 3, 826, 413, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4473, 1, 0, 0, 0, 4472, 4470, 1, 0, 0, 0, 4473, 4474, 5, 399, 0, 0, 4474, 729, 1, 0, 0, 0, 4475, 4480, 3, 746, 373, 0, 4476, 4477, 5, 386, 0, 0, 4477, 4481, 5, 289, 0, 0, 4478, 4479, 5, 386, 0, 0, 4479, 4481, 5, 61, 0, 0, 4480, 4476, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4495, 1, 0, 0, 0, 4482, 4483, 5, 145, 0, 0, 4483, 4484, 5, 304, 0, 0, 4484, 4485, 5, 398, 0, 0, 4485, 4490, 3, 732, 366, 0, 4486, 4487, 5, 396, 0, 0, 4487, 4489, 3, 732, 366, 0, 4488, 4486, 1, 0, 0, 0, 4489, 4492, 1, 0, 0, 0, 4490, 4488, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4493, 1, 0, 0, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4494, 5, 399, 0, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4482, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 731, 1, 0, 0, 0, 4497, 4500, 3, 734, 367, 0, 4498, 4500, 3, 736, 368, 0, 4499, 4497, 1, 0, 0, 0, 4499, 4498, 1, 0, 0, 0, 4500, 733, 1, 0, 0, 0, 4501, 4503, 5, 398, 0, 0, 4502, 4504, 3, 826, 413, 0, 4503, 4502, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4509, 1, 0, 0, 0, 4505, 4506, 5, 396, 0, 0, 4506, 4508, 3, 826, 413, 0, 4507, 4505, 1, 0, 0, 0, 4508, 4511, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4509, 1, 0, 0, 0, 4512, 4513, 5, 399, 0, 0, 4513, 735, 1, 0, 0, 0, 4514, 4515, 3, 826, 413, 0, 4515, 737, 1, 0, 0, 0, 4516, 4517, 5, 146, 0, 0, 4517, 4518, 3, 742, 371, 0, 4518, 739, 1, 0, 0, 0, 4519, 4520, 5, 255, 0, 0, 4520, 4521, 3, 826, 413, 0, 4521, 741, 1, 0, 0, 0, 4522, 4523, 3, 826, 413, 0, 4523, 743, 1, 0, 0, 0, 4524, 4525, 5, 398, 0, 0, 4525, 4526, 3, 746, 373, 0, 4526, 4527, 5, 399, 0, 0, 4527, 745, 1, 0, 0, 0, 4528, 4530, 3, 750, 375, 0, 4529, 4531, 3, 748, 374, 0, 4530, 4529, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 747, 1, 0, 0, 0, 4532, 4533, 5, 396, 0, 0, 4533, 4535, 3, 750, 375, 0, 4534, 4532, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4534, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 749, 1, 0, 0, 0, 4538, 4541, 3, 612, 306, 0, 4539, 4541, 3, 826, 413, 0, 4540, 4538, 1, 0, 0, 0, 4540, 4539, 1, 0, 0, 0, 4541, 751, 1, 0, 0, 0, 4542, 4544, 3, 826, 413, 0, 4543, 4545, 5, 17, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4547, 1, 0, 0, 0, 4546, 4548, 3, 924, 462, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4553, 1, 0, 0, 0, 4549, 4550, 5, 396, 0, 0, 4550, 4552, 3, 754, 377, 0, 4551, 4549, 1, 0, 0, 0, 4552, 4555, 1, 0, 0, 0, 4553, 4551, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 753, 1, 0, 0, 0, 4555, 4553, 1, 0, 0, 0, 4556, 4558, 3, 826, 413, 0, 4557, 4559, 5, 17, 0, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4561, 1, 0, 0, 0, 4560, 4562, 3, 924, 462, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 755, 1, 0, 0, 0, 4563, 4566, 3, 744, 372, 0, 4564, 4566, 3, 746, 373, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4564, 1, 0, 0, 0, 4566, 757, 1, 0, 0, 0, 4567, 4568, 5, 398, 0, 0, 4568, 4573, 3, 340, 170, 0, 4569, 4570, 5, 396, 0, 0, 4570, 4572, 3, 340, 170, 0, 4571, 4569, 1, 0, 0, 0, 4572, 4575, 1, 0, 0, 0, 4573, 4571, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 1, 0, 0, 0, 4575, 4573, 1, 0, 0, 0, 4576, 4577, 5, 399, 0, 0, 4577, 759, 1, 0, 0, 0, 4578, 4583, 3, 340, 170, 0, 4579, 4580, 5, 396, 0, 0, 4580, 4582, 3, 340, 170, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4585, 1, 0, 0, 0, 4583, 4581, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 761, 1, 0, 0, 0, 4585, 4583, 1, 0, 0, 0, 4586, 4587, 5, 228, 0, 0, 4587, 4588, 5, 32, 0, 0, 4588, 4593, 3, 340, 170, 0, 4589, 4590, 5, 396, 0, 0, 4590, 4592, 3, 340, 170, 0, 4591, 4589, 1, 0, 0, 0, 4592, 4595, 1, 0, 0, 0, 4593, 4591, 1, 0, 0, 0, 4593, 4594, 1, 0, 0, 0, 4594, 763, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4596, 4597, 5, 41, 0, 0, 4597, 4598, 5, 32, 0, 0, 4598, 4599, 3, 756, 378, 0, 4599, 765, 1, 0, 0, 0, 4600, 4601, 5, 236, 0, 0, 4601, 4602, 5, 32, 0, 0, 4602, 4603, 3, 756, 378, 0, 4603, 767, 1, 0, 0, 0, 4604, 4605, 5, 97, 0, 0, 4605, 4606, 5, 32, 0, 0, 4606, 4607, 3, 756, 378, 0, 4607, 769, 1, 0, 0, 0, 4608, 4609, 5, 313, 0, 0, 4609, 4612, 5, 32, 0, 0, 4610, 4613, 3, 758, 379, 0, 4611, 4613, 3, 760, 380, 0, 4612, 4610, 1, 0, 0, 0, 4612, 4611, 1, 0, 0, 0, 4613, 771, 1, 0, 0, 0, 4614, 4615, 5, 348, 0, 0, 4615, 4619, 5, 398, 0, 0, 4616, 4620, 5, 179, 0, 0, 4617, 4620, 5, 342, 0, 0, 4618, 4620, 5, 29, 0, 0, 4619, 4616, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4619, 4618, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4622, 1, 0, 0, 0, 4621, 4623, 3, 702, 351, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4625, 5, 139, 0, 0, 4625, 4626, 3, 702, 351, 0, 4626, 4627, 5, 399, 0, 0, 4627, 773, 1, 0, 0, 0, 4628, 4669, 3, 772, 386, 0, 4629, 4630, 3, 782, 391, 0, 4630, 4645, 5, 398, 0, 0, 4631, 4646, 5, 414, 0, 0, 4632, 4634, 3, 692, 346, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4643, 1, 0, 0, 0, 4635, 4640, 3, 702, 351, 0, 4636, 4637, 5, 396, 0, 0, 4637, 4639, 3, 702, 351, 0, 4638, 4636, 1, 0, 0, 0, 4639, 4642, 1, 0, 0, 0, 4640, 4638, 1, 0, 0, 0, 4640, 4641, 1, 0, 0, 0, 4641, 4644, 1, 0, 0, 0, 4642, 4640, 1, 0, 0, 0, 4643, 4635, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4646, 1, 0, 0, 0, 4645, 4631, 1, 0, 0, 0, 4645, 4633, 1, 0, 0, 0, 4646, 4666, 1, 0, 0, 0, 4647, 4648, 5, 399, 0, 0, 4648, 4649, 5, 387, 0, 0, 4649, 4650, 5, 144, 0, 0, 4650, 4651, 5, 398, 0, 0, 4651, 4652, 3, 762, 381, 0, 4652, 4653, 5, 399, 0, 0, 4653, 4667, 1, 0, 0, 0, 4654, 4656, 5, 399, 0, 0, 4655, 4657, 3, 776, 388, 0, 4656, 4655, 1, 0, 0, 0, 4656, 4657, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4659, 5, 233, 0, 0, 4659, 4667, 3, 710, 355, 0, 4660, 4661, 3, 776, 388, 0, 4661, 4662, 5, 399, 0, 0, 4662, 4663, 5, 233, 0, 0, 4663, 4664, 3, 710, 355, 0, 4664, 4667, 1, 0, 0, 0, 4665, 4667, 5, 399, 0, 0, 4666, 4647, 1, 0, 0, 0, 4666, 4654, 1, 0, 0, 0, 4666, 4660, 1, 0, 0, 0, 4666, 4665, 1, 0, 0, 0, 4667, 4669, 1, 0, 0, 0, 4668, 4628, 1, 0, 0, 0, 4668, 4629, 1, 0, 0, 0, 4669, 775, 1, 0, 0, 0, 4670, 4671, 5, 280, 0, 0, 4671, 4675, 5, 219, 0, 0, 4672, 4673, 5, 152, 0, 0, 4673, 4675, 5, 219, 0, 0, 4674, 4670, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4675, 777, 1, 0, 0, 0, 4676, 4677, 3, 926, 463, 0, 4677, 779, 1, 0, 0, 0, 4678, 4681, 3, 784, 392, 0, 4679, 4681, 5, 425, 0, 0, 4680, 4678, 1, 0, 0, 0, 4680, 4679, 1, 0, 0, 0, 4681, 781, 1, 0, 0, 0, 4682, 4685, 3, 784, 392, 0, 4683, 4685, 3, 786, 393, 0, 4684, 4682, 1, 0, 0, 0, 4684, 4683, 1, 0, 0, 0, 4685, 783, 1, 0, 0, 0, 4686, 4687, 3, 926, 463, 0, 4687, 785, 1, 0, 0, 0, 4688, 4691, 3, 932, 466, 0, 4689, 4691, 3, 922, 461, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4689, 1, 0, 0, 0, 4691, 787, 1, 0, 0, 0, 4692, 4693, 5, 36, 0, 0, 4693, 4694, 5, 398, 0, 0, 4694, 4695, 3, 826, 413, 0, 4695, 4696, 5, 17, 0, 0, 4696, 4699, 3, 380, 190, 0, 4697, 4698, 5, 137, 0, 0, 4698, 4700, 5, 425, 0, 0, 4699, 4697, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4702, 5, 399, 0, 0, 4702, 789, 1, 0, 0, 0, 4703, 4704, 5, 35, 0, 0, 4704, 4710, 3, 826, 413, 0, 4705, 4706, 5, 382, 0, 0, 4706, 4707, 3, 826, 413, 0, 4707, 4708, 5, 334, 0, 0, 4708, 4709, 3, 826, 413, 0, 4709, 4711, 1, 0, 0, 0, 4710, 4705, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 4710, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4716, 1, 0, 0, 0, 4714, 4715, 5, 105, 0, 0, 4715, 4717, 3, 826, 413, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4718, 1, 0, 0, 0, 4718, 4719, 5, 108, 0, 0, 4719, 791, 1, 0, 0, 0, 4720, 4726, 5, 35, 0, 0, 4721, 4722, 5, 382, 0, 0, 4722, 4723, 3, 826, 413, 0, 4723, 4724, 5, 334, 0, 0, 4724, 4725, 3, 826, 413, 0, 4725, 4727, 1, 0, 0, 0, 4726, 4721, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4726, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4731, 5, 105, 0, 0, 4731, 4733, 3, 826, 413, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 5, 108, 0, 0, 4735, 793, 1, 0, 0, 0, 4736, 4737, 5, 132, 0, 0, 4737, 4738, 5, 398, 0, 0, 4738, 4741, 3, 826, 413, 0, 4739, 4740, 5, 340, 0, 0, 4740, 4742, 3, 796, 398, 0, 4741, 4739, 1, 0, 0, 0, 4741, 4742, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4744, 5, 399, 0, 0, 4744, 795, 1, 0, 0, 0, 4745, 4754, 3, 974, 487, 0, 4746, 4754, 5, 256, 0, 0, 4747, 4754, 3, 976, 488, 0, 4748, 4754, 3, 978, 489, 0, 4749, 4754, 3, 980, 490, 0, 4750, 4754, 3, 982, 491, 0, 4751, 4754, 3, 984, 492, 0, 4752, 4754, 3, 986, 493, 0, 4753, 4745, 1, 0, 0, 0, 4753, 4746, 1, 0, 0, 0, 4753, 4747, 1, 0, 0, 0, 4753, 4748, 1, 0, 0, 0, 4753, 4749, 1, 0, 0, 0, 4753, 4750, 1, 0, 0, 0, 4753, 4751, 1, 0, 0, 0, 4753, 4752, 1, 0, 0, 0, 4754, 797, 1, 0, 0, 0, 4755, 4756, 5, 124, 0, 0, 4756, 4757, 5, 398, 0, 0, 4757, 4758, 3, 800, 400, 0, 4758, 4759, 5, 139, 0, 0, 4759, 4760, 3, 826, 413, 0, 4760, 4761, 5, 399, 0, 0, 4761, 799, 1, 0, 0, 0, 4762, 4771, 3, 974, 487, 0, 4763, 4771, 5, 256, 0, 0, 4764, 4771, 3, 976, 488, 0, 4765, 4771, 3, 978, 489, 0, 4766, 4771, 3, 980, 490, 0, 4767, 4771, 3, 982, 491, 0, 4768, 4771, 3, 984, 492, 0, 4769, 4771, 3, 986, 493, 0, 4770, 4762, 1, 0, 0, 0, 4770, 4763, 1, 0, 0, 0, 4770, 4764, 1, 0, 0, 0, 4770, 4765, 1, 0, 0, 0, 4770, 4766, 1, 0, 0, 0, 4770, 4767, 1, 0, 0, 0, 4770, 4768, 1, 0, 0, 0, 4770, 4769, 1, 0, 0, 0, 4771, 801, 1, 0, 0, 0, 4772, 4786, 3, 820, 410, 0, 4773, 4786, 5, 430, 0, 0, 4774, 4786, 3, 812, 406, 0, 4775, 4786, 3, 814, 407, 0, 4776, 4786, 3, 816, 408, 0, 4777, 4786, 5, 425, 0, 0, 4778, 4786, 3, 808, 404, 0, 4779, 4786, 5, 427, 0, 0, 4780, 4786, 5, 428, 0, 0, 4781, 4786, 3, 810, 405, 0, 4782, 4786, 3, 904, 452, 0, 4783, 4786, 5, 218, 0, 0, 4784, 4786, 3, 804, 402, 0, 4785, 4772, 1, 0, 0, 0, 4785, 4773, 1, 0, 0, 0, 4785, 4774, 1, 0, 0, 0, 4785, 4775, 1, 0, 0, 0, 4785, 4776, 1, 0, 0, 0, 4785, 4777, 1, 0, 0, 0, 4785, 4778, 1, 0, 0, 0, 4785, 4779, 1, 0, 0, 0, 4785, 4780, 1, 0, 0, 0, 4785, 4781, 1, 0, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4785, 4784, 1, 0, 0, 0, 4786, 803, 1, 0, 0, 0, 4787, 4788, 3, 806, 403, 0, 4788, 805, 1, 0, 0, 0, 4789, 4790, 5, 423, 0, 0, 4790, 807, 1, 0, 0, 0, 4791, 4793, 5, 425, 0, 0, 4792, 4794, 5, 425, 0, 0, 4793, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4793, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 809, 1, 0, 0, 0, 4797, 4798, 5, 432, 0, 0, 4798, 4799, 5, 426, 0, 0, 4799, 811, 1, 0, 0, 0, 4800, 4801, 5, 71, 0, 0, 4801, 4804, 5, 425, 0, 0, 4802, 4804, 5, 63, 0, 0, 4803, 4800, 1, 0, 0, 0, 4803, 4802, 1, 0, 0, 0, 4804, 813, 1, 0, 0, 0, 4805, 4806, 5, 336, 0, 0, 4806, 4809, 5, 425, 0, 0, 4807, 4809, 5, 64, 0, 0, 4808, 4805, 1, 0, 0, 0, 4808, 4807, 1, 0, 0, 0, 4809, 815, 1, 0, 0, 0, 4810, 4811, 5, 337, 0, 0, 4811, 4812, 5, 425, 0, 0, 4812, 817, 1, 0, 0, 0, 4813, 4814, 7, 24, 0, 0, 4814, 819, 1, 0, 0, 0, 4815, 4816, 3, 818, 409, 0, 4816, 4817, 3, 824, 412, 0, 4817, 821, 1, 0, 0, 0, 4818, 4819, 5, 398, 0, 0, 4819, 4820, 3, 818, 409, 0, 4820, 4821, 5, 399, 0, 0, 4821, 4822, 3, 824, 412, 0, 4822, 4834, 1, 0, 0, 0, 4823, 4829, 5, 165, 0, 0, 4824, 4830, 3, 818, 409, 0, 4825, 4826, 5, 398, 0, 0, 4826, 4827, 3, 826, 413, 0, 4827, 4828, 5, 399, 0, 0, 4828, 4830, 1, 0, 0, 0, 4829, 4824, 1, 0, 0, 0, 4829, 4825, 1, 0, 0, 0, 4830, 4831, 1, 0, 0, 0, 4831, 4832, 3, 824, 412, 0, 4832, 4834, 1, 0, 0, 0, 4833, 4818, 1, 0, 0, 0, 4833, 4823, 1, 0, 0, 0, 4834, 823, 1, 0, 0, 0, 4835, 4836, 3, 974, 487, 0, 4836, 4837, 5, 340, 0, 0, 4837, 4838, 3, 976, 488, 0, 4838, 4850, 1, 0, 0, 0, 4839, 4840, 3, 980, 490, 0, 4840, 4841, 5, 340, 0, 0, 4841, 4842, 3, 986, 493, 0, 4842, 4850, 1, 0, 0, 0, 4843, 4850, 3, 974, 487, 0, 4844, 4850, 3, 976, 488, 0, 4845, 4850, 3, 980, 490, 0, 4846, 4850, 3, 982, 491, 0, 4847, 4850, 3, 984, 492, 0, 4848, 4850, 3, 986, 493, 0, 4849, 4835, 1, 0, 0, 0, 4849, 4839, 1, 0, 0, 0, 4849, 4843, 1, 0, 0, 0, 4849, 4844, 1, 0, 0, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4849, 4847, 1, 0, 0, 0, 4849, 4848, 1, 0, 0, 0, 4850, 825, 1, 0, 0, 0, 4851, 4852, 3, 902, 451, 0, 4852, 827, 1, 0, 0, 0, 4853, 4865, 3, 802, 401, 0, 4854, 4865, 3, 822, 411, 0, 4855, 4865, 3, 788, 394, 0, 4856, 4865, 3, 798, 399, 0, 4857, 4865, 3, 794, 397, 0, 4858, 4865, 3, 790, 395, 0, 4859, 4865, 3, 792, 396, 0, 4860, 4865, 3, 864, 432, 0, 4861, 4865, 3, 774, 387, 0, 4862, 4865, 3, 744, 372, 0, 4863, 4865, 3, 924, 462, 0, 4864, 4853, 1, 0, 0, 0, 4864, 4854, 1, 0, 0, 0, 4864, 4855, 1, 0, 0, 0, 4864, 4856, 1, 0, 0, 0, 4864, 4857, 1, 0, 0, 0, 4864, 4858, 1, 0, 0, 0, 4864, 4859, 1, 0, 0, 0, 4864, 4860, 1, 0, 0, 0, 4864, 4861, 1, 0, 0, 0, 4864, 4862, 1, 0, 0, 0, 4864, 4863, 1, 0, 0, 0, 4865, 829, 1, 0, 0, 0, 4866, 4875, 3, 828, 414, 0, 4867, 4868, 5, 400, 0, 0, 4868, 4869, 3, 826, 413, 0, 4869, 4870, 5, 401, 0, 0, 4870, 4874, 1, 0, 0, 0, 4871, 4872, 5, 394, 0, 0, 4872, 4874, 3, 924, 462, 0, 4873, 4867, 1, 0, 0, 0, 4873, 4871, 1, 0, 0, 0, 4874, 4877, 1, 0, 0, 0, 4875, 4873, 1, 0, 0, 0, 4875, 4876, 1, 0, 0, 0, 4876, 831, 1, 0, 0, 0, 4877, 4875, 1, 0, 0, 0, 4878, 4879, 7, 31, 0, 0, 4879, 833, 1, 0, 0, 0, 4880, 4882, 3, 832, 416, 0, 4881, 4880, 1, 0, 0, 0, 4882, 4885, 1, 0, 0, 0, 4883, 4881, 1, 0, 0, 0, 4883, 4884, 1, 0, 0, 0, 4884, 4886, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4886, 4887, 3, 830, 415, 0, 4887, 835, 1, 0, 0, 0, 4888, 4889, 5, 422, 0, 0, 4889, 837, 1, 0, 0, 0, 4890, 4896, 3, 834, 417, 0, 4891, 4892, 3, 836, 418, 0, 4892, 4893, 3, 834, 417, 0, 4893, 4895, 1, 0, 0, 0, 4894, 4891, 1, 0, 0, 0, 4895, 4898, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4896, 4897, 1, 0, 0, 0, 4897, 839, 1, 0, 0, 0, 4898, 4896, 1, 0, 0, 0, 4899, 4900, 7, 32, 0, 0, 4900, 841, 1, 0, 0, 0, 4901, 4907, 3, 838, 419, 0, 4902, 4903, 3, 840, 420, 0, 4903, 4904, 3, 838, 419, 0, 4904, 4906, 1, 0, 0, 0, 4905, 4902, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 843, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4911, 7, 33, 0, 0, 4911, 845, 1, 0, 0, 0, 4912, 4918, 3, 842, 421, 0, 4913, 4914, 3, 844, 422, 0, 4914, 4915, 3, 842, 421, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4913, 1, 0, 0, 0, 4917, 4920, 1, 0, 0, 0, 4918, 4916, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 847, 1, 0, 0, 0, 4920, 4918, 1, 0, 0, 0, 4921, 4922, 5, 421, 0, 0, 4922, 849, 1, 0, 0, 0, 4923, 4929, 3, 846, 423, 0, 4924, 4925, 3, 848, 424, 0, 4925, 4926, 3, 846, 423, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4924, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 851, 1, 0, 0, 0, 4931, 4929, 1, 0, 0, 0, 4932, 4933, 5, 418, 0, 0, 4933, 853, 1, 0, 0, 0, 4934, 4940, 3, 850, 425, 0, 4935, 4936, 3, 852, 426, 0, 4936, 4937, 3, 850, 425, 0, 4937, 4939, 1, 0, 0, 0, 4938, 4935, 1, 0, 0, 0, 4939, 4942, 1, 0, 0, 0, 4940, 4938, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 855, 1, 0, 0, 0, 4942, 4940, 1, 0, 0, 0, 4943, 4944, 5, 420, 0, 0, 4944, 857, 1, 0, 0, 0, 4945, 4951, 3, 854, 427, 0, 4946, 4947, 3, 856, 428, 0, 4947, 4948, 3, 854, 427, 0, 4948, 4950, 1, 0, 0, 0, 4949, 4946, 1, 0, 0, 0, 4950, 4953, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 859, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4955, 7, 34, 0, 0, 4955, 861, 1, 0, 0, 0, 4956, 4962, 3, 860, 430, 0, 4957, 4962, 5, 407, 0, 0, 4958, 4962, 5, 408, 0, 0, 4959, 4962, 5, 409, 0, 0, 4960, 4962, 5, 410, 0, 0, 4961, 4956, 1, 0, 0, 0, 4961, 4957, 1, 0, 0, 0, 4961, 4958, 1, 0, 0, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4960, 1, 0, 0, 0, 4962, 863, 1, 0, 0, 0, 4963, 4964, 5, 398, 0, 0, 4964, 4965, 3, 408, 204, 0, 4965, 4966, 5, 399, 0, 0, 4966, 865, 1, 0, 0, 0, 4967, 4971, 3, 868, 434, 0, 4968, 4969, 5, 117, 0, 0, 4969, 4971, 3, 864, 432, 0, 4970, 4967, 1, 0, 0, 0, 4970, 4968, 1, 0, 0, 0, 4971, 867, 1, 0, 0, 0, 4972, 4974, 3, 858, 429, 0, 4973, 4975, 3, 870, 435, 0, 4974, 4973, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 869, 1, 0, 0, 0, 4976, 4977, 3, 862, 431, 0, 4977, 4978, 3, 858, 429, 0, 4978, 4983, 1, 0, 0, 0, 4979, 4983, 3, 872, 436, 0, 4980, 4981, 5, 215, 0, 0, 4981, 4983, 3, 880, 440, 0, 4982, 4976, 1, 0, 0, 0, 4982, 4979, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4983, 871, 1, 0, 0, 0, 4984, 4985, 5, 154, 0, 0, 4985, 4996, 3, 878, 439, 0, 4986, 4987, 5, 25, 0, 0, 4987, 4988, 3, 858, 429, 0, 4988, 4989, 5, 11, 0, 0, 4989, 4990, 3, 858, 429, 0, 4990, 4996, 1, 0, 0, 0, 4991, 4992, 5, 183, 0, 0, 4992, 4993, 7, 35, 0, 0, 4993, 4996, 3, 744, 372, 0, 4994, 4996, 3, 874, 437, 0, 4995, 4984, 1, 0, 0, 0, 4995, 4986, 1, 0, 0, 0, 4995, 4991, 1, 0, 0, 0, 4995, 4994, 1, 0, 0, 0, 4996, 873, 1, 0, 0, 0, 4997, 4998, 3, 920, 460, 0, 4998, 4999, 3, 876, 438, 0, 4999, 5000, 3, 864, 432, 0, 5000, 875, 1, 0, 0, 0, 5001, 5002, 7, 36, 0, 0, 5002, 877, 1, 0, 0, 0, 5003, 5006, 3, 864, 432, 0, 5004, 5006, 3, 744, 372, 0, 5005, 5003, 1, 0, 0, 0, 5005, 5004, 1, 0, 0, 0, 5006, 879, 1, 0, 0, 0, 5007, 5008, 3, 860, 430, 0, 5008, 5009, 3, 858, 429, 0, 5009, 5012, 1, 0, 0, 0, 5010, 5012, 3, 872, 436, 0, 5011, 5007, 1, 0, 0, 0, 5011, 5010, 1, 0, 0, 0, 5012, 881, 1, 0, 0, 0, 5013, 5014, 5, 167, 0, 0, 5014, 5015, 5, 96, 0, 0, 5015, 5016, 5, 139, 0, 0, 5016, 883, 1, 0, 0, 0, 5017, 5025, 5, 404, 0, 0, 5018, 5025, 5, 405, 0, 0, 5019, 5025, 5, 406, 0, 0, 5020, 5021, 5, 167, 0, 0, 5021, 5022, 5, 215, 0, 0, 5022, 5023, 5, 96, 0, 0, 5023, 5025, 5, 139, 0, 0, 5024, 5017, 1, 0, 0, 0, 5024, 5018, 1, 0, 0, 0, 5024, 5019, 1, 0, 0, 0, 5024, 5020, 1, 0, 0, 0, 5025, 885, 1, 0, 0, 0, 5026, 5035, 3, 866, 433, 0, 5027, 5028, 3, 884, 442, 0, 5028, 5029, 3, 866, 433, 0, 5029, 5034, 1, 0, 0, 0, 5030, 5031, 3, 882, 441, 0, 5031, 5032, 3, 866, 433, 0, 5032, 5034, 1, 0, 0, 0, 5033, 5027, 1, 0, 0, 0, 5033, 5030, 1, 0, 0, 0, 5034, 5037, 1, 0, 0, 0, 5035, 5033, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 887, 1, 0, 0, 0, 5037, 5035, 1, 0, 0, 0, 5038, 5051, 5, 218, 0, 0, 5039, 5051, 5, 349, 0, 0, 5040, 5051, 5, 125, 0, 0, 5041, 5051, 5, 359, 0, 0, 5042, 5043, 5, 215, 0, 0, 5043, 5051, 5, 218, 0, 0, 5044, 5045, 5, 215, 0, 0, 5045, 5051, 5, 349, 0, 0, 5046, 5047, 5, 215, 0, 0, 5047, 5051, 5, 125, 0, 0, 5048, 5049, 5, 215, 0, 0, 5049, 5051, 5, 359, 0, 0, 5050, 5038, 1, 0, 0, 0, 5050, 5039, 1, 0, 0, 0, 5050, 5040, 1, 0, 0, 0, 5050, 5041, 1, 0, 0, 0, 5050, 5042, 1, 0, 0, 0, 5050, 5044, 1, 0, 0, 0, 5050, 5046, 1, 0, 0, 0, 5050, 5048, 1, 0, 0, 0, 5051, 889, 1, 0, 0, 0, 5052, 5055, 3, 886, 443, 0, 5053, 5054, 5, 167, 0, 0, 5054, 5056, 3, 888, 444, 0, 5055, 5053, 1, 0, 0, 0, 5055, 5056, 1, 0, 0, 0, 5056, 891, 1, 0, 0, 0, 5057, 5058, 5, 215, 0, 0, 5058, 893, 1, 0, 0, 0, 5059, 5061, 3, 892, 446, 0, 5060, 5059, 1, 0, 0, 0, 5061, 5064, 1, 0, 0, 0, 5062, 5060, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5065, 1, 0, 0, 0, 5064, 5062, 1, 0, 0, 0, 5065, 5066, 3, 890, 445, 0, 5066, 895, 1, 0, 0, 0, 5067, 5068, 5, 11, 0, 0, 5068, 897, 1, 0, 0, 0, 5069, 5075, 3, 894, 447, 0, 5070, 5071, 3, 896, 448, 0, 5071, 5072, 3, 894, 447, 0, 5072, 5074, 1, 0, 0, 0, 5073, 5070, 1, 0, 0, 0, 5074, 5077, 1, 0, 0, 0, 5075, 5073, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 899, 1, 0, 0, 0, 5077, 5075, 1, 0, 0, 0, 5078, 5079, 5, 227, 0, 0, 5079, 901, 1, 0, 0, 0, 5080, 5086, 3, 898, 449, 0, 5081, 5082, 3, 900, 450, 0, 5082, 5083, 3, 898, 449, 0, 5083, 5085, 1, 0, 0, 0, 5084, 5081, 1, 0, 0, 0, 5085, 5088, 1, 0, 0, 0, 5086, 5084, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 903, 1, 0, 0, 0, 5088, 5086, 1, 0, 0, 0, 5089, 5090, 7, 37, 0, 0, 5090, 905, 1, 0, 0, 0, 5091, 5092, 7, 37, 0, 0, 5092, 907, 1, 0, 0, 0, 5093, 5095, 3, 658, 329, 0, 5094, 5096, 3, 910, 455, 0, 5095, 5094, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 909, 1, 0, 0, 0, 5097, 5098, 5, 236, 0, 0, 5098, 5099, 5, 398, 0, 0, 5099, 5104, 3, 912, 456, 0, 5100, 5101, 5, 396, 0, 0, 5101, 5103, 3, 912, 456, 0, 5102, 5100, 1, 0, 0, 0, 5103, 5106, 1, 0, 0, 0, 5104, 5102, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5107, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5107, 5108, 5, 399, 0, 0, 5108, 911, 1, 0, 0, 0, 5109, 5112, 3, 924, 462, 0, 5110, 5111, 5, 404, 0, 0, 5111, 5113, 3, 802, 401, 0, 5112, 5110, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 913, 1, 0, 0, 0, 5114, 5115, 5, 398, 0, 0, 5115, 5120, 3, 916, 458, 0, 5116, 5117, 5, 396, 0, 0, 5117, 5119, 3, 916, 458, 0, 5118, 5116, 1, 0, 0, 0, 5119, 5122, 1, 0, 0, 0, 5120, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5123, 1, 0, 0, 0, 5122, 5120, 1, 0, 0, 0, 5123, 5124, 5, 399, 0, 0, 5124, 915, 1, 0, 0, 0, 5125, 5126, 3, 924, 462, 0, 5126, 5127, 3, 918, 459, 0, 5127, 5128, 3, 802, 401, 0, 5128, 917, 1, 0, 0, 0, 5129, 5132, 5, 183, 0, 0, 5130, 5132, 3, 920, 460, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5130, 1, 0, 0, 0, 5132, 919, 1, 0, 0, 0, 5133, 5134, 7, 38, 0, 0, 5134, 921, 1, 0, 0, 0, 5135, 5136, 7, 39, 0, 0, 5136, 923, 1, 0, 0, 0, 5137, 5140, 5, 431, 0, 0, 5138, 5140, 3, 930, 465, 0, 5139, 5137, 1, 0, 0, 0, 5139, 5138, 1, 0, 0, 0, 5140, 925, 1, 0, 0, 0, 5141, 5144, 3, 924, 462, 0, 5142, 5143, 5, 394, 0, 0, 5143, 5145, 3, 924, 462, 0, 5144, 5142, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 927, 1, 0, 0, 0, 5146, 5147, 3, 924, 462, 0, 5147, 929, 1, 0, 0, 0, 5148, 5149, 7, 40, 0, 0, 5149, 931, 1, 0, 0, 0, 5150, 5151, 7, 41, 0, 0, 5151, 933, 1, 0, 0, 0, 5152, 5153, 3, 936, 468, 0, 5153, 5154, 5, 0, 0, 1, 5154, 935, 1, 0, 0, 0, 5155, 5160, 3, 938, 469, 0, 5156, 5157, 5, 396, 0, 0, 5157, 5159, 3, 938, 469, 0, 5158, 5156, 1, 0, 0, 0, 5159, 5162, 1, 0, 0, 0, 5160, 5158, 1, 0, 0, 0, 5160, 5161, 1, 0, 0, 0, 5161, 937, 1, 0, 0, 0, 5162, 5160, 1, 0, 0, 0, 5163, 5168, 3, 940, 470, 0, 5164, 5165, 5, 398, 0, 0, 5165, 5166, 3, 942, 471, 0, 5166, 5167, 5, 399, 0, 0, 5167, 5169, 1, 0, 0, 0, 5168, 5164, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 939, 1, 0, 0, 0, 5170, 5171, 7, 42, 0, 0, 5171, 941, 1, 0, 0, 0, 5172, 5177, 3, 944, 472, 0, 5173, 5174, 5, 396, 0, 0, 5174, 5176, 3, 944, 472, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 943, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 7, 43, 0, 0, 5181, 945, 1, 0, 0, 0, 5182, 5183, 5, 248, 0, 0, 5183, 5184, 3, 924, 462, 0, 5184, 5185, 5, 139, 0, 0, 5185, 5186, 3, 392, 196, 0, 5186, 947, 1, 0, 0, 0, 5187, 5188, 5, 115, 0, 0, 5188, 5189, 3, 924, 462, 0, 5189, 5190, 5, 369, 0, 0, 5190, 5191, 3, 950, 475, 0, 5191, 949, 1, 0, 0, 0, 5192, 5197, 3, 802, 401, 0, 5193, 5194, 5, 396, 0, 0, 5194, 5196, 3, 802, 401, 0, 5195, 5193, 1, 0, 0, 0, 5196, 5199, 1, 0, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 951, 1, 0, 0, 0, 5199, 5197, 1, 0, 0, 0, 5200, 5215, 3, 962, 481, 0, 5201, 5215, 3, 990, 495, 0, 5202, 5215, 3, 996, 498, 0, 5203, 5215, 3, 992, 496, 0, 5204, 5215, 3, 994, 497, 0, 5205, 5215, 3, 1018, 509, 0, 5206, 5215, 3, 1020, 510, 0, 5207, 5215, 3, 1022, 511, 0, 5208, 5215, 3, 1028, 514, 0, 5209, 5215, 3, 1030, 515, 0, 5210, 5215, 3, 1032, 516, 0, 5211, 5215, 3, 1034, 517, 0, 5212, 5215, 3, 1036, 518, 0, 5213, 5215, 3, 1038, 519, 0, 5214, 5200, 1, 0, 0, 0, 5214, 5201, 1, 0, 0, 0, 5214, 5202, 1, 0, 0, 0, 5214, 5203, 1, 0, 0, 0, 5214, 5204, 1, 0, 0, 0, 5214, 5205, 1, 0, 0, 0, 5214, 5206, 1, 0, 0, 0, 5214, 5207, 1, 0, 0, 0, 5214, 5208, 1, 0, 0, 0, 5214, 5209, 1, 0, 0, 0, 5214, 5210, 1, 0, 0, 0, 5214, 5211, 1, 0, 0, 0, 5214, 5212, 1, 0, 0, 0, 5214, 5213, 1, 0, 0, 0, 5215, 953, 1, 0, 0, 0, 5216, 5217, 5, 258, 0, 0, 5217, 5218, 5, 404, 0, 0, 5218, 5224, 5, 430, 0, 0, 5219, 5220, 5, 83, 0, 0, 5220, 5221, 5, 245, 0, 0, 5221, 5222, 5, 404, 0, 0, 5222, 5224, 3, 998, 499, 0, 5223, 5216, 1, 0, 0, 0, 5223, 5219, 1, 0, 0, 0, 5224, 955, 1, 0, 0, 0, 5225, 5230, 3, 954, 477, 0, 5226, 5227, 5, 396, 0, 0, 5227, 5229, 3, 954, 477, 0, 5228, 5226, 1, 0, 0, 0, 5229, 5232, 1, 0, 0, 0, 5230, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 0, 5231, 957, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5237, 5, 258, 0, 0, 5234, 5235, 5, 83, 0, 0, 5235, 5237, 5, 245, 0, 0, 5236, 5233, 1, 0, 0, 0, 5236, 5234, 1, 0, 0, 0, 5237, 959, 1, 0, 0, 0, 5238, 5243, 3, 958, 479, 0, 5239, 5240, 5, 396, 0, 0, 5240, 5242, 3, 958, 479, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5245, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 961, 1, 0, 0, 0, 5245, 5243, 1, 0, 0, 0, 5246, 5247, 5, 58, 0, 0, 5247, 5248, 5, 279, 0, 0, 5248, 5250, 5, 242, 0, 0, 5249, 5251, 3, 44, 22, 0, 5250, 5249, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5261, 1, 0, 0, 0, 5252, 5253, 3, 924, 462, 0, 5253, 5254, 5, 183, 0, 0, 5254, 5255, 3, 924, 462, 0, 5255, 5262, 1, 0, 0, 0, 5256, 5259, 3, 924, 462, 0, 5257, 5258, 5, 386, 0, 0, 5258, 5260, 3, 956, 478, 0, 5259, 5257, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5262, 1, 0, 0, 0, 5261, 5252, 1, 0, 0, 0, 5261, 5256, 1, 0, 0, 0, 5262, 963, 1, 0, 0, 0, 5263, 5264, 5, 386, 0, 0, 5264, 5265, 5, 277, 0, 0, 5265, 965, 1, 0, 0, 0, 5266, 5268, 5, 2, 0, 0, 5267, 5269, 3, 964, 482, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, 967, 1, 0, 0, 0, 5270, 5271, 7, 44, 0, 0, 5271, 969, 1, 0, 0, 0, 5272, 5273, 7, 45, 0, 0, 5273, 971, 1, 0, 0, 0, 5274, 5275, 5, 361, 0, 0, 5275, 973, 1, 0, 0, 0, 5276, 5277, 7, 46, 0, 0, 5277, 975, 1, 0, 0, 0, 5278, 5279, 7, 47, 0, 0, 5279, 977, 1, 0, 0, 0, 5280, 5281, 7, 48, 0, 0, 5281, 979, 1, 0, 0, 0, 5282, 5283, 7, 49, 0, 0, 5283, 981, 1, 0, 0, 0, 5284, 5285, 7, 50, 0, 0, 5285, 983, 1, 0, 0, 0, 5286, 5287, 7, 51, 0, 0, 5287, 985, 1, 0, 0, 0, 5288, 5289, 7, 52, 0, 0, 5289, 987, 1, 0, 0, 0, 5290, 5291, 7, 53, 0, 0, 5291, 989, 1, 0, 0, 0, 5292, 5293, 5, 9, 0, 0, 5293, 5294, 5, 279, 0, 0, 5294, 5295, 5, 242, 0, 0, 5295, 5313, 3, 924, 462, 0, 5296, 5314, 5, 372, 0, 0, 5297, 5314, 3, 970, 485, 0, 5298, 5299, 5, 303, 0, 0, 5299, 5314, 3, 956, 478, 0, 5300, 5301, 5, 362, 0, 0, 5301, 5314, 3, 960, 480, 0, 5302, 5303, 5, 273, 0, 0, 5303, 5304, 5, 340, 0, 0, 5304, 5314, 3, 924, 462, 0, 5305, 5307, 3, 966, 483, 0, 5306, 5308, 3, 968, 484, 0, 5307, 5306, 1, 0, 0, 0, 5307, 5308, 1, 0, 0, 0, 5308, 5314, 1, 0, 0, 0, 5309, 5311, 3, 968, 484, 0, 5310, 5312, 3, 966, 483, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5314, 1, 0, 0, 0, 5313, 5296, 1, 0, 0, 0, 5313, 5297, 1, 0, 0, 0, 5313, 5298, 1, 0, 0, 0, 5313, 5300, 1, 0, 0, 0, 5313, 5302, 1, 0, 0, 0, 5313, 5305, 1, 0, 0, 0, 5313, 5309, 1, 0, 0, 0, 5314, 991, 1, 0, 0, 0, 5315, 5318, 3, 968, 484, 0, 5316, 5318, 3, 970, 485, 0, 5317, 5315, 1, 0, 0, 0, 5317, 5316, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5320, 5, 389, 0, 0, 5320, 5321, 5, 196, 0, 0, 5321, 993, 1, 0, 0, 0, 5322, 5334, 5, 277, 0, 0, 5323, 5324, 5, 3, 0, 0, 5324, 5325, 5, 279, 0, 0, 5325, 5326, 5, 242, 0, 0, 5326, 5327, 5, 386, 0, 0, 5327, 5335, 3, 924, 462, 0, 5328, 5329, 5, 279, 0, 0, 5329, 5330, 5, 242, 0, 0, 5330, 5331, 3, 924, 462, 0, 5331, 5332, 5, 386, 0, 0, 5332, 5333, 3, 924, 462, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5323, 1, 0, 0, 0, 5334, 5328, 1, 0, 0, 0, 5335, 995, 1, 0, 0, 0, 5336, 5337, 5, 101, 0, 0, 5337, 5338, 5, 279, 0, 0, 5338, 5340, 5, 242, 0, 0, 5339, 5341, 3, 40, 20, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5343, 3, 924, 462, 0, 5343, 997, 1, 0, 0, 0, 5344, 5349, 3, 924, 462, 0, 5345, 5346, 5, 394, 0, 0, 5346, 5348, 3, 924, 462, 0, 5347, 5345, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 999, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5353, 3, 1008, 504, 0, 5353, 1001, 1, 0, 0, 0, 5354, 5355, 3, 1000, 500, 0, 5355, 5356, 5, 0, 0, 1, 5356, 1003, 1, 0, 0, 0, 5357, 5362, 3, 1006, 503, 0, 5358, 5359, 5, 227, 0, 0, 5359, 5361, 3, 1006, 503, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5364, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 1005, 1, 0, 0, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5370, 3, 1008, 504, 0, 5366, 5367, 5, 11, 0, 0, 5367, 5369, 3, 1008, 504, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5372, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 1007, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5373, 5374, 3, 924, 462, 0, 5374, 5375, 3, 1012, 506, 0, 5375, 5376, 3, 1010, 505, 0, 5376, 1009, 1, 0, 0, 0, 5377, 5378, 7, 24, 0, 0, 5378, 1011, 1, 0, 0, 0, 5379, 5380, 5, 410, 0, 0, 5380, 1013, 1, 0, 0, 0, 5381, 5386, 5, 176, 0, 0, 5382, 5383, 5, 210, 0, 0, 5383, 5384, 5, 340, 0, 0, 5384, 5386, 3, 998, 499, 0, 5385, 5381, 1, 0, 0, 0, 5385, 5382, 1, 0, 0, 0, 5386, 1015, 1, 0, 0, 0, 5387, 5388, 3, 1014, 507, 0, 5388, 5389, 5, 0, 0, 1, 5389, 1017, 1, 0, 0, 0, 5390, 5391, 5, 58, 0, 0, 5391, 5392, 5, 347, 0, 0, 5392, 5393, 3, 924, 462, 0, 5393, 5394, 5, 394, 0, 0, 5394, 5395, 3, 924, 462, 0, 5395, 5396, 5, 382, 0, 0, 5396, 5397, 3, 1000, 500, 0, 5397, 5398, 5, 99, 0, 0, 5398, 5399, 3, 1014, 507, 0, 5399, 1019, 1, 0, 0, 0, 5400, 5401, 5, 9, 0, 0, 5401, 5402, 5, 347, 0, 0, 5402, 5403, 3, 924, 462, 0, 5403, 5404, 5, 394, 0, 0, 5404, 5421, 3, 924, 462, 0, 5405, 5406, 5, 382, 0, 0, 5406, 5407, 3, 1000, 500, 0, 5407, 5408, 5, 99, 0, 0, 5408, 5409, 3, 1014, 507, 0, 5409, 5422, 1, 0, 0, 0, 5410, 5411, 5, 4, 0, 0, 5411, 5415, 5, 340, 0, 0, 5412, 5413, 5, 101, 0, 0, 5413, 5415, 5, 139, 0, 0, 5414, 5410, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5415, 5419, 1, 0, 0, 0, 5416, 5417, 5, 245, 0, 0, 5417, 5420, 3, 998, 499, 0, 5418, 5420, 5, 361, 0, 0, 5419, 5416, 1, 0, 0, 0, 5419, 5418, 1, 0, 0, 0, 5420, 5422, 1, 0, 0, 0, 5421, 5405, 1, 0, 0, 0, 5421, 5414, 1, 0, 0, 0, 5422, 1021, 1, 0, 0, 0, 5423, 5424, 5, 101, 0, 0, 5424, 5425, 5, 347, 0, 0, 5425, 5426, 3, 924, 462, 0, 5426, 5427, 5, 394, 0, 0, 5427, 5428, 3, 924, 462, 0, 5428, 1023, 1, 0, 0, 0, 5429, 5430, 5, 8, 0, 0, 5430, 5431, 5, 404, 0, 0, 5431, 5442, 5, 430, 0, 0, 5432, 5433, 5, 258, 0, 0, 5433, 5434, 5, 404, 0, 0, 5434, 5442, 5, 430, 0, 0, 5435, 5436, 5, 293, 0, 0, 5436, 5437, 5, 404, 0, 0, 5437, 5442, 5, 425, 0, 0, 5438, 5439, 5, 239, 0, 0, 5439, 5440, 5, 404, 0, 0, 5440, 5442, 3, 998, 499, 0, 5441, 5429, 1, 0, 0, 0, 5441, 5432, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5438, 1, 0, 0, 0, 5442, 1025, 1, 0, 0, 0, 5443, 5448, 3, 1024, 512, 0, 5444, 5445, 5, 396, 0, 0, 5445, 5447, 3, 1024, 512, 0, 5446, 5444, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 1027, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5452, 5, 58, 0, 0, 5452, 5453, 5, 245, 0, 0, 5453, 5454, 3, 924, 462, 0, 5454, 5455, 5, 394, 0, 0, 5455, 5456, 3, 998, 499, 0, 5456, 5457, 5, 386, 0, 0, 5457, 5458, 3, 1026, 513, 0, 5458, 1029, 1, 0, 0, 0, 5459, 5460, 5, 9, 0, 0, 5460, 5461, 5, 245, 0, 0, 5461, 5462, 3, 924, 462, 0, 5462, 5463, 5, 394, 0, 0, 5463, 5471, 3, 998, 499, 0, 5464, 5465, 5, 303, 0, 0, 5465, 5472, 3, 1026, 513, 0, 5466, 5467, 5, 362, 0, 0, 5467, 5472, 5, 293, 0, 0, 5468, 5469, 7, 54, 0, 0, 5469, 5470, 5, 347, 0, 0, 5470, 5472, 3, 924, 462, 0, 5471, 5464, 1, 0, 0, 0, 5471, 5466, 1, 0, 0, 0, 5471, 5468, 1, 0, 0, 0, 5472, 1031, 1, 0, 0, 0, 5473, 5474, 5, 101, 0, 0, 5474, 5475, 5, 245, 0, 0, 5475, 5476, 3, 924, 462, 0, 5476, 5477, 5, 394, 0, 0, 5477, 5478, 3, 998, 499, 0, 5478, 1033, 1, 0, 0, 0, 5479, 5480, 5, 58, 0, 0, 5480, 5481, 7, 55, 0, 0, 5481, 5482, 5, 199, 0, 0, 5482, 5483, 5, 425, 0, 0, 5483, 5484, 5, 154, 0, 0, 5484, 5488, 3, 924, 462, 0, 5485, 5486, 5, 340, 0, 0, 5486, 5489, 3, 998, 499, 0, 5487, 5489, 3, 972, 486, 0, 5488, 5485, 1, 0, 0, 0, 5488, 5487, 1, 0, 0, 0, 5489, 5493, 1, 0, 0, 0, 5490, 5491, 5, 386, 0, 0, 5491, 5492, 5, 228, 0, 0, 5492, 5494, 5, 430, 0, 0, 5493, 5490, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 1035, 1, 0, 0, 0, 5495, 5496, 5, 9, 0, 0, 5496, 5497, 7, 55, 0, 0, 5497, 5498, 5, 199, 0, 0, 5498, 5499, 5, 425, 0, 0, 5499, 5500, 5, 154, 0, 0, 5500, 5504, 3, 924, 462, 0, 5501, 5502, 5, 340, 0, 0, 5502, 5505, 3, 998, 499, 0, 5503, 5505, 3, 972, 486, 0, 5504, 5501, 1, 0, 0, 0, 5504, 5503, 1, 0, 0, 0, 5505, 5509, 1, 0, 0, 0, 5506, 5507, 5, 386, 0, 0, 5507, 5508, 5, 228, 0, 0, 5508, 5510, 5, 430, 0, 0, 5509, 5506, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 1037, 1, 0, 0, 0, 5511, 5512, 5, 101, 0, 0, 5512, 5513, 7, 55, 0, 0, 5513, 5514, 5, 199, 0, 0, 5514, 5515, 5, 425, 0, 0, 5515, 5516, 5, 154, 0, 0, 5516, 5517, 3, 924, 462, 0, 5517, 1039, 1, 0, 0, 0, 649, 1043, 1050, 1053, 1059, 1065, 1072, 1082, 1085, 1089, 1109, 1114, 1119, 1125, 1132, 1145, 1149, 1153, 1158, 1165, 1169, 1174, 1181, 1185, 1196, 1202, 1209, 1258, 1286, 1290, 1294, 1297, 1300, 1305, 1311, 1315, 1321, 1323, 1340, 1352, 1356, 1363, 1371, 1374, 1379, 1383, 1386, 1396, 1404, 1408, 1411, 1415, 1419, 1422, 1427, 1433, 1438, 1443, 1447, 1458, 1460, 1464, 1474, 1478, 1484, 1487, 1494, 1499, 1507, 1512, 1516, 1524, 1529, 1535, 1541, 1544, 1547, 1550, 1559, 1567, 1572, 1580, 1587, 1590, 1593, 1595, 1603, 1606, 1609, 1612, 1615, 1618, 1621, 1624, 1627, 1630, 1633, 1635, 1647, 1653, 1661, 1663, 1673, 1679, 1694, 1711, 1716, 1720, 1724, 1731, 1738, 1744, 1748, 1751, 1758, 1781, 1786, 1790, 1798, 1807, 1811, 1817, 1823, 1830, 1833, 1839, 1846, 1854, 1863, 1872, 1879, 1899, 1906, 1908, 1915, 1925, 1933, 1937, 1941, 1954, 1963, 1979, 1983, 1988, 1993, 1996, 1999, 2003, 2006, 2009, 2014, 2022, 2026, 2033, 2036, 2039, 2042, 2054, 2060, 2086, 2094, 2098, 2101, 2104, 2107, 2110, 2113, 2116, 2119, 2128, 2138, 2141, 2161, 2167, 2173, 2176, 2178, 2185, 2192, 2202, 2207, 2216, 2224, 2232, 2242, 2255, 2268, 2289, 2293, 2308, 2314, 2317, 2320, 2323, 2326, 2330, 2344, 2352, 2355, 2370, 2404, 2412, 2417, 2425, 2430, 2435, 2445, 2453, 2461, 2469, 2477, 2481, 2491, 2495, 2503, 2512, 2515, 2519, 2526, 2532, 2536, 2542, 2546, 2558, 2567, 2578, 2582, 2589, 2601, 2608, 2617, 2620, 2627, 2633, 2639, 2642, 2645, 2651, 2655, 2659, 2664, 2668, 2672, 2676, 2684, 2688, 2692, 2696, 2700, 2708, 2712, 2716, 2724, 2729, 2734, 2738, 2742, 2749, 2758, 2766, 2778, 2796, 2799, 2805, 2831, 2834, 2840, 2848, 2856, 2869, 2876, 2879, 2882, 2885, 2888, 2891, 2894, 2897, 2900, 2903, 2906, 2911, 2914, 2917, 2920, 2923, 2926, 2929, 2932, 2935, 2938, 2941, 2943, 2949, 2953, 2956, 2959, 2962, 2965, 2968, 2975, 2979, 2982, 2985, 2988, 2991, 2994, 3001, 3004, 3012, 3016, 3023, 3025, 3028, 3033, 3036, 3040, 3045, 3051, 3057, 3065, 3073, 3080, 3086, 3095, 3098, 3102, 3115, 3119, 3130, 3137, 3141, 3146, 3149, 3159, 3161, 3165, 3172, 3177, 3197, 3204, 3227, 3243, 3260, 3266, 3283, 3296, 3300, 3304, 3311, 3339, 3346, 3351, 3356, 3361, 3366, 3374, 3380, 3384, 3387, 3390, 3396, 3403, 3413, 3417, 3422, 3426, 3432, 3439, 3446, 3457, 3466, 3470, 3473, 3476, 3484, 3487, 3495, 3498, 3506, 3510, 3515, 3519, 3528, 3544, 3559, 3561, 3577, 3584, 3601, 3604, 3607, 3610, 3616, 3639, 3647, 3661, 3664, 3669, 3695, 3699, 3702, 3705, 3709, 3714, 3717, 3720, 3723, 3726, 3732, 3735, 3738, 3741, 3744, 3747, 3750, 3753, 3756, 3760, 3762, 3768, 3773, 3776, 3779, 3782, 3788, 3791, 3794, 3797, 3800, 3803, 3806, 3809, 3812, 3816, 3818, 3820, 3825, 3829, 3832, 3835, 3840, 3858, 3867, 3879, 3887, 3899, 3902, 3908, 3915, 3922, 3929, 3936, 3945, 3949, 3956, 3961, 3965, 3981, 3985, 3987, 3990, 4003, 4006, 4009, 4021, 4024, 4031, 4040, 4045, 4047, 4049, 4066, 4069, 4078, 4084, 4088, 4091, 4094, 4097, 4100, 4112, 4116, 4119, 4122, 4130, 4137, 4140, 4147, 4150, 4155, 4162, 4170, 4176, 4181, 4185, 4190, 4197, 4211, 4214, 4218, 4235, 4243, 4246, 4259, 4268, 4271, 4277, 4280, 4285, 4288, 4297, 4311, 4317, 4319, 4327, 4330, 4340, 4345, 4347, 4359, 4365, 4367, 4374, 4381, 4390, 4400, 4403, 4406, 4409, 4413, 4422, 4431, 4439, 4445, 4455, 4462, 4470, 4480, 4490, 4495, 4499, 4503, 4509, 4530, 4536, 4540, 4544, 4547, 4553, 4558, 4561, 4565, 4573, 4583, 4593, 4612, 4619, 4622, 4633, 4640, 4643, 4645, 4656, 4666, 4668, 4674, 4680, 4684, 4690, 4699, 4712, 4716, 4728, 4732, 4741, 4753, 4770, 4785, 4795, 4803, 4808, 4829, 4833, 4849, 4864, 4873, 4875, 4883, 4896, 4907, 4918, 4929, 4940, 4951, 4961, 4970, 4974, 4982, 4995, 5005, 5011, 5024, 5033, 5035, 5050, 5055, 5062, 5075, 5086, 5095, 5104, 5112, 5120, 5131, 5139, 5144, 5160, 5168, 5177, 5197, 5214, 5223, 5230, 5236, 5243, 5250, 5259, 5261, 5268, 5307, 5311, 5313, 5317, 5334, 5340, 5349, 5362, 5370, 5385, 5414, 5419, 5421, 5441, 5448, 5471, 5488, 5493, 5504, 5509] \ No newline at end of file +[4, 1, 438, 5530, 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, 1, 0, 5, 0, 1044, 8, 0, 10, 0, 12, 0, 1047, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 1053, 8, 1, 1, 1, 3, 1, 1056, 8, 1, 1, 2, 1, 2, 5, 2, 1060, 8, 2, 10, 2, 12, 2, 1063, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1075, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1085, 8, 3, 1, 3, 3, 3, 1088, 8, 3, 1, 3, 1, 3, 3, 3, 1092, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1112, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 1117, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1122, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1128, 8, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 3, 9, 1135, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1148, 8, 10, 1, 11, 1, 11, 3, 11, 1152, 8, 11, 1, 11, 1, 11, 3, 11, 1156, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1161, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1168, 8, 12, 1, 12, 1, 12, 3, 12, 1172, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 1177, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1184, 8, 14, 1, 14, 1, 14, 3, 14, 1188, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 5, 16, 1197, 8, 16, 10, 16, 12, 16, 1200, 9, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1205, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1212, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1261, 8, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1289, 8, 28, 1, 28, 1, 28, 3, 28, 1293, 8, 28, 1, 28, 1, 28, 3, 28, 1297, 8, 28, 1, 28, 3, 28, 1300, 8, 28, 1, 28, 3, 28, 1303, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1308, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1314, 8, 28, 1, 28, 1, 28, 3, 28, 1318, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1324, 8, 28, 3, 28, 1326, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1341, 8, 32, 10, 32, 12, 32, 1344, 9, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 3, 35, 1355, 8, 35, 1, 35, 1, 35, 3, 35, 1359, 8, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 3, 37, 1366, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1374, 8, 37, 1, 37, 3, 37, 1377, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1382, 8, 38, 1, 38, 1, 38, 3, 38, 1386, 8, 38, 1, 38, 3, 38, 1389, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1399, 8, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1407, 8, 40, 5, 40, 1409, 8, 40, 10, 40, 12, 40, 1412, 9, 40, 3, 40, 1414, 8, 40, 1, 41, 1, 41, 3, 41, 1418, 8, 41, 1, 42, 1, 42, 3, 42, 1422, 8, 42, 1, 42, 3, 42, 1425, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 1430, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1436, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1441, 8, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1446, 8, 43, 1, 43, 1, 43, 3, 43, 1450, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1461, 8, 44, 3, 44, 1463, 8, 44, 1, 44, 1, 44, 3, 44, 1467, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1477, 8, 47, 1, 47, 1, 47, 3, 47, 1481, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1487, 8, 47, 1, 47, 3, 47, 1490, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1497, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1502, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1510, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1515, 8, 47, 1, 47, 1, 47, 3, 47, 1519, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1527, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1532, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1538, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1544, 8, 47, 1, 47, 3, 47, 1547, 8, 47, 1, 47, 3, 47, 1550, 8, 47, 1, 47, 3, 47, 1553, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1562, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1570, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1575, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1583, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1590, 8, 47, 1, 47, 3, 47, 1593, 8, 47, 1, 47, 3, 47, 1596, 8, 47, 3, 47, 1598, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1606, 8, 47, 1, 47, 3, 47, 1609, 8, 47, 1, 47, 3, 47, 1612, 8, 47, 1, 47, 3, 47, 1615, 8, 47, 1, 47, 3, 47, 1618, 8, 47, 1, 47, 3, 47, 1621, 8, 47, 1, 47, 3, 47, 1624, 8, 47, 1, 47, 3, 47, 1627, 8, 47, 1, 47, 3, 47, 1630, 8, 47, 1, 47, 3, 47, 1633, 8, 47, 1, 47, 3, 47, 1636, 8, 47, 3, 47, 1638, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1650, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1656, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1664, 8, 47, 3, 47, 1666, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1676, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1682, 8, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1697, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1714, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1719, 8, 56, 1, 57, 1, 57, 3, 57, 1723, 8, 57, 1, 57, 1, 57, 3, 57, 1727, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 3, 58, 1734, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1739, 8, 58, 10, 58, 12, 58, 1742, 9, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1747, 8, 58, 1, 59, 1, 59, 3, 59, 1751, 8, 59, 1, 59, 3, 59, 1754, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1759, 8, 59, 10, 59, 12, 59, 1762, 9, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1784, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1789, 8, 64, 1, 64, 1, 64, 3, 64, 1793, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 1801, 8, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1810, 8, 68, 1, 68, 1, 68, 3, 68, 1814, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1820, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1826, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1833, 8, 69, 1, 69, 3, 69, 1836, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1842, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1847, 8, 70, 10, 70, 12, 70, 1850, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1857, 8, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1864, 8, 73, 10, 73, 12, 73, 1867, 9, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1875, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1882, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1902, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1909, 8, 80, 3, 80, 1911, 8, 80, 1, 81, 1, 81, 1, 81, 5, 81, 1916, 8, 81, 10, 81, 12, 81, 1919, 9, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 1928, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1936, 8, 84, 1, 85, 1, 85, 3, 85, 1940, 8, 85, 1, 85, 1, 85, 3, 85, 1944, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1957, 8, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1966, 8, 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, 89, 1, 89, 3, 89, 1982, 8, 89, 1, 89, 1, 89, 3, 89, 1986, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1991, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1996, 8, 89, 1, 89, 3, 89, 1999, 8, 89, 1, 89, 3, 89, 2002, 8, 89, 1, 89, 1, 89, 3, 89, 2006, 8, 89, 1, 89, 3, 89, 2009, 8, 89, 1, 89, 3, 89, 2012, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2017, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2025, 8, 91, 1, 91, 1, 91, 3, 91, 2029, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2036, 8, 91, 1, 91, 3, 91, 2039, 8, 91, 1, 91, 3, 91, 2042, 8, 91, 1, 91, 3, 91, 2045, 8, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2057, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2063, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2089, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2097, 8, 99, 1, 99, 1, 99, 3, 99, 2101, 8, 99, 1, 99, 3, 99, 2104, 8, 99, 1, 99, 3, 99, 2107, 8, 99, 1, 99, 3, 99, 2110, 8, 99, 1, 99, 3, 99, 2113, 8, 99, 1, 99, 3, 99, 2116, 8, 99, 1, 99, 3, 99, 2119, 8, 99, 1, 99, 3, 99, 2122, 8, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2131, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2141, 8, 101, 1, 101, 3, 101, 2144, 8, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2164, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2170, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2176, 8, 105, 1, 105, 3, 105, 2179, 8, 105, 3, 105, 2181, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 3, 107, 2188, 8, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2195, 8, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2208, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2213, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 2220, 8, 112, 10, 112, 12, 112, 2223, 9, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2228, 8, 113, 10, 113, 12, 113, 2231, 9, 113, 1, 114, 1, 114, 1, 114, 5, 114, 2236, 8, 114, 10, 114, 12, 114, 2239, 9, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2248, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2261, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2274, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 2295, 8, 119, 1, 120, 1, 120, 3, 120, 2299, 8, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2314, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 2320, 8, 124, 1, 124, 3, 124, 2323, 8, 124, 1, 124, 3, 124, 2326, 8, 124, 1, 124, 3, 124, 2329, 8, 124, 1, 124, 3, 124, 2332, 8, 124, 1, 125, 1, 125, 3, 125, 2336, 8, 125, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 2348, 8, 128, 10, 128, 12, 128, 2351, 9, 128, 1, 128, 1, 128, 1, 128, 5, 128, 2356, 8, 128, 10, 128, 12, 128, 2359, 9, 128, 3, 128, 2361, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2376, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 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, 136, 3, 136, 2410, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2418, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2423, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2431, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2436, 8, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2441, 8, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 5, 138, 2449, 8, 138, 10, 138, 12, 138, 2452, 9, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2457, 8, 139, 10, 139, 12, 139, 2460, 9, 139, 1, 140, 1, 140, 1, 140, 5, 140, 2465, 8, 140, 10, 140, 12, 140, 2468, 9, 140, 1, 141, 1, 141, 1, 141, 5, 141, 2473, 8, 141, 10, 141, 12, 141, 2476, 9, 141, 1, 142, 1, 142, 1, 142, 5, 142, 2481, 8, 142, 10, 142, 12, 142, 2484, 9, 142, 1, 142, 3, 142, 2487, 8, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2497, 8, 144, 5, 144, 2499, 8, 144, 10, 144, 12, 144, 2502, 9, 144, 1, 145, 1, 145, 1, 145, 5, 145, 2507, 8, 145, 10, 145, 12, 145, 2510, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2518, 8, 147, 1, 147, 3, 147, 2521, 8, 147, 1, 148, 1, 148, 3, 148, 2525, 8, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 3, 150, 2532, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2538, 8, 152, 1, 152, 1, 152, 3, 152, 2542, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2548, 8, 153, 1, 154, 1, 154, 3, 154, 2552, 8, 154, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 3, 157, 2564, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2573, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2584, 8, 158, 1, 159, 1, 159, 3, 159, 2588, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 2593, 8, 160, 10, 160, 12, 160, 2596, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 5, 162, 2605, 8, 162, 10, 162, 12, 162, 2608, 9, 162, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 2614, 8, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 3, 167, 2623, 8, 167, 1, 167, 3, 167, 2626, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 2631, 8, 168, 10, 168, 12, 168, 2634, 9, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2639, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2645, 8, 171, 1, 171, 3, 171, 2648, 8, 171, 1, 171, 3, 171, 2651, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2657, 8, 172, 1, 173, 1, 173, 3, 173, 2661, 8, 173, 1, 174, 1, 174, 3, 174, 2665, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2670, 8, 175, 1, 175, 1, 175, 3, 175, 2674, 8, 175, 1, 176, 1, 176, 3, 176, 2678, 8, 176, 1, 177, 1, 177, 3, 177, 2682, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2690, 8, 177, 1, 178, 1, 178, 3, 178, 2694, 8, 178, 1, 178, 1, 178, 3, 178, 2698, 8, 178, 1, 179, 1, 179, 3, 179, 2702, 8, 179, 1, 180, 1, 180, 3, 180, 2706, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2714, 8, 180, 1, 181, 1, 181, 3, 181, 2718, 8, 181, 1, 181, 1, 181, 3, 181, 2722, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2730, 8, 182, 1, 183, 1, 183, 1, 183, 3, 183, 2735, 8, 183, 1, 184, 1, 184, 1, 184, 3, 184, 2740, 8, 184, 1, 185, 1, 185, 3, 185, 2744, 8, 185, 1, 186, 1, 186, 3, 186, 2748, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2755, 8, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 5, 189, 2762, 8, 189, 10, 189, 12, 189, 2765, 9, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2772, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2784, 8, 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, 191, 1, 191, 3, 191, 2802, 8, 191, 1, 191, 3, 191, 2805, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2811, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 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, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 3, 196, 2837, 8, 196, 1, 197, 3, 197, 2840, 8, 197, 1, 197, 1, 197, 1, 198, 1, 198, 3, 198, 2846, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2852, 8, 199, 10, 199, 12, 199, 2855, 9, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2862, 8, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 2873, 8, 201, 10, 201, 12, 201, 2876, 9, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2882, 8, 202, 1, 202, 3, 202, 2885, 8, 202, 1, 202, 3, 202, 2888, 8, 202, 1, 202, 3, 202, 2891, 8, 202, 1, 202, 3, 202, 2894, 8, 202, 1, 202, 3, 202, 2897, 8, 202, 1, 202, 3, 202, 2900, 8, 202, 1, 202, 3, 202, 2903, 8, 202, 1, 202, 3, 202, 2906, 8, 202, 1, 202, 3, 202, 2909, 8, 202, 1, 202, 3, 202, 2912, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2917, 8, 202, 1, 202, 3, 202, 2920, 8, 202, 1, 202, 3, 202, 2923, 8, 202, 1, 202, 3, 202, 2926, 8, 202, 1, 202, 3, 202, 2929, 8, 202, 1, 202, 3, 202, 2932, 8, 202, 1, 202, 3, 202, 2935, 8, 202, 1, 202, 3, 202, 2938, 8, 202, 1, 202, 3, 202, 2941, 8, 202, 1, 202, 3, 202, 2944, 8, 202, 1, 202, 3, 202, 2947, 8, 202, 3, 202, 2949, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2955, 8, 203, 1, 204, 1, 204, 3, 204, 2959, 8, 204, 1, 204, 3, 204, 2962, 8, 204, 1, 204, 3, 204, 2965, 8, 204, 1, 204, 3, 204, 2968, 8, 204, 1, 204, 3, 204, 2971, 8, 204, 1, 204, 3, 204, 2974, 8, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2981, 8, 204, 1, 205, 1, 205, 3, 205, 2985, 8, 205, 1, 205, 3, 205, 2988, 8, 205, 1, 205, 3, 205, 2991, 8, 205, 1, 205, 3, 205, 2994, 8, 205, 1, 205, 3, 205, 2997, 8, 205, 1, 205, 3, 205, 3000, 8, 205, 1, 206, 1, 206, 1, 206, 4, 206, 3005, 8, 206, 11, 206, 12, 206, 3006, 1, 207, 3, 207, 3010, 8, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3018, 8, 208, 1, 208, 1, 208, 3, 208, 3022, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3029, 8, 208, 3, 208, 3031, 8, 208, 1, 209, 3, 209, 3034, 8, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3039, 8, 209, 1, 209, 3, 209, 3042, 8, 209, 1, 209, 1, 209, 3, 209, 3046, 8, 209, 1, 210, 1, 210, 1, 210, 3, 210, 3051, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3057, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3063, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 3071, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 3077, 8, 214, 10, 214, 12, 214, 3080, 9, 214, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3086, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3092, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3099, 8, 217, 10, 217, 12, 217, 3102, 9, 217, 3, 217, 3104, 8, 217, 1, 218, 1, 218, 3, 218, 3108, 8, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 3, 222, 3121, 8, 222, 1, 223, 1, 223, 3, 223, 3125, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 4, 225, 3134, 8, 225, 11, 225, 12, 225, 3135, 1, 226, 1, 226, 1, 226, 4, 226, 3141, 8, 226, 11, 226, 12, 226, 3142, 1, 227, 1, 227, 3, 227, 3147, 8, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3152, 8, 227, 1, 227, 3, 227, 3155, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 5, 228, 3165, 8, 228, 10, 228, 12, 228, 3168, 9, 228, 1, 228, 3, 228, 3171, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3178, 8, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3183, 8, 229, 1, 229, 1, 229, 1, 229, 1, 230, 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, 3, 232, 3203, 8, 232, 1, 233, 1, 233, 1, 233, 4, 233, 3208, 8, 233, 11, 233, 12, 233, 3209, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3233, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3249, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3266, 8, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3272, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3289, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3302, 8, 242, 1, 243, 1, 243, 3, 243, 3306, 8, 243, 1, 244, 1, 244, 3, 244, 3310, 8, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 3, 246, 3317, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 3345, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3352, 8, 252, 1, 253, 1, 253, 1, 253, 3, 253, 3357, 8, 253, 1, 254, 1, 254, 1, 254, 3, 254, 3362, 8, 254, 1, 255, 1, 255, 1, 255, 3, 255, 3367, 8, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3372, 8, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 3, 257, 3380, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 3386, 8, 257, 1, 257, 1, 257, 3, 257, 3390, 8, 257, 1, 257, 3, 257, 3393, 8, 257, 1, 257, 3, 257, 3396, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3402, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3409, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 3419, 8, 260, 1, 261, 1, 261, 3, 261, 3423, 8, 261, 1, 261, 4, 261, 3426, 8, 261, 11, 261, 12, 261, 3427, 1, 262, 1, 262, 3, 262, 3432, 8, 262, 1, 263, 1, 263, 5, 263, 3436, 8, 263, 10, 263, 12, 263, 3439, 9, 263, 1, 264, 1, 264, 5, 264, 3443, 8, 264, 10, 264, 12, 264, 3446, 9, 264, 1, 265, 1, 265, 5, 265, 3450, 8, 265, 10, 265, 12, 265, 3453, 9, 265, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 3463, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3470, 8, 268, 10, 268, 12, 268, 3473, 9, 268, 1, 268, 3, 268, 3476, 8, 268, 1, 268, 3, 268, 3479, 8, 268, 1, 268, 3, 268, 3482, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3490, 8, 269, 1, 269, 3, 269, 3493, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 3501, 8, 270, 1, 270, 3, 270, 3504, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 3512, 8, 271, 1, 271, 1, 271, 3, 271, 3516, 8, 271, 1, 271, 1, 271, 1, 271, 3, 271, 3521, 8, 271, 1, 272, 1, 272, 3, 272, 3525, 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 3, 274, 3534, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 5, 277, 3548, 8, 277, 10, 277, 12, 277, 3551, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 3565, 8, 280, 3, 280, 3567, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 3583, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 3590, 8, 283, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 3, 288, 3607, 8, 288, 1, 288, 3, 288, 3610, 8, 288, 1, 288, 3, 288, 3613, 8, 288, 1, 288, 3, 288, 3616, 8, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 3622, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 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, 3, 291, 3645, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 3, 292, 3653, 8, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 3667, 8, 293, 1, 293, 3, 293, 3670, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 3675, 8, 294, 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, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 3701, 8, 298, 1, 299, 1, 299, 3, 299, 3705, 8, 299, 1, 299, 3, 299, 3708, 8, 299, 1, 299, 3, 299, 3711, 8, 299, 1, 299, 1, 299, 3, 299, 3715, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3720, 8, 299, 1, 299, 3, 299, 3723, 8, 299, 1, 299, 3, 299, 3726, 8, 299, 1, 299, 3, 299, 3729, 8, 299, 1, 299, 3, 299, 3732, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3738, 8, 299, 1, 299, 3, 299, 3741, 8, 299, 1, 299, 3, 299, 3744, 8, 299, 1, 299, 3, 299, 3747, 8, 299, 1, 299, 3, 299, 3750, 8, 299, 1, 299, 3, 299, 3753, 8, 299, 1, 299, 3, 299, 3756, 8, 299, 1, 299, 3, 299, 3759, 8, 299, 1, 299, 3, 299, 3762, 8, 299, 1, 299, 3, 299, 3765, 8, 299, 1, 299, 1, 299, 3, 299, 3769, 8, 299, 3, 299, 3771, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3777, 8, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3782, 8, 299, 1, 299, 3, 299, 3785, 8, 299, 1, 299, 3, 299, 3788, 8, 299, 1, 299, 3, 299, 3791, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 3797, 8, 299, 1, 299, 3, 299, 3800, 8, 299, 1, 299, 3, 299, 3803, 8, 299, 1, 299, 3, 299, 3806, 8, 299, 1, 299, 3, 299, 3809, 8, 299, 1, 299, 3, 299, 3812, 8, 299, 1, 299, 3, 299, 3815, 8, 299, 1, 299, 3, 299, 3818, 8, 299, 1, 299, 3, 299, 3821, 8, 299, 1, 299, 3, 299, 3824, 8, 299, 1, 299, 1, 299, 3, 299, 3828, 8, 299, 3, 299, 3830, 8, 299, 3, 299, 3832, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 3837, 8, 300, 1, 300, 1, 300, 3, 300, 3841, 8, 300, 1, 300, 3, 300, 3844, 8, 300, 1, 300, 3, 300, 3847, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 3852, 8, 300, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 3, 305, 3870, 8, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 5, 306, 3877, 8, 306, 10, 306, 12, 306, 3880, 9, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 3889, 8, 308, 10, 308, 12, 308, 3892, 9, 308, 1, 309, 1, 309, 1, 309, 5, 309, 3897, 8, 309, 10, 309, 12, 309, 3900, 9, 309, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 4, 311, 3909, 8, 311, 11, 311, 12, 311, 3910, 1, 311, 3, 311, 3914, 8, 311, 1, 312, 1, 312, 5, 312, 3918, 8, 312, 10, 312, 12, 312, 3921, 9, 312, 1, 312, 1, 312, 5, 312, 3925, 8, 312, 10, 312, 12, 312, 3928, 9, 312, 1, 312, 1, 312, 5, 312, 3932, 8, 312, 10, 312, 12, 312, 3935, 9, 312, 1, 312, 1, 312, 5, 312, 3939, 8, 312, 10, 312, 12, 312, 3942, 9, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 3948, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 3957, 8, 313, 5, 313, 3959, 8, 313, 10, 313, 12, 313, 3962, 9, 313, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 3968, 8, 314, 1, 314, 5, 314, 3971, 8, 314, 10, 314, 12, 314, 3974, 9, 314, 1, 315, 3, 315, 3977, 8, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 3993, 8, 318, 1, 318, 1, 318, 3, 318, 3997, 8, 318, 3, 318, 3999, 8, 318, 1, 318, 3, 318, 4002, 8, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4013, 8, 319, 10, 319, 12, 319, 4016, 9, 319, 3, 319, 4018, 8, 319, 1, 319, 3, 319, 4021, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4031, 8, 319, 10, 319, 12, 319, 4034, 9, 319, 3, 319, 4036, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 4043, 8, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 5, 319, 4050, 8, 319, 10, 319, 12, 319, 4053, 9, 319, 1, 319, 1, 319, 3, 319, 4057, 8, 319, 3, 319, 4059, 8, 319, 3, 319, 4061, 8, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4076, 8, 321, 10, 321, 12, 321, 4079, 9, 321, 3, 321, 4081, 8, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 4090, 8, 322, 1, 322, 1, 322, 1, 323, 1, 323, 3, 323, 4096, 8, 323, 1, 324, 1, 324, 3, 324, 4100, 8, 324, 1, 324, 3, 324, 4103, 8, 324, 1, 324, 3, 324, 4106, 8, 324, 1, 324, 3, 324, 4109, 8, 324, 1, 324, 3, 324, 4112, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4124, 8, 325, 1, 326, 1, 326, 3, 326, 4128, 8, 326, 1, 326, 3, 326, 4131, 8, 326, 1, 326, 3, 326, 4134, 8, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 4142, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4149, 8, 330, 1, 330, 3, 330, 4152, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, 4159, 8, 331, 1, 331, 3, 331, 4162, 8, 331, 1, 332, 1, 332, 1, 332, 3, 332, 4167, 8, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 3, 333, 4174, 8, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4182, 8, 334, 1, 334, 1, 334, 1, 335, 1, 335, 3, 335, 4188, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4193, 8, 335, 1, 335, 1, 335, 3, 335, 4197, 8, 335, 1, 336, 1, 336, 1, 336, 3, 336, 4202, 8, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 4209, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 4221, 8, 337, 10, 337, 12, 337, 4224, 9, 337, 3, 337, 4226, 8, 337, 1, 337, 1, 337, 3, 337, 4230, 8, 337, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 4245, 8, 342, 10, 342, 12, 342, 4248, 9, 342, 1, 342, 1, 342, 1, 342, 5, 342, 4253, 8, 342, 10, 342, 12, 342, 4256, 9, 342, 3, 342, 4258, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 4271, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 5, 345, 4278, 8, 345, 10, 345, 12, 345, 4281, 9, 345, 3, 345, 4283, 8, 345, 1, 345, 1, 345, 1, 346, 1, 346, 3, 346, 4289, 8, 346, 1, 346, 3, 346, 4292, 8, 346, 1, 346, 1, 346, 1, 346, 3, 346, 4297, 8, 346, 1, 346, 3, 346, 4300, 8, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 5, 348, 4307, 8, 348, 10, 348, 12, 348, 4310, 9, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 4323, 8, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 4329, 8, 349, 3, 349, 4331, 8, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 4339, 8, 350, 1, 350, 3, 350, 4342, 8, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 5, 350, 4350, 8, 350, 10, 350, 12, 350, 4353, 9, 350, 1, 350, 1, 350, 3, 350, 4357, 8, 350, 3, 350, 4359, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4371, 8, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 4377, 8, 351, 3, 351, 4379, 8, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 3, 352, 4386, 8, 352, 1, 353, 1, 353, 1, 353, 5, 353, 4391, 8, 353, 10, 353, 12, 353, 4394, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 4400, 8, 354, 10, 354, 12, 354, 4403, 9, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 3, 356, 4412, 8, 356, 1, 356, 3, 356, 4415, 8, 356, 1, 356, 3, 356, 4418, 8, 356, 1, 356, 3, 356, 4421, 8, 356, 1, 357, 1, 357, 3, 357, 4425, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 4434, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 4443, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 4451, 8, 360, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 4457, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 4467, 8, 363, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 4474, 8, 365, 1, 365, 1, 365, 1, 365, 1, 365, 5, 365, 4480, 8, 365, 10, 365, 12, 365, 4483, 9, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 4492, 8, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 5, 366, 4500, 8, 366, 10, 366, 12, 366, 4503, 9, 366, 1, 366, 1, 366, 3, 366, 4507, 8, 366, 1, 367, 1, 367, 3, 367, 4511, 8, 367, 1, 368, 1, 368, 3, 368, 4515, 8, 368, 1, 368, 1, 368, 5, 368, 4519, 8, 368, 10, 368, 12, 368, 4522, 9, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 4542, 8, 374, 1, 375, 1, 375, 4, 375, 4546, 8, 375, 11, 375, 12, 375, 4547, 1, 376, 1, 376, 3, 376, 4552, 8, 376, 1, 377, 1, 377, 3, 377, 4556, 8, 377, 1, 377, 3, 377, 4559, 8, 377, 1, 377, 1, 377, 5, 377, 4563, 8, 377, 10, 377, 12, 377, 4566, 9, 377, 1, 378, 1, 378, 3, 378, 4570, 8, 378, 1, 378, 3, 378, 4573, 8, 378, 1, 379, 1, 379, 3, 379, 4577, 8, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 4583, 8, 380, 10, 380, 12, 380, 4586, 9, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 5, 381, 4593, 8, 381, 10, 381, 12, 381, 4596, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 5, 382, 4603, 8, 382, 10, 382, 12, 382, 4606, 9, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 4624, 8, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 4631, 8, 387, 1, 387, 3, 387, 4634, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4645, 8, 388, 1, 388, 1, 388, 1, 388, 5, 388, 4650, 8, 388, 10, 388, 12, 388, 4653, 9, 388, 3, 388, 4655, 8, 388, 3, 388, 4657, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4668, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 4678, 8, 388, 3, 388, 4680, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 4686, 8, 389, 1, 390, 1, 390, 1, 391, 1, 391, 3, 391, 4692, 8, 391, 1, 392, 1, 392, 3, 392, 4696, 8, 392, 1, 393, 1, 393, 1, 394, 1, 394, 3, 394, 4702, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 4711, 8, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 4, 396, 4722, 8, 396, 11, 396, 12, 396, 4723, 1, 396, 1, 396, 3, 396, 4728, 8, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 4, 397, 4738, 8, 397, 11, 397, 12, 397, 4739, 1, 397, 1, 397, 3, 397, 4744, 8, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 4753, 8, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 4765, 8, 399, 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, 3, 401, 4782, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 4797, 8, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 405, 1, 405, 4, 405, 4805, 8, 405, 11, 405, 12, 405, 4806, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 3, 407, 4815, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 4820, 8, 408, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 4841, 8, 412, 1, 412, 1, 412, 3, 412, 4845, 8, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 4861, 8, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 4876, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 5, 416, 4885, 8, 416, 10, 416, 12, 416, 4888, 9, 416, 1, 417, 1, 417, 1, 418, 5, 418, 4893, 8, 418, 10, 418, 12, 418, 4896, 9, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 5, 420, 4906, 8, 420, 10, 420, 12, 420, 4909, 9, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 5, 422, 4917, 8, 422, 10, 422, 12, 422, 4920, 9, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 4928, 8, 424, 10, 424, 12, 424, 4931, 9, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 5, 426, 4939, 8, 426, 10, 426, 12, 426, 4942, 9, 426, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 5, 428, 4950, 8, 428, 10, 428, 12, 428, 4953, 9, 428, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 4961, 8, 430, 10, 430, 12, 430, 4964, 9, 430, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 3, 432, 4973, 8, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 3, 434, 4982, 8, 434, 1, 435, 1, 435, 3, 435, 4986, 8, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 4994, 8, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 5007, 8, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 5017, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 3, 441, 5023, 8, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 5036, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 5, 444, 5045, 8, 444, 10, 444, 12, 444, 5048, 9, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 5062, 8, 445, 1, 446, 1, 446, 1, 446, 3, 446, 5067, 8, 446, 1, 447, 1, 447, 1, 448, 5, 448, 5072, 8, 448, 10, 448, 12, 448, 5075, 9, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 5, 450, 5085, 8, 450, 10, 450, 12, 450, 5088, 9, 450, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 5, 452, 5096, 8, 452, 10, 452, 12, 452, 5099, 9, 452, 1, 453, 1, 453, 1, 454, 1, 454, 1, 455, 1, 455, 3, 455, 5107, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 5, 456, 5114, 8, 456, 10, 456, 12, 456, 5117, 9, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 3, 457, 5124, 8, 457, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 5130, 8, 458, 10, 458, 12, 458, 5133, 9, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 3, 460, 5143, 8, 460, 1, 461, 1, 461, 1, 462, 1, 462, 1, 463, 1, 463, 3, 463, 5151, 8, 463, 1, 464, 1, 464, 1, 464, 3, 464, 5156, 8, 464, 1, 465, 1, 465, 1, 466, 1, 466, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 5, 469, 5170, 8, 469, 10, 469, 12, 469, 5173, 9, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 3, 470, 5180, 8, 470, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 5, 472, 5187, 8, 472, 10, 472, 12, 472, 5190, 9, 472, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 5, 476, 5207, 8, 476, 10, 476, 12, 476, 5210, 9, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 3, 477, 5226, 8, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 3, 478, 5235, 8, 478, 1, 479, 1, 479, 1, 479, 5, 479, 5240, 8, 479, 10, 479, 12, 479, 5243, 9, 479, 1, 480, 1, 480, 1, 480, 3, 480, 5248, 8, 480, 1, 481, 1, 481, 1, 481, 5, 481, 5253, 8, 481, 10, 481, 12, 481, 5256, 9, 481, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 5262, 8, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 3, 482, 5271, 8, 482, 3, 482, 5273, 8, 482, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 3, 484, 5280, 8, 484, 1, 485, 1, 485, 1, 486, 1, 486, 1, 487, 1, 487, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 1, 496, 3, 496, 5319, 8, 496, 1, 496, 1, 496, 3, 496, 5323, 8, 496, 3, 496, 5325, 8, 496, 1, 497, 1, 497, 3, 497, 5329, 8, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 1, 498, 3, 498, 5346, 8, 498, 1, 499, 1, 499, 1, 499, 1, 499, 3, 499, 5352, 8, 499, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 5, 500, 5359, 8, 500, 10, 500, 12, 500, 5362, 9, 500, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 503, 5, 503, 5372, 8, 503, 10, 503, 12, 503, 5375, 9, 503, 1, 504, 1, 504, 1, 504, 5, 504, 5380, 8, 504, 10, 504, 12, 504, 5383, 9, 504, 1, 505, 1, 505, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 5397, 8, 508, 1, 509, 1, 509, 1, 509, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 1, 511, 3, 511, 5426, 8, 511, 1, 511, 1, 511, 1, 511, 3, 511, 5431, 8, 511, 3, 511, 5433, 8, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 1, 513, 3, 513, 5453, 8, 513, 1, 514, 1, 514, 1, 514, 5, 514, 5458, 8, 514, 10, 514, 12, 514, 5461, 9, 514, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 3, 516, 5483, 8, 516, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5500, 8, 518, 1, 518, 1, 518, 1, 518, 3, 518, 5505, 8, 518, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 1, 519, 3, 519, 5516, 8, 519, 1, 519, 1, 519, 1, 519, 3, 519, 5521, 8, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 0, 0, 521, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 0, 56, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 225, 225, 391, 391, 2, 0, 189, 189, 196, 196, 2, 0, 42, 42, 315, 315, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 3, 0, 184, 184, 270, 270, 286, 286, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 2, 0, 125, 125, 350, 350, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 4, 0, 199, 199, 242, 242, 300, 300, 322, 322, 2, 0, 213, 213, 431, 432, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 2, 0, 4, 4, 101, 101, 3, 0, 14, 14, 144, 144, 369, 369, 5931, 0, 1045, 1, 0, 0, 0, 2, 1052, 1, 0, 0, 0, 4, 1057, 1, 0, 0, 0, 6, 1091, 1, 0, 0, 0, 8, 1093, 1, 0, 0, 0, 10, 1095, 1, 0, 0, 0, 12, 1111, 1, 0, 0, 0, 14, 1113, 1, 0, 0, 0, 16, 1129, 1, 0, 0, 0, 18, 1132, 1, 0, 0, 0, 20, 1141, 1, 0, 0, 0, 22, 1149, 1, 0, 0, 0, 24, 1162, 1, 0, 0, 0, 26, 1173, 1, 0, 0, 0, 28, 1178, 1, 0, 0, 0, 30, 1189, 1, 0, 0, 0, 32, 1193, 1, 0, 0, 0, 34, 1201, 1, 0, 0, 0, 36, 1206, 1, 0, 0, 0, 38, 1260, 1, 0, 0, 0, 40, 1262, 1, 0, 0, 0, 42, 1265, 1, 0, 0, 0, 44, 1267, 1, 0, 0, 0, 46, 1271, 1, 0, 0, 0, 48, 1273, 1, 0, 0, 0, 50, 1276, 1, 0, 0, 0, 52, 1279, 1, 0, 0, 0, 54, 1283, 1, 0, 0, 0, 56, 1325, 1, 0, 0, 0, 58, 1327, 1, 0, 0, 0, 60, 1330, 1, 0, 0, 0, 62, 1333, 1, 0, 0, 0, 64, 1337, 1, 0, 0, 0, 66, 1345, 1, 0, 0, 0, 68, 1348, 1, 0, 0, 0, 70, 1351, 1, 0, 0, 0, 72, 1360, 1, 0, 0, 0, 74, 1363, 1, 0, 0, 0, 76, 1378, 1, 0, 0, 0, 78, 1390, 1, 0, 0, 0, 80, 1395, 1, 0, 0, 0, 82, 1415, 1, 0, 0, 0, 84, 1419, 1, 0, 0, 0, 86, 1426, 1, 0, 0, 0, 88, 1451, 1, 0, 0, 0, 90, 1468, 1, 0, 0, 0, 92, 1470, 1, 0, 0, 0, 94, 1665, 1, 0, 0, 0, 96, 1675, 1, 0, 0, 0, 98, 1677, 1, 0, 0, 0, 100, 1685, 1, 0, 0, 0, 102, 1690, 1, 0, 0, 0, 104, 1692, 1, 0, 0, 0, 106, 1698, 1, 0, 0, 0, 108, 1702, 1, 0, 0, 0, 110, 1706, 1, 0, 0, 0, 112, 1710, 1, 0, 0, 0, 114, 1720, 1, 0, 0, 0, 116, 1731, 1, 0, 0, 0, 118, 1748, 1, 0, 0, 0, 120, 1766, 1, 0, 0, 0, 122, 1771, 1, 0, 0, 0, 124, 1774, 1, 0, 0, 0, 126, 1778, 1, 0, 0, 0, 128, 1785, 1, 0, 0, 0, 130, 1794, 1, 0, 0, 0, 132, 1800, 1, 0, 0, 0, 134, 1802, 1, 0, 0, 0, 136, 1819, 1, 0, 0, 0, 138, 1841, 1, 0, 0, 0, 140, 1843, 1, 0, 0, 0, 142, 1851, 1, 0, 0, 0, 144, 1858, 1, 0, 0, 0, 146, 1860, 1, 0, 0, 0, 148, 1874, 1, 0, 0, 0, 150, 1881, 1, 0, 0, 0, 152, 1883, 1, 0, 0, 0, 154, 1887, 1, 0, 0, 0, 156, 1891, 1, 0, 0, 0, 158, 1895, 1, 0, 0, 0, 160, 1899, 1, 0, 0, 0, 162, 1912, 1, 0, 0, 0, 164, 1920, 1, 0, 0, 0, 166, 1923, 1, 0, 0, 0, 168, 1925, 1, 0, 0, 0, 170, 1937, 1, 0, 0, 0, 172, 1947, 1, 0, 0, 0, 174, 1950, 1, 0, 0, 0, 176, 1961, 1, 0, 0, 0, 178, 1969, 1, 0, 0, 0, 180, 2013, 1, 0, 0, 0, 182, 2022, 1, 0, 0, 0, 184, 2049, 1, 0, 0, 0, 186, 2062, 1, 0, 0, 0, 188, 2064, 1, 0, 0, 0, 190, 2070, 1, 0, 0, 0, 192, 2073, 1, 0, 0, 0, 194, 2079, 1, 0, 0, 0, 196, 2085, 1, 0, 0, 0, 198, 2092, 1, 0, 0, 0, 200, 2126, 1, 0, 0, 0, 202, 2134, 1, 0, 0, 0, 204, 2147, 1, 0, 0, 0, 206, 2152, 1, 0, 0, 0, 208, 2163, 1, 0, 0, 0, 210, 2180, 1, 0, 0, 0, 212, 2182, 1, 0, 0, 0, 214, 2187, 1, 0, 0, 0, 216, 2194, 1, 0, 0, 0, 218, 2196, 1, 0, 0, 0, 220, 2199, 1, 0, 0, 0, 222, 2202, 1, 0, 0, 0, 224, 2216, 1, 0, 0, 0, 226, 2224, 1, 0, 0, 0, 228, 2232, 1, 0, 0, 0, 230, 2240, 1, 0, 0, 0, 232, 2260, 1, 0, 0, 0, 234, 2262, 1, 0, 0, 0, 236, 2279, 1, 0, 0, 0, 238, 2284, 1, 0, 0, 0, 240, 2298, 1, 0, 0, 0, 242, 2300, 1, 0, 0, 0, 244, 2303, 1, 0, 0, 0, 246, 2306, 1, 0, 0, 0, 248, 2315, 1, 0, 0, 0, 250, 2335, 1, 0, 0, 0, 252, 2337, 1, 0, 0, 0, 254, 2340, 1, 0, 0, 0, 256, 2360, 1, 0, 0, 0, 258, 2362, 1, 0, 0, 0, 260, 2366, 1, 0, 0, 0, 262, 2368, 1, 0, 0, 0, 264, 2377, 1, 0, 0, 0, 266, 2383, 1, 0, 0, 0, 268, 2389, 1, 0, 0, 0, 270, 2394, 1, 0, 0, 0, 272, 2440, 1, 0, 0, 0, 274, 2442, 1, 0, 0, 0, 276, 2445, 1, 0, 0, 0, 278, 2453, 1, 0, 0, 0, 280, 2461, 1, 0, 0, 0, 282, 2469, 1, 0, 0, 0, 284, 2486, 1, 0, 0, 0, 286, 2488, 1, 0, 0, 0, 288, 2490, 1, 0, 0, 0, 290, 2503, 1, 0, 0, 0, 292, 2511, 1, 0, 0, 0, 294, 2520, 1, 0, 0, 0, 296, 2524, 1, 0, 0, 0, 298, 2526, 1, 0, 0, 0, 300, 2531, 1, 0, 0, 0, 302, 2533, 1, 0, 0, 0, 304, 2537, 1, 0, 0, 0, 306, 2543, 1, 0, 0, 0, 308, 2551, 1, 0, 0, 0, 310, 2553, 1, 0, 0, 0, 312, 2556, 1, 0, 0, 0, 314, 2563, 1, 0, 0, 0, 316, 2574, 1, 0, 0, 0, 318, 2587, 1, 0, 0, 0, 320, 2589, 1, 0, 0, 0, 322, 2597, 1, 0, 0, 0, 324, 2601, 1, 0, 0, 0, 326, 2609, 1, 0, 0, 0, 328, 2613, 1, 0, 0, 0, 330, 2615, 1, 0, 0, 0, 332, 2617, 1, 0, 0, 0, 334, 2620, 1, 0, 0, 0, 336, 2627, 1, 0, 0, 0, 338, 2635, 1, 0, 0, 0, 340, 2640, 1, 0, 0, 0, 342, 2644, 1, 0, 0, 0, 344, 2652, 1, 0, 0, 0, 346, 2660, 1, 0, 0, 0, 348, 2664, 1, 0, 0, 0, 350, 2666, 1, 0, 0, 0, 352, 2677, 1, 0, 0, 0, 354, 2681, 1, 0, 0, 0, 356, 2693, 1, 0, 0, 0, 358, 2701, 1, 0, 0, 0, 360, 2705, 1, 0, 0, 0, 362, 2717, 1, 0, 0, 0, 364, 2729, 1, 0, 0, 0, 366, 2734, 1, 0, 0, 0, 368, 2739, 1, 0, 0, 0, 370, 2741, 1, 0, 0, 0, 372, 2745, 1, 0, 0, 0, 374, 2749, 1, 0, 0, 0, 376, 2756, 1, 0, 0, 0, 378, 2758, 1, 0, 0, 0, 380, 2771, 1, 0, 0, 0, 382, 2810, 1, 0, 0, 0, 384, 2812, 1, 0, 0, 0, 386, 2817, 1, 0, 0, 0, 388, 2822, 1, 0, 0, 0, 390, 2829, 1, 0, 0, 0, 392, 2834, 1, 0, 0, 0, 394, 2839, 1, 0, 0, 0, 396, 2845, 1, 0, 0, 0, 398, 2847, 1, 0, 0, 0, 400, 2856, 1, 0, 0, 0, 402, 2868, 1, 0, 0, 0, 404, 2948, 1, 0, 0, 0, 406, 2954, 1, 0, 0, 0, 408, 2980, 1, 0, 0, 0, 410, 2982, 1, 0, 0, 0, 412, 3004, 1, 0, 0, 0, 414, 3009, 1, 0, 0, 0, 416, 3013, 1, 0, 0, 0, 418, 3045, 1, 0, 0, 0, 420, 3047, 1, 0, 0, 0, 422, 3058, 1, 0, 0, 0, 424, 3064, 1, 0, 0, 0, 426, 3070, 1, 0, 0, 0, 428, 3072, 1, 0, 0, 0, 430, 3081, 1, 0, 0, 0, 432, 3091, 1, 0, 0, 0, 434, 3093, 1, 0, 0, 0, 436, 3107, 1, 0, 0, 0, 438, 3109, 1, 0, 0, 0, 440, 3112, 1, 0, 0, 0, 442, 3116, 1, 0, 0, 0, 444, 3118, 1, 0, 0, 0, 446, 3122, 1, 0, 0, 0, 448, 3126, 1, 0, 0, 0, 450, 3130, 1, 0, 0, 0, 452, 3137, 1, 0, 0, 0, 454, 3144, 1, 0, 0, 0, 456, 3166, 1, 0, 0, 0, 458, 3172, 1, 0, 0, 0, 460, 3187, 1, 0, 0, 0, 462, 3194, 1, 0, 0, 0, 464, 3202, 1, 0, 0, 0, 466, 3204, 1, 0, 0, 0, 468, 3211, 1, 0, 0, 0, 470, 3215, 1, 0, 0, 0, 472, 3218, 1, 0, 0, 0, 474, 3221, 1, 0, 0, 0, 476, 3224, 1, 0, 0, 0, 478, 3271, 1, 0, 0, 0, 480, 3288, 1, 0, 0, 0, 482, 3290, 1, 0, 0, 0, 484, 3301, 1, 0, 0, 0, 486, 3305, 1, 0, 0, 0, 488, 3309, 1, 0, 0, 0, 490, 3311, 1, 0, 0, 0, 492, 3316, 1, 0, 0, 0, 494, 3318, 1, 0, 0, 0, 496, 3323, 1, 0, 0, 0, 498, 3328, 1, 0, 0, 0, 500, 3333, 1, 0, 0, 0, 502, 3338, 1, 0, 0, 0, 504, 3344, 1, 0, 0, 0, 506, 3353, 1, 0, 0, 0, 508, 3358, 1, 0, 0, 0, 510, 3371, 1, 0, 0, 0, 512, 3373, 1, 0, 0, 0, 514, 3377, 1, 0, 0, 0, 516, 3397, 1, 0, 0, 0, 518, 3410, 1, 0, 0, 0, 520, 3418, 1, 0, 0, 0, 522, 3420, 1, 0, 0, 0, 524, 3429, 1, 0, 0, 0, 526, 3433, 1, 0, 0, 0, 528, 3440, 1, 0, 0, 0, 530, 3447, 1, 0, 0, 0, 532, 3454, 1, 0, 0, 0, 534, 3457, 1, 0, 0, 0, 536, 3460, 1, 0, 0, 0, 538, 3492, 1, 0, 0, 0, 540, 3503, 1, 0, 0, 0, 542, 3520, 1, 0, 0, 0, 544, 3522, 1, 0, 0, 0, 546, 3526, 1, 0, 0, 0, 548, 3533, 1, 0, 0, 0, 550, 3535, 1, 0, 0, 0, 552, 3540, 1, 0, 0, 0, 554, 3544, 1, 0, 0, 0, 556, 3552, 1, 0, 0, 0, 558, 3556, 1, 0, 0, 0, 560, 3566, 1, 0, 0, 0, 562, 3568, 1, 0, 0, 0, 564, 3574, 1, 0, 0, 0, 566, 3578, 1, 0, 0, 0, 568, 3591, 1, 0, 0, 0, 570, 3593, 1, 0, 0, 0, 572, 3597, 1, 0, 0, 0, 574, 3600, 1, 0, 0, 0, 576, 3603, 1, 0, 0, 0, 578, 3623, 1, 0, 0, 0, 580, 3627, 1, 0, 0, 0, 582, 3634, 1, 0, 0, 0, 584, 3648, 1, 0, 0, 0, 586, 3669, 1, 0, 0, 0, 588, 3674, 1, 0, 0, 0, 590, 3676, 1, 0, 0, 0, 592, 3681, 1, 0, 0, 0, 594, 3686, 1, 0, 0, 0, 596, 3700, 1, 0, 0, 0, 598, 3831, 1, 0, 0, 0, 600, 3833, 1, 0, 0, 0, 602, 3853, 1, 0, 0, 0, 604, 3856, 1, 0, 0, 0, 606, 3859, 1, 0, 0, 0, 608, 3862, 1, 0, 0, 0, 610, 3866, 1, 0, 0, 0, 612, 3878, 1, 0, 0, 0, 614, 3883, 1, 0, 0, 0, 616, 3885, 1, 0, 0, 0, 618, 3893, 1, 0, 0, 0, 620, 3901, 1, 0, 0, 0, 622, 3913, 1, 0, 0, 0, 624, 3947, 1, 0, 0, 0, 626, 3949, 1, 0, 0, 0, 628, 3967, 1, 0, 0, 0, 630, 3976, 1, 0, 0, 0, 632, 3981, 1, 0, 0, 0, 634, 3985, 1, 0, 0, 0, 636, 4001, 1, 0, 0, 0, 638, 4060, 1, 0, 0, 0, 640, 4062, 1, 0, 0, 0, 642, 4064, 1, 0, 0, 0, 644, 4084, 1, 0, 0, 0, 646, 4095, 1, 0, 0, 0, 648, 4097, 1, 0, 0, 0, 650, 4113, 1, 0, 0, 0, 652, 4125, 1, 0, 0, 0, 654, 4135, 1, 0, 0, 0, 656, 4137, 1, 0, 0, 0, 658, 4141, 1, 0, 0, 0, 660, 4151, 1, 0, 0, 0, 662, 4161, 1, 0, 0, 0, 664, 4166, 1, 0, 0, 0, 666, 4173, 1, 0, 0, 0, 668, 4177, 1, 0, 0, 0, 670, 4196, 1, 0, 0, 0, 672, 4201, 1, 0, 0, 0, 674, 4203, 1, 0, 0, 0, 676, 4231, 1, 0, 0, 0, 678, 4234, 1, 0, 0, 0, 680, 4236, 1, 0, 0, 0, 682, 4238, 1, 0, 0, 0, 684, 4257, 1, 0, 0, 0, 686, 4259, 1, 0, 0, 0, 688, 4261, 1, 0, 0, 0, 690, 4265, 1, 0, 0, 0, 692, 4299, 1, 0, 0, 0, 694, 4301, 1, 0, 0, 0, 696, 4303, 1, 0, 0, 0, 698, 4311, 1, 0, 0, 0, 700, 4358, 1, 0, 0, 0, 702, 4360, 1, 0, 0, 0, 704, 4385, 1, 0, 0, 0, 706, 4387, 1, 0, 0, 0, 708, 4395, 1, 0, 0, 0, 710, 4404, 1, 0, 0, 0, 712, 4420, 1, 0, 0, 0, 714, 4424, 1, 0, 0, 0, 716, 4426, 1, 0, 0, 0, 718, 4435, 1, 0, 0, 0, 720, 4450, 1, 0, 0, 0, 722, 4456, 1, 0, 0, 0, 724, 4458, 1, 0, 0, 0, 726, 4466, 1, 0, 0, 0, 728, 4468, 1, 0, 0, 0, 730, 4473, 1, 0, 0, 0, 732, 4486, 1, 0, 0, 0, 734, 4510, 1, 0, 0, 0, 736, 4512, 1, 0, 0, 0, 738, 4525, 1, 0, 0, 0, 740, 4527, 1, 0, 0, 0, 742, 4530, 1, 0, 0, 0, 744, 4533, 1, 0, 0, 0, 746, 4535, 1, 0, 0, 0, 748, 4539, 1, 0, 0, 0, 750, 4545, 1, 0, 0, 0, 752, 4551, 1, 0, 0, 0, 754, 4553, 1, 0, 0, 0, 756, 4567, 1, 0, 0, 0, 758, 4576, 1, 0, 0, 0, 760, 4578, 1, 0, 0, 0, 762, 4589, 1, 0, 0, 0, 764, 4597, 1, 0, 0, 0, 766, 4607, 1, 0, 0, 0, 768, 4611, 1, 0, 0, 0, 770, 4615, 1, 0, 0, 0, 772, 4619, 1, 0, 0, 0, 774, 4625, 1, 0, 0, 0, 776, 4679, 1, 0, 0, 0, 778, 4685, 1, 0, 0, 0, 780, 4687, 1, 0, 0, 0, 782, 4691, 1, 0, 0, 0, 784, 4695, 1, 0, 0, 0, 786, 4697, 1, 0, 0, 0, 788, 4701, 1, 0, 0, 0, 790, 4703, 1, 0, 0, 0, 792, 4714, 1, 0, 0, 0, 794, 4731, 1, 0, 0, 0, 796, 4747, 1, 0, 0, 0, 798, 4764, 1, 0, 0, 0, 800, 4766, 1, 0, 0, 0, 802, 4781, 1, 0, 0, 0, 804, 4796, 1, 0, 0, 0, 806, 4798, 1, 0, 0, 0, 808, 4800, 1, 0, 0, 0, 810, 4802, 1, 0, 0, 0, 812, 4808, 1, 0, 0, 0, 814, 4814, 1, 0, 0, 0, 816, 4819, 1, 0, 0, 0, 818, 4821, 1, 0, 0, 0, 820, 4824, 1, 0, 0, 0, 822, 4826, 1, 0, 0, 0, 824, 4844, 1, 0, 0, 0, 826, 4860, 1, 0, 0, 0, 828, 4862, 1, 0, 0, 0, 830, 4875, 1, 0, 0, 0, 832, 4877, 1, 0, 0, 0, 834, 4889, 1, 0, 0, 0, 836, 4894, 1, 0, 0, 0, 838, 4899, 1, 0, 0, 0, 840, 4901, 1, 0, 0, 0, 842, 4910, 1, 0, 0, 0, 844, 4912, 1, 0, 0, 0, 846, 4921, 1, 0, 0, 0, 848, 4923, 1, 0, 0, 0, 850, 4932, 1, 0, 0, 0, 852, 4934, 1, 0, 0, 0, 854, 4943, 1, 0, 0, 0, 856, 4945, 1, 0, 0, 0, 858, 4954, 1, 0, 0, 0, 860, 4956, 1, 0, 0, 0, 862, 4965, 1, 0, 0, 0, 864, 4972, 1, 0, 0, 0, 866, 4974, 1, 0, 0, 0, 868, 4981, 1, 0, 0, 0, 870, 4983, 1, 0, 0, 0, 872, 4993, 1, 0, 0, 0, 874, 5006, 1, 0, 0, 0, 876, 5008, 1, 0, 0, 0, 878, 5012, 1, 0, 0, 0, 880, 5016, 1, 0, 0, 0, 882, 5022, 1, 0, 0, 0, 884, 5024, 1, 0, 0, 0, 886, 5035, 1, 0, 0, 0, 888, 5037, 1, 0, 0, 0, 890, 5061, 1, 0, 0, 0, 892, 5063, 1, 0, 0, 0, 894, 5068, 1, 0, 0, 0, 896, 5073, 1, 0, 0, 0, 898, 5078, 1, 0, 0, 0, 900, 5080, 1, 0, 0, 0, 902, 5089, 1, 0, 0, 0, 904, 5091, 1, 0, 0, 0, 906, 5100, 1, 0, 0, 0, 908, 5102, 1, 0, 0, 0, 910, 5104, 1, 0, 0, 0, 912, 5108, 1, 0, 0, 0, 914, 5120, 1, 0, 0, 0, 916, 5125, 1, 0, 0, 0, 918, 5136, 1, 0, 0, 0, 920, 5142, 1, 0, 0, 0, 922, 5144, 1, 0, 0, 0, 924, 5146, 1, 0, 0, 0, 926, 5150, 1, 0, 0, 0, 928, 5152, 1, 0, 0, 0, 930, 5157, 1, 0, 0, 0, 932, 5159, 1, 0, 0, 0, 934, 5161, 1, 0, 0, 0, 936, 5163, 1, 0, 0, 0, 938, 5166, 1, 0, 0, 0, 940, 5174, 1, 0, 0, 0, 942, 5181, 1, 0, 0, 0, 944, 5183, 1, 0, 0, 0, 946, 5191, 1, 0, 0, 0, 948, 5193, 1, 0, 0, 0, 950, 5198, 1, 0, 0, 0, 952, 5203, 1, 0, 0, 0, 954, 5225, 1, 0, 0, 0, 956, 5234, 1, 0, 0, 0, 958, 5236, 1, 0, 0, 0, 960, 5247, 1, 0, 0, 0, 962, 5249, 1, 0, 0, 0, 964, 5257, 1, 0, 0, 0, 966, 5274, 1, 0, 0, 0, 968, 5277, 1, 0, 0, 0, 970, 5281, 1, 0, 0, 0, 972, 5283, 1, 0, 0, 0, 974, 5285, 1, 0, 0, 0, 976, 5287, 1, 0, 0, 0, 978, 5289, 1, 0, 0, 0, 980, 5291, 1, 0, 0, 0, 982, 5293, 1, 0, 0, 0, 984, 5295, 1, 0, 0, 0, 986, 5297, 1, 0, 0, 0, 988, 5299, 1, 0, 0, 0, 990, 5301, 1, 0, 0, 0, 992, 5303, 1, 0, 0, 0, 994, 5328, 1, 0, 0, 0, 996, 5333, 1, 0, 0, 0, 998, 5347, 1, 0, 0, 0, 1000, 5355, 1, 0, 0, 0, 1002, 5363, 1, 0, 0, 0, 1004, 5365, 1, 0, 0, 0, 1006, 5368, 1, 0, 0, 0, 1008, 5376, 1, 0, 0, 0, 1010, 5384, 1, 0, 0, 0, 1012, 5388, 1, 0, 0, 0, 1014, 5390, 1, 0, 0, 0, 1016, 5396, 1, 0, 0, 0, 1018, 5398, 1, 0, 0, 0, 1020, 5401, 1, 0, 0, 0, 1022, 5411, 1, 0, 0, 0, 1024, 5434, 1, 0, 0, 0, 1026, 5452, 1, 0, 0, 0, 1028, 5454, 1, 0, 0, 0, 1030, 5462, 1, 0, 0, 0, 1032, 5470, 1, 0, 0, 0, 1034, 5484, 1, 0, 0, 0, 1036, 5490, 1, 0, 0, 0, 1038, 5506, 1, 0, 0, 0, 1040, 5522, 1, 0, 0, 0, 1042, 1044, 3, 2, 1, 0, 1043, 1042, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 0, 0, 1, 1049, 1, 1, 0, 0, 0, 1050, 1053, 3, 4, 2, 0, 1051, 1053, 3, 12, 6, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1051, 1, 0, 0, 0, 1053, 1055, 1, 0, 0, 0, 1054, 1056, 5, 398, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 3, 1, 0, 0, 0, 1057, 1067, 5, 119, 0, 0, 1058, 1060, 3, 6, 3, 0, 1059, 1058, 1, 0, 0, 0, 1060, 1063, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1064, 1068, 3, 12, 6, 0, 1065, 1066, 5, 284, 0, 0, 1066, 1068, 3, 394, 197, 0, 1067, 1061, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1068, 5, 1, 0, 0, 0, 1069, 1092, 5, 122, 0, 0, 1070, 1092, 5, 138, 0, 0, 1071, 1092, 5, 88, 0, 0, 1072, 1074, 5, 37, 0, 0, 1073, 1075, 7, 0, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1092, 1, 0, 0, 0, 1076, 1092, 5, 192, 0, 0, 1077, 1092, 5, 21, 0, 0, 1078, 1092, 5, 10, 0, 0, 1079, 1092, 5, 275, 0, 0, 1080, 1092, 5, 191, 0, 0, 1081, 1092, 5, 19, 0, 0, 1082, 1084, 5, 377, 0, 0, 1083, 1085, 3, 8, 4, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1088, 3, 10, 5, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1092, 1, 0, 0, 0, 1089, 1092, 5, 79, 0, 0, 1090, 1092, 5, 78, 0, 0, 1091, 1069, 1, 0, 0, 0, 1091, 1070, 1, 0, 0, 0, 1091, 1071, 1, 0, 0, 0, 1091, 1072, 1, 0, 0, 0, 1091, 1076, 1, 0, 0, 0, 1091, 1077, 1, 0, 0, 0, 1091, 1078, 1, 0, 0, 0, 1091, 1079, 1, 0, 0, 0, 1091, 1080, 1, 0, 0, 0, 1091, 1081, 1, 0, 0, 0, 1091, 1082, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1090, 1, 0, 0, 0, 1092, 7, 1, 0, 0, 0, 1093, 1094, 5, 225, 0, 0, 1094, 9, 1, 0, 0, 0, 1095, 1096, 7, 1, 0, 0, 1096, 11, 1, 0, 0, 0, 1097, 1112, 3, 394, 197, 0, 1098, 1112, 3, 14, 7, 0, 1099, 1112, 3, 20, 10, 0, 1100, 1112, 3, 22, 11, 0, 1101, 1112, 3, 24, 12, 0, 1102, 1112, 3, 28, 14, 0, 1103, 1112, 3, 36, 18, 0, 1104, 1112, 3, 38, 19, 0, 1105, 1112, 3, 422, 211, 0, 1106, 1112, 3, 430, 215, 0, 1107, 1112, 3, 432, 216, 0, 1108, 1112, 3, 454, 227, 0, 1109, 1112, 3, 948, 474, 0, 1110, 1112, 3, 950, 475, 0, 1111, 1097, 1, 0, 0, 0, 1111, 1098, 1, 0, 0, 0, 1111, 1099, 1, 0, 0, 0, 1111, 1100, 1, 0, 0, 0, 1111, 1101, 1, 0, 0, 0, 1111, 1102, 1, 0, 0, 0, 1111, 1103, 1, 0, 0, 0, 1111, 1104, 1, 0, 0, 0, 1111, 1105, 1, 0, 0, 0, 1111, 1106, 1, 0, 0, 0, 1111, 1107, 1, 0, 0, 0, 1111, 1108, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 13, 1, 0, 0, 0, 1113, 1114, 5, 187, 0, 0, 1114, 1116, 5, 66, 0, 0, 1115, 1117, 5, 188, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 5, 158, 0, 0, 1119, 1121, 5, 426, 0, 0, 1120, 1122, 5, 235, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 5, 166, 0, 0, 1124, 1125, 5, 329, 0, 0, 1125, 1127, 3, 910, 455, 0, 1126, 1128, 3, 78, 39, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 15, 1, 0, 0, 0, 1129, 1130, 5, 152, 0, 0, 1130, 1131, 5, 254, 0, 0, 1131, 17, 1, 0, 0, 0, 1132, 1134, 5, 134, 0, 0, 1133, 1135, 5, 204, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 5, 279, 0, 0, 1137, 1138, 5, 399, 0, 0, 1138, 1139, 5, 426, 0, 0, 1139, 1140, 5, 400, 0, 0, 1140, 19, 1, 0, 0, 0, 1141, 1142, 5, 120, 0, 0, 1142, 1143, 5, 329, 0, 0, 1143, 1144, 3, 910, 455, 0, 1144, 1145, 5, 341, 0, 0, 1145, 1147, 5, 426, 0, 0, 1146, 1148, 3, 18, 9, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 21, 1, 0, 0, 0, 1149, 1155, 5, 153, 0, 0, 1150, 1152, 5, 123, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 5, 329, 0, 0, 1154, 1156, 3, 910, 455, 0, 1155, 1151, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 5, 139, 0, 0, 1158, 1160, 5, 426, 0, 0, 1159, 1161, 3, 274, 137, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 23, 1, 0, 0, 0, 1162, 1163, 5, 277, 0, 0, 1163, 1164, 5, 103, 0, 0, 1164, 1167, 3, 26, 13, 0, 1165, 1166, 5, 278, 0, 0, 1166, 1168, 3, 26, 13, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1170, 5, 387, 0, 0, 1170, 1172, 3, 30, 15, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 25, 1, 0, 0, 0, 1173, 1176, 3, 654, 327, 0, 1174, 1175, 5, 395, 0, 0, 1175, 1177, 3, 34, 17, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 27, 1, 0, 0, 0, 1178, 1179, 5, 277, 0, 0, 1179, 1180, 5, 187, 0, 0, 1180, 1183, 3, 26, 13, 0, 1181, 1182, 5, 166, 0, 0, 1182, 1184, 3, 654, 327, 0, 1183, 1181, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1186, 5, 387, 0, 0, 1186, 1188, 3, 30, 15, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 29, 1, 0, 0, 0, 1189, 1190, 5, 399, 0, 0, 1190, 1191, 3, 32, 16, 0, 1191, 1192, 5, 400, 0, 0, 1192, 31, 1, 0, 0, 0, 1193, 1198, 3, 258, 129, 0, 1194, 1195, 5, 397, 0, 0, 1195, 1197, 3, 258, 129, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 33, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 5, 426, 0, 0, 1202, 1203, 5, 395, 0, 0, 1203, 1205, 5, 426, 0, 0, 1204, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 35, 1, 0, 0, 0, 1206, 1207, 5, 277, 0, 0, 1207, 1208, 5, 320, 0, 0, 1208, 1211, 3, 654, 327, 0, 1209, 1210, 5, 387, 0, 0, 1210, 1212, 3, 30, 15, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 37, 1, 0, 0, 0, 1213, 1261, 3, 56, 28, 0, 1214, 1261, 3, 68, 34, 0, 1215, 1261, 3, 70, 35, 0, 1216, 1261, 3, 598, 299, 0, 1217, 1261, 3, 76, 38, 0, 1218, 1261, 3, 74, 37, 0, 1219, 1261, 3, 476, 238, 0, 1220, 1261, 3, 86, 43, 0, 1221, 1261, 3, 94, 47, 0, 1222, 1261, 3, 160, 80, 0, 1223, 1261, 3, 182, 91, 0, 1224, 1261, 3, 198, 99, 0, 1225, 1261, 3, 202, 101, 0, 1226, 1261, 3, 206, 103, 0, 1227, 1261, 3, 204, 102, 0, 1228, 1261, 3, 196, 98, 0, 1229, 1261, 3, 200, 100, 0, 1230, 1261, 3, 168, 84, 0, 1231, 1261, 3, 174, 87, 0, 1232, 1261, 3, 170, 85, 0, 1233, 1261, 3, 172, 86, 0, 1234, 1261, 3, 176, 88, 0, 1235, 1261, 3, 178, 89, 0, 1236, 1261, 3, 180, 90, 0, 1237, 1261, 3, 88, 44, 0, 1238, 1261, 3, 98, 49, 0, 1239, 1261, 3, 104, 52, 0, 1240, 1261, 3, 100, 50, 0, 1241, 1261, 3, 106, 53, 0, 1242, 1261, 3, 108, 54, 0, 1243, 1261, 3, 110, 55, 0, 1244, 1261, 3, 112, 56, 0, 1245, 1261, 3, 114, 57, 0, 1246, 1261, 3, 128, 64, 0, 1247, 1261, 3, 120, 60, 0, 1248, 1261, 3, 130, 65, 0, 1249, 1261, 3, 122, 61, 0, 1250, 1261, 3, 116, 58, 0, 1251, 1261, 3, 118, 59, 0, 1252, 1261, 3, 126, 63, 0, 1253, 1261, 3, 124, 62, 0, 1254, 1261, 3, 450, 225, 0, 1255, 1261, 3, 452, 226, 0, 1256, 1261, 3, 466, 233, 0, 1257, 1261, 3, 954, 477, 0, 1258, 1261, 3, 600, 300, 0, 1259, 1261, 3, 610, 305, 0, 1260, 1213, 1, 0, 0, 0, 1260, 1214, 1, 0, 0, 0, 1260, 1215, 1, 0, 0, 0, 1260, 1216, 1, 0, 0, 0, 1260, 1217, 1, 0, 0, 0, 1260, 1218, 1, 0, 0, 0, 1260, 1219, 1, 0, 0, 0, 1260, 1220, 1, 0, 0, 0, 1260, 1221, 1, 0, 0, 0, 1260, 1222, 1, 0, 0, 0, 1260, 1223, 1, 0, 0, 0, 1260, 1224, 1, 0, 0, 0, 1260, 1225, 1, 0, 0, 0, 1260, 1226, 1, 0, 0, 0, 1260, 1227, 1, 0, 0, 0, 1260, 1228, 1, 0, 0, 0, 1260, 1229, 1, 0, 0, 0, 1260, 1230, 1, 0, 0, 0, 1260, 1231, 1, 0, 0, 0, 1260, 1232, 1, 0, 0, 0, 1260, 1233, 1, 0, 0, 0, 1260, 1234, 1, 0, 0, 0, 1260, 1235, 1, 0, 0, 0, 1260, 1236, 1, 0, 0, 0, 1260, 1237, 1, 0, 0, 0, 1260, 1238, 1, 0, 0, 0, 1260, 1239, 1, 0, 0, 0, 1260, 1240, 1, 0, 0, 0, 1260, 1241, 1, 0, 0, 0, 1260, 1242, 1, 0, 0, 0, 1260, 1243, 1, 0, 0, 0, 1260, 1244, 1, 0, 0, 0, 1260, 1245, 1, 0, 0, 0, 1260, 1246, 1, 0, 0, 0, 1260, 1247, 1, 0, 0, 0, 1260, 1248, 1, 0, 0, 0, 1260, 1249, 1, 0, 0, 0, 1260, 1250, 1, 0, 0, 0, 1260, 1251, 1, 0, 0, 0, 1260, 1252, 1, 0, 0, 0, 1260, 1253, 1, 0, 0, 0, 1260, 1254, 1, 0, 0, 0, 1260, 1255, 1, 0, 0, 0, 1260, 1256, 1, 0, 0, 0, 1260, 1257, 1, 0, 0, 0, 1260, 1258, 1, 0, 0, 0, 1260, 1259, 1, 0, 0, 0, 1261, 39, 1, 0, 0, 0, 1262, 1263, 5, 151, 0, 0, 1263, 1264, 5, 117, 0, 0, 1264, 41, 1, 0, 0, 0, 1265, 1266, 7, 2, 0, 0, 1266, 43, 1, 0, 0, 0, 1267, 1268, 5, 151, 0, 0, 1268, 1269, 5, 216, 0, 0, 1269, 1270, 5, 117, 0, 0, 1270, 45, 1, 0, 0, 0, 1271, 1272, 5, 135, 0, 0, 1272, 47, 1, 0, 0, 0, 1273, 1274, 3, 970, 485, 0, 1274, 1275, 5, 284, 0, 0, 1275, 49, 1, 0, 0, 0, 1276, 1277, 3, 972, 486, 0, 1277, 1278, 5, 284, 0, 0, 1278, 51, 1, 0, 0, 0, 1279, 1280, 5, 321, 0, 0, 1280, 1281, 5, 17, 0, 0, 1281, 1282, 5, 92, 0, 0, 1282, 53, 1, 0, 0, 0, 1283, 1284, 5, 228, 0, 0, 1284, 1285, 5, 278, 0, 0, 1285, 55, 1, 0, 0, 0, 1286, 1288, 5, 58, 0, 0, 1287, 1289, 5, 273, 0, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 3, 92, 46, 0, 1291, 1293, 3, 44, 22, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 656, 328, 0, 1295, 1297, 3, 72, 36, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 1, 0, 0, 0, 1298, 1300, 3, 58, 29, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 60, 30, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1307, 1, 0, 0, 0, 1304, 1305, 5, 387, 0, 0, 1305, 1306, 5, 76, 0, 0, 1306, 1308, 3, 62, 31, 0, 1307, 1304, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1326, 1, 0, 0, 0, 1309, 1310, 5, 58, 0, 0, 1310, 1311, 5, 273, 0, 0, 1311, 1313, 3, 92, 46, 0, 1312, 1314, 3, 44, 22, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 656, 328, 0, 1316, 1318, 3, 72, 36, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1323, 3, 66, 33, 0, 1320, 1321, 5, 387, 0, 0, 1321, 1322, 5, 76, 0, 0, 1322, 1324, 3, 62, 31, 0, 1323, 1320, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1286, 1, 0, 0, 0, 1325, 1309, 1, 0, 0, 0, 1326, 57, 1, 0, 0, 0, 1327, 1328, 5, 189, 0, 0, 1328, 1329, 5, 426, 0, 0, 1329, 59, 1, 0, 0, 0, 1330, 1331, 5, 196, 0, 0, 1331, 1332, 5, 426, 0, 0, 1332, 61, 1, 0, 0, 0, 1333, 1334, 5, 399, 0, 0, 1334, 1335, 3, 64, 32, 0, 1335, 1336, 5, 400, 0, 0, 1336, 63, 1, 0, 0, 0, 1337, 1342, 3, 258, 129, 0, 1338, 1339, 5, 397, 0, 0, 1339, 1341, 3, 258, 129, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 65, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1346, 5, 370, 0, 0, 1346, 1347, 3, 654, 327, 0, 1347, 67, 1, 0, 0, 0, 1348, 1349, 5, 368, 0, 0, 1349, 1350, 3, 654, 327, 0, 1350, 69, 1, 0, 0, 0, 1351, 1352, 5, 101, 0, 0, 1352, 1354, 3, 92, 46, 0, 1353, 1355, 3, 40, 20, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1358, 3, 654, 327, 0, 1357, 1359, 3, 42, 21, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 71, 1, 0, 0, 0, 1360, 1361, 5, 47, 0, 0, 1361, 1362, 5, 426, 0, 0, 1362, 73, 1, 0, 0, 0, 1363, 1365, 5, 351, 0, 0, 1364, 1366, 5, 329, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1373, 3, 544, 272, 0, 1368, 1369, 5, 46, 0, 0, 1369, 1370, 5, 399, 0, 0, 1370, 1371, 3, 282, 141, 0, 1371, 1372, 5, 400, 0, 0, 1372, 1374, 1, 0, 0, 0, 1373, 1368, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1376, 1, 0, 0, 0, 1375, 1377, 3, 46, 23, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 75, 1, 0, 0, 0, 1378, 1379, 5, 101, 0, 0, 1379, 1381, 5, 329, 0, 0, 1380, 1382, 3, 40, 20, 0, 1381, 1380, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1385, 3, 660, 330, 0, 1384, 1386, 5, 255, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1389, 3, 18, 9, 0, 1388, 1387, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 77, 1, 0, 0, 0, 1390, 1391, 5, 160, 0, 0, 1391, 1392, 5, 426, 0, 0, 1392, 1393, 5, 301, 0, 0, 1393, 1394, 5, 426, 0, 0, 1394, 79, 1, 0, 0, 0, 1395, 1398, 3, 926, 463, 0, 1396, 1397, 5, 395, 0, 0, 1397, 1399, 3, 926, 463, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1413, 1, 0, 0, 0, 1400, 1410, 3, 926, 463, 0, 1401, 1406, 5, 395, 0, 0, 1402, 1407, 5, 104, 0, 0, 1403, 1407, 5, 175, 0, 0, 1404, 1407, 5, 375, 0, 0, 1405, 1407, 3, 926, 463, 0, 1406, 1402, 1, 0, 0, 0, 1406, 1403, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1405, 1, 0, 0, 0, 1407, 1409, 1, 0, 0, 0, 1408, 1401, 1, 0, 0, 0, 1409, 1412, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1414, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1400, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 81, 1, 0, 0, 0, 1415, 1417, 3, 80, 40, 0, 1416, 1418, 3, 912, 456, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 83, 1, 0, 0, 0, 1419, 1421, 3, 658, 329, 0, 1420, 1422, 3, 912, 456, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 3, 288, 144, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 85, 1, 0, 0, 0, 1426, 1449, 7, 3, 0, 0, 1427, 1429, 3, 92, 46, 0, 1428, 1430, 5, 122, 0, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 3, 654, 327, 0, 1432, 1450, 1, 0, 0, 0, 1433, 1435, 5, 69, 0, 0, 1434, 1436, 5, 122, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1450, 3, 654, 327, 0, 1438, 1440, 5, 141, 0, 0, 1439, 1441, 5, 122, 0, 0, 1440, 1439, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1450, 3, 782, 391, 0, 1443, 1446, 5, 138, 0, 0, 1444, 1446, 5, 122, 0, 0, 1445, 1443, 1, 0, 0, 0, 1445, 1444, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1450, 3, 84, 42, 0, 1448, 1450, 3, 84, 42, 0, 1449, 1427, 1, 0, 0, 0, 1449, 1433, 1, 0, 0, 0, 1449, 1438, 1, 0, 0, 0, 1449, 1445, 1, 0, 0, 0, 1449, 1448, 1, 0, 0, 0, 1450, 87, 1, 0, 0, 0, 1451, 1452, 5, 10, 0, 0, 1452, 1453, 5, 329, 0, 0, 1453, 1466, 3, 910, 455, 0, 1454, 1455, 5, 52, 0, 0, 1455, 1462, 5, 319, 0, 0, 1456, 1463, 5, 215, 0, 0, 1457, 1458, 5, 134, 0, 0, 1458, 1460, 5, 46, 0, 0, 1459, 1461, 3, 282, 141, 0, 1460, 1459, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1463, 1, 0, 0, 0, 1462, 1456, 1, 0, 0, 0, 1462, 1457, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1467, 1, 0, 0, 0, 1464, 1465, 5, 33, 0, 0, 1465, 1467, 5, 204, 0, 0, 1466, 1454, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1467, 89, 1, 0, 0, 0, 1468, 1469, 7, 4, 0, 0, 1469, 91, 1, 0, 0, 0, 1470, 1471, 7, 5, 0, 0, 1471, 93, 1, 0, 0, 0, 1472, 1473, 5, 308, 0, 0, 1473, 1476, 7, 6, 0, 0, 1474, 1475, 5, 184, 0, 0, 1475, 1477, 3, 216, 108, 0, 1476, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1666, 1, 0, 0, 0, 1478, 1480, 5, 308, 0, 0, 1479, 1481, 5, 122, 0, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1486, 5, 330, 0, 0, 1483, 1484, 3, 90, 45, 0, 1484, 1485, 3, 654, 327, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1483, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1490, 3, 96, 48, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1666, 1, 0, 0, 0, 1491, 1492, 5, 308, 0, 0, 1492, 1496, 5, 379, 0, 0, 1493, 1494, 3, 90, 45, 0, 1494, 1495, 3, 654, 327, 0, 1495, 1497, 1, 0, 0, 0, 1496, 1493, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1501, 1, 0, 0, 0, 1498, 1499, 5, 184, 0, 0, 1499, 1502, 3, 216, 108, 0, 1500, 1502, 3, 216, 108, 0, 1501, 1498, 1, 0, 0, 0, 1501, 1500, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1666, 1, 0, 0, 0, 1503, 1504, 5, 308, 0, 0, 1504, 1505, 5, 202, 0, 0, 1505, 1509, 5, 379, 0, 0, 1506, 1507, 3, 90, 45, 0, 1507, 1508, 3, 654, 327, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1506, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1514, 1, 0, 0, 0, 1511, 1512, 5, 184, 0, 0, 1512, 1515, 3, 216, 108, 0, 1513, 1515, 3, 216, 108, 0, 1514, 1511, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1666, 1, 0, 0, 0, 1516, 1518, 5, 308, 0, 0, 1517, 1519, 5, 315, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 5, 46, 0, 0, 1521, 1522, 3, 90, 45, 0, 1522, 1526, 3, 658, 329, 0, 1523, 1524, 3, 90, 45, 0, 1524, 1525, 3, 654, 327, 0, 1525, 1527, 1, 0, 0, 0, 1526, 1523, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 184, 0, 0, 1529, 1532, 3, 216, 108, 0, 1530, 1532, 3, 216, 108, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1666, 1, 0, 0, 0, 1533, 1534, 5, 308, 0, 0, 1534, 1537, 5, 142, 0, 0, 1535, 1536, 5, 184, 0, 0, 1536, 1538, 3, 782, 391, 0, 1537, 1535, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1666, 1, 0, 0, 0, 1539, 1540, 5, 308, 0, 0, 1540, 1541, 5, 239, 0, 0, 1541, 1543, 3, 658, 329, 0, 1542, 1544, 3, 912, 456, 0, 1543, 1542, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1546, 1, 0, 0, 0, 1545, 1547, 3, 676, 338, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 764, 382, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1553, 3, 420, 210, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1666, 1, 0, 0, 0, 1554, 1555, 5, 308, 0, 0, 1555, 1561, 5, 58, 0, 0, 1556, 1557, 3, 92, 46, 0, 1557, 1558, 3, 654, 327, 0, 1558, 1562, 1, 0, 0, 0, 1559, 1560, 5, 329, 0, 0, 1560, 1562, 3, 660, 330, 0, 1561, 1556, 1, 0, 0, 0, 1561, 1559, 1, 0, 0, 0, 1562, 1666, 1, 0, 0, 0, 1563, 1564, 5, 308, 0, 0, 1564, 1565, 5, 329, 0, 0, 1565, 1569, 5, 122, 0, 0, 1566, 1567, 3, 90, 45, 0, 1567, 1568, 3, 654, 327, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 184, 0, 0, 1572, 1574, 3, 216, 108, 0, 1573, 1575, 3, 912, 456, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1666, 1, 0, 0, 0, 1576, 1577, 5, 308, 0, 0, 1577, 1578, 5, 332, 0, 0, 1578, 1582, 3, 660, 330, 0, 1579, 1580, 5, 399, 0, 0, 1580, 1581, 5, 426, 0, 0, 1581, 1583, 5, 400, 0, 0, 1582, 1579, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1666, 1, 0, 0, 0, 1584, 1585, 5, 308, 0, 0, 1585, 1597, 5, 191, 0, 0, 1586, 1587, 3, 92, 46, 0, 1587, 1589, 3, 654, 327, 0, 1588, 1590, 5, 122, 0, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1598, 1, 0, 0, 0, 1591, 1593, 3, 82, 41, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1595, 1, 0, 0, 0, 1594, 1596, 5, 122, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1586, 1, 0, 0, 0, 1597, 1592, 1, 0, 0, 0, 1598, 1666, 1, 0, 0, 0, 1599, 1600, 5, 308, 0, 0, 1600, 1637, 5, 50, 0, 0, 1601, 1638, 3, 468, 234, 0, 1602, 1603, 3, 92, 46, 0, 1603, 1605, 3, 654, 327, 0, 1604, 1606, 3, 470, 235, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1608, 1, 0, 0, 0, 1607, 1609, 3, 472, 236, 0, 1608, 1607, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1612, 3, 474, 237, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1615, 3, 764, 382, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 420, 210, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1638, 1, 0, 0, 0, 1619, 1621, 3, 82, 41, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1623, 1, 0, 0, 0, 1622, 1624, 3, 470, 235, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1627, 3, 472, 236, 0, 1626, 1625, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1629, 1, 0, 0, 0, 1628, 1630, 3, 474, 237, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 3, 764, 382, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 420, 210, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1638, 1, 0, 0, 0, 1637, 1601, 1, 0, 0, 0, 1637, 1602, 1, 0, 0, 0, 1637, 1620, 1, 0, 0, 0, 1638, 1666, 1, 0, 0, 0, 1639, 1640, 5, 308, 0, 0, 1640, 1666, 5, 346, 0, 0, 1641, 1642, 5, 308, 0, 0, 1642, 1643, 5, 54, 0, 0, 1643, 1666, 5, 426, 0, 0, 1644, 1645, 5, 308, 0, 0, 1645, 1649, 5, 280, 0, 0, 1646, 1647, 5, 243, 0, 0, 1647, 1650, 3, 926, 463, 0, 1648, 1650, 5, 244, 0, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1666, 1, 0, 0, 0, 1651, 1652, 5, 308, 0, 0, 1652, 1666, 5, 70, 0, 0, 1653, 1655, 5, 308, 0, 0, 1654, 1656, 5, 138, 0, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 7, 7, 0, 0, 1658, 1659, 5, 224, 0, 0, 1659, 1663, 3, 660, 330, 0, 1660, 1661, 3, 90, 45, 0, 1661, 1662, 3, 654, 327, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1660, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1472, 1, 0, 0, 0, 1665, 1478, 1, 0, 0, 0, 1665, 1491, 1, 0, 0, 0, 1665, 1503, 1, 0, 0, 0, 1665, 1516, 1, 0, 0, 0, 1665, 1533, 1, 0, 0, 0, 1665, 1539, 1, 0, 0, 0, 1665, 1554, 1, 0, 0, 0, 1665, 1563, 1, 0, 0, 0, 1665, 1576, 1, 0, 0, 0, 1665, 1584, 1, 0, 0, 0, 1665, 1599, 1, 0, 0, 0, 1665, 1639, 1, 0, 0, 0, 1665, 1641, 1, 0, 0, 0, 1665, 1644, 1, 0, 0, 0, 1665, 1651, 1, 0, 0, 0, 1665, 1653, 1, 0, 0, 0, 1666, 95, 1, 0, 0, 0, 1667, 1668, 5, 384, 0, 0, 1668, 1669, 3, 926, 463, 0, 1669, 1670, 5, 405, 0, 0, 1670, 1671, 5, 426, 0, 0, 1671, 1676, 1, 0, 0, 0, 1672, 1673, 5, 184, 0, 0, 1673, 1676, 3, 216, 108, 0, 1674, 1676, 3, 216, 108, 0, 1675, 1667, 1, 0, 0, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1674, 1, 0, 0, 0, 1676, 97, 1, 0, 0, 0, 1677, 1678, 5, 190, 0, 0, 1678, 1679, 5, 329, 0, 0, 1679, 1681, 3, 660, 330, 0, 1680, 1682, 3, 912, 456, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 3, 102, 51, 0, 1684, 99, 1, 0, 0, 0, 1685, 1686, 5, 190, 0, 0, 1686, 1687, 3, 92, 46, 0, 1687, 1688, 3, 654, 327, 0, 1688, 1689, 3, 102, 51, 0, 1689, 101, 1, 0, 0, 0, 1690, 1691, 7, 8, 0, 0, 1691, 103, 1, 0, 0, 0, 1692, 1693, 5, 361, 0, 0, 1693, 1694, 5, 329, 0, 0, 1694, 1696, 3, 660, 330, 0, 1695, 1697, 3, 912, 456, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 105, 1, 0, 0, 0, 1698, 1699, 5, 361, 0, 0, 1699, 1700, 3, 92, 46, 0, 1700, 1701, 3, 654, 327, 0, 1701, 107, 1, 0, 0, 0, 1702, 1703, 5, 58, 0, 0, 1703, 1704, 5, 287, 0, 0, 1704, 1705, 3, 926, 463, 0, 1705, 109, 1, 0, 0, 0, 1706, 1707, 5, 101, 0, 0, 1707, 1708, 5, 287, 0, 0, 1708, 1709, 3, 926, 463, 0, 1709, 111, 1, 0, 0, 0, 1710, 1711, 5, 143, 0, 0, 1711, 1713, 3, 140, 70, 0, 1712, 1714, 3, 134, 67, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 341, 0, 0, 1716, 1718, 3, 146, 73, 0, 1717, 1719, 3, 152, 76, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 113, 1, 0, 0, 0, 1720, 1722, 5, 283, 0, 0, 1721, 1723, 3, 154, 77, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, 3, 140, 70, 0, 1725, 1727, 3, 134, 67, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 5, 139, 0, 0, 1729, 1730, 3, 146, 73, 0, 1730, 115, 1, 0, 0, 0, 1731, 1733, 5, 143, 0, 0, 1732, 1734, 5, 287, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1740, 3, 926, 463, 0, 1736, 1737, 5, 397, 0, 0, 1737, 1739, 3, 926, 463, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1744, 5, 341, 0, 0, 1744, 1746, 3, 146, 73, 0, 1745, 1747, 3, 158, 79, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 117, 1, 0, 0, 0, 1748, 1750, 5, 283, 0, 0, 1749, 1751, 3, 156, 78, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1754, 5, 287, 0, 0, 1753, 1752, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1760, 3, 926, 463, 0, 1756, 1757, 5, 397, 0, 0, 1757, 1759, 3, 926, 463, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1762, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1764, 5, 139, 0, 0, 1764, 1765, 3, 146, 73, 0, 1765, 119, 1, 0, 0, 0, 1766, 1767, 5, 308, 0, 0, 1767, 1768, 5, 287, 0, 0, 1768, 1769, 5, 143, 0, 0, 1769, 1770, 3, 148, 74, 0, 1770, 121, 1, 0, 0, 0, 1771, 1772, 5, 308, 0, 0, 1772, 1773, 5, 288, 0, 0, 1773, 123, 1, 0, 0, 0, 1774, 1775, 5, 308, 0, 0, 1775, 1776, 5, 62, 0, 0, 1776, 1777, 5, 288, 0, 0, 1777, 125, 1, 0, 0, 0, 1778, 1779, 5, 304, 0, 0, 1779, 1783, 5, 287, 0, 0, 1780, 1784, 5, 7, 0, 0, 1781, 1784, 5, 213, 0, 0, 1782, 1784, 3, 926, 463, 0, 1783, 1780, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 127, 1, 0, 0, 0, 1785, 1786, 5, 308, 0, 0, 1786, 1788, 5, 143, 0, 0, 1787, 1789, 3, 148, 74, 0, 1788, 1787, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1792, 1, 0, 0, 0, 1790, 1791, 5, 224, 0, 0, 1791, 1793, 3, 132, 66, 0, 1792, 1790, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 129, 1, 0, 0, 0, 1794, 1795, 5, 308, 0, 0, 1795, 1796, 5, 252, 0, 0, 1796, 1797, 3, 926, 463, 0, 1797, 131, 1, 0, 0, 0, 1798, 1801, 5, 7, 0, 0, 1799, 1801, 3, 138, 69, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1801, 133, 1, 0, 0, 0, 1802, 1803, 5, 224, 0, 0, 1803, 1804, 3, 136, 68, 0, 1804, 135, 1, 0, 0, 0, 1805, 1806, 3, 92, 46, 0, 1806, 1807, 3, 654, 327, 0, 1807, 1820, 1, 0, 0, 0, 1808, 1810, 5, 329, 0, 0, 1809, 1808, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1813, 3, 660, 330, 0, 1812, 1814, 3, 912, 456, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1820, 1, 0, 0, 0, 1815, 1816, 5, 366, 0, 0, 1816, 1820, 5, 426, 0, 0, 1817, 1818, 5, 303, 0, 0, 1818, 1820, 3, 926, 463, 0, 1819, 1805, 1, 0, 0, 0, 1819, 1809, 1, 0, 0, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 137, 1, 0, 0, 0, 1821, 1822, 3, 92, 46, 0, 1822, 1823, 3, 654, 327, 0, 1823, 1842, 1, 0, 0, 0, 1824, 1826, 5, 329, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1832, 3, 660, 330, 0, 1828, 1829, 5, 399, 0, 0, 1829, 1830, 3, 282, 141, 0, 1830, 1831, 5, 400, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1828, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1836, 3, 912, 456, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1842, 1, 0, 0, 0, 1837, 1838, 5, 366, 0, 0, 1838, 1842, 5, 426, 0, 0, 1839, 1840, 5, 303, 0, 0, 1840, 1842, 3, 926, 463, 0, 1841, 1821, 1, 0, 0, 0, 1841, 1825, 1, 0, 0, 0, 1841, 1837, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 139, 1, 0, 0, 0, 1843, 1848, 3, 142, 71, 0, 1844, 1845, 5, 397, 0, 0, 1845, 1847, 3, 142, 71, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 141, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1856, 3, 144, 72, 0, 1852, 1853, 5, 399, 0, 0, 1853, 1854, 3, 282, 141, 0, 1854, 1855, 5, 400, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1852, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 143, 1, 0, 0, 0, 1858, 1859, 7, 9, 0, 0, 1859, 145, 1, 0, 0, 0, 1860, 1865, 3, 148, 74, 0, 1861, 1862, 5, 397, 0, 0, 1862, 1864, 3, 148, 74, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1867, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 147, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1869, 5, 369, 0, 0, 1869, 1875, 3, 930, 465, 0, 1870, 1871, 5, 144, 0, 0, 1871, 1875, 3, 930, 465, 0, 1872, 1873, 5, 287, 0, 0, 1873, 1875, 3, 926, 463, 0, 1874, 1868, 1, 0, 0, 0, 1874, 1870, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 149, 1, 0, 0, 0, 1876, 1877, 5, 369, 0, 0, 1877, 1882, 3, 930, 465, 0, 1878, 1879, 5, 287, 0, 0, 1879, 1882, 3, 926, 463, 0, 1880, 1882, 3, 926, 463, 0, 1881, 1876, 1, 0, 0, 0, 1881, 1878, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 151, 1, 0, 0, 0, 1883, 1884, 5, 387, 0, 0, 1884, 1885, 5, 143, 0, 0, 1885, 1886, 5, 227, 0, 0, 1886, 153, 1, 0, 0, 0, 1887, 1888, 5, 143, 0, 0, 1888, 1889, 5, 227, 0, 0, 1889, 1890, 5, 134, 0, 0, 1890, 155, 1, 0, 0, 0, 1891, 1892, 5, 5, 0, 0, 1892, 1893, 5, 227, 0, 0, 1893, 1894, 5, 134, 0, 0, 1894, 157, 1, 0, 0, 0, 1895, 1896, 5, 387, 0, 0, 1896, 1897, 5, 5, 0, 0, 1897, 1898, 5, 227, 0, 0, 1898, 159, 1, 0, 0, 0, 1899, 1901, 5, 212, 0, 0, 1900, 1902, 5, 276, 0, 0, 1901, 1900, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1904, 5, 329, 0, 0, 1904, 1910, 3, 660, 330, 0, 1905, 1906, 7, 10, 0, 0, 1906, 1908, 5, 239, 0, 0, 1907, 1909, 3, 916, 458, 0, 1908, 1907, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1911, 1, 0, 0, 0, 1910, 1905, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 161, 1, 0, 0, 0, 1912, 1917, 3, 164, 82, 0, 1913, 1914, 5, 397, 0, 0, 1914, 1916, 3, 164, 82, 0, 1915, 1913, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 163, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1921, 3, 166, 83, 0, 1921, 1922, 5, 426, 0, 0, 1922, 165, 1, 0, 0, 0, 1923, 1924, 7, 11, 0, 0, 1924, 167, 1, 0, 0, 0, 1925, 1927, 5, 58, 0, 0, 1926, 1928, 5, 333, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 5, 141, 0, 0, 1930, 1931, 3, 780, 390, 0, 1931, 1932, 5, 17, 0, 0, 1932, 1935, 5, 426, 0, 0, 1933, 1934, 5, 370, 0, 0, 1934, 1936, 3, 162, 81, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 169, 1, 0, 0, 0, 1937, 1939, 5, 101, 0, 0, 1938, 1940, 5, 333, 0, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 5, 141, 0, 0, 1942, 1944, 3, 40, 20, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 3, 782, 391, 0, 1946, 171, 1, 0, 0, 0, 1947, 1948, 5, 271, 0, 0, 1948, 1949, 7, 12, 0, 0, 1949, 173, 1, 0, 0, 0, 1950, 1951, 5, 58, 0, 0, 1951, 1952, 5, 333, 0, 0, 1952, 1953, 5, 194, 0, 0, 1953, 1954, 5, 432, 0, 0, 1954, 1956, 5, 399, 0, 0, 1955, 1957, 3, 276, 138, 0, 1956, 1955, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 5, 400, 0, 0, 1959, 1960, 3, 828, 414, 0, 1960, 175, 1, 0, 0, 0, 1961, 1962, 5, 101, 0, 0, 1962, 1963, 5, 333, 0, 0, 1963, 1965, 5, 194, 0, 0, 1964, 1966, 3, 40, 20, 0, 1965, 1964, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 5, 432, 0, 0, 1968, 177, 1, 0, 0, 0, 1969, 1970, 5, 58, 0, 0, 1970, 1971, 5, 155, 0, 0, 1971, 1972, 3, 926, 463, 0, 1972, 1973, 5, 224, 0, 0, 1973, 1974, 5, 329, 0, 0, 1974, 1975, 3, 660, 330, 0, 1975, 1976, 3, 292, 146, 0, 1976, 1977, 5, 17, 0, 0, 1977, 1981, 5, 426, 0, 0, 1978, 1979, 5, 387, 0, 0, 1979, 1980, 5, 84, 0, 0, 1980, 1982, 5, 265, 0, 0, 1981, 1978, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1984, 5, 150, 0, 0, 1984, 1986, 3, 254, 127, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1990, 1, 0, 0, 0, 1987, 1988, 5, 154, 0, 0, 1988, 1989, 5, 329, 0, 0, 1989, 1991, 3, 660, 330, 0, 1990, 1987, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1995, 1, 0, 0, 0, 1992, 1993, 5, 238, 0, 0, 1993, 1994, 5, 32, 0, 0, 1994, 1996, 3, 292, 146, 0, 1995, 1992, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 2001, 1, 0, 0, 0, 1997, 1999, 3, 250, 125, 0, 1998, 1997, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2002, 3, 272, 136, 0, 2001, 1998, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2004, 5, 189, 0, 0, 2004, 2006, 5, 426, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2009, 3, 252, 126, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 1, 0, 0, 0, 2010, 2012, 3, 218, 109, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 179, 1, 0, 0, 0, 2013, 2014, 5, 101, 0, 0, 2014, 2016, 5, 155, 0, 0, 2015, 2017, 3, 40, 20, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 3, 926, 463, 0, 2019, 2020, 5, 224, 0, 0, 2020, 2021, 3, 660, 330, 0, 2021, 181, 1, 0, 0, 0, 2022, 2024, 5, 58, 0, 0, 2023, 2025, 3, 54, 27, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 5, 378, 0, 0, 2027, 2029, 3, 44, 22, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2035, 3, 666, 333, 0, 2031, 2032, 5, 399, 0, 0, 2032, 2033, 3, 336, 168, 0, 2033, 2034, 5, 400, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2031, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2038, 1, 0, 0, 0, 2037, 2039, 3, 218, 109, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2042, 3, 184, 92, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2044, 1, 0, 0, 0, 2043, 2045, 3, 252, 126, 0, 2044, 2043, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 5, 17, 0, 0, 2047, 2048, 3, 414, 207, 0, 2048, 183, 1, 0, 0, 0, 2049, 2050, 5, 238, 0, 0, 2050, 2056, 5, 224, 0, 0, 2051, 2052, 5, 399, 0, 0, 2052, 2057, 3, 282, 141, 0, 2053, 2054, 5, 316, 0, 0, 2054, 2055, 5, 399, 0, 0, 2055, 2057, 3, 228, 114, 0, 2056, 2051, 1, 0, 0, 0, 2056, 2053, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 5, 400, 0, 0, 2059, 185, 1, 0, 0, 0, 2060, 2063, 3, 188, 94, 0, 2061, 2063, 3, 190, 95, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 187, 1, 0, 0, 0, 2064, 2065, 5, 42, 0, 0, 2065, 2066, 5, 224, 0, 0, 2066, 2067, 5, 399, 0, 0, 2067, 2068, 3, 282, 141, 0, 2068, 2069, 5, 400, 0, 0, 2069, 189, 1, 0, 0, 0, 2070, 2071, 3, 192, 96, 0, 2071, 2072, 3, 194, 97, 0, 2072, 191, 1, 0, 0, 0, 2073, 2074, 5, 98, 0, 0, 2074, 2075, 5, 224, 0, 0, 2075, 2076, 5, 399, 0, 0, 2076, 2077, 3, 282, 141, 0, 2077, 2078, 5, 400, 0, 0, 2078, 193, 1, 0, 0, 0, 2079, 2080, 5, 315, 0, 0, 2080, 2081, 5, 224, 0, 0, 2081, 2082, 5, 399, 0, 0, 2082, 2083, 3, 282, 141, 0, 2083, 2084, 5, 400, 0, 0, 2084, 195, 1, 0, 0, 0, 2085, 2086, 5, 101, 0, 0, 2086, 2088, 5, 378, 0, 0, 2087, 2089, 3, 40, 20, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 3, 664, 332, 0, 2091, 197, 1, 0, 0, 0, 2092, 2093, 5, 58, 0, 0, 2093, 2094, 5, 202, 0, 0, 2094, 2096, 5, 378, 0, 0, 2095, 2097, 3, 44, 22, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 3, 666, 333, 0, 2099, 2101, 3, 50, 25, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2104, 3, 218, 109, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2107, 3, 184, 92, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2110, 3, 186, 93, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 250, 125, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 272, 136, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 274, 137, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2121, 1, 0, 0, 0, 2120, 2122, 3, 252, 126, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 5, 17, 0, 0, 2124, 2125, 3, 414, 207, 0, 2125, 199, 1, 0, 0, 0, 2126, 2127, 5, 101, 0, 0, 2127, 2128, 5, 202, 0, 0, 2128, 2130, 5, 378, 0, 0, 2129, 2131, 3, 40, 20, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 3, 664, 332, 0, 2133, 201, 1, 0, 0, 0, 2134, 2135, 5, 58, 0, 0, 2135, 2136, 5, 293, 0, 0, 2136, 2137, 5, 258, 0, 0, 2137, 2138, 3, 926, 463, 0, 2138, 2140, 3, 210, 105, 0, 2139, 2141, 3, 212, 106, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 296, 148, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2146, 3, 214, 107, 0, 2146, 203, 1, 0, 0, 0, 2147, 2148, 5, 101, 0, 0, 2148, 2149, 5, 293, 0, 0, 2149, 2150, 5, 258, 0, 0, 2150, 2151, 3, 926, 463, 0, 2151, 205, 1, 0, 0, 0, 2152, 2153, 5, 9, 0, 0, 2153, 2154, 5, 293, 0, 0, 2154, 2155, 5, 258, 0, 0, 2155, 2156, 3, 926, 463, 0, 2156, 2157, 3, 208, 104, 0, 2157, 207, 1, 0, 0, 0, 2158, 2164, 3, 210, 105, 0, 2159, 2164, 3, 212, 106, 0, 2160, 2164, 3, 296, 148, 0, 2161, 2164, 3, 214, 107, 0, 2162, 2164, 5, 115, 0, 0, 2163, 2158, 1, 0, 0, 0, 2163, 2159, 1, 0, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 209, 1, 0, 0, 0, 2165, 2166, 5, 59, 0, 0, 2166, 2181, 5, 426, 0, 0, 2167, 2169, 5, 111, 0, 0, 2168, 2170, 5, 431, 0, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2178, 3, 826, 413, 0, 2172, 2176, 5, 20, 0, 0, 2173, 2174, 5, 223, 0, 0, 2174, 2176, 5, 32, 0, 0, 2175, 2172, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2179, 5, 426, 0, 0, 2178, 2175, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2165, 1, 0, 0, 0, 2180, 2167, 1, 0, 0, 0, 2181, 211, 1, 0, 0, 0, 2182, 2183, 5, 116, 0, 0, 2183, 2184, 5, 17, 0, 0, 2184, 2185, 5, 426, 0, 0, 2185, 213, 1, 0, 0, 0, 2186, 2188, 5, 85, 0, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 5, 17, 0, 0, 2190, 2191, 3, 2, 1, 0, 2191, 215, 1, 0, 0, 0, 2192, 2195, 3, 926, 463, 0, 2193, 2195, 5, 426, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 217, 1, 0, 0, 0, 2196, 2197, 5, 47, 0, 0, 2197, 2198, 5, 426, 0, 0, 2198, 219, 1, 0, 0, 0, 2199, 2200, 5, 183, 0, 0, 2200, 2201, 5, 431, 0, 0, 2201, 221, 1, 0, 0, 0, 2202, 2203, 5, 238, 0, 0, 2203, 2212, 5, 32, 0, 0, 2204, 2207, 5, 399, 0, 0, 2205, 2208, 3, 224, 112, 0, 2206, 2208, 3, 226, 113, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2206, 1, 0, 0, 0, 2208, 2213, 1, 0, 0, 0, 2209, 2210, 5, 316, 0, 0, 2210, 2211, 5, 399, 0, 0, 2211, 2213, 3, 228, 114, 0, 2212, 2204, 1, 0, 0, 0, 2212, 2209, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 5, 400, 0, 0, 2215, 223, 1, 0, 0, 0, 2216, 2221, 3, 350, 175, 0, 2217, 2218, 5, 397, 0, 0, 2218, 2220, 3, 350, 175, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2223, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 225, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2224, 2229, 3, 284, 142, 0, 2225, 2226, 5, 397, 0, 0, 2226, 2228, 3, 284, 142, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 227, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2237, 3, 230, 115, 0, 2233, 2234, 5, 397, 0, 0, 2234, 2236, 3, 230, 115, 0, 2235, 2233, 1, 0, 0, 0, 2236, 2239, 1, 0, 0, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 229, 1, 0, 0, 0, 2239, 2237, 1, 0, 0, 0, 2240, 2241, 3, 232, 116, 0, 2241, 231, 1, 0, 0, 0, 2242, 2261, 3, 284, 142, 0, 2243, 2248, 3, 976, 488, 0, 2244, 2248, 3, 978, 489, 0, 2245, 2248, 3, 982, 491, 0, 2246, 2248, 3, 984, 492, 0, 2247, 2243, 1, 0, 0, 0, 2247, 2244, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 5, 399, 0, 0, 2250, 2251, 3, 284, 142, 0, 2251, 2252, 5, 400, 0, 0, 2252, 2261, 1, 0, 0, 0, 2253, 2254, 7, 13, 0, 0, 2254, 2255, 5, 399, 0, 0, 2255, 2256, 5, 431, 0, 0, 2256, 2257, 5, 397, 0, 0, 2257, 2258, 3, 284, 142, 0, 2258, 2259, 5, 400, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2242, 1, 0, 0, 0, 2260, 2247, 1, 0, 0, 0, 2260, 2253, 1, 0, 0, 0, 2261, 233, 1, 0, 0, 0, 2262, 2263, 5, 42, 0, 0, 2263, 2264, 5, 32, 0, 0, 2264, 2265, 5, 399, 0, 0, 2265, 2266, 3, 282, 141, 0, 2266, 2273, 5, 400, 0, 0, 2267, 2268, 5, 315, 0, 0, 2268, 2269, 5, 32, 0, 0, 2269, 2270, 5, 399, 0, 0, 2270, 2271, 3, 290, 145, 0, 2271, 2272, 5, 400, 0, 0, 2272, 2274, 1, 0, 0, 0, 2273, 2267, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 5, 166, 0, 0, 2276, 2277, 5, 431, 0, 0, 2277, 2278, 5, 31, 0, 0, 2278, 235, 1, 0, 0, 0, 2279, 2280, 5, 42, 0, 0, 2280, 2281, 5, 166, 0, 0, 2281, 2282, 5, 431, 0, 0, 2282, 2283, 5, 31, 0, 0, 2283, 237, 1, 0, 0, 0, 2284, 2285, 5, 310, 0, 0, 2285, 2286, 5, 32, 0, 0, 2286, 2287, 5, 399, 0, 0, 2287, 2288, 3, 282, 141, 0, 2288, 2289, 5, 400, 0, 0, 2289, 2290, 5, 224, 0, 0, 2290, 2291, 5, 399, 0, 0, 2291, 2292, 3, 318, 159, 0, 2292, 2294, 5, 400, 0, 0, 2293, 2295, 3, 52, 26, 0, 2294, 2293, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 239, 1, 0, 0, 0, 2296, 2299, 3, 246, 123, 0, 2297, 2299, 3, 248, 124, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2297, 1, 0, 0, 0, 2299, 241, 1, 0, 0, 0, 2300, 2301, 5, 266, 0, 0, 2301, 2302, 5, 426, 0, 0, 2302, 243, 1, 0, 0, 0, 2303, 2304, 5, 267, 0, 0, 2304, 2305, 5, 426, 0, 0, 2305, 245, 1, 0, 0, 0, 2306, 2307, 5, 291, 0, 0, 2307, 2308, 5, 137, 0, 0, 2308, 2309, 5, 301, 0, 0, 2309, 2313, 5, 426, 0, 0, 2310, 2311, 5, 387, 0, 0, 2311, 2312, 5, 302, 0, 0, 2312, 2314, 3, 254, 127, 0, 2313, 2310, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 247, 1, 0, 0, 0, 2315, 2316, 5, 291, 0, 0, 2316, 2317, 5, 137, 0, 0, 2317, 2319, 5, 87, 0, 0, 2318, 2320, 3, 262, 131, 0, 2319, 2318, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, 2322, 1, 0, 0, 0, 2321, 2323, 3, 264, 132, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 266, 133, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 1, 0, 0, 0, 2327, 2329, 3, 268, 134, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 270, 135, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 249, 1, 0, 0, 0, 2333, 2336, 3, 248, 124, 0, 2334, 2336, 3, 246, 123, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2334, 1, 0, 0, 0, 2336, 251, 1, 0, 0, 0, 2337, 2338, 5, 332, 0, 0, 2338, 2339, 3, 254, 127, 0, 2339, 253, 1, 0, 0, 0, 2340, 2341, 5, 399, 0, 0, 2341, 2342, 3, 256, 128, 0, 2342, 2343, 5, 400, 0, 0, 2343, 255, 1, 0, 0, 0, 2344, 2349, 3, 258, 129, 0, 2345, 2346, 5, 397, 0, 0, 2346, 2348, 3, 258, 129, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2361, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2357, 3, 260, 130, 0, 2353, 2354, 5, 397, 0, 0, 2354, 2356, 3, 260, 130, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2359, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2360, 2344, 1, 0, 0, 0, 2360, 2352, 1, 0, 0, 0, 2361, 257, 1, 0, 0, 0, 2362, 2363, 5, 426, 0, 0, 2363, 2364, 5, 405, 0, 0, 2364, 2365, 5, 426, 0, 0, 2365, 259, 1, 0, 0, 0, 2366, 2367, 5, 426, 0, 0, 2367, 261, 1, 0, 0, 0, 2368, 2369, 5, 127, 0, 0, 2369, 2370, 5, 334, 0, 0, 2370, 2371, 5, 32, 0, 0, 2371, 2375, 5, 426, 0, 0, 2372, 2373, 5, 110, 0, 0, 2373, 2374, 5, 32, 0, 0, 2374, 2376, 5, 426, 0, 0, 2375, 2372, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 263, 1, 0, 0, 0, 2377, 2378, 5, 44, 0, 0, 2378, 2379, 5, 169, 0, 0, 2379, 2380, 5, 334, 0, 0, 2380, 2381, 5, 32, 0, 0, 2381, 2382, 5, 426, 0, 0, 2382, 265, 1, 0, 0, 0, 2383, 2384, 5, 198, 0, 0, 2384, 2385, 5, 174, 0, 0, 2385, 2386, 5, 334, 0, 0, 2386, 2387, 5, 32, 0, 0, 2387, 2388, 5, 426, 0, 0, 2388, 267, 1, 0, 0, 0, 2389, 2390, 5, 186, 0, 0, 2390, 2391, 5, 334, 0, 0, 2391, 2392, 5, 32, 0, 0, 2392, 2393, 5, 426, 0, 0, 2393, 269, 1, 0, 0, 0, 2394, 2395, 5, 219, 0, 0, 2395, 2396, 5, 85, 0, 0, 2396, 2397, 5, 17, 0, 0, 2397, 2398, 5, 426, 0, 0, 2398, 271, 1, 0, 0, 0, 2399, 2400, 5, 321, 0, 0, 2400, 2401, 5, 17, 0, 0, 2401, 2402, 5, 160, 0, 0, 2402, 2403, 5, 426, 0, 0, 2403, 2404, 5, 233, 0, 0, 2404, 2409, 5, 426, 0, 0, 2405, 2406, 5, 159, 0, 0, 2406, 2407, 5, 426, 0, 0, 2407, 2408, 5, 232, 0, 0, 2408, 2410, 5, 426, 0, 0, 2409, 2405, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2441, 1, 0, 0, 0, 2411, 2412, 5, 321, 0, 0, 2412, 2413, 5, 32, 0, 0, 2413, 2417, 5, 426, 0, 0, 2414, 2415, 5, 387, 0, 0, 2415, 2416, 5, 302, 0, 0, 2416, 2418, 3, 254, 127, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2422, 1, 0, 0, 0, 2419, 2420, 5, 321, 0, 0, 2420, 2421, 5, 17, 0, 0, 2421, 2423, 3, 926, 463, 0, 2422, 2419, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2441, 1, 0, 0, 0, 2424, 2425, 5, 321, 0, 0, 2425, 2426, 5, 32, 0, 0, 2426, 2430, 3, 926, 463, 0, 2427, 2428, 5, 387, 0, 0, 2428, 2429, 5, 302, 0, 0, 2429, 2431, 3, 254, 127, 0, 2430, 2427, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2435, 1, 0, 0, 0, 2432, 2433, 5, 321, 0, 0, 2433, 2434, 5, 17, 0, 0, 2434, 2436, 3, 926, 463, 0, 2435, 2432, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2441, 1, 0, 0, 0, 2437, 2438, 5, 321, 0, 0, 2438, 2439, 5, 17, 0, 0, 2439, 2441, 3, 926, 463, 0, 2440, 2399, 1, 0, 0, 0, 2440, 2411, 1, 0, 0, 0, 2440, 2424, 1, 0, 0, 0, 2440, 2437, 1, 0, 0, 0, 2441, 273, 1, 0, 0, 0, 2442, 2443, 5, 189, 0, 0, 2443, 2444, 5, 426, 0, 0, 2444, 275, 1, 0, 0, 0, 2445, 2450, 3, 344, 172, 0, 2446, 2447, 5, 397, 0, 0, 2447, 2449, 3, 344, 172, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2452, 1, 0, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 277, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2458, 3, 346, 173, 0, 2454, 2455, 5, 397, 0, 0, 2455, 2457, 3, 346, 173, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 279, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2466, 3, 374, 187, 0, 2462, 2463, 5, 397, 0, 0, 2463, 2465, 3, 374, 187, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 281, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2474, 3, 284, 142, 0, 2470, 2471, 5, 397, 0, 0, 2471, 2473, 3, 284, 142, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2476, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 283, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2482, 3, 926, 463, 0, 2478, 2479, 5, 395, 0, 0, 2479, 2481, 3, 926, 463, 0, 2480, 2478, 1, 0, 0, 0, 2481, 2484, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2487, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2485, 2487, 4, 142, 0, 0, 2486, 2477, 1, 0, 0, 0, 2486, 2485, 1, 0, 0, 0, 2487, 285, 1, 0, 0, 0, 2488, 2489, 3, 926, 463, 0, 2489, 287, 1, 0, 0, 0, 2490, 2500, 3, 284, 142, 0, 2491, 2496, 5, 395, 0, 0, 2492, 2497, 5, 104, 0, 0, 2493, 2497, 5, 175, 0, 0, 2494, 2497, 5, 375, 0, 0, 2495, 2497, 3, 926, 463, 0, 2496, 2492, 1, 0, 0, 0, 2496, 2493, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2495, 1, 0, 0, 0, 2497, 2499, 1, 0, 0, 0, 2498, 2491, 1, 0, 0, 0, 2499, 2502, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 289, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2503, 2508, 3, 334, 167, 0, 2504, 2505, 5, 397, 0, 0, 2505, 2507, 3, 334, 167, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 291, 1, 0, 0, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2512, 5, 399, 0, 0, 2512, 2513, 3, 282, 141, 0, 2513, 2514, 5, 400, 0, 0, 2514, 293, 1, 0, 0, 0, 2515, 2517, 3, 296, 148, 0, 2516, 2518, 3, 298, 149, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2521, 3, 300, 150, 0, 2520, 2515, 1, 0, 0, 0, 2520, 2519, 1, 0, 0, 0, 2521, 295, 1, 0, 0, 0, 2522, 2525, 3, 970, 485, 0, 2523, 2525, 3, 972, 486, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2523, 1, 0, 0, 0, 2525, 297, 1, 0, 0, 0, 2526, 2527, 7, 14, 0, 0, 2527, 299, 1, 0, 0, 0, 2528, 2532, 5, 109, 0, 0, 2529, 2530, 5, 216, 0, 0, 2530, 2532, 5, 109, 0, 0, 2531, 2528, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 301, 1, 0, 0, 0, 2533, 2534, 7, 15, 0, 0, 2534, 303, 1, 0, 0, 0, 2535, 2536, 5, 55, 0, 0, 2536, 2538, 3, 926, 463, 0, 2537, 2535, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 3, 308, 154, 0, 2540, 2542, 3, 370, 185, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 305, 1, 0, 0, 0, 2543, 2544, 5, 55, 0, 0, 2544, 2545, 3, 926, 463, 0, 2545, 2547, 3, 308, 154, 0, 2546, 2548, 3, 372, 186, 0, 2547, 2546, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 307, 1, 0, 0, 0, 2549, 2552, 3, 310, 155, 0, 2550, 2552, 3, 312, 156, 0, 2551, 2549, 1, 0, 0, 0, 2551, 2550, 1, 0, 0, 0, 2552, 309, 1, 0, 0, 0, 2553, 2554, 3, 368, 184, 0, 2554, 2555, 3, 292, 146, 0, 2555, 311, 1, 0, 0, 0, 2556, 2557, 5, 40, 0, 0, 2557, 2558, 5, 399, 0, 0, 2558, 2559, 3, 828, 414, 0, 2559, 2560, 5, 400, 0, 0, 2560, 313, 1, 0, 0, 0, 2561, 2562, 5, 55, 0, 0, 2562, 2564, 3, 926, 463, 0, 2563, 2561, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 5, 136, 0, 0, 2566, 2567, 5, 173, 0, 0, 2567, 2568, 3, 292, 146, 0, 2568, 2569, 5, 269, 0, 0, 2569, 2570, 3, 660, 330, 0, 2570, 2572, 3, 292, 146, 0, 2571, 2573, 3, 370, 185, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 315, 1, 0, 0, 0, 2574, 2575, 5, 55, 0, 0, 2575, 2576, 3, 926, 463, 0, 2576, 2577, 5, 136, 0, 0, 2577, 2578, 5, 173, 0, 0, 2578, 2579, 3, 292, 146, 0, 2579, 2580, 5, 269, 0, 0, 2580, 2581, 3, 660, 330, 0, 2581, 2583, 3, 292, 146, 0, 2582, 2584, 3, 372, 186, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 317, 1, 0, 0, 0, 2585, 2588, 3, 324, 162, 0, 2586, 2588, 3, 320, 160, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2586, 1, 0, 0, 0, 2588, 319, 1, 0, 0, 0, 2589, 2594, 3, 322, 161, 0, 2590, 2591, 5, 397, 0, 0, 2591, 2593, 3, 322, 161, 0, 2592, 2590, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 321, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2597, 2598, 5, 399, 0, 0, 2598, 2599, 3, 324, 162, 0, 2599, 2600, 5, 400, 0, 0, 2600, 323, 1, 0, 0, 0, 2601, 2606, 3, 326, 163, 0, 2602, 2603, 5, 397, 0, 0, 2603, 2605, 3, 326, 163, 0, 2604, 2602, 1, 0, 0, 0, 2605, 2608, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 325, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2610, 3, 804, 402, 0, 2610, 327, 1, 0, 0, 0, 2611, 2614, 3, 326, 163, 0, 2612, 2614, 3, 322, 161, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2612, 1, 0, 0, 0, 2614, 329, 1, 0, 0, 0, 2615, 2616, 7, 16, 0, 0, 2616, 331, 1, 0, 0, 0, 2617, 2618, 5, 220, 0, 0, 2618, 2619, 7, 17, 0, 0, 2619, 333, 1, 0, 0, 0, 2620, 2622, 3, 284, 142, 0, 2621, 2623, 3, 330, 165, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 332, 166, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 335, 1, 0, 0, 0, 2627, 2632, 3, 338, 169, 0, 2628, 2629, 5, 397, 0, 0, 2629, 2631, 3, 338, 169, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2634, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 337, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2635, 2638, 3, 286, 143, 0, 2636, 2637, 5, 47, 0, 0, 2637, 2639, 5, 426, 0, 0, 2638, 2636, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 339, 1, 0, 0, 0, 2640, 2641, 7, 16, 0, 0, 2641, 341, 1, 0, 0, 0, 2642, 2645, 3, 284, 142, 0, 2643, 2645, 3, 828, 414, 0, 2644, 2642, 1, 0, 0, 0, 2644, 2643, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 340, 170, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2650, 1, 0, 0, 0, 2649, 2651, 3, 332, 166, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 343, 1, 0, 0, 0, 2652, 2653, 3, 286, 143, 0, 2653, 2656, 3, 376, 188, 0, 2654, 2655, 5, 47, 0, 0, 2655, 2657, 5, 426, 0, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 345, 1, 0, 0, 0, 2658, 2661, 3, 348, 174, 0, 2659, 2661, 3, 350, 175, 0, 2660, 2658, 1, 0, 0, 0, 2660, 2659, 1, 0, 0, 0, 2661, 347, 1, 0, 0, 0, 2662, 2665, 3, 314, 157, 0, 2663, 2665, 3, 304, 152, 0, 2664, 2662, 1, 0, 0, 0, 2664, 2663, 1, 0, 0, 0, 2665, 349, 1, 0, 0, 0, 2666, 2667, 3, 286, 143, 0, 2667, 2669, 3, 376, 188, 0, 2668, 2670, 3, 352, 176, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2673, 1, 0, 0, 0, 2671, 2672, 5, 47, 0, 0, 2672, 2674, 5, 426, 0, 0, 2673, 2671, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 351, 1, 0, 0, 0, 2675, 2678, 3, 354, 177, 0, 2676, 2678, 3, 356, 178, 0, 2677, 2675, 1, 0, 0, 0, 2677, 2676, 1, 0, 0, 0, 2678, 353, 1, 0, 0, 0, 2679, 2680, 5, 55, 0, 0, 2680, 2682, 3, 926, 463, 0, 2681, 2679, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 5, 269, 0, 0, 2684, 2685, 3, 660, 330, 0, 2685, 2686, 5, 399, 0, 0, 2686, 2687, 3, 284, 142, 0, 2687, 2689, 5, 400, 0, 0, 2688, 2690, 3, 370, 185, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 355, 1, 0, 0, 0, 2691, 2692, 5, 55, 0, 0, 2692, 2694, 3, 926, 463, 0, 2693, 2691, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2697, 3, 364, 182, 0, 2696, 2698, 3, 370, 185, 0, 2697, 2696, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 357, 1, 0, 0, 0, 2699, 2702, 3, 360, 180, 0, 2700, 2702, 3, 362, 181, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2700, 1, 0, 0, 0, 2702, 359, 1, 0, 0, 0, 2703, 2704, 5, 55, 0, 0, 2704, 2706, 3, 926, 463, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2708, 5, 269, 0, 0, 2708, 2709, 3, 660, 330, 0, 2709, 2710, 5, 399, 0, 0, 2710, 2711, 3, 284, 142, 0, 2711, 2713, 5, 400, 0, 0, 2712, 2714, 3, 372, 186, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 361, 1, 0, 0, 0, 2715, 2716, 5, 55, 0, 0, 2716, 2718, 3, 926, 463, 0, 2717, 2715, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2721, 3, 364, 182, 0, 2720, 2722, 3, 372, 186, 0, 2721, 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 363, 1, 0, 0, 0, 2723, 2724, 5, 216, 0, 0, 2724, 2730, 5, 219, 0, 0, 2725, 2726, 5, 83, 0, 0, 2726, 2730, 3, 366, 183, 0, 2727, 2730, 3, 312, 156, 0, 2728, 2730, 3, 368, 184, 0, 2729, 2723, 1, 0, 0, 0, 2729, 2725, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2729, 2728, 1, 0, 0, 0, 2730, 365, 1, 0, 0, 0, 2731, 2735, 3, 804, 402, 0, 2732, 2735, 3, 776, 388, 0, 2733, 2735, 3, 790, 395, 0, 2734, 2731, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2733, 1, 0, 0, 0, 2735, 367, 1, 0, 0, 0, 2736, 2737, 5, 251, 0, 0, 2737, 2740, 5, 173, 0, 0, 2738, 2740, 5, 358, 0, 0, 2739, 2736, 1, 0, 0, 0, 2739, 2738, 1, 0, 0, 0, 2740, 369, 1, 0, 0, 0, 2741, 2743, 3, 294, 147, 0, 2742, 2744, 3, 302, 151, 0, 2743, 2742, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 371, 1, 0, 0, 0, 2745, 2747, 3, 294, 147, 0, 2746, 2748, 3, 302, 151, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 373, 1, 0, 0, 0, 2749, 2750, 3, 286, 143, 0, 2750, 2751, 5, 396, 0, 0, 2751, 2754, 3, 376, 188, 0, 2752, 2753, 5, 47, 0, 0, 2753, 2755, 5, 426, 0, 0, 2754, 2752, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 375, 1, 0, 0, 0, 2756, 2757, 3, 380, 190, 0, 2757, 377, 1, 0, 0, 0, 2758, 2763, 3, 376, 188, 0, 2759, 2760, 5, 397, 0, 0, 2760, 2762, 3, 376, 188, 0, 2761, 2759, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 379, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2772, 3, 382, 191, 0, 2767, 2772, 3, 384, 192, 0, 2768, 2772, 3, 386, 193, 0, 2769, 2772, 3, 388, 194, 0, 2770, 2772, 3, 390, 195, 0, 2771, 2766, 1, 0, 0, 0, 2771, 2767, 1, 0, 0, 0, 2771, 2768, 1, 0, 0, 0, 2771, 2769, 1, 0, 0, 0, 2771, 2770, 1, 0, 0, 0, 2772, 381, 1, 0, 0, 0, 2773, 2811, 5, 340, 0, 0, 2774, 2811, 5, 311, 0, 0, 2775, 2811, 5, 162, 0, 0, 2776, 2811, 5, 163, 0, 0, 2777, 2811, 5, 26, 0, 0, 2778, 2811, 5, 28, 0, 0, 2779, 2811, 5, 131, 0, 0, 2780, 2811, 5, 264, 0, 0, 2781, 2783, 5, 100, 0, 0, 2782, 2784, 5, 248, 0, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2811, 1, 0, 0, 0, 2785, 2811, 5, 71, 0, 0, 2786, 2811, 5, 72, 0, 0, 2787, 2811, 5, 337, 0, 0, 2788, 2811, 5, 338, 0, 0, 2789, 2790, 5, 337, 0, 0, 2790, 2791, 5, 387, 0, 0, 2791, 2792, 5, 188, 0, 0, 2792, 2793, 5, 336, 0, 0, 2793, 2811, 5, 394, 0, 0, 2794, 2811, 5, 323, 0, 0, 2795, 2811, 5, 27, 0, 0, 2796, 2804, 3, 990, 495, 0, 2797, 2798, 5, 399, 0, 0, 2798, 2801, 5, 431, 0, 0, 2799, 2800, 5, 397, 0, 0, 2800, 2802, 5, 431, 0, 0, 2801, 2799, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2805, 5, 400, 0, 0, 2804, 2797, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2811, 1, 0, 0, 0, 2806, 2807, 7, 18, 0, 0, 2807, 2808, 5, 399, 0, 0, 2808, 2809, 5, 431, 0, 0, 2809, 2811, 5, 400, 0, 0, 2810, 2773, 1, 0, 0, 0, 2810, 2774, 1, 0, 0, 0, 2810, 2775, 1, 0, 0, 0, 2810, 2776, 1, 0, 0, 0, 2810, 2777, 1, 0, 0, 0, 2810, 2778, 1, 0, 0, 0, 2810, 2779, 1, 0, 0, 0, 2810, 2780, 1, 0, 0, 0, 2810, 2781, 1, 0, 0, 0, 2810, 2785, 1, 0, 0, 0, 2810, 2786, 1, 0, 0, 0, 2810, 2787, 1, 0, 0, 0, 2810, 2788, 1, 0, 0, 0, 2810, 2789, 1, 0, 0, 0, 2810, 2794, 1, 0, 0, 0, 2810, 2795, 1, 0, 0, 0, 2810, 2796, 1, 0, 0, 0, 2810, 2806, 1, 0, 0, 0, 2811, 383, 1, 0, 0, 0, 2812, 2813, 5, 16, 0, 0, 2813, 2814, 5, 409, 0, 0, 2814, 2815, 3, 380, 190, 0, 2815, 2816, 5, 411, 0, 0, 2816, 385, 1, 0, 0, 0, 2817, 2818, 5, 324, 0, 0, 2818, 2819, 5, 409, 0, 0, 2819, 2820, 3, 280, 140, 0, 2820, 2821, 5, 411, 0, 0, 2821, 387, 1, 0, 0, 0, 2822, 2823, 5, 198, 0, 0, 2823, 2824, 5, 409, 0, 0, 2824, 2825, 3, 382, 191, 0, 2825, 2826, 5, 397, 0, 0, 2826, 2827, 3, 380, 190, 0, 2827, 2828, 5, 411, 0, 0, 2828, 389, 1, 0, 0, 0, 2829, 2830, 5, 357, 0, 0, 2830, 2831, 5, 409, 0, 0, 2831, 2832, 3, 378, 189, 0, 2832, 2833, 5, 411, 0, 0, 2833, 391, 1, 0, 0, 0, 2834, 2836, 7, 19, 0, 0, 2835, 2837, 7, 20, 0, 0, 2836, 2835, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 393, 1, 0, 0, 0, 2838, 2840, 3, 398, 199, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2842, 3, 396, 198, 0, 2842, 395, 1, 0, 0, 0, 2843, 2846, 3, 402, 201, 0, 2844, 2846, 3, 406, 203, 0, 2845, 2843, 1, 0, 0, 0, 2845, 2844, 1, 0, 0, 0, 2846, 397, 1, 0, 0, 0, 2847, 2848, 5, 387, 0, 0, 2848, 2853, 3, 400, 200, 0, 2849, 2850, 5, 397, 0, 0, 2850, 2852, 3, 400, 200, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 399, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2856, 2861, 3, 926, 463, 0, 2857, 2858, 5, 399, 0, 0, 2858, 2859, 3, 282, 141, 0, 2859, 2860, 5, 400, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2857, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2864, 5, 17, 0, 0, 2864, 2865, 5, 399, 0, 0, 2865, 2866, 3, 394, 197, 0, 2866, 2867, 5, 400, 0, 0, 2867, 401, 1, 0, 0, 0, 2868, 2874, 3, 404, 202, 0, 2869, 2870, 3, 392, 196, 0, 2870, 2871, 3, 404, 202, 0, 2871, 2873, 1, 0, 0, 0, 2872, 2869, 1, 0, 0, 0, 2873, 2876, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 403, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2877, 2878, 3, 620, 310, 0, 2878, 2879, 3, 416, 208, 0, 2879, 2881, 3, 692, 346, 0, 2880, 2882, 3, 638, 319, 0, 2881, 2880, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2884, 1, 0, 0, 0, 2883, 2885, 3, 676, 338, 0, 2884, 2883, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2888, 3, 724, 362, 0, 2887, 2886, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2890, 1, 0, 0, 0, 2889, 2891, 3, 740, 370, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2894, 3, 708, 354, 0, 2893, 2892, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2896, 1, 0, 0, 0, 2895, 2897, 3, 742, 371, 0, 2896, 2895, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2899, 1, 0, 0, 0, 2898, 2900, 3, 764, 382, 0, 2899, 2898, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 1, 0, 0, 0, 2901, 2903, 3, 766, 383, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2906, 3, 770, 385, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2908, 1, 0, 0, 0, 2907, 2909, 3, 772, 386, 0, 2908, 2907, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2912, 3, 420, 210, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2949, 1, 0, 0, 0, 2913, 2914, 3, 620, 310, 0, 2914, 2916, 3, 692, 346, 0, 2915, 2917, 3, 638, 319, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2919, 1, 0, 0, 0, 2918, 2920, 3, 676, 338, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2922, 1, 0, 0, 0, 2921, 2923, 3, 724, 362, 0, 2922, 2921, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2926, 3, 740, 370, 0, 2925, 2924, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2929, 3, 708, 354, 0, 2928, 2927, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2932, 3, 742, 371, 0, 2931, 2930, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2934, 1, 0, 0, 0, 2933, 2935, 3, 764, 382, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2937, 1, 0, 0, 0, 2936, 2938, 3, 766, 383, 0, 2937, 2936, 1, 0, 0, 0, 2937, 2938, 1, 0, 0, 0, 2938, 2940, 1, 0, 0, 0, 2939, 2941, 3, 770, 385, 0, 2940, 2939, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2943, 1, 0, 0, 0, 2942, 2944, 3, 772, 386, 0, 2943, 2942, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2946, 1, 0, 0, 0, 2945, 2947, 3, 420, 210, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2877, 1, 0, 0, 0, 2948, 2913, 1, 0, 0, 0, 2949, 405, 1, 0, 0, 0, 2950, 2951, 3, 416, 208, 0, 2951, 2952, 3, 410, 205, 0, 2952, 2955, 1, 0, 0, 0, 2953, 2955, 3, 410, 205, 0, 2954, 2950, 1, 0, 0, 0, 2954, 2953, 1, 0, 0, 0, 2955, 407, 1, 0, 0, 0, 2956, 2958, 3, 692, 346, 0, 2957, 2959, 3, 620, 310, 0, 2958, 2957, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2962, 3, 676, 338, 0, 2961, 2960, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2964, 1, 0, 0, 0, 2963, 2965, 3, 724, 362, 0, 2964, 2963, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2968, 3, 740, 370, 0, 2967, 2966, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2971, 3, 708, 354, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2973, 1, 0, 0, 0, 2972, 2974, 3, 742, 371, 0, 2973, 2972, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2981, 1, 0, 0, 0, 2975, 2976, 5, 399, 0, 0, 2976, 2977, 3, 410, 205, 0, 2977, 2978, 5, 400, 0, 0, 2978, 2981, 1, 0, 0, 0, 2979, 2981, 3, 680, 340, 0, 2980, 2956, 1, 0, 0, 0, 2980, 2975, 1, 0, 0, 0, 2980, 2979, 1, 0, 0, 0, 2981, 409, 1, 0, 0, 0, 2982, 2984, 3, 408, 204, 0, 2983, 2985, 3, 412, 206, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2987, 1, 0, 0, 0, 2986, 2988, 3, 764, 382, 0, 2987, 2986, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2991, 3, 766, 383, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 770, 385, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 772, 386, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2999, 1, 0, 0, 0, 2998, 3000, 3, 420, 210, 0, 2999, 2998, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 411, 1, 0, 0, 0, 3001, 3002, 3, 392, 196, 0, 3002, 3003, 3, 408, 204, 0, 3003, 3005, 1, 0, 0, 0, 3004, 3001, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 413, 1, 0, 0, 0, 3008, 3010, 3, 398, 199, 0, 3009, 3008, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 3, 410, 205, 0, 3012, 415, 1, 0, 0, 0, 3013, 3030, 5, 161, 0, 0, 3014, 3015, 5, 235, 0, 0, 3015, 3017, 3, 418, 209, 0, 3016, 3018, 3, 44, 22, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3031, 1, 0, 0, 0, 3019, 3021, 5, 166, 0, 0, 3020, 3022, 5, 329, 0, 0, 3021, 3020, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3028, 3, 910, 455, 0, 3024, 3025, 5, 399, 0, 0, 3025, 3026, 3, 282, 141, 0, 3026, 3027, 5, 400, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3024, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3031, 1, 0, 0, 0, 3030, 3014, 1, 0, 0, 0, 3030, 3019, 1, 0, 0, 0, 3031, 417, 1, 0, 0, 0, 3032, 3034, 5, 188, 0, 0, 3033, 3032, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 5, 93, 0, 0, 3036, 3038, 5, 426, 0, 0, 3037, 3039, 3, 250, 125, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 272, 136, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3046, 1, 0, 0, 0, 3043, 3044, 5, 329, 0, 0, 3044, 3046, 3, 910, 455, 0, 3045, 3033, 1, 0, 0, 0, 3045, 3043, 1, 0, 0, 0, 3046, 419, 1, 0, 0, 0, 3047, 3056, 5, 185, 0, 0, 3048, 3049, 5, 431, 0, 0, 3049, 3051, 5, 397, 0, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3057, 5, 431, 0, 0, 3053, 3054, 5, 431, 0, 0, 3054, 3055, 5, 223, 0, 0, 3055, 3057, 5, 431, 0, 0, 3056, 3050, 1, 0, 0, 0, 3056, 3053, 1, 0, 0, 0, 3057, 421, 1, 0, 0, 0, 3058, 3059, 5, 86, 0, 0, 3059, 3060, 5, 139, 0, 0, 3060, 3062, 3, 660, 330, 0, 3061, 3063, 3, 676, 338, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 423, 1, 0, 0, 0, 3064, 3065, 3, 284, 142, 0, 3065, 3066, 5, 405, 0, 0, 3066, 3067, 3, 426, 213, 0, 3067, 425, 1, 0, 0, 0, 3068, 3071, 3, 614, 307, 0, 3069, 3071, 3, 848, 424, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3069, 1, 0, 0, 0, 3071, 427, 1, 0, 0, 0, 3072, 3073, 5, 304, 0, 0, 3073, 3078, 3, 424, 212, 0, 3074, 3075, 5, 397, 0, 0, 3075, 3077, 3, 424, 212, 0, 3076, 3074, 1, 0, 0, 0, 3077, 3080, 1, 0, 0, 0, 3078, 3076, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 429, 1, 0, 0, 0, 3080, 3078, 1, 0, 0, 0, 3081, 3082, 5, 365, 0, 0, 3082, 3083, 3, 660, 330, 0, 3083, 3085, 3, 428, 214, 0, 3084, 3086, 3, 676, 338, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 431, 1, 0, 0, 0, 3087, 3092, 3, 434, 217, 0, 3088, 3092, 3, 444, 222, 0, 3089, 3092, 3, 446, 223, 0, 3090, 3092, 3, 448, 224, 0, 3091, 3087, 1, 0, 0, 0, 3091, 3088, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3090, 1, 0, 0, 0, 3092, 433, 1, 0, 0, 0, 3093, 3094, 5, 318, 0, 0, 3094, 3103, 5, 344, 0, 0, 3095, 3100, 3, 436, 218, 0, 3096, 3097, 5, 397, 0, 0, 3097, 3099, 3, 436, 218, 0, 3098, 3096, 1, 0, 0, 0, 3099, 3102, 1, 0, 0, 0, 3100, 3098, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3104, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3095, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 435, 1, 0, 0, 0, 3105, 3108, 3, 440, 220, 0, 3106, 3108, 3, 438, 219, 0, 3107, 3105, 1, 0, 0, 0, 3107, 3106, 1, 0, 0, 0, 3108, 437, 1, 0, 0, 0, 3109, 3110, 5, 261, 0, 0, 3110, 3111, 7, 21, 0, 0, 3111, 439, 1, 0, 0, 0, 3112, 3113, 5, 168, 0, 0, 3113, 3114, 5, 182, 0, 0, 3114, 3115, 3, 442, 221, 0, 3115, 441, 1, 0, 0, 0, 3116, 3117, 5, 312, 0, 0, 3117, 443, 1, 0, 0, 0, 3118, 3120, 5, 48, 0, 0, 3119, 3121, 5, 389, 0, 0, 3120, 3119, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 445, 1, 0, 0, 0, 3122, 3124, 5, 289, 0, 0, 3123, 3125, 5, 389, 0, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 447, 1, 0, 0, 0, 3126, 3127, 5, 304, 0, 0, 3127, 3128, 5, 22, 0, 0, 3128, 3129, 3, 908, 454, 0, 3129, 449, 1, 0, 0, 0, 3130, 3131, 5, 1, 0, 0, 3131, 3133, 5, 346, 0, 0, 3132, 3134, 5, 431, 0, 0, 3133, 3132, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 451, 1, 0, 0, 0, 3137, 3138, 5, 1, 0, 0, 3138, 3140, 5, 50, 0, 0, 3139, 3141, 5, 431, 0, 0, 3140, 3139, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 453, 1, 0, 0, 0, 3144, 3146, 5, 203, 0, 0, 3145, 3147, 5, 436, 0, 0, 3146, 3145, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 5, 166, 0, 0, 3149, 3154, 3, 660, 330, 0, 3150, 3152, 5, 17, 0, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3155, 3, 926, 463, 0, 3154, 3151, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 5, 370, 0, 0, 3157, 3158, 3, 628, 314, 0, 3158, 3159, 5, 224, 0, 0, 3159, 3160, 3, 828, 414, 0, 3160, 3161, 3, 456, 228, 0, 3161, 455, 1, 0, 0, 0, 3162, 3165, 3, 460, 230, 0, 3163, 3165, 3, 462, 231, 0, 3164, 3162, 1, 0, 0, 0, 3164, 3163, 1, 0, 0, 0, 3165, 3168, 1, 0, 0, 0, 3166, 3164, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3170, 1, 0, 0, 0, 3168, 3166, 1, 0, 0, 0, 3169, 3171, 3, 458, 229, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 457, 1, 0, 0, 0, 3172, 3173, 5, 383, 0, 0, 3173, 3174, 5, 216, 0, 0, 3174, 3177, 5, 201, 0, 0, 3175, 3176, 5, 11, 0, 0, 3176, 3178, 3, 828, 414, 0, 3177, 3175, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 5, 335, 0, 0, 3180, 3182, 5, 161, 0, 0, 3181, 3183, 3, 292, 146, 0, 3182, 3181, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 3185, 5, 374, 0, 0, 3185, 3186, 3, 686, 343, 0, 3186, 459, 1, 0, 0, 0, 3187, 3188, 5, 383, 0, 0, 3188, 3189, 5, 201, 0, 0, 3189, 3190, 5, 11, 0, 0, 3190, 3191, 3, 828, 414, 0, 3191, 3192, 5, 335, 0, 0, 3192, 3193, 3, 464, 232, 0, 3193, 461, 1, 0, 0, 0, 3194, 3195, 5, 383, 0, 0, 3195, 3196, 5, 201, 0, 0, 3196, 3197, 5, 335, 0, 0, 3197, 3198, 3, 464, 232, 0, 3198, 463, 1, 0, 0, 0, 3199, 3200, 5, 365, 0, 0, 3200, 3203, 3, 428, 214, 0, 3201, 3203, 5, 86, 0, 0, 3202, 3199, 1, 0, 0, 0, 3202, 3201, 1, 0, 0, 0, 3203, 465, 1, 0, 0, 0, 3204, 3205, 5, 176, 0, 0, 3205, 3207, 5, 258, 0, 0, 3206, 3208, 5, 426, 0, 0, 3207, 3206, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 467, 1, 0, 0, 0, 3211, 3212, 5, 51, 0, 0, 3212, 3213, 5, 405, 0, 0, 3213, 3214, 5, 431, 0, 0, 3214, 469, 1, 0, 0, 0, 3215, 3216, 5, 246, 0, 0, 3216, 3217, 5, 426, 0, 0, 3217, 471, 1, 0, 0, 0, 3218, 3219, 5, 352, 0, 0, 3219, 3220, 5, 426, 0, 0, 3220, 473, 1, 0, 0, 0, 3221, 3222, 5, 320, 0, 0, 3222, 3223, 5, 426, 0, 0, 3223, 475, 1, 0, 0, 0, 3224, 3248, 5, 9, 0, 0, 3225, 3226, 5, 329, 0, 0, 3226, 3227, 3, 660, 330, 0, 3227, 3228, 3, 478, 239, 0, 3228, 3249, 1, 0, 0, 0, 3229, 3230, 5, 378, 0, 0, 3230, 3232, 3, 664, 332, 0, 3231, 3233, 5, 17, 0, 0, 3232, 3231, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 3, 484, 242, 0, 3235, 3249, 1, 0, 0, 0, 3236, 3237, 5, 202, 0, 0, 3237, 3238, 5, 378, 0, 0, 3238, 3239, 3, 664, 332, 0, 3239, 3240, 3, 486, 243, 0, 3240, 3249, 1, 0, 0, 0, 3241, 3242, 3, 92, 46, 0, 3242, 3243, 3, 492, 246, 0, 3243, 3249, 1, 0, 0, 0, 3244, 3245, 5, 69, 0, 0, 3245, 3249, 3, 588, 294, 0, 3246, 3247, 5, 155, 0, 0, 3247, 3249, 3, 584, 292, 0, 3248, 3225, 1, 0, 0, 0, 3248, 3229, 1, 0, 0, 0, 3248, 3236, 1, 0, 0, 0, 3248, 3241, 1, 0, 0, 0, 3248, 3244, 1, 0, 0, 0, 3248, 3246, 1, 0, 0, 0, 3249, 477, 1, 0, 0, 0, 3250, 3272, 3, 502, 251, 0, 3251, 3272, 3, 534, 267, 0, 3252, 3272, 3, 536, 268, 0, 3253, 3272, 3, 522, 261, 0, 3254, 3272, 3, 526, 263, 0, 3255, 3272, 3, 528, 264, 0, 3256, 3272, 3, 530, 265, 0, 3257, 3272, 3, 538, 269, 0, 3258, 3272, 3, 560, 280, 0, 3259, 3272, 3, 562, 281, 0, 3260, 3272, 3, 482, 241, 0, 3261, 3272, 3, 512, 256, 0, 3262, 3272, 3, 506, 253, 0, 3263, 3272, 3, 480, 240, 0, 3264, 3266, 3, 912, 456, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3272, 3, 480, 240, 0, 3268, 3272, 3, 578, 289, 0, 3269, 3272, 3, 580, 290, 0, 3270, 3272, 3, 582, 291, 0, 3271, 3250, 1, 0, 0, 0, 3271, 3251, 1, 0, 0, 0, 3271, 3252, 1, 0, 0, 0, 3271, 3253, 1, 0, 0, 0, 3271, 3254, 1, 0, 0, 0, 3271, 3255, 1, 0, 0, 0, 3271, 3256, 1, 0, 0, 0, 3271, 3257, 1, 0, 0, 0, 3271, 3258, 1, 0, 0, 0, 3271, 3259, 1, 0, 0, 0, 3271, 3260, 1, 0, 0, 0, 3271, 3261, 1, 0, 0, 0, 3271, 3262, 1, 0, 0, 0, 3271, 3263, 1, 0, 0, 0, 3271, 3265, 1, 0, 0, 0, 3271, 3268, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3270, 1, 0, 0, 0, 3272, 479, 1, 0, 0, 0, 3273, 3289, 3, 546, 273, 0, 3274, 3289, 3, 558, 279, 0, 3275, 3289, 3, 568, 284, 0, 3276, 3289, 3, 542, 271, 0, 3277, 3289, 3, 564, 282, 0, 3278, 3289, 3, 570, 285, 0, 3279, 3289, 3, 550, 275, 0, 3280, 3289, 3, 548, 274, 0, 3281, 3289, 3, 576, 288, 0, 3282, 3289, 3, 516, 258, 0, 3283, 3289, 3, 518, 259, 0, 3284, 3289, 3, 514, 257, 0, 3285, 3289, 3, 504, 252, 0, 3286, 3289, 3, 508, 254, 0, 3287, 3289, 3, 510, 255, 0, 3288, 3273, 1, 0, 0, 0, 3288, 3274, 1, 0, 0, 0, 3288, 3275, 1, 0, 0, 0, 3288, 3276, 1, 0, 0, 0, 3288, 3277, 1, 0, 0, 0, 3288, 3278, 1, 0, 0, 0, 3288, 3279, 1, 0, 0, 0, 3288, 3280, 1, 0, 0, 0, 3288, 3281, 1, 0, 0, 0, 3288, 3282, 1, 0, 0, 0, 3288, 3283, 1, 0, 0, 0, 3288, 3284, 1, 0, 0, 0, 3288, 3285, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3288, 3287, 1, 0, 0, 0, 3289, 481, 1, 0, 0, 0, 3290, 3291, 5, 237, 0, 0, 3291, 3292, 5, 45, 0, 0, 3292, 3293, 5, 399, 0, 0, 3293, 3294, 3, 344, 172, 0, 3294, 3295, 5, 400, 0, 0, 3295, 483, 1, 0, 0, 0, 3296, 3302, 3, 540, 270, 0, 3297, 3302, 3, 502, 251, 0, 3298, 3302, 3, 522, 261, 0, 3299, 3302, 3, 536, 268, 0, 3300, 3302, 3, 414, 207, 0, 3301, 3296, 1, 0, 0, 0, 3301, 3297, 1, 0, 0, 0, 3301, 3298, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3300, 1, 0, 0, 0, 3302, 485, 1, 0, 0, 0, 3303, 3306, 3, 488, 244, 0, 3304, 3306, 3, 490, 245, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3304, 1, 0, 0, 0, 3306, 487, 1, 0, 0, 0, 3307, 3310, 3, 48, 24, 0, 3308, 3310, 3, 50, 25, 0, 3309, 3307, 1, 0, 0, 0, 3309, 3308, 1, 0, 0, 0, 3310, 489, 1, 0, 0, 0, 3311, 3312, 5, 265, 0, 0, 3312, 491, 1, 0, 0, 0, 3313, 3317, 3, 494, 247, 0, 3314, 3317, 3, 496, 248, 0, 3315, 3317, 3, 498, 249, 0, 3316, 3313, 1, 0, 0, 0, 3316, 3314, 1, 0, 0, 0, 3316, 3315, 1, 0, 0, 0, 3317, 493, 1, 0, 0, 0, 3318, 3319, 3, 654, 327, 0, 3319, 3320, 5, 304, 0, 0, 3320, 3321, 5, 76, 0, 0, 3321, 3322, 3, 62, 31, 0, 3322, 495, 1, 0, 0, 0, 3323, 3324, 3, 654, 327, 0, 3324, 3325, 5, 304, 0, 0, 3325, 3326, 5, 236, 0, 0, 3326, 3327, 3, 150, 75, 0, 3327, 497, 1, 0, 0, 0, 3328, 3329, 3, 654, 327, 0, 3329, 3330, 5, 304, 0, 0, 3330, 3331, 7, 22, 0, 0, 3331, 3332, 5, 426, 0, 0, 3332, 499, 1, 0, 0, 0, 3333, 3334, 3, 654, 327, 0, 3334, 3335, 5, 304, 0, 0, 3335, 3336, 5, 196, 0, 0, 3336, 3337, 5, 426, 0, 0, 3337, 501, 1, 0, 0, 0, 3338, 3339, 5, 274, 0, 0, 3339, 3340, 5, 341, 0, 0, 3340, 3341, 3, 662, 331, 0, 3341, 503, 1, 0, 0, 0, 3342, 3345, 5, 4, 0, 0, 3343, 3345, 5, 278, 0, 0, 3344, 3342, 1, 0, 0, 0, 3344, 3343, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 46, 0, 0, 3347, 3348, 5, 399, 0, 0, 3348, 3349, 3, 276, 138, 0, 3349, 3351, 5, 400, 0, 0, 3350, 3352, 3, 42, 21, 0, 3351, 3350, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 505, 1, 0, 0, 0, 3353, 3356, 5, 4, 0, 0, 3354, 3357, 3, 316, 158, 0, 3355, 3357, 3, 306, 153, 0, 3356, 3354, 1, 0, 0, 0, 3356, 3355, 1, 0, 0, 0, 3357, 507, 1, 0, 0, 0, 3358, 3359, 5, 365, 0, 0, 3359, 3361, 5, 46, 0, 0, 3360, 3362, 3, 42, 21, 0, 3361, 3360, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 509, 1, 0, 0, 0, 3363, 3364, 3, 296, 148, 0, 3364, 3366, 5, 218, 0, 0, 3365, 3367, 5, 34, 0, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3372, 1, 0, 0, 0, 3368, 3369, 3, 296, 148, 0, 3369, 3370, 5, 222, 0, 0, 3370, 3372, 1, 0, 0, 0, 3371, 3363, 1, 0, 0, 0, 3371, 3368, 1, 0, 0, 0, 3372, 511, 1, 0, 0, 0, 3373, 3374, 5, 101, 0, 0, 3374, 3375, 5, 55, 0, 0, 3375, 3376, 3, 926, 463, 0, 3376, 513, 1, 0, 0, 0, 3377, 3379, 5, 38, 0, 0, 3378, 3380, 5, 45, 0, 0, 3379, 3378, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 3, 284, 142, 0, 3382, 3383, 3, 286, 143, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3386, 3, 358, 179, 0, 3385, 3384, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3388, 5, 47, 0, 0, 3388, 3390, 5, 426, 0, 0, 3389, 3387, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3392, 1, 0, 0, 0, 3391, 3393, 3, 520, 260, 0, 3392, 3391, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 3395, 1, 0, 0, 0, 3394, 3396, 3, 42, 21, 0, 3395, 3394, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 515, 1, 0, 0, 0, 3397, 3398, 5, 365, 0, 0, 3398, 3399, 5, 319, 0, 0, 3399, 3401, 5, 134, 0, 0, 3400, 3402, 5, 45, 0, 0, 3401, 3400, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3404, 3, 284, 142, 0, 3404, 3405, 5, 304, 0, 0, 3405, 3408, 3, 254, 127, 0, 3406, 3407, 5, 47, 0, 0, 3407, 3409, 5, 426, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 517, 1, 0, 0, 0, 3410, 3411, 5, 365, 0, 0, 3411, 3412, 5, 319, 0, 0, 3412, 3413, 5, 304, 0, 0, 3413, 3414, 3, 254, 127, 0, 3414, 519, 1, 0, 0, 0, 3415, 3419, 5, 130, 0, 0, 3416, 3417, 5, 6, 0, 0, 3417, 3419, 3, 926, 463, 0, 3418, 3415, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 521, 1, 0, 0, 0, 3420, 3422, 5, 4, 0, 0, 3421, 3423, 3, 44, 22, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3425, 1, 0, 0, 0, 3424, 3426, 3, 524, 262, 0, 3425, 3424, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 523, 1, 0, 0, 0, 3429, 3431, 3, 912, 456, 0, 3430, 3432, 3, 532, 266, 0, 3431, 3430, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 525, 1, 0, 0, 0, 3433, 3437, 5, 342, 0, 0, 3434, 3436, 3, 912, 456, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 527, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3444, 5, 15, 0, 0, 3441, 3443, 3, 912, 456, 0, 3442, 3441, 1, 0, 0, 0, 3443, 3446, 1, 0, 0, 0, 3444, 3442, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 529, 1, 0, 0, 0, 3446, 3444, 1, 0, 0, 0, 3447, 3451, 5, 353, 0, 0, 3448, 3450, 3, 912, 456, 0, 3449, 3448, 1, 0, 0, 0, 3450, 3453, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 531, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3454, 3455, 5, 189, 0, 0, 3455, 3456, 5, 426, 0, 0, 3456, 533, 1, 0, 0, 0, 3457, 3458, 5, 102, 0, 0, 3458, 3459, 5, 239, 0, 0, 3459, 535, 1, 0, 0, 0, 3460, 3462, 5, 101, 0, 0, 3461, 3463, 3, 40, 20, 0, 3462, 3461, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3465, 5, 237, 0, 0, 3465, 3471, 3, 916, 458, 0, 3466, 3467, 5, 397, 0, 0, 3467, 3468, 5, 237, 0, 0, 3468, 3470, 3, 916, 458, 0, 3469, 3466, 1, 0, 0, 0, 3470, 3473, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3476, 3, 16, 8, 0, 3475, 3474, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3478, 1, 0, 0, 0, 3477, 3479, 5, 255, 0, 0, 3478, 3477, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 1, 0, 0, 0, 3480, 3482, 3, 18, 9, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 537, 1, 0, 0, 0, 3483, 3484, 5, 304, 0, 0, 3484, 3485, 5, 332, 0, 0, 3485, 3493, 3, 254, 127, 0, 3486, 3487, 5, 363, 0, 0, 3487, 3489, 5, 332, 0, 0, 3488, 3490, 3, 40, 20, 0, 3489, 3488, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3493, 3, 254, 127, 0, 3492, 3483, 1, 0, 0, 0, 3492, 3486, 1, 0, 0, 0, 3493, 539, 1, 0, 0, 0, 3494, 3495, 5, 304, 0, 0, 3495, 3496, 5, 332, 0, 0, 3496, 3504, 3, 254, 127, 0, 3497, 3498, 5, 363, 0, 0, 3498, 3500, 5, 332, 0, 0, 3499, 3501, 3, 40, 20, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3504, 3, 254, 127, 0, 3503, 3494, 1, 0, 0, 0, 3503, 3497, 1, 0, 0, 0, 3504, 541, 1, 0, 0, 0, 3505, 3515, 5, 304, 0, 0, 3506, 3507, 5, 301, 0, 0, 3507, 3511, 5, 426, 0, 0, 3508, 3509, 5, 387, 0, 0, 3509, 3510, 5, 302, 0, 0, 3510, 3512, 3, 254, 127, 0, 3511, 3508, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3516, 1, 0, 0, 0, 3513, 3514, 5, 302, 0, 0, 3514, 3516, 3, 254, 127, 0, 3515, 3506, 1, 0, 0, 0, 3515, 3513, 1, 0, 0, 0, 3516, 3521, 1, 0, 0, 0, 3517, 3518, 5, 363, 0, 0, 3518, 3519, 5, 302, 0, 0, 3519, 3521, 3, 254, 127, 0, 3520, 3505, 1, 0, 0, 0, 3520, 3517, 1, 0, 0, 0, 3521, 543, 1, 0, 0, 0, 3522, 3524, 3, 660, 330, 0, 3523, 3525, 3, 912, 456, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 545, 1, 0, 0, 0, 3526, 3527, 5, 304, 0, 0, 3527, 3528, 5, 129, 0, 0, 3528, 3529, 3, 586, 293, 0, 3529, 547, 1, 0, 0, 0, 3530, 3531, 5, 216, 0, 0, 3531, 3534, 7, 23, 0, 0, 3532, 3534, 3, 234, 117, 0, 3533, 3530, 1, 0, 0, 0, 3533, 3532, 1, 0, 0, 0, 3534, 549, 1, 0, 0, 0, 3535, 3536, 5, 304, 0, 0, 3536, 3537, 5, 310, 0, 0, 3537, 3538, 5, 189, 0, 0, 3538, 3539, 3, 552, 276, 0, 3539, 551, 1, 0, 0, 0, 3540, 3541, 5, 399, 0, 0, 3541, 3542, 3, 554, 277, 0, 3542, 3543, 5, 400, 0, 0, 3543, 553, 1, 0, 0, 0, 3544, 3549, 3, 556, 278, 0, 3545, 3546, 5, 397, 0, 0, 3546, 3548, 3, 556, 278, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3551, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 555, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3553, 3, 328, 164, 0, 3553, 3554, 5, 405, 0, 0, 3554, 3555, 5, 426, 0, 0, 3555, 557, 1, 0, 0, 0, 3556, 3557, 5, 304, 0, 0, 3557, 3558, 5, 189, 0, 0, 3558, 3559, 5, 426, 0, 0, 3559, 559, 1, 0, 0, 0, 3560, 3567, 3, 238, 119, 0, 3561, 3564, 5, 216, 0, 0, 3562, 3565, 5, 310, 0, 0, 3563, 3565, 3, 52, 26, 0, 3564, 3562, 1, 0, 0, 0, 3564, 3563, 1, 0, 0, 0, 3565, 3567, 1, 0, 0, 0, 3566, 3560, 1, 0, 0, 0, 3566, 3561, 1, 0, 0, 0, 3567, 561, 1, 0, 0, 0, 3568, 3569, 5, 113, 0, 0, 3569, 3570, 3, 912, 456, 0, 3570, 3571, 5, 387, 0, 0, 3571, 3572, 5, 329, 0, 0, 3572, 3573, 3, 660, 330, 0, 3573, 563, 1, 0, 0, 0, 3574, 3575, 5, 274, 0, 0, 3575, 3576, 5, 341, 0, 0, 3576, 3577, 3, 912, 456, 0, 3577, 565, 1, 0, 0, 0, 3578, 3579, 5, 365, 0, 0, 3579, 3580, 5, 319, 0, 0, 3580, 3582, 5, 134, 0, 0, 3581, 3583, 5, 45, 0, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3585, 3, 284, 142, 0, 3585, 3586, 5, 304, 0, 0, 3586, 3589, 3, 254, 127, 0, 3587, 3588, 5, 47, 0, 0, 3588, 3590, 5, 426, 0, 0, 3589, 3587, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 567, 1, 0, 0, 0, 3591, 3592, 5, 53, 0, 0, 3592, 569, 1, 0, 0, 0, 3593, 3594, 5, 166, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3596, 5, 31, 0, 0, 3596, 571, 1, 0, 0, 0, 3597, 3598, 5, 11, 0, 0, 3598, 3599, 5, 380, 0, 0, 3599, 573, 1, 0, 0, 0, 3600, 3601, 5, 246, 0, 0, 3601, 3602, 5, 426, 0, 0, 3602, 575, 1, 0, 0, 0, 3603, 3604, 5, 49, 0, 0, 3604, 3606, 5, 426, 0, 0, 3605, 3607, 3, 572, 286, 0, 3606, 3605, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3609, 1, 0, 0, 0, 3608, 3610, 3, 236, 118, 0, 3609, 3608, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3612, 1, 0, 0, 0, 3611, 3613, 3, 764, 382, 0, 3612, 3611, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3615, 1, 0, 0, 0, 3614, 3616, 3, 574, 287, 0, 3615, 3614, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3621, 1, 0, 0, 0, 3617, 3618, 5, 387, 0, 0, 3618, 3619, 5, 235, 0, 0, 3619, 3620, 5, 332, 0, 0, 3620, 3622, 3, 254, 127, 0, 3621, 3617, 1, 0, 0, 0, 3621, 3622, 1, 0, 0, 0, 3622, 577, 1, 0, 0, 0, 3623, 3624, 5, 304, 0, 0, 3624, 3625, 5, 236, 0, 0, 3625, 3626, 3, 148, 74, 0, 3626, 579, 1, 0, 0, 0, 3627, 3628, 5, 304, 0, 0, 3628, 3629, 5, 237, 0, 0, 3629, 3630, 5, 316, 0, 0, 3630, 3631, 5, 399, 0, 0, 3631, 3632, 3, 228, 114, 0, 3632, 3633, 5, 400, 0, 0, 3633, 581, 1, 0, 0, 0, 3634, 3644, 5, 115, 0, 0, 3635, 3636, 5, 289, 0, 0, 3636, 3637, 5, 399, 0, 0, 3637, 3645, 7, 24, 0, 0, 3638, 3639, 5, 118, 0, 0, 3639, 3640, 5, 399, 0, 0, 3640, 3645, 5, 426, 0, 0, 3641, 3642, 5, 306, 0, 0, 3642, 3643, 5, 399, 0, 0, 3643, 3645, 5, 431, 0, 0, 3644, 3635, 1, 0, 0, 0, 3644, 3638, 1, 0, 0, 0, 3644, 3641, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3647, 5, 400, 0, 0, 3647, 583, 1, 0, 0, 0, 3648, 3649, 3, 926, 463, 0, 3649, 3650, 5, 224, 0, 0, 3650, 3652, 3, 660, 330, 0, 3651, 3653, 3, 912, 456, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3655, 5, 265, 0, 0, 3655, 585, 1, 0, 0, 0, 3656, 3657, 5, 160, 0, 0, 3657, 3658, 5, 426, 0, 0, 3658, 3659, 5, 233, 0, 0, 3659, 3660, 5, 426, 0, 0, 3660, 3661, 5, 301, 0, 0, 3661, 3666, 5, 426, 0, 0, 3662, 3663, 5, 159, 0, 0, 3663, 3664, 5, 426, 0, 0, 3664, 3665, 5, 232, 0, 0, 3665, 3667, 5, 426, 0, 0, 3666, 3662, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3670, 1, 0, 0, 0, 3668, 3670, 3, 926, 463, 0, 3669, 3656, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 587, 1, 0, 0, 0, 3671, 3675, 3, 590, 295, 0, 3672, 3675, 3, 592, 296, 0, 3673, 3675, 3, 594, 297, 0, 3674, 3671, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3674, 3673, 1, 0, 0, 0, 3675, 589, 1, 0, 0, 0, 3676, 3677, 3, 654, 327, 0, 3677, 3678, 5, 304, 0, 0, 3678, 3679, 5, 77, 0, 0, 3679, 3680, 3, 608, 304, 0, 3680, 591, 1, 0, 0, 0, 3681, 3682, 3, 654, 327, 0, 3682, 3683, 5, 304, 0, 0, 3683, 3684, 5, 236, 0, 0, 3684, 3685, 3, 150, 75, 0, 3685, 593, 1, 0, 0, 0, 3686, 3687, 3, 654, 327, 0, 3687, 3688, 5, 304, 0, 0, 3688, 3689, 5, 367, 0, 0, 3689, 3690, 5, 426, 0, 0, 3690, 595, 1, 0, 0, 0, 3691, 3692, 5, 184, 0, 0, 3692, 3701, 5, 128, 0, 0, 3693, 3694, 5, 184, 0, 0, 3694, 3695, 5, 128, 0, 0, 3695, 3696, 3, 926, 463, 0, 3696, 3697, 5, 426, 0, 0, 3697, 3701, 1, 0, 0, 0, 3698, 3699, 5, 184, 0, 0, 3699, 3701, 3, 660, 330, 0, 3700, 3691, 1, 0, 0, 0, 3700, 3693, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 597, 1, 0, 0, 0, 3702, 3704, 5, 58, 0, 0, 3703, 3705, 5, 333, 0, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3708, 5, 345, 0, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3710, 1, 0, 0, 0, 3709, 3711, 5, 123, 0, 0, 3710, 3709, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3714, 5, 329, 0, 0, 3713, 3715, 3, 44, 22, 0, 3714, 3713, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 3770, 3, 662, 331, 0, 3717, 3719, 3, 596, 298, 0, 3718, 3720, 3, 222, 111, 0, 3719, 3718, 1, 0, 0, 0, 3719, 3720, 1, 0, 0, 0, 3720, 3722, 1, 0, 0, 0, 3721, 3723, 3, 250, 125, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3725, 1, 0, 0, 0, 3724, 3726, 3, 272, 136, 0, 3725, 3724, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3728, 1, 0, 0, 0, 3727, 3729, 3, 274, 137, 0, 3728, 3727, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3731, 1, 0, 0, 0, 3730, 3732, 3, 252, 126, 0, 3731, 3730, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3771, 1, 0, 0, 0, 3733, 3734, 5, 399, 0, 0, 3734, 3735, 3, 278, 139, 0, 3735, 3736, 5, 400, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3733, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3741, 3, 218, 109, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3743, 1, 0, 0, 0, 3742, 3744, 3, 220, 110, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3746, 1, 0, 0, 0, 3745, 3747, 3, 222, 111, 0, 3746, 3745, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3749, 1, 0, 0, 0, 3748, 3750, 3, 234, 117, 0, 3749, 3748, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3752, 1, 0, 0, 0, 3751, 3753, 3, 238, 119, 0, 3752, 3751, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3755, 1, 0, 0, 0, 3754, 3756, 3, 250, 125, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3758, 1, 0, 0, 0, 3757, 3759, 3, 272, 136, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3761, 1, 0, 0, 0, 3760, 3762, 3, 274, 137, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3765, 3, 252, 126, 0, 3764, 3763, 1, 0, 0, 0, 3764, 3765, 1, 0, 0, 0, 3765, 3768, 1, 0, 0, 0, 3766, 3767, 5, 17, 0, 0, 3767, 3769, 3, 414, 207, 0, 3768, 3766, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3771, 1, 0, 0, 0, 3770, 3717, 1, 0, 0, 0, 3770, 3737, 1, 0, 0, 0, 3771, 3832, 1, 0, 0, 0, 3772, 3773, 5, 58, 0, 0, 3773, 3774, 5, 195, 0, 0, 3774, 3776, 5, 329, 0, 0, 3775, 3777, 3, 44, 22, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3778, 1, 0, 0, 0, 3778, 3829, 3, 662, 331, 0, 3779, 3781, 3, 596, 298, 0, 3780, 3782, 3, 250, 125, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3785, 3, 272, 136, 0, 3784, 3783, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3787, 1, 0, 0, 0, 3786, 3788, 3, 274, 137, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3791, 3, 252, 126, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3830, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 278, 139, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3797, 1, 0, 0, 0, 3796, 3792, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3799, 1, 0, 0, 0, 3798, 3800, 3, 218, 109, 0, 3799, 3798, 1, 0, 0, 0, 3799, 3800, 1, 0, 0, 0, 3800, 3802, 1, 0, 0, 0, 3801, 3803, 3, 220, 110, 0, 3802, 3801, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3805, 1, 0, 0, 0, 3804, 3806, 3, 222, 111, 0, 3805, 3804, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3809, 3, 234, 117, 0, 3808, 3807, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3811, 1, 0, 0, 0, 3810, 3812, 3, 238, 119, 0, 3811, 3810, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 1, 0, 0, 0, 3813, 3815, 3, 250, 125, 0, 3814, 3813, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3817, 1, 0, 0, 0, 3816, 3818, 3, 272, 136, 0, 3817, 3816, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3820, 1, 0, 0, 0, 3819, 3821, 3, 274, 137, 0, 3820, 3819, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3823, 1, 0, 0, 0, 3822, 3824, 3, 252, 126, 0, 3823, 3822, 1, 0, 0, 0, 3823, 3824, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3826, 5, 17, 0, 0, 3826, 3828, 3, 414, 207, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3830, 1, 0, 0, 0, 3829, 3779, 1, 0, 0, 0, 3829, 3796, 1, 0, 0, 0, 3830, 3832, 1, 0, 0, 0, 3831, 3702, 1, 0, 0, 0, 3831, 3772, 1, 0, 0, 0, 3832, 599, 1, 0, 0, 0, 3833, 3834, 5, 58, 0, 0, 3834, 3836, 5, 69, 0, 0, 3835, 3837, 3, 44, 22, 0, 3836, 3835, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3840, 3, 926, 463, 0, 3839, 3841, 3, 606, 303, 0, 3840, 3839, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3844, 3, 604, 302, 0, 3843, 3842, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3847, 3, 602, 301, 0, 3846, 3845, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3851, 1, 0, 0, 0, 3848, 3849, 5, 387, 0, 0, 3849, 3850, 5, 77, 0, 0, 3850, 3852, 3, 608, 304, 0, 3851, 3848, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 601, 1, 0, 0, 0, 3853, 3854, 5, 47, 0, 0, 3854, 3855, 5, 426, 0, 0, 3855, 603, 1, 0, 0, 0, 3856, 3857, 5, 367, 0, 0, 3857, 3858, 5, 426, 0, 0, 3858, 605, 1, 0, 0, 0, 3859, 3860, 5, 352, 0, 0, 3860, 3861, 5, 426, 0, 0, 3861, 607, 1, 0, 0, 0, 3862, 3863, 5, 399, 0, 0, 3863, 3864, 3, 64, 32, 0, 3864, 3865, 5, 400, 0, 0, 3865, 609, 1, 0, 0, 0, 3866, 3867, 5, 101, 0, 0, 3867, 3869, 5, 69, 0, 0, 3868, 3870, 3, 40, 20, 0, 3869, 3868, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 3872, 3, 926, 463, 0, 3872, 611, 1, 0, 0, 0, 3873, 3874, 3, 926, 463, 0, 3874, 3875, 5, 395, 0, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3873, 1, 0, 0, 0, 3877, 3880, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 3881, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3882, 5, 415, 0, 0, 3882, 613, 1, 0, 0, 0, 3883, 3884, 5, 83, 0, 0, 3884, 615, 1, 0, 0, 0, 3885, 3890, 3, 828, 414, 0, 3886, 3887, 5, 397, 0, 0, 3887, 3889, 3, 828, 414, 0, 3888, 3886, 1, 0, 0, 0, 3889, 3892, 1, 0, 0, 0, 3890, 3888, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 617, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3893, 3898, 3, 926, 463, 0, 3894, 3895, 5, 397, 0, 0, 3895, 3897, 3, 926, 463, 0, 3896, 3894, 1, 0, 0, 0, 3897, 3900, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 619, 1, 0, 0, 0, 3900, 3898, 1, 0, 0, 0, 3901, 3902, 5, 139, 0, 0, 3902, 3903, 3, 622, 311, 0, 3903, 621, 1, 0, 0, 0, 3904, 3905, 3, 634, 317, 0, 3905, 3908, 3, 630, 315, 0, 3906, 3907, 5, 397, 0, 0, 3907, 3909, 3, 630, 315, 0, 3908, 3906, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3914, 1, 0, 0, 0, 3912, 3914, 3, 626, 313, 0, 3913, 3904, 1, 0, 0, 0, 3913, 3912, 1, 0, 0, 0, 3914, 623, 1, 0, 0, 0, 3915, 3919, 3, 648, 324, 0, 3916, 3918, 3, 638, 319, 0, 3917, 3916, 1, 0, 0, 0, 3918, 3921, 1, 0, 0, 0, 3919, 3917, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3948, 1, 0, 0, 0, 3921, 3919, 1, 0, 0, 0, 3922, 3926, 3, 690, 345, 0, 3923, 3925, 3, 638, 319, 0, 3924, 3923, 1, 0, 0, 0, 3925, 3928, 1, 0, 0, 0, 3926, 3924, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3948, 1, 0, 0, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3933, 3, 668, 334, 0, 3930, 3932, 3, 638, 319, 0, 3931, 3930, 1, 0, 0, 0, 3932, 3935, 1, 0, 0, 0, 3933, 3931, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3948, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3940, 3, 674, 337, 0, 3937, 3939, 3, 638, 319, 0, 3938, 3937, 1, 0, 0, 0, 3939, 3942, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3948, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3943, 3944, 5, 399, 0, 0, 3944, 3945, 3, 626, 313, 0, 3945, 3946, 5, 400, 0, 0, 3946, 3948, 1, 0, 0, 0, 3947, 3915, 1, 0, 0, 0, 3947, 3922, 1, 0, 0, 0, 3947, 3929, 1, 0, 0, 0, 3947, 3936, 1, 0, 0, 0, 3947, 3943, 1, 0, 0, 0, 3948, 625, 1, 0, 0, 0, 3949, 3960, 3, 624, 312, 0, 3950, 3951, 3, 636, 318, 0, 3951, 3956, 3, 628, 314, 0, 3952, 3953, 5, 224, 0, 0, 3953, 3957, 3, 828, 414, 0, 3954, 3955, 5, 370, 0, 0, 3955, 3957, 3, 292, 146, 0, 3956, 3952, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3950, 1, 0, 0, 0, 3959, 3962, 1, 0, 0, 0, 3960, 3958, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 627, 1, 0, 0, 0, 3962, 3960, 1, 0, 0, 0, 3963, 3968, 3, 648, 324, 0, 3964, 3968, 3, 690, 345, 0, 3965, 3968, 3, 668, 334, 0, 3966, 3968, 3, 674, 337, 0, 3967, 3963, 1, 0, 0, 0, 3967, 3964, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3966, 1, 0, 0, 0, 3968, 3972, 1, 0, 0, 0, 3969, 3971, 3, 638, 319, 0, 3970, 3969, 1, 0, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 629, 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3977, 5, 250, 0, 0, 3976, 3975, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3978, 1, 0, 0, 0, 3978, 3979, 3, 652, 326, 0, 3979, 3980, 3, 632, 316, 0, 3980, 631, 1, 0, 0, 0, 3981, 3982, 5, 399, 0, 0, 3982, 3983, 3, 616, 308, 0, 3983, 3984, 5, 400, 0, 0, 3984, 633, 1, 0, 0, 0, 3985, 3986, 5, 359, 0, 0, 3986, 635, 1, 0, 0, 0, 3987, 4002, 5, 397, 0, 0, 3988, 3999, 5, 157, 0, 0, 3989, 3999, 5, 60, 0, 0, 3990, 3992, 7, 25, 0, 0, 3991, 3993, 5, 231, 0, 0, 3992, 3991, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3999, 1, 0, 0, 0, 3994, 3996, 5, 180, 0, 0, 3995, 3997, 7, 26, 0, 0, 3996, 3995, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 3999, 1, 0, 0, 0, 3998, 3988, 1, 0, 0, 0, 3998, 3989, 1, 0, 0, 0, 3998, 3990, 1, 0, 0, 0, 3998, 3994, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4000, 1, 0, 0, 0, 4000, 4002, 5, 171, 0, 0, 4001, 3987, 1, 0, 0, 0, 4001, 3998, 1, 0, 0, 0, 4002, 637, 1, 0, 0, 0, 4003, 4004, 5, 178, 0, 0, 4004, 4005, 5, 378, 0, 0, 4005, 4006, 5, 231, 0, 0, 4006, 4007, 3, 776, 388, 0, 4007, 4017, 3, 640, 320, 0, 4008, 4009, 5, 17, 0, 0, 4009, 4014, 3, 926, 463, 0, 4010, 4011, 5, 397, 0, 0, 4011, 4013, 3, 926, 463, 0, 4012, 4010, 1, 0, 0, 0, 4013, 4016, 1, 0, 0, 0, 4014, 4012, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4018, 1, 0, 0, 0, 4016, 4014, 1, 0, 0, 0, 4017, 4008, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4061, 1, 0, 0, 0, 4019, 4021, 5, 397, 0, 0, 4020, 4019, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4058, 5, 178, 0, 0, 4023, 4024, 5, 378, 0, 0, 4024, 4025, 3, 776, 388, 0, 4025, 4035, 3, 640, 320, 0, 4026, 4027, 5, 17, 0, 0, 4027, 4032, 3, 926, 463, 0, 4028, 4029, 5, 397, 0, 0, 4029, 4031, 3, 926, 463, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4034, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4036, 1, 0, 0, 0, 4034, 4032, 1, 0, 0, 0, 4035, 4026, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4059, 1, 0, 0, 0, 4037, 4038, 5, 329, 0, 0, 4038, 4039, 5, 399, 0, 0, 4039, 4040, 3, 682, 341, 0, 4040, 4042, 5, 400, 0, 0, 4041, 4043, 5, 17, 0, 0, 4042, 4041, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4056, 3, 640, 320, 0, 4045, 4046, 5, 399, 0, 0, 4046, 4051, 3, 926, 463, 0, 4047, 4048, 5, 397, 0, 0, 4048, 4050, 3, 926, 463, 0, 4049, 4047, 1, 0, 0, 0, 4050, 4053, 1, 0, 0, 0, 4051, 4049, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4054, 1, 0, 0, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4055, 5, 400, 0, 0, 4055, 4057, 1, 0, 0, 0, 4056, 4045, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 1, 0, 0, 0, 4058, 4023, 1, 0, 0, 0, 4058, 4037, 1, 0, 0, 0, 4059, 4061, 1, 0, 0, 0, 4060, 4003, 1, 0, 0, 0, 4060, 4020, 1, 0, 0, 0, 4061, 639, 1, 0, 0, 0, 4062, 4063, 3, 926, 463, 0, 4063, 641, 1, 0, 0, 0, 4064, 4065, 5, 331, 0, 0, 4065, 4066, 5, 399, 0, 0, 4066, 4067, 5, 30, 0, 0, 4067, 4068, 5, 431, 0, 0, 4068, 4069, 5, 230, 0, 0, 4069, 4070, 5, 221, 0, 0, 4070, 4080, 5, 431, 0, 0, 4071, 4072, 5, 224, 0, 0, 4072, 4077, 3, 828, 414, 0, 4073, 4074, 5, 397, 0, 0, 4074, 4076, 3, 828, 414, 0, 4075, 4073, 1, 0, 0, 0, 4076, 4079, 1, 0, 0, 0, 4077, 4075, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4081, 1, 0, 0, 0, 4079, 4077, 1, 0, 0, 0, 4080, 4071, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 4083, 5, 400, 0, 0, 4083, 643, 1, 0, 0, 0, 4084, 4085, 5, 331, 0, 0, 4085, 4089, 5, 399, 0, 0, 4086, 4087, 5, 431, 0, 0, 4087, 4090, 7, 27, 0, 0, 4088, 4090, 5, 430, 0, 0, 4089, 4086, 1, 0, 0, 0, 4089, 4088, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4092, 5, 400, 0, 0, 4092, 645, 1, 0, 0, 0, 4093, 4096, 3, 642, 321, 0, 4094, 4096, 3, 644, 322, 0, 4095, 4093, 1, 0, 0, 0, 4095, 4094, 1, 0, 0, 0, 4096, 647, 1, 0, 0, 0, 4097, 4099, 3, 658, 329, 0, 4098, 4100, 3, 254, 127, 0, 4099, 4098, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 4102, 1, 0, 0, 0, 4101, 4103, 3, 646, 323, 0, 4102, 4101, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4106, 3, 650, 325, 0, 4105, 4104, 1, 0, 0, 0, 4105, 4106, 1, 0, 0, 0, 4106, 4111, 1, 0, 0, 0, 4107, 4109, 5, 17, 0, 0, 4108, 4107, 1, 0, 0, 0, 4108, 4109, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4112, 3, 926, 463, 0, 4111, 4108, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 649, 1, 0, 0, 0, 4113, 4123, 5, 134, 0, 0, 4114, 4115, 5, 327, 0, 0, 4115, 4116, 5, 17, 0, 0, 4116, 4117, 5, 221, 0, 0, 4117, 4124, 3, 828, 414, 0, 4118, 4119, 5, 134, 0, 0, 4119, 4120, 5, 328, 0, 0, 4120, 4121, 5, 17, 0, 0, 4121, 4122, 5, 221, 0, 0, 4122, 4124, 5, 431, 0, 0, 4123, 4114, 1, 0, 0, 0, 4123, 4118, 1, 0, 0, 0, 4124, 651, 1, 0, 0, 0, 4125, 4127, 3, 658, 329, 0, 4126, 4128, 3, 646, 323, 0, 4127, 4126, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4133, 1, 0, 0, 0, 4129, 4131, 5, 17, 0, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4134, 3, 926, 463, 0, 4133, 4130, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 653, 1, 0, 0, 0, 4135, 4136, 3, 926, 463, 0, 4136, 655, 1, 0, 0, 0, 4137, 4138, 3, 926, 463, 0, 4138, 657, 1, 0, 0, 0, 4139, 4142, 3, 660, 330, 0, 4140, 4142, 3, 664, 332, 0, 4141, 4139, 1, 0, 0, 0, 4141, 4140, 1, 0, 0, 0, 4142, 659, 1, 0, 0, 0, 4143, 4144, 3, 926, 463, 0, 4144, 4145, 5, 395, 0, 0, 4145, 4148, 3, 926, 463, 0, 4146, 4147, 5, 395, 0, 0, 4147, 4149, 3, 926, 463, 0, 4148, 4146, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4152, 1, 0, 0, 0, 4150, 4152, 3, 926, 463, 0, 4151, 4143, 1, 0, 0, 0, 4151, 4150, 1, 0, 0, 0, 4152, 661, 1, 0, 0, 0, 4153, 4154, 3, 926, 463, 0, 4154, 4155, 5, 395, 0, 0, 4155, 4158, 3, 926, 463, 0, 4156, 4157, 5, 395, 0, 0, 4157, 4159, 3, 926, 463, 0, 4158, 4156, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4162, 1, 0, 0, 0, 4160, 4162, 3, 926, 463, 0, 4161, 4153, 1, 0, 0, 0, 4161, 4160, 1, 0, 0, 0, 4162, 663, 1, 0, 0, 0, 4163, 4164, 3, 926, 463, 0, 4164, 4165, 5, 395, 0, 0, 4165, 4167, 1, 0, 0, 0, 4166, 4163, 1, 0, 0, 0, 4166, 4167, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 3, 926, 463, 0, 4169, 665, 1, 0, 0, 0, 4170, 4171, 3, 926, 463, 0, 4171, 4172, 5, 395, 0, 0, 4172, 4174, 1, 0, 0, 0, 4173, 4170, 1, 0, 0, 0, 4173, 4174, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4176, 3, 926, 463, 0, 4176, 667, 1, 0, 0, 0, 4177, 4178, 5, 399, 0, 0, 4178, 4179, 3, 394, 197, 0, 4179, 4181, 5, 400, 0, 0, 4180, 4182, 5, 17, 0, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4184, 3, 926, 463, 0, 4184, 669, 1, 0, 0, 0, 4185, 4187, 3, 768, 384, 0, 4186, 4188, 3, 764, 382, 0, 4187, 4186, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4197, 1, 0, 0, 0, 4189, 4197, 3, 764, 382, 0, 4190, 4192, 3, 770, 385, 0, 4191, 4193, 3, 772, 386, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4197, 1, 0, 0, 0, 4194, 4197, 3, 772, 386, 0, 4195, 4197, 3, 766, 383, 0, 4196, 4185, 1, 0, 0, 0, 4196, 4189, 1, 0, 0, 0, 4196, 4190, 1, 0, 0, 0, 4196, 4194, 1, 0, 0, 0, 4196, 4195, 1, 0, 0, 0, 4197, 671, 1, 0, 0, 0, 4198, 4202, 3, 668, 334, 0, 4199, 4202, 3, 648, 324, 0, 4200, 4202, 3, 674, 337, 0, 4201, 4198, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4200, 1, 0, 0, 0, 4202, 673, 1, 0, 0, 0, 4203, 4204, 3, 926, 463, 0, 4204, 4205, 5, 399, 0, 0, 4205, 4206, 5, 224, 0, 0, 4206, 4208, 3, 672, 336, 0, 4207, 4209, 3, 670, 335, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4225, 1, 0, 0, 0, 4210, 4211, 5, 432, 0, 0, 4211, 4212, 5, 399, 0, 0, 4212, 4213, 3, 828, 414, 0, 4213, 4222, 5, 400, 0, 0, 4214, 4215, 5, 397, 0, 0, 4215, 4216, 5, 432, 0, 0, 4216, 4217, 5, 399, 0, 0, 4217, 4218, 3, 828, 414, 0, 4218, 4219, 5, 400, 0, 0, 4219, 4221, 1, 0, 0, 0, 4220, 4214, 1, 0, 0, 0, 4221, 4224, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4226, 1, 0, 0, 0, 4224, 4222, 1, 0, 0, 0, 4225, 4210, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4227, 1, 0, 0, 0, 4227, 4229, 5, 400, 0, 0, 4228, 4230, 3, 926, 463, 0, 4229, 4228, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 675, 1, 0, 0, 0, 4231, 4232, 5, 384, 0, 0, 4232, 4233, 3, 678, 339, 0, 4233, 677, 1, 0, 0, 0, 4234, 4235, 3, 828, 414, 0, 4235, 679, 1, 0, 0, 0, 4236, 4237, 3, 682, 341, 0, 4237, 681, 1, 0, 0, 0, 4238, 4239, 5, 374, 0, 0, 4239, 4240, 3, 684, 342, 0, 4240, 683, 1, 0, 0, 0, 4241, 4246, 3, 686, 343, 0, 4242, 4243, 5, 397, 0, 0, 4243, 4245, 3, 686, 343, 0, 4244, 4242, 1, 0, 0, 0, 4245, 4248, 1, 0, 0, 0, 4246, 4244, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4258, 1, 0, 0, 0, 4248, 4246, 1, 0, 0, 0, 4249, 4254, 3, 688, 344, 0, 4250, 4251, 5, 397, 0, 0, 4251, 4253, 3, 686, 343, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4256, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 4258, 1, 0, 0, 0, 4256, 4254, 1, 0, 0, 0, 4257, 4241, 1, 0, 0, 0, 4257, 4249, 1, 0, 0, 0, 4258, 685, 1, 0, 0, 0, 4259, 4260, 3, 746, 373, 0, 4260, 687, 1, 0, 0, 0, 4261, 4262, 5, 399, 0, 0, 4262, 4263, 3, 754, 377, 0, 4263, 4264, 5, 400, 0, 0, 4264, 689, 1, 0, 0, 0, 4265, 4266, 5, 329, 0, 0, 4266, 4267, 5, 399, 0, 0, 4267, 4268, 3, 682, 341, 0, 4268, 4270, 5, 400, 0, 0, 4269, 4271, 5, 17, 0, 0, 4270, 4269, 1, 0, 0, 0, 4270, 4271, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4282, 3, 640, 320, 0, 4273, 4274, 5, 399, 0, 0, 4274, 4279, 3, 926, 463, 0, 4275, 4276, 5, 397, 0, 0, 4276, 4278, 3, 926, 463, 0, 4277, 4275, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4283, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4273, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 5, 400, 0, 0, 4285, 691, 1, 0, 0, 0, 4286, 4288, 5, 299, 0, 0, 4287, 4289, 5, 436, 0, 0, 4288, 4287, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4296, 1, 0, 0, 0, 4290, 4292, 3, 694, 347, 0, 4291, 4290, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4297, 3, 696, 348, 0, 4294, 4295, 5, 347, 0, 0, 4295, 4297, 3, 698, 349, 0, 4296, 4291, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4297, 4300, 1, 0, 0, 0, 4298, 4300, 3, 702, 351, 0, 4299, 4286, 1, 0, 0, 0, 4299, 4298, 1, 0, 0, 0, 4300, 693, 1, 0, 0, 0, 4301, 4302, 7, 20, 0, 0, 4302, 695, 1, 0, 0, 0, 4303, 4308, 3, 700, 350, 0, 4304, 4305, 5, 397, 0, 0, 4305, 4307, 3, 700, 350, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4310, 1, 0, 0, 0, 4308, 4306, 1, 0, 0, 0, 4308, 4309, 1, 0, 0, 0, 4309, 697, 1, 0, 0, 0, 4310, 4308, 1, 0, 0, 0, 4311, 4312, 5, 399, 0, 0, 4312, 4313, 3, 706, 353, 0, 4313, 4314, 5, 400, 0, 0, 4314, 4315, 3, 240, 120, 0, 4315, 4316, 3, 244, 122, 0, 4316, 4317, 5, 370, 0, 0, 4317, 4330, 5, 426, 0, 0, 4318, 4328, 5, 17, 0, 0, 4319, 4322, 5, 399, 0, 0, 4320, 4323, 3, 618, 309, 0, 4321, 4323, 3, 276, 138, 0, 4322, 4320, 1, 0, 0, 0, 4322, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4325, 5, 400, 0, 0, 4325, 4329, 1, 0, 0, 0, 4326, 4329, 3, 618, 309, 0, 4327, 4329, 3, 276, 138, 0, 4328, 4319, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4328, 4327, 1, 0, 0, 0, 4329, 4331, 1, 0, 0, 0, 4330, 4318, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4333, 3, 240, 120, 0, 4333, 4334, 3, 242, 121, 0, 4334, 699, 1, 0, 0, 0, 4335, 4359, 3, 612, 306, 0, 4336, 4339, 3, 284, 142, 0, 4337, 4339, 3, 828, 414, 0, 4338, 4336, 1, 0, 0, 0, 4338, 4337, 1, 0, 0, 0, 4339, 4356, 1, 0, 0, 0, 4340, 4342, 5, 17, 0, 0, 4341, 4340, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4357, 3, 926, 463, 0, 4344, 4345, 5, 17, 0, 0, 4345, 4346, 5, 399, 0, 0, 4346, 4351, 3, 926, 463, 0, 4347, 4348, 5, 397, 0, 0, 4348, 4350, 3, 926, 463, 0, 4349, 4347, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4354, 4355, 5, 400, 0, 0, 4355, 4357, 1, 0, 0, 0, 4356, 4341, 1, 0, 0, 0, 4356, 4344, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4359, 1, 0, 0, 0, 4358, 4335, 1, 0, 0, 0, 4358, 4338, 1, 0, 0, 0, 4359, 701, 1, 0, 0, 0, 4360, 4361, 7, 28, 0, 0, 4361, 4362, 3, 706, 353, 0, 4362, 4363, 3, 240, 120, 0, 4363, 4364, 3, 244, 122, 0, 4364, 4365, 5, 370, 0, 0, 4365, 4378, 5, 426, 0, 0, 4366, 4376, 5, 17, 0, 0, 4367, 4370, 5, 399, 0, 0, 4368, 4371, 3, 618, 309, 0, 4369, 4371, 3, 276, 138, 0, 4370, 4368, 1, 0, 0, 0, 4370, 4369, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, 5, 400, 0, 0, 4373, 4377, 1, 0, 0, 0, 4374, 4377, 3, 618, 309, 0, 4375, 4377, 3, 276, 138, 0, 4376, 4367, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4375, 1, 0, 0, 0, 4377, 4379, 1, 0, 0, 0, 4378, 4366, 1, 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4381, 3, 240, 120, 0, 4381, 4382, 3, 242, 121, 0, 4382, 703, 1, 0, 0, 0, 4383, 4386, 3, 612, 306, 0, 4384, 4386, 3, 828, 414, 0, 4385, 4383, 1, 0, 0, 0, 4385, 4384, 1, 0, 0, 0, 4386, 705, 1, 0, 0, 0, 4387, 4392, 3, 704, 352, 0, 4388, 4389, 5, 397, 0, 0, 4389, 4391, 3, 704, 352, 0, 4390, 4388, 1, 0, 0, 0, 4391, 4394, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 707, 1, 0, 0, 0, 4394, 4392, 1, 0, 0, 0, 4395, 4396, 5, 386, 0, 0, 4396, 4401, 3, 710, 355, 0, 4397, 4398, 5, 397, 0, 0, 4398, 4400, 3, 710, 355, 0, 4399, 4397, 1, 0, 0, 0, 4400, 4403, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 709, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4405, 3, 926, 463, 0, 4405, 4406, 5, 17, 0, 0, 4406, 4407, 3, 712, 356, 0, 4407, 711, 1, 0, 0, 0, 4408, 4421, 3, 926, 463, 0, 4409, 4411, 5, 399, 0, 0, 4410, 4412, 3, 926, 463, 0, 4411, 4410, 1, 0, 0, 0, 4411, 4412, 1, 0, 0, 0, 4412, 4414, 1, 0, 0, 0, 4413, 4415, 3, 670, 335, 0, 4414, 4413, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4417, 1, 0, 0, 0, 4416, 4418, 3, 714, 357, 0, 4417, 4416, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 4419, 1, 0, 0, 0, 4419, 4421, 5, 400, 0, 0, 4420, 4408, 1, 0, 0, 0, 4420, 4409, 1, 0, 0, 0, 4421, 713, 1, 0, 0, 0, 4422, 4425, 3, 716, 358, 0, 4423, 4425, 3, 718, 359, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 715, 1, 0, 0, 0, 4426, 4433, 5, 292, 0, 0, 4427, 4434, 3, 720, 360, 0, 4428, 4429, 5, 25, 0, 0, 4429, 4430, 3, 722, 361, 0, 4430, 4431, 5, 11, 0, 0, 4431, 4432, 3, 722, 361, 0, 4432, 4434, 1, 0, 0, 0, 4433, 4427, 1, 0, 0, 0, 4433, 4428, 1, 0, 0, 0, 4434, 717, 1, 0, 0, 0, 4435, 4442, 5, 260, 0, 0, 4436, 4443, 3, 720, 360, 0, 4437, 4438, 5, 25, 0, 0, 4438, 4439, 3, 722, 361, 0, 4439, 4440, 5, 11, 0, 0, 4440, 4441, 3, 722, 361, 0, 4441, 4443, 1, 0, 0, 0, 4442, 4436, 1, 0, 0, 0, 4442, 4437, 1, 0, 0, 0, 4443, 719, 1, 0, 0, 0, 4444, 4445, 5, 354, 0, 0, 4445, 4451, 5, 247, 0, 0, 4446, 4447, 5, 62, 0, 0, 4447, 4451, 5, 291, 0, 0, 4448, 4449, 5, 431, 0, 0, 4449, 4451, 5, 247, 0, 0, 4450, 4444, 1, 0, 0, 0, 4450, 4446, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4451, 721, 1, 0, 0, 0, 4452, 4453, 7, 29, 0, 0, 4453, 4457, 7, 30, 0, 0, 4454, 4455, 5, 62, 0, 0, 4455, 4457, 5, 291, 0, 0, 4456, 4452, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4457, 723, 1, 0, 0, 0, 4458, 4459, 5, 144, 0, 0, 4459, 4460, 5, 32, 0, 0, 4460, 4461, 3, 726, 363, 0, 4461, 725, 1, 0, 0, 0, 4462, 4467, 3, 284, 142, 0, 4463, 4467, 3, 730, 365, 0, 4464, 4467, 3, 732, 366, 0, 4465, 4467, 3, 728, 364, 0, 4466, 4462, 1, 0, 0, 0, 4466, 4463, 1, 0, 0, 0, 4466, 4464, 1, 0, 0, 0, 4466, 4465, 1, 0, 0, 0, 4467, 727, 1, 0, 0, 0, 4468, 4469, 5, 399, 0, 0, 4469, 4470, 5, 400, 0, 0, 4470, 729, 1, 0, 0, 0, 4471, 4474, 5, 290, 0, 0, 4472, 4474, 5, 61, 0, 0, 4473, 4471, 1, 0, 0, 0, 4473, 4472, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 4476, 5, 399, 0, 0, 4476, 4481, 3, 828, 414, 0, 4477, 4478, 5, 397, 0, 0, 4478, 4480, 3, 828, 414, 0, 4479, 4477, 1, 0, 0, 0, 4480, 4483, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4484, 1, 0, 0, 0, 4483, 4481, 1, 0, 0, 0, 4484, 4485, 5, 400, 0, 0, 4485, 731, 1, 0, 0, 0, 4486, 4491, 3, 748, 374, 0, 4487, 4488, 5, 387, 0, 0, 4488, 4492, 5, 290, 0, 0, 4489, 4490, 5, 387, 0, 0, 4490, 4492, 5, 61, 0, 0, 4491, 4487, 1, 0, 0, 0, 4491, 4489, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4506, 1, 0, 0, 0, 4493, 4494, 5, 145, 0, 0, 4494, 4495, 5, 305, 0, 0, 4495, 4496, 5, 399, 0, 0, 4496, 4501, 3, 734, 367, 0, 4497, 4498, 5, 397, 0, 0, 4498, 4500, 3, 734, 367, 0, 4499, 4497, 1, 0, 0, 0, 4500, 4503, 1, 0, 0, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4504, 1, 0, 0, 0, 4503, 4501, 1, 0, 0, 0, 4504, 4505, 5, 400, 0, 0, 4505, 4507, 1, 0, 0, 0, 4506, 4493, 1, 0, 0, 0, 4506, 4507, 1, 0, 0, 0, 4507, 733, 1, 0, 0, 0, 4508, 4511, 3, 736, 368, 0, 4509, 4511, 3, 738, 369, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4509, 1, 0, 0, 0, 4511, 735, 1, 0, 0, 0, 4512, 4514, 5, 399, 0, 0, 4513, 4515, 3, 828, 414, 0, 4514, 4513, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 4520, 1, 0, 0, 0, 4516, 4517, 5, 397, 0, 0, 4517, 4519, 3, 828, 414, 0, 4518, 4516, 1, 0, 0, 0, 4519, 4522, 1, 0, 0, 0, 4520, 4518, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 4523, 1, 0, 0, 0, 4522, 4520, 1, 0, 0, 0, 4523, 4524, 5, 400, 0, 0, 4524, 737, 1, 0, 0, 0, 4525, 4526, 3, 828, 414, 0, 4526, 739, 1, 0, 0, 0, 4527, 4528, 5, 146, 0, 0, 4528, 4529, 3, 744, 372, 0, 4529, 741, 1, 0, 0, 0, 4530, 4531, 5, 256, 0, 0, 4531, 4532, 3, 828, 414, 0, 4532, 743, 1, 0, 0, 0, 4533, 4534, 3, 828, 414, 0, 4534, 745, 1, 0, 0, 0, 4535, 4536, 5, 399, 0, 0, 4536, 4537, 3, 748, 374, 0, 4537, 4538, 5, 400, 0, 0, 4538, 747, 1, 0, 0, 0, 4539, 4541, 3, 752, 376, 0, 4540, 4542, 3, 750, 375, 0, 4541, 4540, 1, 0, 0, 0, 4541, 4542, 1, 0, 0, 0, 4542, 749, 1, 0, 0, 0, 4543, 4544, 5, 397, 0, 0, 4544, 4546, 3, 752, 376, 0, 4545, 4543, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4545, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 751, 1, 0, 0, 0, 4549, 4552, 3, 614, 307, 0, 4550, 4552, 3, 828, 414, 0, 4551, 4549, 1, 0, 0, 0, 4551, 4550, 1, 0, 0, 0, 4552, 753, 1, 0, 0, 0, 4553, 4555, 3, 828, 414, 0, 4554, 4556, 5, 17, 0, 0, 4555, 4554, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4558, 1, 0, 0, 0, 4557, 4559, 3, 926, 463, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4564, 1, 0, 0, 0, 4560, 4561, 5, 397, 0, 0, 4561, 4563, 3, 756, 378, 0, 4562, 4560, 1, 0, 0, 0, 4563, 4566, 1, 0, 0, 0, 4564, 4562, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 755, 1, 0, 0, 0, 4566, 4564, 1, 0, 0, 0, 4567, 4569, 3, 828, 414, 0, 4568, 4570, 5, 17, 0, 0, 4569, 4568, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 4572, 1, 0, 0, 0, 4571, 4573, 3, 926, 463, 0, 4572, 4571, 1, 0, 0, 0, 4572, 4573, 1, 0, 0, 0, 4573, 757, 1, 0, 0, 0, 4574, 4577, 3, 746, 373, 0, 4575, 4577, 3, 748, 374, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4575, 1, 0, 0, 0, 4577, 759, 1, 0, 0, 0, 4578, 4579, 5, 399, 0, 0, 4579, 4584, 3, 342, 171, 0, 4580, 4581, 5, 397, 0, 0, 4581, 4583, 3, 342, 171, 0, 4582, 4580, 1, 0, 0, 0, 4583, 4586, 1, 0, 0, 0, 4584, 4582, 1, 0, 0, 0, 4584, 4585, 1, 0, 0, 0, 4585, 4587, 1, 0, 0, 0, 4586, 4584, 1, 0, 0, 0, 4587, 4588, 5, 400, 0, 0, 4588, 761, 1, 0, 0, 0, 4589, 4594, 3, 342, 171, 0, 4590, 4591, 5, 397, 0, 0, 4591, 4593, 3, 342, 171, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 763, 1, 0, 0, 0, 4596, 4594, 1, 0, 0, 0, 4597, 4598, 5, 229, 0, 0, 4598, 4599, 5, 32, 0, 0, 4599, 4604, 3, 342, 171, 0, 4600, 4601, 5, 397, 0, 0, 4601, 4603, 3, 342, 171, 0, 4602, 4600, 1, 0, 0, 0, 4603, 4606, 1, 0, 0, 0, 4604, 4602, 1, 0, 0, 0, 4604, 4605, 1, 0, 0, 0, 4605, 765, 1, 0, 0, 0, 4606, 4604, 1, 0, 0, 0, 4607, 4608, 5, 41, 0, 0, 4608, 4609, 5, 32, 0, 0, 4609, 4610, 3, 758, 379, 0, 4610, 767, 1, 0, 0, 0, 4611, 4612, 5, 237, 0, 0, 4612, 4613, 5, 32, 0, 0, 4613, 4614, 3, 758, 379, 0, 4614, 769, 1, 0, 0, 0, 4615, 4616, 5, 97, 0, 0, 4616, 4617, 5, 32, 0, 0, 4617, 4618, 3, 758, 379, 0, 4618, 771, 1, 0, 0, 0, 4619, 4620, 5, 314, 0, 0, 4620, 4623, 5, 32, 0, 0, 4621, 4624, 3, 760, 380, 0, 4622, 4624, 3, 762, 381, 0, 4623, 4621, 1, 0, 0, 0, 4623, 4622, 1, 0, 0, 0, 4624, 773, 1, 0, 0, 0, 4625, 4626, 5, 349, 0, 0, 4626, 4630, 5, 399, 0, 0, 4627, 4631, 5, 179, 0, 0, 4628, 4631, 5, 343, 0, 0, 4629, 4631, 5, 29, 0, 0, 4630, 4627, 1, 0, 0, 0, 4630, 4628, 1, 0, 0, 0, 4630, 4629, 1, 0, 0, 0, 4630, 4631, 1, 0, 0, 0, 4631, 4633, 1, 0, 0, 0, 4632, 4634, 3, 704, 352, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4636, 5, 139, 0, 0, 4636, 4637, 3, 704, 352, 0, 4637, 4638, 5, 400, 0, 0, 4638, 775, 1, 0, 0, 0, 4639, 4680, 3, 774, 387, 0, 4640, 4641, 3, 784, 392, 0, 4641, 4656, 5, 399, 0, 0, 4642, 4657, 5, 415, 0, 0, 4643, 4645, 3, 694, 347, 0, 4644, 4643, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4654, 1, 0, 0, 0, 4646, 4651, 3, 704, 352, 0, 4647, 4648, 5, 397, 0, 0, 4648, 4650, 3, 704, 352, 0, 4649, 4647, 1, 0, 0, 0, 4650, 4653, 1, 0, 0, 0, 4651, 4649, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4655, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4646, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4657, 1, 0, 0, 0, 4656, 4642, 1, 0, 0, 0, 4656, 4644, 1, 0, 0, 0, 4657, 4677, 1, 0, 0, 0, 4658, 4659, 5, 400, 0, 0, 4659, 4660, 5, 388, 0, 0, 4660, 4661, 5, 144, 0, 0, 4661, 4662, 5, 399, 0, 0, 4662, 4663, 3, 764, 382, 0, 4663, 4664, 5, 400, 0, 0, 4664, 4678, 1, 0, 0, 0, 4665, 4667, 5, 400, 0, 0, 4666, 4668, 3, 778, 389, 0, 4667, 4666, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4670, 5, 234, 0, 0, 4670, 4678, 3, 712, 356, 0, 4671, 4672, 3, 778, 389, 0, 4672, 4673, 5, 400, 0, 0, 4673, 4674, 5, 234, 0, 0, 4674, 4675, 3, 712, 356, 0, 4675, 4678, 1, 0, 0, 0, 4676, 4678, 5, 400, 0, 0, 4677, 4658, 1, 0, 0, 0, 4677, 4665, 1, 0, 0, 0, 4677, 4671, 1, 0, 0, 0, 4677, 4676, 1, 0, 0, 0, 4678, 4680, 1, 0, 0, 0, 4679, 4639, 1, 0, 0, 0, 4679, 4640, 1, 0, 0, 0, 4680, 777, 1, 0, 0, 0, 4681, 4682, 5, 281, 0, 0, 4682, 4686, 5, 220, 0, 0, 4683, 4684, 5, 152, 0, 0, 4684, 4686, 5, 220, 0, 0, 4685, 4681, 1, 0, 0, 0, 4685, 4683, 1, 0, 0, 0, 4686, 779, 1, 0, 0, 0, 4687, 4688, 3, 928, 464, 0, 4688, 781, 1, 0, 0, 0, 4689, 4692, 3, 786, 393, 0, 4690, 4692, 5, 426, 0, 0, 4691, 4689, 1, 0, 0, 0, 4691, 4690, 1, 0, 0, 0, 4692, 783, 1, 0, 0, 0, 4693, 4696, 3, 786, 393, 0, 4694, 4696, 3, 788, 394, 0, 4695, 4693, 1, 0, 0, 0, 4695, 4694, 1, 0, 0, 0, 4696, 785, 1, 0, 0, 0, 4697, 4698, 3, 928, 464, 0, 4698, 787, 1, 0, 0, 0, 4699, 4702, 3, 934, 467, 0, 4700, 4702, 3, 924, 462, 0, 4701, 4699, 1, 0, 0, 0, 4701, 4700, 1, 0, 0, 0, 4702, 789, 1, 0, 0, 0, 4703, 4704, 5, 36, 0, 0, 4704, 4705, 5, 399, 0, 0, 4705, 4706, 3, 828, 414, 0, 4706, 4707, 5, 17, 0, 0, 4707, 4710, 3, 382, 191, 0, 4708, 4709, 5, 137, 0, 0, 4709, 4711, 5, 426, 0, 0, 4710, 4708, 1, 0, 0, 0, 4710, 4711, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 4713, 5, 400, 0, 0, 4713, 791, 1, 0, 0, 0, 4714, 4715, 5, 35, 0, 0, 4715, 4721, 3, 828, 414, 0, 4716, 4717, 5, 383, 0, 0, 4717, 4718, 3, 828, 414, 0, 4718, 4719, 5, 335, 0, 0, 4719, 4720, 3, 828, 414, 0, 4720, 4722, 1, 0, 0, 0, 4721, 4716, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4721, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 4727, 1, 0, 0, 0, 4725, 4726, 5, 105, 0, 0, 4726, 4728, 3, 828, 414, 0, 4727, 4725, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 4730, 5, 108, 0, 0, 4730, 793, 1, 0, 0, 0, 4731, 4737, 5, 35, 0, 0, 4732, 4733, 5, 383, 0, 0, 4733, 4734, 3, 828, 414, 0, 4734, 4735, 5, 335, 0, 0, 4735, 4736, 3, 828, 414, 0, 4736, 4738, 1, 0, 0, 0, 4737, 4732, 1, 0, 0, 0, 4738, 4739, 1, 0, 0, 0, 4739, 4737, 1, 0, 0, 0, 4739, 4740, 1, 0, 0, 0, 4740, 4743, 1, 0, 0, 0, 4741, 4742, 5, 105, 0, 0, 4742, 4744, 3, 828, 414, 0, 4743, 4741, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 1, 0, 0, 0, 4745, 4746, 5, 108, 0, 0, 4746, 795, 1, 0, 0, 0, 4747, 4748, 5, 132, 0, 0, 4748, 4749, 5, 399, 0, 0, 4749, 4752, 3, 828, 414, 0, 4750, 4751, 5, 341, 0, 0, 4751, 4753, 3, 798, 399, 0, 4752, 4750, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4754, 1, 0, 0, 0, 4754, 4755, 5, 400, 0, 0, 4755, 797, 1, 0, 0, 0, 4756, 4765, 3, 976, 488, 0, 4757, 4765, 5, 257, 0, 0, 4758, 4765, 3, 978, 489, 0, 4759, 4765, 3, 980, 490, 0, 4760, 4765, 3, 982, 491, 0, 4761, 4765, 3, 984, 492, 0, 4762, 4765, 3, 986, 493, 0, 4763, 4765, 3, 988, 494, 0, 4764, 4756, 1, 0, 0, 0, 4764, 4757, 1, 0, 0, 0, 4764, 4758, 1, 0, 0, 0, 4764, 4759, 1, 0, 0, 0, 4764, 4760, 1, 0, 0, 0, 4764, 4761, 1, 0, 0, 0, 4764, 4762, 1, 0, 0, 0, 4764, 4763, 1, 0, 0, 0, 4765, 799, 1, 0, 0, 0, 4766, 4767, 5, 124, 0, 0, 4767, 4768, 5, 399, 0, 0, 4768, 4769, 3, 802, 401, 0, 4769, 4770, 5, 139, 0, 0, 4770, 4771, 3, 828, 414, 0, 4771, 4772, 5, 400, 0, 0, 4772, 801, 1, 0, 0, 0, 4773, 4782, 3, 976, 488, 0, 4774, 4782, 5, 257, 0, 0, 4775, 4782, 3, 978, 489, 0, 4776, 4782, 3, 980, 490, 0, 4777, 4782, 3, 982, 491, 0, 4778, 4782, 3, 984, 492, 0, 4779, 4782, 3, 986, 493, 0, 4780, 4782, 3, 988, 494, 0, 4781, 4773, 1, 0, 0, 0, 4781, 4774, 1, 0, 0, 0, 4781, 4775, 1, 0, 0, 0, 4781, 4776, 1, 0, 0, 0, 4781, 4777, 1, 0, 0, 0, 4781, 4778, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4781, 4780, 1, 0, 0, 0, 4782, 803, 1, 0, 0, 0, 4783, 4797, 3, 822, 411, 0, 4784, 4797, 5, 431, 0, 0, 4785, 4797, 3, 814, 407, 0, 4786, 4797, 3, 816, 408, 0, 4787, 4797, 3, 818, 409, 0, 4788, 4797, 5, 426, 0, 0, 4789, 4797, 3, 810, 405, 0, 4790, 4797, 5, 428, 0, 0, 4791, 4797, 5, 429, 0, 0, 4792, 4797, 3, 812, 406, 0, 4793, 4797, 3, 906, 453, 0, 4794, 4797, 5, 219, 0, 0, 4795, 4797, 3, 806, 403, 0, 4796, 4783, 1, 0, 0, 0, 4796, 4784, 1, 0, 0, 0, 4796, 4785, 1, 0, 0, 0, 4796, 4786, 1, 0, 0, 0, 4796, 4787, 1, 0, 0, 0, 4796, 4788, 1, 0, 0, 0, 4796, 4789, 1, 0, 0, 0, 4796, 4790, 1, 0, 0, 0, 4796, 4791, 1, 0, 0, 0, 4796, 4792, 1, 0, 0, 0, 4796, 4793, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4795, 1, 0, 0, 0, 4797, 805, 1, 0, 0, 0, 4798, 4799, 3, 808, 404, 0, 4799, 807, 1, 0, 0, 0, 4800, 4801, 5, 424, 0, 0, 4801, 809, 1, 0, 0, 0, 4802, 4804, 5, 426, 0, 0, 4803, 4805, 5, 426, 0, 0, 4804, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4804, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 811, 1, 0, 0, 0, 4808, 4809, 5, 433, 0, 0, 4809, 4810, 5, 427, 0, 0, 4810, 813, 1, 0, 0, 0, 4811, 4812, 5, 71, 0, 0, 4812, 4815, 5, 426, 0, 0, 4813, 4815, 5, 63, 0, 0, 4814, 4811, 1, 0, 0, 0, 4814, 4813, 1, 0, 0, 0, 4815, 815, 1, 0, 0, 0, 4816, 4817, 5, 337, 0, 0, 4817, 4820, 5, 426, 0, 0, 4818, 4820, 5, 64, 0, 0, 4819, 4816, 1, 0, 0, 0, 4819, 4818, 1, 0, 0, 0, 4820, 817, 1, 0, 0, 0, 4821, 4822, 5, 338, 0, 0, 4822, 4823, 5, 426, 0, 0, 4823, 819, 1, 0, 0, 0, 4824, 4825, 7, 24, 0, 0, 4825, 821, 1, 0, 0, 0, 4826, 4827, 3, 820, 410, 0, 4827, 4828, 3, 826, 413, 0, 4828, 823, 1, 0, 0, 0, 4829, 4830, 5, 399, 0, 0, 4830, 4831, 3, 820, 410, 0, 4831, 4832, 5, 400, 0, 0, 4832, 4833, 3, 826, 413, 0, 4833, 4845, 1, 0, 0, 0, 4834, 4840, 5, 165, 0, 0, 4835, 4841, 3, 820, 410, 0, 4836, 4837, 5, 399, 0, 0, 4837, 4838, 3, 828, 414, 0, 4838, 4839, 5, 400, 0, 0, 4839, 4841, 1, 0, 0, 0, 4840, 4835, 1, 0, 0, 0, 4840, 4836, 1, 0, 0, 0, 4841, 4842, 1, 0, 0, 0, 4842, 4843, 3, 826, 413, 0, 4843, 4845, 1, 0, 0, 0, 4844, 4829, 1, 0, 0, 0, 4844, 4834, 1, 0, 0, 0, 4845, 825, 1, 0, 0, 0, 4846, 4847, 3, 976, 488, 0, 4847, 4848, 5, 341, 0, 0, 4848, 4849, 3, 978, 489, 0, 4849, 4861, 1, 0, 0, 0, 4850, 4851, 3, 982, 491, 0, 4851, 4852, 5, 341, 0, 0, 4852, 4853, 3, 988, 494, 0, 4853, 4861, 1, 0, 0, 0, 4854, 4861, 3, 976, 488, 0, 4855, 4861, 3, 978, 489, 0, 4856, 4861, 3, 982, 491, 0, 4857, 4861, 3, 984, 492, 0, 4858, 4861, 3, 986, 493, 0, 4859, 4861, 3, 988, 494, 0, 4860, 4846, 1, 0, 0, 0, 4860, 4850, 1, 0, 0, 0, 4860, 4854, 1, 0, 0, 0, 4860, 4855, 1, 0, 0, 0, 4860, 4856, 1, 0, 0, 0, 4860, 4857, 1, 0, 0, 0, 4860, 4858, 1, 0, 0, 0, 4860, 4859, 1, 0, 0, 0, 4861, 827, 1, 0, 0, 0, 4862, 4863, 3, 904, 452, 0, 4863, 829, 1, 0, 0, 0, 4864, 4876, 3, 804, 402, 0, 4865, 4876, 3, 824, 412, 0, 4866, 4876, 3, 790, 395, 0, 4867, 4876, 3, 800, 400, 0, 4868, 4876, 3, 796, 398, 0, 4869, 4876, 3, 792, 396, 0, 4870, 4876, 3, 794, 397, 0, 4871, 4876, 3, 866, 433, 0, 4872, 4876, 3, 776, 388, 0, 4873, 4876, 3, 746, 373, 0, 4874, 4876, 3, 926, 463, 0, 4875, 4864, 1, 0, 0, 0, 4875, 4865, 1, 0, 0, 0, 4875, 4866, 1, 0, 0, 0, 4875, 4867, 1, 0, 0, 0, 4875, 4868, 1, 0, 0, 0, 4875, 4869, 1, 0, 0, 0, 4875, 4870, 1, 0, 0, 0, 4875, 4871, 1, 0, 0, 0, 4875, 4872, 1, 0, 0, 0, 4875, 4873, 1, 0, 0, 0, 4875, 4874, 1, 0, 0, 0, 4876, 831, 1, 0, 0, 0, 4877, 4886, 3, 830, 415, 0, 4878, 4879, 5, 401, 0, 0, 4879, 4880, 3, 828, 414, 0, 4880, 4881, 5, 402, 0, 0, 4881, 4885, 1, 0, 0, 0, 4882, 4883, 5, 395, 0, 0, 4883, 4885, 3, 926, 463, 0, 4884, 4878, 1, 0, 0, 0, 4884, 4882, 1, 0, 0, 0, 4885, 4888, 1, 0, 0, 0, 4886, 4884, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 833, 1, 0, 0, 0, 4888, 4886, 1, 0, 0, 0, 4889, 4890, 7, 31, 0, 0, 4890, 835, 1, 0, 0, 0, 4891, 4893, 3, 834, 417, 0, 4892, 4891, 1, 0, 0, 0, 4893, 4896, 1, 0, 0, 0, 4894, 4892, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4897, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4897, 4898, 3, 832, 416, 0, 4898, 837, 1, 0, 0, 0, 4899, 4900, 5, 423, 0, 0, 4900, 839, 1, 0, 0, 0, 4901, 4907, 3, 836, 418, 0, 4902, 4903, 3, 838, 419, 0, 4903, 4904, 3, 836, 418, 0, 4904, 4906, 1, 0, 0, 0, 4905, 4902, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 841, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4911, 7, 32, 0, 0, 4911, 843, 1, 0, 0, 0, 4912, 4918, 3, 840, 420, 0, 4913, 4914, 3, 842, 421, 0, 4914, 4915, 3, 840, 420, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4913, 1, 0, 0, 0, 4917, 4920, 1, 0, 0, 0, 4918, 4916, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 845, 1, 0, 0, 0, 4920, 4918, 1, 0, 0, 0, 4921, 4922, 7, 33, 0, 0, 4922, 847, 1, 0, 0, 0, 4923, 4929, 3, 844, 422, 0, 4924, 4925, 3, 846, 423, 0, 4925, 4926, 3, 844, 422, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4924, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 849, 1, 0, 0, 0, 4931, 4929, 1, 0, 0, 0, 4932, 4933, 5, 422, 0, 0, 4933, 851, 1, 0, 0, 0, 4934, 4940, 3, 848, 424, 0, 4935, 4936, 3, 850, 425, 0, 4936, 4937, 3, 848, 424, 0, 4937, 4939, 1, 0, 0, 0, 4938, 4935, 1, 0, 0, 0, 4939, 4942, 1, 0, 0, 0, 4940, 4938, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 853, 1, 0, 0, 0, 4942, 4940, 1, 0, 0, 0, 4943, 4944, 5, 419, 0, 0, 4944, 855, 1, 0, 0, 0, 4945, 4951, 3, 852, 426, 0, 4946, 4947, 3, 854, 427, 0, 4947, 4948, 3, 852, 426, 0, 4948, 4950, 1, 0, 0, 0, 4949, 4946, 1, 0, 0, 0, 4950, 4953, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4951, 4952, 1, 0, 0, 0, 4952, 857, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4955, 5, 421, 0, 0, 4955, 859, 1, 0, 0, 0, 4956, 4962, 3, 856, 428, 0, 4957, 4958, 3, 858, 429, 0, 4958, 4959, 3, 856, 428, 0, 4959, 4961, 1, 0, 0, 0, 4960, 4957, 1, 0, 0, 0, 4961, 4964, 1, 0, 0, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 861, 1, 0, 0, 0, 4964, 4962, 1, 0, 0, 0, 4965, 4966, 7, 34, 0, 0, 4966, 863, 1, 0, 0, 0, 4967, 4973, 3, 862, 431, 0, 4968, 4973, 5, 408, 0, 0, 4969, 4973, 5, 409, 0, 0, 4970, 4973, 5, 410, 0, 0, 4971, 4973, 5, 411, 0, 0, 4972, 4967, 1, 0, 0, 0, 4972, 4968, 1, 0, 0, 0, 4972, 4969, 1, 0, 0, 0, 4972, 4970, 1, 0, 0, 0, 4972, 4971, 1, 0, 0, 0, 4973, 865, 1, 0, 0, 0, 4974, 4975, 5, 399, 0, 0, 4975, 4976, 3, 410, 205, 0, 4976, 4977, 5, 400, 0, 0, 4977, 867, 1, 0, 0, 0, 4978, 4982, 3, 870, 435, 0, 4979, 4980, 5, 117, 0, 0, 4980, 4982, 3, 866, 433, 0, 4981, 4978, 1, 0, 0, 0, 4981, 4979, 1, 0, 0, 0, 4982, 869, 1, 0, 0, 0, 4983, 4985, 3, 860, 430, 0, 4984, 4986, 3, 872, 436, 0, 4985, 4984, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 871, 1, 0, 0, 0, 4987, 4988, 3, 864, 432, 0, 4988, 4989, 3, 860, 430, 0, 4989, 4994, 1, 0, 0, 0, 4990, 4994, 3, 874, 437, 0, 4991, 4992, 5, 216, 0, 0, 4992, 4994, 3, 882, 441, 0, 4993, 4987, 1, 0, 0, 0, 4993, 4990, 1, 0, 0, 0, 4993, 4991, 1, 0, 0, 0, 4994, 873, 1, 0, 0, 0, 4995, 4996, 5, 154, 0, 0, 4996, 5007, 3, 880, 440, 0, 4997, 4998, 5, 25, 0, 0, 4998, 4999, 3, 860, 430, 0, 4999, 5000, 5, 11, 0, 0, 5000, 5001, 3, 860, 430, 0, 5001, 5007, 1, 0, 0, 0, 5002, 5003, 5, 184, 0, 0, 5003, 5004, 7, 35, 0, 0, 5004, 5007, 3, 746, 373, 0, 5005, 5007, 3, 876, 438, 0, 5006, 4995, 1, 0, 0, 0, 5006, 4997, 1, 0, 0, 0, 5006, 5002, 1, 0, 0, 0, 5006, 5005, 1, 0, 0, 0, 5007, 875, 1, 0, 0, 0, 5008, 5009, 3, 922, 461, 0, 5009, 5010, 3, 878, 439, 0, 5010, 5011, 3, 866, 433, 0, 5011, 877, 1, 0, 0, 0, 5012, 5013, 7, 36, 0, 0, 5013, 879, 1, 0, 0, 0, 5014, 5017, 3, 866, 433, 0, 5015, 5017, 3, 746, 373, 0, 5016, 5014, 1, 0, 0, 0, 5016, 5015, 1, 0, 0, 0, 5017, 881, 1, 0, 0, 0, 5018, 5019, 3, 862, 431, 0, 5019, 5020, 3, 860, 430, 0, 5020, 5023, 1, 0, 0, 0, 5021, 5023, 3, 874, 437, 0, 5022, 5018, 1, 0, 0, 0, 5022, 5021, 1, 0, 0, 0, 5023, 883, 1, 0, 0, 0, 5024, 5025, 5, 167, 0, 0, 5025, 5026, 5, 96, 0, 0, 5026, 5027, 5, 139, 0, 0, 5027, 885, 1, 0, 0, 0, 5028, 5036, 5, 405, 0, 0, 5029, 5036, 5, 406, 0, 0, 5030, 5036, 5, 407, 0, 0, 5031, 5032, 5, 167, 0, 0, 5032, 5033, 5, 216, 0, 0, 5033, 5034, 5, 96, 0, 0, 5034, 5036, 5, 139, 0, 0, 5035, 5028, 1, 0, 0, 0, 5035, 5029, 1, 0, 0, 0, 5035, 5030, 1, 0, 0, 0, 5035, 5031, 1, 0, 0, 0, 5036, 887, 1, 0, 0, 0, 5037, 5046, 3, 868, 434, 0, 5038, 5039, 3, 886, 443, 0, 5039, 5040, 3, 868, 434, 0, 5040, 5045, 1, 0, 0, 0, 5041, 5042, 3, 884, 442, 0, 5042, 5043, 3, 868, 434, 0, 5043, 5045, 1, 0, 0, 0, 5044, 5038, 1, 0, 0, 0, 5044, 5041, 1, 0, 0, 0, 5045, 5048, 1, 0, 0, 0, 5046, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 889, 1, 0, 0, 0, 5048, 5046, 1, 0, 0, 0, 5049, 5062, 5, 219, 0, 0, 5050, 5062, 5, 350, 0, 0, 5051, 5062, 5, 125, 0, 0, 5052, 5062, 5, 360, 0, 0, 5053, 5054, 5, 216, 0, 0, 5054, 5062, 5, 219, 0, 0, 5055, 5056, 5, 216, 0, 0, 5056, 5062, 5, 350, 0, 0, 5057, 5058, 5, 216, 0, 0, 5058, 5062, 5, 125, 0, 0, 5059, 5060, 5, 216, 0, 0, 5060, 5062, 5, 360, 0, 0, 5061, 5049, 1, 0, 0, 0, 5061, 5050, 1, 0, 0, 0, 5061, 5051, 1, 0, 0, 0, 5061, 5052, 1, 0, 0, 0, 5061, 5053, 1, 0, 0, 0, 5061, 5055, 1, 0, 0, 0, 5061, 5057, 1, 0, 0, 0, 5061, 5059, 1, 0, 0, 0, 5062, 891, 1, 0, 0, 0, 5063, 5066, 3, 888, 444, 0, 5064, 5065, 5, 167, 0, 0, 5065, 5067, 3, 890, 445, 0, 5066, 5064, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 893, 1, 0, 0, 0, 5068, 5069, 5, 216, 0, 0, 5069, 895, 1, 0, 0, 0, 5070, 5072, 3, 894, 447, 0, 5071, 5070, 1, 0, 0, 0, 5072, 5075, 1, 0, 0, 0, 5073, 5071, 1, 0, 0, 0, 5073, 5074, 1, 0, 0, 0, 5074, 5076, 1, 0, 0, 0, 5075, 5073, 1, 0, 0, 0, 5076, 5077, 3, 892, 446, 0, 5077, 897, 1, 0, 0, 0, 5078, 5079, 5, 11, 0, 0, 5079, 899, 1, 0, 0, 0, 5080, 5086, 3, 896, 448, 0, 5081, 5082, 3, 898, 449, 0, 5082, 5083, 3, 896, 448, 0, 5083, 5085, 1, 0, 0, 0, 5084, 5081, 1, 0, 0, 0, 5085, 5088, 1, 0, 0, 0, 5086, 5084, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 901, 1, 0, 0, 0, 5088, 5086, 1, 0, 0, 0, 5089, 5090, 5, 228, 0, 0, 5090, 903, 1, 0, 0, 0, 5091, 5097, 3, 900, 450, 0, 5092, 5093, 3, 902, 451, 0, 5093, 5094, 3, 900, 450, 0, 5094, 5096, 1, 0, 0, 0, 5095, 5092, 1, 0, 0, 0, 5096, 5099, 1, 0, 0, 0, 5097, 5095, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 905, 1, 0, 0, 0, 5099, 5097, 1, 0, 0, 0, 5100, 5101, 7, 37, 0, 0, 5101, 907, 1, 0, 0, 0, 5102, 5103, 7, 37, 0, 0, 5103, 909, 1, 0, 0, 0, 5104, 5106, 3, 660, 330, 0, 5105, 5107, 3, 912, 456, 0, 5106, 5105, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 911, 1, 0, 0, 0, 5108, 5109, 5, 237, 0, 0, 5109, 5110, 5, 399, 0, 0, 5110, 5115, 3, 914, 457, 0, 5111, 5112, 5, 397, 0, 0, 5112, 5114, 3, 914, 457, 0, 5113, 5111, 1, 0, 0, 0, 5114, 5117, 1, 0, 0, 0, 5115, 5113, 1, 0, 0, 0, 5115, 5116, 1, 0, 0, 0, 5116, 5118, 1, 0, 0, 0, 5117, 5115, 1, 0, 0, 0, 5118, 5119, 5, 400, 0, 0, 5119, 913, 1, 0, 0, 0, 5120, 5123, 3, 926, 463, 0, 5121, 5122, 5, 405, 0, 0, 5122, 5124, 3, 804, 402, 0, 5123, 5121, 1, 0, 0, 0, 5123, 5124, 1, 0, 0, 0, 5124, 915, 1, 0, 0, 0, 5125, 5126, 5, 399, 0, 0, 5126, 5131, 3, 918, 459, 0, 5127, 5128, 5, 397, 0, 0, 5128, 5130, 3, 918, 459, 0, 5129, 5127, 1, 0, 0, 0, 5130, 5133, 1, 0, 0, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5134, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5134, 5135, 5, 400, 0, 0, 5135, 917, 1, 0, 0, 0, 5136, 5137, 3, 926, 463, 0, 5137, 5138, 3, 920, 460, 0, 5138, 5139, 3, 804, 402, 0, 5139, 919, 1, 0, 0, 0, 5140, 5143, 5, 184, 0, 0, 5141, 5143, 3, 922, 461, 0, 5142, 5140, 1, 0, 0, 0, 5142, 5141, 1, 0, 0, 0, 5143, 921, 1, 0, 0, 0, 5144, 5145, 7, 38, 0, 0, 5145, 923, 1, 0, 0, 0, 5146, 5147, 7, 39, 0, 0, 5147, 925, 1, 0, 0, 0, 5148, 5151, 5, 432, 0, 0, 5149, 5151, 3, 932, 466, 0, 5150, 5148, 1, 0, 0, 0, 5150, 5149, 1, 0, 0, 0, 5151, 927, 1, 0, 0, 0, 5152, 5155, 3, 926, 463, 0, 5153, 5154, 5, 395, 0, 0, 5154, 5156, 3, 926, 463, 0, 5155, 5153, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 929, 1, 0, 0, 0, 5157, 5158, 3, 926, 463, 0, 5158, 931, 1, 0, 0, 0, 5159, 5160, 7, 40, 0, 0, 5160, 933, 1, 0, 0, 0, 5161, 5162, 7, 41, 0, 0, 5162, 935, 1, 0, 0, 0, 5163, 5164, 3, 938, 469, 0, 5164, 5165, 5, 0, 0, 1, 5165, 937, 1, 0, 0, 0, 5166, 5171, 3, 940, 470, 0, 5167, 5168, 5, 397, 0, 0, 5168, 5170, 3, 940, 470, 0, 5169, 5167, 1, 0, 0, 0, 5170, 5173, 1, 0, 0, 0, 5171, 5169, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 939, 1, 0, 0, 0, 5173, 5171, 1, 0, 0, 0, 5174, 5179, 3, 942, 471, 0, 5175, 5176, 5, 399, 0, 0, 5176, 5177, 3, 944, 472, 0, 5177, 5178, 5, 400, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5175, 1, 0, 0, 0, 5179, 5180, 1, 0, 0, 0, 5180, 941, 1, 0, 0, 0, 5181, 5182, 7, 42, 0, 0, 5182, 943, 1, 0, 0, 0, 5183, 5188, 3, 946, 473, 0, 5184, 5185, 5, 397, 0, 0, 5185, 5187, 3, 946, 473, 0, 5186, 5184, 1, 0, 0, 0, 5187, 5190, 1, 0, 0, 0, 5188, 5186, 1, 0, 0, 0, 5188, 5189, 1, 0, 0, 0, 5189, 945, 1, 0, 0, 0, 5190, 5188, 1, 0, 0, 0, 5191, 5192, 7, 43, 0, 0, 5192, 947, 1, 0, 0, 0, 5193, 5194, 5, 249, 0, 0, 5194, 5195, 3, 926, 463, 0, 5195, 5196, 5, 139, 0, 0, 5196, 5197, 3, 394, 197, 0, 5197, 949, 1, 0, 0, 0, 5198, 5199, 5, 115, 0, 0, 5199, 5200, 3, 926, 463, 0, 5200, 5201, 5, 370, 0, 0, 5201, 5202, 3, 952, 476, 0, 5202, 951, 1, 0, 0, 0, 5203, 5208, 3, 804, 402, 0, 5204, 5205, 5, 397, 0, 0, 5205, 5207, 3, 804, 402, 0, 5206, 5204, 1, 0, 0, 0, 5207, 5210, 1, 0, 0, 0, 5208, 5206, 1, 0, 0, 0, 5208, 5209, 1, 0, 0, 0, 5209, 953, 1, 0, 0, 0, 5210, 5208, 1, 0, 0, 0, 5211, 5226, 3, 964, 482, 0, 5212, 5226, 3, 992, 496, 0, 5213, 5226, 3, 998, 499, 0, 5214, 5226, 3, 994, 497, 0, 5215, 5226, 3, 996, 498, 0, 5216, 5226, 3, 1020, 510, 0, 5217, 5226, 3, 1022, 511, 0, 5218, 5226, 3, 1024, 512, 0, 5219, 5226, 3, 1030, 515, 0, 5220, 5226, 3, 1032, 516, 0, 5221, 5226, 3, 1034, 517, 0, 5222, 5226, 3, 1036, 518, 0, 5223, 5226, 3, 1038, 519, 0, 5224, 5226, 3, 1040, 520, 0, 5225, 5211, 1, 0, 0, 0, 5225, 5212, 1, 0, 0, 0, 5225, 5213, 1, 0, 0, 0, 5225, 5214, 1, 0, 0, 0, 5225, 5215, 1, 0, 0, 0, 5225, 5216, 1, 0, 0, 0, 5225, 5217, 1, 0, 0, 0, 5225, 5218, 1, 0, 0, 0, 5225, 5219, 1, 0, 0, 0, 5225, 5220, 1, 0, 0, 0, 5225, 5221, 1, 0, 0, 0, 5225, 5222, 1, 0, 0, 0, 5225, 5223, 1, 0, 0, 0, 5225, 5224, 1, 0, 0, 0, 5226, 955, 1, 0, 0, 0, 5227, 5228, 5, 259, 0, 0, 5228, 5229, 5, 405, 0, 0, 5229, 5235, 5, 431, 0, 0, 5230, 5231, 5, 83, 0, 0, 5231, 5232, 5, 246, 0, 0, 5232, 5233, 5, 405, 0, 0, 5233, 5235, 3, 1000, 500, 0, 5234, 5227, 1, 0, 0, 0, 5234, 5230, 1, 0, 0, 0, 5235, 957, 1, 0, 0, 0, 5236, 5241, 3, 956, 478, 0, 5237, 5238, 5, 397, 0, 0, 5238, 5240, 3, 956, 478, 0, 5239, 5237, 1, 0, 0, 0, 5240, 5243, 1, 0, 0, 0, 5241, 5239, 1, 0, 0, 0, 5241, 5242, 1, 0, 0, 0, 5242, 959, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5244, 5248, 5, 259, 0, 0, 5245, 5246, 5, 83, 0, 0, 5246, 5248, 5, 246, 0, 0, 5247, 5244, 1, 0, 0, 0, 5247, 5245, 1, 0, 0, 0, 5248, 961, 1, 0, 0, 0, 5249, 5254, 3, 960, 480, 0, 5250, 5251, 5, 397, 0, 0, 5251, 5253, 3, 960, 480, 0, 5252, 5250, 1, 0, 0, 0, 5253, 5256, 1, 0, 0, 0, 5254, 5252, 1, 0, 0, 0, 5254, 5255, 1, 0, 0, 0, 5255, 963, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5257, 5258, 5, 58, 0, 0, 5258, 5259, 5, 280, 0, 0, 5259, 5261, 5, 243, 0, 0, 5260, 5262, 3, 44, 22, 0, 5261, 5260, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5272, 1, 0, 0, 0, 5263, 5264, 3, 926, 463, 0, 5264, 5265, 5, 184, 0, 0, 5265, 5266, 3, 926, 463, 0, 5266, 5273, 1, 0, 0, 0, 5267, 5270, 3, 926, 463, 0, 5268, 5269, 5, 387, 0, 0, 5269, 5271, 3, 958, 479, 0, 5270, 5268, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, 5273, 1, 0, 0, 0, 5272, 5263, 1, 0, 0, 0, 5272, 5267, 1, 0, 0, 0, 5273, 965, 1, 0, 0, 0, 5274, 5275, 5, 387, 0, 0, 5275, 5276, 5, 278, 0, 0, 5276, 967, 1, 0, 0, 0, 5277, 5279, 5, 2, 0, 0, 5278, 5280, 3, 966, 483, 0, 5279, 5278, 1, 0, 0, 0, 5279, 5280, 1, 0, 0, 0, 5280, 969, 1, 0, 0, 0, 5281, 5282, 7, 44, 0, 0, 5282, 971, 1, 0, 0, 0, 5283, 5284, 7, 45, 0, 0, 5284, 973, 1, 0, 0, 0, 5285, 5286, 5, 362, 0, 0, 5286, 975, 1, 0, 0, 0, 5287, 5288, 7, 46, 0, 0, 5288, 977, 1, 0, 0, 0, 5289, 5290, 7, 47, 0, 0, 5290, 979, 1, 0, 0, 0, 5291, 5292, 7, 48, 0, 0, 5292, 981, 1, 0, 0, 0, 5293, 5294, 7, 49, 0, 0, 5294, 983, 1, 0, 0, 0, 5295, 5296, 7, 50, 0, 0, 5296, 985, 1, 0, 0, 0, 5297, 5298, 7, 51, 0, 0, 5298, 987, 1, 0, 0, 0, 5299, 5300, 7, 52, 0, 0, 5300, 989, 1, 0, 0, 0, 5301, 5302, 7, 53, 0, 0, 5302, 991, 1, 0, 0, 0, 5303, 5304, 5, 9, 0, 0, 5304, 5305, 5, 280, 0, 0, 5305, 5306, 5, 243, 0, 0, 5306, 5324, 3, 926, 463, 0, 5307, 5325, 5, 373, 0, 0, 5308, 5325, 3, 972, 486, 0, 5309, 5310, 5, 304, 0, 0, 5310, 5325, 3, 958, 479, 0, 5311, 5312, 5, 363, 0, 0, 5312, 5325, 3, 962, 481, 0, 5313, 5314, 5, 274, 0, 0, 5314, 5315, 5, 341, 0, 0, 5315, 5325, 3, 926, 463, 0, 5316, 5318, 3, 968, 484, 0, 5317, 5319, 3, 970, 485, 0, 5318, 5317, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5325, 1, 0, 0, 0, 5320, 5322, 3, 970, 485, 0, 5321, 5323, 3, 968, 484, 0, 5322, 5321, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5325, 1, 0, 0, 0, 5324, 5307, 1, 0, 0, 0, 5324, 5308, 1, 0, 0, 0, 5324, 5309, 1, 0, 0, 0, 5324, 5311, 1, 0, 0, 0, 5324, 5313, 1, 0, 0, 0, 5324, 5316, 1, 0, 0, 0, 5324, 5320, 1, 0, 0, 0, 5325, 993, 1, 0, 0, 0, 5326, 5329, 3, 970, 485, 0, 5327, 5329, 3, 972, 486, 0, 5328, 5326, 1, 0, 0, 0, 5328, 5327, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5331, 5, 390, 0, 0, 5331, 5332, 5, 197, 0, 0, 5332, 995, 1, 0, 0, 0, 5333, 5345, 5, 278, 0, 0, 5334, 5335, 5, 3, 0, 0, 5335, 5336, 5, 280, 0, 0, 5336, 5337, 5, 243, 0, 0, 5337, 5338, 5, 387, 0, 0, 5338, 5346, 3, 926, 463, 0, 5339, 5340, 5, 280, 0, 0, 5340, 5341, 5, 243, 0, 0, 5341, 5342, 3, 926, 463, 0, 5342, 5343, 5, 387, 0, 0, 5343, 5344, 3, 926, 463, 0, 5344, 5346, 1, 0, 0, 0, 5345, 5334, 1, 0, 0, 0, 5345, 5339, 1, 0, 0, 0, 5346, 997, 1, 0, 0, 0, 5347, 5348, 5, 101, 0, 0, 5348, 5349, 5, 280, 0, 0, 5349, 5351, 5, 243, 0, 0, 5350, 5352, 3, 40, 20, 0, 5351, 5350, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5354, 3, 926, 463, 0, 5354, 999, 1, 0, 0, 0, 5355, 5360, 3, 926, 463, 0, 5356, 5357, 5, 395, 0, 0, 5357, 5359, 3, 926, 463, 0, 5358, 5356, 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 1001, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5364, 3, 1010, 505, 0, 5364, 1003, 1, 0, 0, 0, 5365, 5366, 3, 1002, 501, 0, 5366, 5367, 5, 0, 0, 1, 5367, 1005, 1, 0, 0, 0, 5368, 5373, 3, 1008, 504, 0, 5369, 5370, 5, 228, 0, 0, 5370, 5372, 3, 1008, 504, 0, 5371, 5369, 1, 0, 0, 0, 5372, 5375, 1, 0, 0, 0, 5373, 5371, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 1007, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5376, 5381, 3, 1010, 505, 0, 5377, 5378, 5, 11, 0, 0, 5378, 5380, 3, 1010, 505, 0, 5379, 5377, 1, 0, 0, 0, 5380, 5383, 1, 0, 0, 0, 5381, 5379, 1, 0, 0, 0, 5381, 5382, 1, 0, 0, 0, 5382, 1009, 1, 0, 0, 0, 5383, 5381, 1, 0, 0, 0, 5384, 5385, 3, 926, 463, 0, 5385, 5386, 3, 1014, 507, 0, 5386, 5387, 3, 1012, 506, 0, 5387, 1011, 1, 0, 0, 0, 5388, 5389, 7, 24, 0, 0, 5389, 1013, 1, 0, 0, 0, 5390, 5391, 5, 411, 0, 0, 5391, 1015, 1, 0, 0, 0, 5392, 5397, 5, 176, 0, 0, 5393, 5394, 5, 211, 0, 0, 5394, 5395, 5, 341, 0, 0, 5395, 5397, 3, 1000, 500, 0, 5396, 5392, 1, 0, 0, 0, 5396, 5393, 1, 0, 0, 0, 5397, 1017, 1, 0, 0, 0, 5398, 5399, 3, 1016, 508, 0, 5399, 5400, 5, 0, 0, 1, 5400, 1019, 1, 0, 0, 0, 5401, 5402, 5, 58, 0, 0, 5402, 5403, 5, 348, 0, 0, 5403, 5404, 3, 926, 463, 0, 5404, 5405, 5, 395, 0, 0, 5405, 5406, 3, 926, 463, 0, 5406, 5407, 5, 383, 0, 0, 5407, 5408, 3, 1002, 501, 0, 5408, 5409, 5, 99, 0, 0, 5409, 5410, 3, 1016, 508, 0, 5410, 1021, 1, 0, 0, 0, 5411, 5412, 5, 9, 0, 0, 5412, 5413, 5, 348, 0, 0, 5413, 5414, 3, 926, 463, 0, 5414, 5415, 5, 395, 0, 0, 5415, 5432, 3, 926, 463, 0, 5416, 5417, 5, 383, 0, 0, 5417, 5418, 3, 1002, 501, 0, 5418, 5419, 5, 99, 0, 0, 5419, 5420, 3, 1016, 508, 0, 5420, 5433, 1, 0, 0, 0, 5421, 5422, 5, 4, 0, 0, 5422, 5426, 5, 341, 0, 0, 5423, 5424, 5, 101, 0, 0, 5424, 5426, 5, 139, 0, 0, 5425, 5421, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5430, 1, 0, 0, 0, 5427, 5428, 5, 246, 0, 0, 5428, 5431, 3, 1000, 500, 0, 5429, 5431, 5, 362, 0, 0, 5430, 5427, 1, 0, 0, 0, 5430, 5429, 1, 0, 0, 0, 5431, 5433, 1, 0, 0, 0, 5432, 5416, 1, 0, 0, 0, 5432, 5425, 1, 0, 0, 0, 5433, 1023, 1, 0, 0, 0, 5434, 5435, 5, 101, 0, 0, 5435, 5436, 5, 348, 0, 0, 5436, 5437, 3, 926, 463, 0, 5437, 5438, 5, 395, 0, 0, 5438, 5439, 3, 926, 463, 0, 5439, 1025, 1, 0, 0, 0, 5440, 5441, 5, 8, 0, 0, 5441, 5442, 5, 405, 0, 0, 5442, 5453, 5, 431, 0, 0, 5443, 5444, 5, 259, 0, 0, 5444, 5445, 5, 405, 0, 0, 5445, 5453, 5, 431, 0, 0, 5446, 5447, 5, 294, 0, 0, 5447, 5448, 5, 405, 0, 0, 5448, 5453, 5, 426, 0, 0, 5449, 5450, 5, 240, 0, 0, 5450, 5451, 5, 405, 0, 0, 5451, 5453, 3, 1000, 500, 0, 5452, 5440, 1, 0, 0, 0, 5452, 5443, 1, 0, 0, 0, 5452, 5446, 1, 0, 0, 0, 5452, 5449, 1, 0, 0, 0, 5453, 1027, 1, 0, 0, 0, 5454, 5459, 3, 1026, 513, 0, 5455, 5456, 5, 397, 0, 0, 5456, 5458, 3, 1026, 513, 0, 5457, 5455, 1, 0, 0, 0, 5458, 5461, 1, 0, 0, 0, 5459, 5457, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 1029, 1, 0, 0, 0, 5461, 5459, 1, 0, 0, 0, 5462, 5463, 5, 58, 0, 0, 5463, 5464, 5, 246, 0, 0, 5464, 5465, 3, 926, 463, 0, 5465, 5466, 5, 395, 0, 0, 5466, 5467, 3, 1000, 500, 0, 5467, 5468, 5, 387, 0, 0, 5468, 5469, 3, 1028, 514, 0, 5469, 1031, 1, 0, 0, 0, 5470, 5471, 5, 9, 0, 0, 5471, 5472, 5, 246, 0, 0, 5472, 5473, 3, 926, 463, 0, 5473, 5474, 5, 395, 0, 0, 5474, 5482, 3, 1000, 500, 0, 5475, 5476, 5, 304, 0, 0, 5476, 5483, 3, 1028, 514, 0, 5477, 5478, 5, 363, 0, 0, 5478, 5483, 5, 294, 0, 0, 5479, 5480, 7, 54, 0, 0, 5480, 5481, 5, 348, 0, 0, 5481, 5483, 3, 926, 463, 0, 5482, 5475, 1, 0, 0, 0, 5482, 5477, 1, 0, 0, 0, 5482, 5479, 1, 0, 0, 0, 5483, 1033, 1, 0, 0, 0, 5484, 5485, 5, 101, 0, 0, 5485, 5486, 5, 246, 0, 0, 5486, 5487, 3, 926, 463, 0, 5487, 5488, 5, 395, 0, 0, 5488, 5489, 3, 1000, 500, 0, 5489, 1035, 1, 0, 0, 0, 5490, 5491, 5, 58, 0, 0, 5491, 5492, 7, 55, 0, 0, 5492, 5493, 5, 200, 0, 0, 5493, 5494, 5, 426, 0, 0, 5494, 5495, 5, 154, 0, 0, 5495, 5499, 3, 926, 463, 0, 5496, 5497, 5, 341, 0, 0, 5497, 5500, 3, 1000, 500, 0, 5498, 5500, 3, 974, 487, 0, 5499, 5496, 1, 0, 0, 0, 5499, 5498, 1, 0, 0, 0, 5500, 5504, 1, 0, 0, 0, 5501, 5502, 5, 387, 0, 0, 5502, 5503, 5, 229, 0, 0, 5503, 5505, 5, 431, 0, 0, 5504, 5501, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 1037, 1, 0, 0, 0, 5506, 5507, 5, 9, 0, 0, 5507, 5508, 7, 55, 0, 0, 5508, 5509, 5, 200, 0, 0, 5509, 5510, 5, 426, 0, 0, 5510, 5511, 5, 154, 0, 0, 5511, 5515, 3, 926, 463, 0, 5512, 5513, 5, 341, 0, 0, 5513, 5516, 3, 1000, 500, 0, 5514, 5516, 3, 974, 487, 0, 5515, 5512, 1, 0, 0, 0, 5515, 5514, 1, 0, 0, 0, 5516, 5520, 1, 0, 0, 0, 5517, 5518, 5, 387, 0, 0, 5518, 5519, 5, 229, 0, 0, 5519, 5521, 5, 431, 0, 0, 5520, 5517, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 1039, 1, 0, 0, 0, 5522, 5523, 5, 101, 0, 0, 5523, 5524, 7, 55, 0, 0, 5524, 5525, 5, 200, 0, 0, 5525, 5526, 5, 426, 0, 0, 5526, 5527, 5, 154, 0, 0, 5527, 5528, 3, 926, 463, 0, 5528, 1041, 1, 0, 0, 0, 651, 1045, 1052, 1055, 1061, 1067, 1074, 1084, 1087, 1091, 1111, 1116, 1121, 1127, 1134, 1147, 1151, 1155, 1160, 1167, 1171, 1176, 1183, 1187, 1198, 1204, 1211, 1260, 1288, 1292, 1296, 1299, 1302, 1307, 1313, 1317, 1323, 1325, 1342, 1354, 1358, 1365, 1373, 1376, 1381, 1385, 1388, 1398, 1406, 1410, 1413, 1417, 1421, 1424, 1429, 1435, 1440, 1445, 1449, 1460, 1462, 1466, 1476, 1480, 1486, 1489, 1496, 1501, 1509, 1514, 1518, 1526, 1531, 1537, 1543, 1546, 1549, 1552, 1561, 1569, 1574, 1582, 1589, 1592, 1595, 1597, 1605, 1608, 1611, 1614, 1617, 1620, 1623, 1626, 1629, 1632, 1635, 1637, 1649, 1655, 1663, 1665, 1675, 1681, 1696, 1713, 1718, 1722, 1726, 1733, 1740, 1746, 1750, 1753, 1760, 1783, 1788, 1792, 1800, 1809, 1813, 1819, 1825, 1832, 1835, 1841, 1848, 1856, 1865, 1874, 1881, 1901, 1908, 1910, 1917, 1927, 1935, 1939, 1943, 1956, 1965, 1981, 1985, 1990, 1995, 1998, 2001, 2005, 2008, 2011, 2016, 2024, 2028, 2035, 2038, 2041, 2044, 2056, 2062, 2088, 2096, 2100, 2103, 2106, 2109, 2112, 2115, 2118, 2121, 2130, 2140, 2143, 2163, 2169, 2175, 2178, 2180, 2187, 2194, 2207, 2212, 2221, 2229, 2237, 2247, 2260, 2273, 2294, 2298, 2313, 2319, 2322, 2325, 2328, 2331, 2335, 2349, 2357, 2360, 2375, 2409, 2417, 2422, 2430, 2435, 2440, 2450, 2458, 2466, 2474, 2482, 2486, 2496, 2500, 2508, 2517, 2520, 2524, 2531, 2537, 2541, 2547, 2551, 2563, 2572, 2583, 2587, 2594, 2606, 2613, 2622, 2625, 2632, 2638, 2644, 2647, 2650, 2656, 2660, 2664, 2669, 2673, 2677, 2681, 2689, 2693, 2697, 2701, 2705, 2713, 2717, 2721, 2729, 2734, 2739, 2743, 2747, 2754, 2763, 2771, 2783, 2801, 2804, 2810, 2836, 2839, 2845, 2853, 2861, 2874, 2881, 2884, 2887, 2890, 2893, 2896, 2899, 2902, 2905, 2908, 2911, 2916, 2919, 2922, 2925, 2928, 2931, 2934, 2937, 2940, 2943, 2946, 2948, 2954, 2958, 2961, 2964, 2967, 2970, 2973, 2980, 2984, 2987, 2990, 2993, 2996, 2999, 3006, 3009, 3017, 3021, 3028, 3030, 3033, 3038, 3041, 3045, 3050, 3056, 3062, 3070, 3078, 3085, 3091, 3100, 3103, 3107, 3120, 3124, 3135, 3142, 3146, 3151, 3154, 3164, 3166, 3170, 3177, 3182, 3202, 3209, 3232, 3248, 3265, 3271, 3288, 3301, 3305, 3309, 3316, 3344, 3351, 3356, 3361, 3366, 3371, 3379, 3385, 3389, 3392, 3395, 3401, 3408, 3418, 3422, 3427, 3431, 3437, 3444, 3451, 3462, 3471, 3475, 3478, 3481, 3489, 3492, 3500, 3503, 3511, 3515, 3520, 3524, 3533, 3549, 3564, 3566, 3582, 3589, 3606, 3609, 3612, 3615, 3621, 3644, 3652, 3666, 3669, 3674, 3700, 3704, 3707, 3710, 3714, 3719, 3722, 3725, 3728, 3731, 3737, 3740, 3743, 3746, 3749, 3752, 3755, 3758, 3761, 3764, 3768, 3770, 3776, 3781, 3784, 3787, 3790, 3796, 3799, 3802, 3805, 3808, 3811, 3814, 3817, 3820, 3823, 3827, 3829, 3831, 3836, 3840, 3843, 3846, 3851, 3869, 3878, 3890, 3898, 3910, 3913, 3919, 3926, 3933, 3940, 3947, 3956, 3960, 3967, 3972, 3976, 3992, 3996, 3998, 4001, 4014, 4017, 4020, 4032, 4035, 4042, 4051, 4056, 4058, 4060, 4077, 4080, 4089, 4095, 4099, 4102, 4105, 4108, 4111, 4123, 4127, 4130, 4133, 4141, 4148, 4151, 4158, 4161, 4166, 4173, 4181, 4187, 4192, 4196, 4201, 4208, 4222, 4225, 4229, 4246, 4254, 4257, 4270, 4279, 4282, 4288, 4291, 4296, 4299, 4308, 4322, 4328, 4330, 4338, 4341, 4351, 4356, 4358, 4370, 4376, 4378, 4385, 4392, 4401, 4411, 4414, 4417, 4420, 4424, 4433, 4442, 4450, 4456, 4466, 4473, 4481, 4491, 4501, 4506, 4510, 4514, 4520, 4541, 4547, 4551, 4555, 4558, 4564, 4569, 4572, 4576, 4584, 4594, 4604, 4623, 4630, 4633, 4644, 4651, 4654, 4656, 4667, 4677, 4679, 4685, 4691, 4695, 4701, 4710, 4723, 4727, 4739, 4743, 4752, 4764, 4781, 4796, 4806, 4814, 4819, 4840, 4844, 4860, 4875, 4884, 4886, 4894, 4907, 4918, 4929, 4940, 4951, 4962, 4972, 4981, 4985, 4993, 5006, 5016, 5022, 5035, 5044, 5046, 5061, 5066, 5073, 5086, 5097, 5106, 5115, 5123, 5131, 5142, 5150, 5155, 5171, 5179, 5188, 5208, 5225, 5234, 5241, 5247, 5254, 5261, 5270, 5272, 5279, 5318, 5322, 5324, 5328, 5345, 5351, 5360, 5373, 5381, 5396, 5425, 5430, 5432, 5452, 5459, 5482, 5499, 5504, 5515, 5520] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.tokens b/src/lib/hive/HiveSqlParser.tokens index 93de524..62cda4b 100644 --- a/src/lib/hive/HiveSqlParser.tokens +++ b/src/lib/hive/HiveSqlParser.tokens @@ -180,261 +180,262 @@ KW_LEADING=179 KW_LEFT=180 KW_LESS=181 KW_LEVEL=182 -KW_LIKE=183 -KW_LIMIT=184 -KW_LINES=185 -KW_LOAD=186 -KW_LOCAL=187 -KW_LOCATION=188 -KW_LOCK=189 -KW_LOCKS=190 -KW_LOGICAL=191 -KW_LONG=192 -KW_MACRO=193 -KW_MANAGED=194 -KW_MANAGEDLOCATION=195 -KW_MANAGEMENT=196 -KW_MAP=197 -KW_MAPJOIN=198 -KW_MAPPING=199 -KW_MATCHED=200 -KW_MATERIALIZED=201 -KW_MERGE=202 -KW_METADATA=203 -KW_MINUS=204 -KW_MINUTE=205 -KW_MINUTES=206 -KW_MONTH=207 -KW_MONTHS=208 -KW_MORE=209 -KW_MOVE=210 -KW_MSCK=211 -KW_NONE=212 -KW_NORELY=213 -KW_NOSCAN=214 -KW_NOT=215 -KW_NOVALIDATE=216 -KW_NO_DROP=217 -KW_NULL=218 -KW_NULLS=219 -KW_OF=220 -KW_OFFLINE=221 -KW_OFFSET=222 -KW_ON=223 -KW_ONLY=224 -KW_OPERATOR=225 -KW_OPTION=226 -KW_OR=227 -KW_ORDER=228 -KW_OUT=229 -KW_OUTER=230 -KW_OUTPUTDRIVER=231 -KW_OUTPUTFORMAT=232 -KW_OVER=233 -KW_OVERWRITE=234 -KW_OWNER=235 -KW_PARTITION=236 -KW_PARTITIONED=237 -KW_PARTITIONS=238 -KW_PATH=239 -KW_PERCENT=240 -KW_PKFK_JOIN=241 -KW_PLAN=242 -KW_PLANS=243 -KW_PLUS=244 -KW_POOL=245 -KW_PRECEDING=246 -KW_PRECISION=247 -KW_PREPARE=248 -KW_PRESERVE=249 -KW_PRIMARY=250 -KW_PRINCIPALS=251 -KW_PROCEDURE=252 -KW_PROTECTION=253 -KW_PURGE=254 -KW_QUALIFY=255 -KW_QUARTER=256 -KW_QUERY=257 -KW_QUERY_PARALLELISM=258 -KW_RANGE=259 -KW_READ=260 -KW_READONLY=261 -KW_READS=262 -KW_REAL=263 -KW_REBUILD=264 -KW_RECORDREADER=265 -KW_RECORDWRITER=266 -KW_REDUCE=267 -KW_REFERENCES=268 -KW_REGEXP=269 -KW_RELOAD=270 -KW_RELY=271 -KW_REMOTE=272 -KW_RENAME=273 -KW_REOPTIMIZATION=274 -KW_REPAIR=275 -KW_REPL=276 -KW_REPLACE=277 -KW_REPLICATION=278 -KW_RESOURCE=279 -KW_RESPECT=280 -KW_RESTRICT=281 -KW_REVOKE=282 -KW_REWRITE=283 -KW_RIGHT=284 -KW_RLIKE=285 -KW_ROLE=286 -KW_ROLES=287 -KW_ROLLBACK=288 -KW_ROLLUP=289 -KW_ROW=290 -KW_ROWS=291 -KW_SCHEDULED=292 -KW_SCHEDULING_POLICY=293 -KW_SCHEMA=294 -KW_SCHEMAS=295 -KW_SECOND=296 -KW_SECONDS=297 -KW_SELECT=298 -KW_SEMI=299 -KW_SERDE=300 -KW_SERDEPROPERTIES=301 -KW_SERVER=302 -KW_SET=303 -KW_SETS=304 -KW_SET_CURRENT_SNAPSHOT=305 -KW_SHARED=306 -KW_SHOW=307 -KW_SHOW_DATABASE=308 -KW_SKEWED=309 -KW_SMALLINT=310 -KW_SNAPSHOT=311 -KW_SOME=312 -KW_SORT=313 -KW_SORTED=314 -KW_SPEC=315 -KW_SSL=316 -KW_START=317 -KW_STATISTICS=318 -KW_STATUS=319 -KW_STORED=320 -KW_STREAMTABLE=321 -KW_STRING=322 -KW_STRUCT=323 -KW_SUMMARY=324 -KW_SYNC=325 -KW_SYSTEM_TIME=326 -KW_SYSTEM_VERSION=327 -KW_TABLE=328 -KW_TABLES=329 -KW_TABLESAMPLE=330 -KW_TBLPROPERTIES=331 -KW_TEMPORARY=332 -KW_TERMINATED=333 -KW_THEN=334 -KW_TIME=335 -KW_TIMESTAMP=336 -KW_TIMESTAMPLOCALTZ=337 -KW_TIMESTAMPTZ=338 -KW_TINYINT=339 -KW_TO=340 -KW_TOUCH=341 -KW_TRAILING=342 -KW_TRANSACTION=343 -KW_TRANSACTIONAL=344 -KW_TRANSACTIONS=345 -KW_TRANSFORM=346 -KW_TRIGGER=347 -KW_TRIM=348 -KW_TRUE=349 -KW_TRUNCATE=350 -KW_TYPE=351 -KW_UNARCHIVE=352 -KW_UNBOUNDED=353 -KW_UNDO=354 -KW_UNION=355 -KW_UNIONTYPE=356 -KW_UNIQUE=357 -KW_UNIQUEJOIN=358 -KW_UNKNOWN=359 -KW_UNLOCK=360 -KW_UNMANAGED=361 -KW_UNSET=362 -KW_UNSIGNED=363 -KW_UPDATE=364 -KW_URI=365 -KW_URL=366 -KW_USE=367 -KW_USER=368 -KW_USING=369 -KW_UTC=370 -KW_UTCTIMESTAMP=371 -KW_VALIDATE=372 -KW_VALUES=373 -KW_VALUE_TYPE=374 -KW_VARCHAR=375 -KW_VECTORIZATION=376 -KW_VIEW=377 -KW_VIEWS=378 -KW_WAIT=379 -KW_WEEK=380 -KW_WEEKS=381 -KW_WHEN=382 -KW_WHERE=383 -KW_WHILE=384 -KW_WINDOW=385 -KW_WITH=386 -KW_WITHIN=387 -KW_WORK=388 -KW_WORKLOAD=389 -KW_WRITE=390 -KW_YEAR=391 -KW_YEARS=392 -KW_ZONE=393 -DOT=394 -COLON=395 -COMMA=396 -SEMICOLON=397 -LPAREN=398 -RPAREN=399 -LSQUARE=400 -RSQUARE=401 -LCURLY=402 -RCURLY=403 -EQUAL=404 -EQUAL_NS=405 -NOTEQUAL=406 -LESSTHANOREQUALTO=407 -LESSTHAN=408 -GREATERTHANOREQUALTO=409 -GREATERTHAN=410 -DIVIDE=411 -PLUS=412 -MINUS=413 -STAR=414 -MOD=415 -DIV=416 -BITWISENOT=417 -AMPERSAND=418 -TILDE=419 -BITWISEOR=420 -CONCATENATE=421 -BITWISEXOR=422 -QUESTION=423 -DOLLAR=424 -StringLiteral=425 -CharSetLiteral=426 -IntegralLiteral=427 -NumberLiteral=428 -ByteLengthLiteral=429 -Number=430 -Identifier=431 -CharSetName=432 -WHITE_SPACE=433 -LINE_COMMENT=434 -QUERY_HINT=435 -SHOW_HINT=436 -HIDDEN_HINT=437 +KW_LIFECYCLE=183 +KW_LIKE=184 +KW_LIMIT=185 +KW_LINES=186 +KW_LOAD=187 +KW_LOCAL=188 +KW_LOCATION=189 +KW_LOCK=190 +KW_LOCKS=191 +KW_LOGICAL=192 +KW_LONG=193 +KW_MACRO=194 +KW_MANAGED=195 +KW_MANAGEDLOCATION=196 +KW_MANAGEMENT=197 +KW_MAP=198 +KW_MAPJOIN=199 +KW_MAPPING=200 +KW_MATCHED=201 +KW_MATERIALIZED=202 +KW_MERGE=203 +KW_METADATA=204 +KW_MINUS=205 +KW_MINUTE=206 +KW_MINUTES=207 +KW_MONTH=208 +KW_MONTHS=209 +KW_MORE=210 +KW_MOVE=211 +KW_MSCK=212 +KW_NONE=213 +KW_NORELY=214 +KW_NOSCAN=215 +KW_NOT=216 +KW_NOVALIDATE=217 +KW_NO_DROP=218 +KW_NULL=219 +KW_NULLS=220 +KW_OF=221 +KW_OFFLINE=222 +KW_OFFSET=223 +KW_ON=224 +KW_ONLY=225 +KW_OPERATOR=226 +KW_OPTION=227 +KW_OR=228 +KW_ORDER=229 +KW_OUT=230 +KW_OUTER=231 +KW_OUTPUTDRIVER=232 +KW_OUTPUTFORMAT=233 +KW_OVER=234 +KW_OVERWRITE=235 +KW_OWNER=236 +KW_PARTITION=237 +KW_PARTITIONED=238 +KW_PARTITIONS=239 +KW_PATH=240 +KW_PERCENT=241 +KW_PKFK_JOIN=242 +KW_PLAN=243 +KW_PLANS=244 +KW_PLUS=245 +KW_POOL=246 +KW_PRECEDING=247 +KW_PRECISION=248 +KW_PREPARE=249 +KW_PRESERVE=250 +KW_PRIMARY=251 +KW_PRINCIPALS=252 +KW_PROCEDURE=253 +KW_PROTECTION=254 +KW_PURGE=255 +KW_QUALIFY=256 +KW_QUARTER=257 +KW_QUERY=258 +KW_QUERY_PARALLELISM=259 +KW_RANGE=260 +KW_READ=261 +KW_READONLY=262 +KW_READS=263 +KW_REAL=264 +KW_REBUILD=265 +KW_RECORDREADER=266 +KW_RECORDWRITER=267 +KW_REDUCE=268 +KW_REFERENCES=269 +KW_REGEXP=270 +KW_RELOAD=271 +KW_RELY=272 +KW_REMOTE=273 +KW_RENAME=274 +KW_REOPTIMIZATION=275 +KW_REPAIR=276 +KW_REPL=277 +KW_REPLACE=278 +KW_REPLICATION=279 +KW_RESOURCE=280 +KW_RESPECT=281 +KW_RESTRICT=282 +KW_REVOKE=283 +KW_REWRITE=284 +KW_RIGHT=285 +KW_RLIKE=286 +KW_ROLE=287 +KW_ROLES=288 +KW_ROLLBACK=289 +KW_ROLLUP=290 +KW_ROW=291 +KW_ROWS=292 +KW_SCHEDULED=293 +KW_SCHEDULING_POLICY=294 +KW_SCHEMA=295 +KW_SCHEMAS=296 +KW_SECOND=297 +KW_SECONDS=298 +KW_SELECT=299 +KW_SEMI=300 +KW_SERDE=301 +KW_SERDEPROPERTIES=302 +KW_SERVER=303 +KW_SET=304 +KW_SETS=305 +KW_SET_CURRENT_SNAPSHOT=306 +KW_SHARED=307 +KW_SHOW=308 +KW_SHOW_DATABASE=309 +KW_SKEWED=310 +KW_SMALLINT=311 +KW_SNAPSHOT=312 +KW_SOME=313 +KW_SORT=314 +KW_SORTED=315 +KW_SPEC=316 +KW_SSL=317 +KW_START=318 +KW_STATISTICS=319 +KW_STATUS=320 +KW_STORED=321 +KW_STREAMTABLE=322 +KW_STRING=323 +KW_STRUCT=324 +KW_SUMMARY=325 +KW_SYNC=326 +KW_SYSTEM_TIME=327 +KW_SYSTEM_VERSION=328 +KW_TABLE=329 +KW_TABLES=330 +KW_TABLESAMPLE=331 +KW_TBLPROPERTIES=332 +KW_TEMPORARY=333 +KW_TERMINATED=334 +KW_THEN=335 +KW_TIME=336 +KW_TIMESTAMP=337 +KW_TIMESTAMPLOCALTZ=338 +KW_TIMESTAMPTZ=339 +KW_TINYINT=340 +KW_TO=341 +KW_TOUCH=342 +KW_TRAILING=343 +KW_TRANSACTION=344 +KW_TRANSACTIONAL=345 +KW_TRANSACTIONS=346 +KW_TRANSFORM=347 +KW_TRIGGER=348 +KW_TRIM=349 +KW_TRUE=350 +KW_TRUNCATE=351 +KW_TYPE=352 +KW_UNARCHIVE=353 +KW_UNBOUNDED=354 +KW_UNDO=355 +KW_UNION=356 +KW_UNIONTYPE=357 +KW_UNIQUE=358 +KW_UNIQUEJOIN=359 +KW_UNKNOWN=360 +KW_UNLOCK=361 +KW_UNMANAGED=362 +KW_UNSET=363 +KW_UNSIGNED=364 +KW_UPDATE=365 +KW_URI=366 +KW_URL=367 +KW_USE=368 +KW_USER=369 +KW_USING=370 +KW_UTC=371 +KW_UTCTIMESTAMP=372 +KW_VALIDATE=373 +KW_VALUES=374 +KW_VALUE_TYPE=375 +KW_VARCHAR=376 +KW_VECTORIZATION=377 +KW_VIEW=378 +KW_VIEWS=379 +KW_WAIT=380 +KW_WEEK=381 +KW_WEEKS=382 +KW_WHEN=383 +KW_WHERE=384 +KW_WHILE=385 +KW_WINDOW=386 +KW_WITH=387 +KW_WITHIN=388 +KW_WORK=389 +KW_WORKLOAD=390 +KW_WRITE=391 +KW_YEAR=392 +KW_YEARS=393 +KW_ZONE=394 +DOT=395 +COLON=396 +COMMA=397 +SEMICOLON=398 +LPAREN=399 +RPAREN=400 +LSQUARE=401 +RSQUARE=402 +LCURLY=403 +RCURLY=404 +EQUAL=405 +EQUAL_NS=406 +NOTEQUAL=407 +LESSTHANOREQUALTO=408 +LESSTHAN=409 +GREATERTHANOREQUALTO=410 +GREATERTHAN=411 +DIVIDE=412 +PLUS=413 +MINUS=414 +STAR=415 +MOD=416 +DIV=417 +BITWISENOT=418 +AMPERSAND=419 +TILDE=420 +BITWISEOR=421 +CONCATENATE=422 +BITWISEXOR=423 +QUESTION=424 +DOLLAR=425 +StringLiteral=426 +CharSetLiteral=427 +IntegralLiteral=428 +NumberLiteral=429 +ByteLengthLiteral=430 +Number=431 +Identifier=432 +CharSetName=433 +WHITE_SPACE=434 +LINE_COMMENT=435 +QUERY_HINT=436 +SHOW_HINT=437 +HIDDEN_HINT=438 'ABORT'=1 'ACTIVATE'=2 'ACTIVE'=3 @@ -617,243 +618,244 @@ HIDDEN_HINT=437 'LEFT'=180 'LESS'=181 'LEVEL'=182 -'LIKE'=183 -'LIMIT'=184 -'LINES'=185 -'LOAD'=186 -'LOCAL'=187 -'LOCATION'=188 -'LOCK'=189 -'LOCKS'=190 -'LOGICAL'=191 -'LONG'=192 -'MACRO'=193 -'MANAGED'=194 -'MANAGEDLOCATION'=195 -'MANAGEMENT'=196 -'MAP'=197 -'MAPJOIN'=198 -'MAPPING'=199 -'MATCHED'=200 -'MATERIALIZED'=201 -'MERGE'=202 -'METADATA'=203 -'MINUS'=204 -'MINUTE'=205 -'MINUTES'=206 -'MONTH'=207 -'MONTHS'=208 -'MORE'=209 -'MOVE'=210 -'MSCK'=211 -'NONE'=212 -'NORELY'=213 -'NOSCAN'=214 -'NOT'=215 -'NOVALIDATE'=216 -'NO_DROP'=217 -'NULL'=218 -'NULLS'=219 -'OF'=220 -'OFFLINE'=221 -'OFFSET'=222 -'ON'=223 -'ONLY'=224 -'OPERATOR'=225 -'OPTION'=226 -'OR'=227 -'ORDER'=228 -'OUT'=229 -'OUTER'=230 -'OUTPUTDRIVER'=231 -'OUTPUTFORMAT'=232 -'OVER'=233 -'OVERWRITE'=234 -'OWNER'=235 -'PARTITION'=236 -'PARTITIONED'=237 -'PARTITIONS'=238 -'PATH'=239 -'PERCENT'=240 -'PKFK_JOIN'=241 -'PLAN'=242 -'PLANS'=243 -'PLUS'=244 -'POOL'=245 -'PRECEDING'=246 -'PRECISION'=247 -'PREPARE'=248 -'PRESERVE'=249 -'PRIMARY'=250 -'PRINCIPALS'=251 -'PROCEDURE'=252 -'PROTECTION'=253 -'PURGE'=254 -'QUALIFY'=255 -'QUARTER'=256 -'QUERY'=257 -'QUERY_PARALLELISM'=258 -'RANGE'=259 -'READ'=260 -'READONLY'=261 -'READS'=262 -'REAL'=263 -'REBUILD'=264 -'RECORDREADER'=265 -'RECORDWRITER'=266 -'REDUCE'=267 -'REFERENCES'=268 -'REGEXP'=269 -'RELOAD'=270 -'RELY'=271 -'REMOTE'=272 -'RENAME'=273 -'REOPTIMIZATION'=274 -'REPAIR'=275 -'REPL'=276 -'REPLACE'=277 -'REPLICATION'=278 -'RESOURCE'=279 -'RESPECT'=280 -'RESTRICT'=281 -'REVOKE'=282 -'REWRITE'=283 -'RIGHT'=284 -'RLIKE'=285 -'ROLE'=286 -'ROLES'=287 -'ROLLBACK'=288 -'ROLLUP'=289 -'ROW'=290 -'ROWS'=291 -'SCHEDULED'=292 -'SCHEDULING_POLICY'=293 -'SCHEMA'=294 -'SCHEMAS'=295 -'SECOND'=296 -'SECONDS'=297 -'SELECT'=298 -'SEMI'=299 -'SERDE'=300 -'SERDEPROPERTIES'=301 -'SERVER'=302 -'SET'=303 -'SETS'=304 -'SET_CURRENT_SNAPSHOT'=305 -'SHARED'=306 -'SHOW'=307 -'SHOW_DATABASE'=308 -'SKEWED'=309 -'SMALLINT'=310 -'SNAPSHOT'=311 -'SOME'=312 -'SORT'=313 -'SORTED'=314 -'SPEC'=315 -'SSL'=316 -'START'=317 -'STATISTICS'=318 -'STATUS'=319 -'STORED'=320 -'STREAMTABLE'=321 -'STRING'=322 -'STRUCT'=323 -'SUMMARY'=324 -'SYNC'=325 -'SYSTEM_TIME'=326 -'SYSTEM_VERSION'=327 -'TABLE'=328 -'TABLES'=329 -'TABLESAMPLE'=330 -'TBLPROPERTIES'=331 -'TEMPORARY'=332 -'TERMINATED'=333 -'THEN'=334 -'TIME'=335 -'TIMESTAMP'=336 -'TIMESTAMPLOCALTZ'=337 -'TIMESTAMPTZ'=338 -'TINYINT'=339 -'TO'=340 -'TOUCH'=341 -'TRAILING'=342 -'TRANSACTION'=343 -'TRANSACTIONAL'=344 -'TRANSACTIONS'=345 -'TRANSFORM'=346 -'TRIGGER'=347 -'TRIM'=348 -'TRUE'=349 -'TRUNCATE'=350 -'TYPE'=351 -'UNARCHIVE'=352 -'UNBOUNDED'=353 -'UNDO'=354 -'UNION'=355 -'UNIONTYPE'=356 -'UNIQUE'=357 -'UNIQUEJOIN'=358 -'UNKNOWN'=359 -'UNLOCK'=360 -'UNMANAGED'=361 -'UNSET'=362 -'UNSIGNED'=363 -'UPDATE'=364 -'URI'=365 -'URL'=366 -'USE'=367 -'USER'=368 -'USING'=369 -'UTC'=370 -'UTC_TMESTAMP'=371 -'VALIDATE'=372 -'VALUES'=373 -'$VALUE$'=374 -'VARCHAR'=375 -'VECTORIZATION'=376 -'VIEW'=377 -'VIEWS'=378 -'WAIT'=379 -'WEEK'=380 -'WEEKS'=381 -'WHEN'=382 -'WHERE'=383 -'WHILE'=384 -'WINDOW'=385 -'WITH'=386 -'WITHIN'=387 -'WORK'=388 -'WORKLOAD'=389 -'WRITE'=390 -'YEAR'=391 -'YEARS'=392 -'ZONE'=393 -'.'=394 -':'=395 -','=396 -';'=397 -'('=398 -')'=399 -'['=400 -']'=401 -'{'=402 -'}'=403 -'<=>'=405 -'<='=407 -'<'=408 -'>='=409 -'>'=410 -'/'=411 -'+'=412 -'-'=413 -'*'=414 -'%'=415 -'DIV'=416 -'!'=417 -'&'=418 -'~'=419 -'|'=420 -'||'=421 -'^'=422 -'?'=423 -'$'=424 +'LIFECYCLE'=183 +'LIKE'=184 +'LIMIT'=185 +'LINES'=186 +'LOAD'=187 +'LOCAL'=188 +'LOCATION'=189 +'LOCK'=190 +'LOCKS'=191 +'LOGICAL'=192 +'LONG'=193 +'MACRO'=194 +'MANAGED'=195 +'MANAGEDLOCATION'=196 +'MANAGEMENT'=197 +'MAP'=198 +'MAPJOIN'=199 +'MAPPING'=200 +'MATCHED'=201 +'MATERIALIZED'=202 +'MERGE'=203 +'METADATA'=204 +'MINUS'=205 +'MINUTE'=206 +'MINUTES'=207 +'MONTH'=208 +'MONTHS'=209 +'MORE'=210 +'MOVE'=211 +'MSCK'=212 +'NONE'=213 +'NORELY'=214 +'NOSCAN'=215 +'NOT'=216 +'NOVALIDATE'=217 +'NO_DROP'=218 +'NULL'=219 +'NULLS'=220 +'OF'=221 +'OFFLINE'=222 +'OFFSET'=223 +'ON'=224 +'ONLY'=225 +'OPERATOR'=226 +'OPTION'=227 +'OR'=228 +'ORDER'=229 +'OUT'=230 +'OUTER'=231 +'OUTPUTDRIVER'=232 +'OUTPUTFORMAT'=233 +'OVER'=234 +'OVERWRITE'=235 +'OWNER'=236 +'PARTITION'=237 +'PARTITIONED'=238 +'PARTITIONS'=239 +'PATH'=240 +'PERCENT'=241 +'PKFK_JOIN'=242 +'PLAN'=243 +'PLANS'=244 +'PLUS'=245 +'POOL'=246 +'PRECEDING'=247 +'PRECISION'=248 +'PREPARE'=249 +'PRESERVE'=250 +'PRIMARY'=251 +'PRINCIPALS'=252 +'PROCEDURE'=253 +'PROTECTION'=254 +'PURGE'=255 +'QUALIFY'=256 +'QUARTER'=257 +'QUERY'=258 +'QUERY_PARALLELISM'=259 +'RANGE'=260 +'READ'=261 +'READONLY'=262 +'READS'=263 +'REAL'=264 +'REBUILD'=265 +'RECORDREADER'=266 +'RECORDWRITER'=267 +'REDUCE'=268 +'REFERENCES'=269 +'REGEXP'=270 +'RELOAD'=271 +'RELY'=272 +'REMOTE'=273 +'RENAME'=274 +'REOPTIMIZATION'=275 +'REPAIR'=276 +'REPL'=277 +'REPLACE'=278 +'REPLICATION'=279 +'RESOURCE'=280 +'RESPECT'=281 +'RESTRICT'=282 +'REVOKE'=283 +'REWRITE'=284 +'RIGHT'=285 +'RLIKE'=286 +'ROLE'=287 +'ROLES'=288 +'ROLLBACK'=289 +'ROLLUP'=290 +'ROW'=291 +'ROWS'=292 +'SCHEDULED'=293 +'SCHEDULING_POLICY'=294 +'SCHEMA'=295 +'SCHEMAS'=296 +'SECOND'=297 +'SECONDS'=298 +'SELECT'=299 +'SEMI'=300 +'SERDE'=301 +'SERDEPROPERTIES'=302 +'SERVER'=303 +'SET'=304 +'SETS'=305 +'SET_CURRENT_SNAPSHOT'=306 +'SHARED'=307 +'SHOW'=308 +'SHOW_DATABASE'=309 +'SKEWED'=310 +'SMALLINT'=311 +'SNAPSHOT'=312 +'SOME'=313 +'SORT'=314 +'SORTED'=315 +'SPEC'=316 +'SSL'=317 +'START'=318 +'STATISTICS'=319 +'STATUS'=320 +'STORED'=321 +'STREAMTABLE'=322 +'STRING'=323 +'STRUCT'=324 +'SUMMARY'=325 +'SYNC'=326 +'SYSTEM_TIME'=327 +'SYSTEM_VERSION'=328 +'TABLE'=329 +'TABLES'=330 +'TABLESAMPLE'=331 +'TBLPROPERTIES'=332 +'TEMPORARY'=333 +'TERMINATED'=334 +'THEN'=335 +'TIME'=336 +'TIMESTAMP'=337 +'TIMESTAMPLOCALTZ'=338 +'TIMESTAMPTZ'=339 +'TINYINT'=340 +'TO'=341 +'TOUCH'=342 +'TRAILING'=343 +'TRANSACTION'=344 +'TRANSACTIONAL'=345 +'TRANSACTIONS'=346 +'TRANSFORM'=347 +'TRIGGER'=348 +'TRIM'=349 +'TRUE'=350 +'TRUNCATE'=351 +'TYPE'=352 +'UNARCHIVE'=353 +'UNBOUNDED'=354 +'UNDO'=355 +'UNION'=356 +'UNIONTYPE'=357 +'UNIQUE'=358 +'UNIQUEJOIN'=359 +'UNKNOWN'=360 +'UNLOCK'=361 +'UNMANAGED'=362 +'UNSET'=363 +'UNSIGNED'=364 +'UPDATE'=365 +'URI'=366 +'URL'=367 +'USE'=368 +'USER'=369 +'USING'=370 +'UTC'=371 +'UTC_TMESTAMP'=372 +'VALIDATE'=373 +'VALUES'=374 +'$VALUE$'=375 +'VARCHAR'=376 +'VECTORIZATION'=377 +'VIEW'=378 +'VIEWS'=379 +'WAIT'=380 +'WEEK'=381 +'WEEKS'=382 +'WHEN'=383 +'WHERE'=384 +'WHILE'=385 +'WINDOW'=386 +'WITH'=387 +'WITHIN'=388 +'WORK'=389 +'WORKLOAD'=390 +'WRITE'=391 +'YEAR'=392 +'YEARS'=393 +'ZONE'=394 +'.'=395 +':'=396 +','=397 +';'=398 +'('=399 +')'=400 +'['=401 +']'=402 +'{'=403 +'}'=404 +'<=>'=406 +'<='=408 +'<'=409 +'>='=410 +'>'=411 +'/'=412 +'+'=413 +'-'=414 +'*'=415 +'%'=416 +'DIV'=417 +'!'=418 +'&'=419 +'~'=420 +'|'=421 +'||'=422 +'^'=423 +'?'=424 +'$'=425 diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index ca00be5..543b4c8 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -199,261 +199,262 @@ export class HiveSqlParser extends SQLParserBase { public static readonly KW_LEFT = 180; public static readonly KW_LESS = 181; public static readonly KW_LEVEL = 182; - public static readonly KW_LIKE = 183; - public static readonly KW_LIMIT = 184; - public static readonly KW_LINES = 185; - public static readonly KW_LOAD = 186; - public static readonly KW_LOCAL = 187; - public static readonly KW_LOCATION = 188; - public static readonly KW_LOCK = 189; - public static readonly KW_LOCKS = 190; - public static readonly KW_LOGICAL = 191; - public static readonly KW_LONG = 192; - public static readonly KW_MACRO = 193; - public static readonly KW_MANAGED = 194; - public static readonly KW_MANAGEDLOCATION = 195; - public static readonly KW_MANAGEMENT = 196; - public static readonly KW_MAP = 197; - public static readonly KW_MAPJOIN = 198; - public static readonly KW_MAPPING = 199; - public static readonly KW_MATCHED = 200; - public static readonly KW_MATERIALIZED = 201; - public static readonly KW_MERGE = 202; - public static readonly KW_METADATA = 203; - public static readonly KW_MINUS = 204; - public static readonly KW_MINUTE = 205; - public static readonly KW_MINUTES = 206; - public static readonly KW_MONTH = 207; - public static readonly KW_MONTHS = 208; - public static readonly KW_MORE = 209; - public static readonly KW_MOVE = 210; - public static readonly KW_MSCK = 211; - public static readonly KW_NONE = 212; - public static readonly KW_NORELY = 213; - public static readonly KW_NOSCAN = 214; - public static readonly KW_NOT = 215; - public static readonly KW_NOVALIDATE = 216; - public static readonly KW_NO_DROP = 217; - public static readonly KW_NULL = 218; - public static readonly KW_NULLS = 219; - public static readonly KW_OF = 220; - public static readonly KW_OFFLINE = 221; - public static readonly KW_OFFSET = 222; - public static readonly KW_ON = 223; - public static readonly KW_ONLY = 224; - public static readonly KW_OPERATOR = 225; - public static readonly KW_OPTION = 226; - public static readonly KW_OR = 227; - public static readonly KW_ORDER = 228; - public static readonly KW_OUT = 229; - public static readonly KW_OUTER = 230; - public static readonly KW_OUTPUTDRIVER = 231; - public static readonly KW_OUTPUTFORMAT = 232; - public static readonly KW_OVER = 233; - public static readonly KW_OVERWRITE = 234; - public static readonly KW_OWNER = 235; - public static readonly KW_PARTITION = 236; - public static readonly KW_PARTITIONED = 237; - public static readonly KW_PARTITIONS = 238; - public static readonly KW_PATH = 239; - public static readonly KW_PERCENT = 240; - public static readonly KW_PKFK_JOIN = 241; - public static readonly KW_PLAN = 242; - public static readonly KW_PLANS = 243; - public static readonly KW_PLUS = 244; - public static readonly KW_POOL = 245; - public static readonly KW_PRECEDING = 246; - public static readonly KW_PRECISION = 247; - public static readonly KW_PREPARE = 248; - public static readonly KW_PRESERVE = 249; - public static readonly KW_PRIMARY = 250; - public static readonly KW_PRINCIPALS = 251; - public static readonly KW_PROCEDURE = 252; - public static readonly KW_PROTECTION = 253; - public static readonly KW_PURGE = 254; - public static readonly KW_QUALIFY = 255; - public static readonly KW_QUARTER = 256; - public static readonly KW_QUERY = 257; - public static readonly KW_QUERY_PARALLELISM = 258; - public static readonly KW_RANGE = 259; - public static readonly KW_READ = 260; - public static readonly KW_READONLY = 261; - public static readonly KW_READS = 262; - public static readonly KW_REAL = 263; - public static readonly KW_REBUILD = 264; - public static readonly KW_RECORDREADER = 265; - public static readonly KW_RECORDWRITER = 266; - public static readonly KW_REDUCE = 267; - public static readonly KW_REFERENCES = 268; - public static readonly KW_REGEXP = 269; - public static readonly KW_RELOAD = 270; - public static readonly KW_RELY = 271; - public static readonly KW_REMOTE = 272; - public static readonly KW_RENAME = 273; - public static readonly KW_REOPTIMIZATION = 274; - public static readonly KW_REPAIR = 275; - public static readonly KW_REPL = 276; - public static readonly KW_REPLACE = 277; - public static readonly KW_REPLICATION = 278; - public static readonly KW_RESOURCE = 279; - public static readonly KW_RESPECT = 280; - public static readonly KW_RESTRICT = 281; - public static readonly KW_REVOKE = 282; - public static readonly KW_REWRITE = 283; - public static readonly KW_RIGHT = 284; - public static readonly KW_RLIKE = 285; - public static readonly KW_ROLE = 286; - public static readonly KW_ROLES = 287; - public static readonly KW_ROLLBACK = 288; - public static readonly KW_ROLLUP = 289; - public static readonly KW_ROW = 290; - public static readonly KW_ROWS = 291; - public static readonly KW_SCHEDULED = 292; - public static readonly KW_SCHEDULING_POLICY = 293; - public static readonly KW_SCHEMA = 294; - public static readonly KW_SCHEMAS = 295; - public static readonly KW_SECOND = 296; - public static readonly KW_SECONDS = 297; - public static readonly KW_SELECT = 298; - public static readonly KW_SEMI = 299; - public static readonly KW_SERDE = 300; - public static readonly KW_SERDEPROPERTIES = 301; - public static readonly KW_SERVER = 302; - public static readonly KW_SET = 303; - public static readonly KW_SETS = 304; - public static readonly KW_SET_CURRENT_SNAPSHOT = 305; - public static readonly KW_SHARED = 306; - public static readonly KW_SHOW = 307; - public static readonly KW_SHOW_DATABASE = 308; - public static readonly KW_SKEWED = 309; - public static readonly KW_SMALLINT = 310; - public static readonly KW_SNAPSHOT = 311; - public static readonly KW_SOME = 312; - public static readonly KW_SORT = 313; - public static readonly KW_SORTED = 314; - public static readonly KW_SPEC = 315; - public static readonly KW_SSL = 316; - public static readonly KW_START = 317; - public static readonly KW_STATISTICS = 318; - public static readonly KW_STATUS = 319; - public static readonly KW_STORED = 320; - public static readonly KW_STREAMTABLE = 321; - public static readonly KW_STRING = 322; - public static readonly KW_STRUCT = 323; - public static readonly KW_SUMMARY = 324; - public static readonly KW_SYNC = 325; - public static readonly KW_SYSTEM_TIME = 326; - public static readonly KW_SYSTEM_VERSION = 327; - public static readonly KW_TABLE = 328; - public static readonly KW_TABLES = 329; - public static readonly KW_TABLESAMPLE = 330; - public static readonly KW_TBLPROPERTIES = 331; - public static readonly KW_TEMPORARY = 332; - public static readonly KW_TERMINATED = 333; - public static readonly KW_THEN = 334; - public static readonly KW_TIME = 335; - public static readonly KW_TIMESTAMP = 336; - public static readonly KW_TIMESTAMPLOCALTZ = 337; - public static readonly KW_TIMESTAMPTZ = 338; - public static readonly KW_TINYINT = 339; - public static readonly KW_TO = 340; - public static readonly KW_TOUCH = 341; - public static readonly KW_TRAILING = 342; - public static readonly KW_TRANSACTION = 343; - public static readonly KW_TRANSACTIONAL = 344; - public static readonly KW_TRANSACTIONS = 345; - public static readonly KW_TRANSFORM = 346; - public static readonly KW_TRIGGER = 347; - public static readonly KW_TRIM = 348; - public static readonly KW_TRUE = 349; - public static readonly KW_TRUNCATE = 350; - public static readonly KW_TYPE = 351; - public static readonly KW_UNARCHIVE = 352; - public static readonly KW_UNBOUNDED = 353; - public static readonly KW_UNDO = 354; - public static readonly KW_UNION = 355; - public static readonly KW_UNIONTYPE = 356; - public static readonly KW_UNIQUE = 357; - public static readonly KW_UNIQUEJOIN = 358; - public static readonly KW_UNKNOWN = 359; - public static readonly KW_UNLOCK = 360; - public static readonly KW_UNMANAGED = 361; - public static readonly KW_UNSET = 362; - public static readonly KW_UNSIGNED = 363; - public static readonly KW_UPDATE = 364; - public static readonly KW_URI = 365; - public static readonly KW_URL = 366; - public static readonly KW_USE = 367; - public static readonly KW_USER = 368; - public static readonly KW_USING = 369; - public static readonly KW_UTC = 370; - public static readonly KW_UTCTIMESTAMP = 371; - public static readonly KW_VALIDATE = 372; - public static readonly KW_VALUES = 373; - public static readonly KW_VALUE_TYPE = 374; - public static readonly KW_VARCHAR = 375; - public static readonly KW_VECTORIZATION = 376; - public static readonly KW_VIEW = 377; - public static readonly KW_VIEWS = 378; - public static readonly KW_WAIT = 379; - public static readonly KW_WEEK = 380; - public static readonly KW_WEEKS = 381; - public static readonly KW_WHEN = 382; - public static readonly KW_WHERE = 383; - public static readonly KW_WHILE = 384; - public static readonly KW_WINDOW = 385; - public static readonly KW_WITH = 386; - public static readonly KW_WITHIN = 387; - public static readonly KW_WORK = 388; - public static readonly KW_WORKLOAD = 389; - public static readonly KW_WRITE = 390; - public static readonly KW_YEAR = 391; - public static readonly KW_YEARS = 392; - public static readonly KW_ZONE = 393; - public static readonly DOT = 394; - public static readonly COLON = 395; - public static readonly COMMA = 396; - public static readonly SEMICOLON = 397; - public static readonly LPAREN = 398; - public static readonly RPAREN = 399; - public static readonly LSQUARE = 400; - public static readonly RSQUARE = 401; - public static readonly LCURLY = 402; - public static readonly RCURLY = 403; - public static readonly EQUAL = 404; - public static readonly EQUAL_NS = 405; - public static readonly NOTEQUAL = 406; - public static readonly LESSTHANOREQUALTO = 407; - public static readonly LESSTHAN = 408; - public static readonly GREATERTHANOREQUALTO = 409; - public static readonly GREATERTHAN = 410; - public static readonly DIVIDE = 411; - public static readonly PLUS = 412; - public static readonly MINUS = 413; - public static readonly STAR = 414; - public static readonly MOD = 415; - public static readonly DIV = 416; - public static readonly BITWISENOT = 417; - public static readonly AMPERSAND = 418; - public static readonly TILDE = 419; - public static readonly BITWISEOR = 420; - public static readonly CONCATENATE = 421; - public static readonly BITWISEXOR = 422; - public static readonly QUESTION = 423; - public static readonly DOLLAR = 424; - public static readonly StringLiteral = 425; - public static readonly CharSetLiteral = 426; - public static readonly IntegralLiteral = 427; - public static readonly NumberLiteral = 428; - public static readonly ByteLengthLiteral = 429; - public static readonly Number = 430; - public static readonly Identifier = 431; - public static readonly CharSetName = 432; - public static readonly WHITE_SPACE = 433; - public static readonly LINE_COMMENT = 434; - public static readonly QUERY_HINT = 435; - public static readonly SHOW_HINT = 436; - public static readonly HIDDEN_HINT = 437; + public static readonly KW_LIFECYCLE = 183; + public static readonly KW_LIKE = 184; + public static readonly KW_LIMIT = 185; + public static readonly KW_LINES = 186; + public static readonly KW_LOAD = 187; + public static readonly KW_LOCAL = 188; + public static readonly KW_LOCATION = 189; + public static readonly KW_LOCK = 190; + public static readonly KW_LOCKS = 191; + public static readonly KW_LOGICAL = 192; + public static readonly KW_LONG = 193; + public static readonly KW_MACRO = 194; + public static readonly KW_MANAGED = 195; + public static readonly KW_MANAGEDLOCATION = 196; + public static readonly KW_MANAGEMENT = 197; + public static readonly KW_MAP = 198; + public static readonly KW_MAPJOIN = 199; + public static readonly KW_MAPPING = 200; + public static readonly KW_MATCHED = 201; + public static readonly KW_MATERIALIZED = 202; + public static readonly KW_MERGE = 203; + public static readonly KW_METADATA = 204; + public static readonly KW_MINUS = 205; + public static readonly KW_MINUTE = 206; + public static readonly KW_MINUTES = 207; + public static readonly KW_MONTH = 208; + public static readonly KW_MONTHS = 209; + public static readonly KW_MORE = 210; + public static readonly KW_MOVE = 211; + public static readonly KW_MSCK = 212; + public static readonly KW_NONE = 213; + public static readonly KW_NORELY = 214; + public static readonly KW_NOSCAN = 215; + public static readonly KW_NOT = 216; + public static readonly KW_NOVALIDATE = 217; + public static readonly KW_NO_DROP = 218; + public static readonly KW_NULL = 219; + public static readonly KW_NULLS = 220; + public static readonly KW_OF = 221; + public static readonly KW_OFFLINE = 222; + public static readonly KW_OFFSET = 223; + public static readonly KW_ON = 224; + public static readonly KW_ONLY = 225; + public static readonly KW_OPERATOR = 226; + public static readonly KW_OPTION = 227; + public static readonly KW_OR = 228; + public static readonly KW_ORDER = 229; + public static readonly KW_OUT = 230; + public static readonly KW_OUTER = 231; + public static readonly KW_OUTPUTDRIVER = 232; + public static readonly KW_OUTPUTFORMAT = 233; + public static readonly KW_OVER = 234; + public static readonly KW_OVERWRITE = 235; + public static readonly KW_OWNER = 236; + public static readonly KW_PARTITION = 237; + public static readonly KW_PARTITIONED = 238; + public static readonly KW_PARTITIONS = 239; + public static readonly KW_PATH = 240; + public static readonly KW_PERCENT = 241; + public static readonly KW_PKFK_JOIN = 242; + public static readonly KW_PLAN = 243; + public static readonly KW_PLANS = 244; + public static readonly KW_PLUS = 245; + public static readonly KW_POOL = 246; + public static readonly KW_PRECEDING = 247; + public static readonly KW_PRECISION = 248; + public static readonly KW_PREPARE = 249; + public static readonly KW_PRESERVE = 250; + public static readonly KW_PRIMARY = 251; + public static readonly KW_PRINCIPALS = 252; + public static readonly KW_PROCEDURE = 253; + public static readonly KW_PROTECTION = 254; + public static readonly KW_PURGE = 255; + public static readonly KW_QUALIFY = 256; + public static readonly KW_QUARTER = 257; + public static readonly KW_QUERY = 258; + public static readonly KW_QUERY_PARALLELISM = 259; + public static readonly KW_RANGE = 260; + public static readonly KW_READ = 261; + public static readonly KW_READONLY = 262; + public static readonly KW_READS = 263; + public static readonly KW_REAL = 264; + public static readonly KW_REBUILD = 265; + public static readonly KW_RECORDREADER = 266; + public static readonly KW_RECORDWRITER = 267; + public static readonly KW_REDUCE = 268; + public static readonly KW_REFERENCES = 269; + public static readonly KW_REGEXP = 270; + public static readonly KW_RELOAD = 271; + public static readonly KW_RELY = 272; + public static readonly KW_REMOTE = 273; + public static readonly KW_RENAME = 274; + public static readonly KW_REOPTIMIZATION = 275; + public static readonly KW_REPAIR = 276; + public static readonly KW_REPL = 277; + public static readonly KW_REPLACE = 278; + public static readonly KW_REPLICATION = 279; + public static readonly KW_RESOURCE = 280; + public static readonly KW_RESPECT = 281; + public static readonly KW_RESTRICT = 282; + public static readonly KW_REVOKE = 283; + public static readonly KW_REWRITE = 284; + public static readonly KW_RIGHT = 285; + public static readonly KW_RLIKE = 286; + public static readonly KW_ROLE = 287; + public static readonly KW_ROLES = 288; + public static readonly KW_ROLLBACK = 289; + public static readonly KW_ROLLUP = 290; + public static readonly KW_ROW = 291; + public static readonly KW_ROWS = 292; + public static readonly KW_SCHEDULED = 293; + public static readonly KW_SCHEDULING_POLICY = 294; + public static readonly KW_SCHEMA = 295; + public static readonly KW_SCHEMAS = 296; + public static readonly KW_SECOND = 297; + public static readonly KW_SECONDS = 298; + public static readonly KW_SELECT = 299; + public static readonly KW_SEMI = 300; + public static readonly KW_SERDE = 301; + public static readonly KW_SERDEPROPERTIES = 302; + public static readonly KW_SERVER = 303; + public static readonly KW_SET = 304; + public static readonly KW_SETS = 305; + public static readonly KW_SET_CURRENT_SNAPSHOT = 306; + public static readonly KW_SHARED = 307; + public static readonly KW_SHOW = 308; + public static readonly KW_SHOW_DATABASE = 309; + public static readonly KW_SKEWED = 310; + public static readonly KW_SMALLINT = 311; + public static readonly KW_SNAPSHOT = 312; + public static readonly KW_SOME = 313; + public static readonly KW_SORT = 314; + public static readonly KW_SORTED = 315; + public static readonly KW_SPEC = 316; + public static readonly KW_SSL = 317; + public static readonly KW_START = 318; + public static readonly KW_STATISTICS = 319; + public static readonly KW_STATUS = 320; + public static readonly KW_STORED = 321; + public static readonly KW_STREAMTABLE = 322; + public static readonly KW_STRING = 323; + public static readonly KW_STRUCT = 324; + public static readonly KW_SUMMARY = 325; + public static readonly KW_SYNC = 326; + public static readonly KW_SYSTEM_TIME = 327; + public static readonly KW_SYSTEM_VERSION = 328; + public static readonly KW_TABLE = 329; + public static readonly KW_TABLES = 330; + public static readonly KW_TABLESAMPLE = 331; + public static readonly KW_TBLPROPERTIES = 332; + public static readonly KW_TEMPORARY = 333; + public static readonly KW_TERMINATED = 334; + public static readonly KW_THEN = 335; + public static readonly KW_TIME = 336; + public static readonly KW_TIMESTAMP = 337; + public static readonly KW_TIMESTAMPLOCALTZ = 338; + public static readonly KW_TIMESTAMPTZ = 339; + public static readonly KW_TINYINT = 340; + public static readonly KW_TO = 341; + public static readonly KW_TOUCH = 342; + public static readonly KW_TRAILING = 343; + public static readonly KW_TRANSACTION = 344; + public static readonly KW_TRANSACTIONAL = 345; + public static readonly KW_TRANSACTIONS = 346; + public static readonly KW_TRANSFORM = 347; + public static readonly KW_TRIGGER = 348; + public static readonly KW_TRIM = 349; + public static readonly KW_TRUE = 350; + public static readonly KW_TRUNCATE = 351; + public static readonly KW_TYPE = 352; + public static readonly KW_UNARCHIVE = 353; + public static readonly KW_UNBOUNDED = 354; + public static readonly KW_UNDO = 355; + public static readonly KW_UNION = 356; + public static readonly KW_UNIONTYPE = 357; + public static readonly KW_UNIQUE = 358; + public static readonly KW_UNIQUEJOIN = 359; + public static readonly KW_UNKNOWN = 360; + public static readonly KW_UNLOCK = 361; + public static readonly KW_UNMANAGED = 362; + public static readonly KW_UNSET = 363; + public static readonly KW_UNSIGNED = 364; + public static readonly KW_UPDATE = 365; + public static readonly KW_URI = 366; + public static readonly KW_URL = 367; + public static readonly KW_USE = 368; + public static readonly KW_USER = 369; + public static readonly KW_USING = 370; + public static readonly KW_UTC = 371; + public static readonly KW_UTCTIMESTAMP = 372; + public static readonly KW_VALIDATE = 373; + public static readonly KW_VALUES = 374; + public static readonly KW_VALUE_TYPE = 375; + public static readonly KW_VARCHAR = 376; + public static readonly KW_VECTORIZATION = 377; + public static readonly KW_VIEW = 378; + public static readonly KW_VIEWS = 379; + public static readonly KW_WAIT = 380; + public static readonly KW_WEEK = 381; + public static readonly KW_WEEKS = 382; + public static readonly KW_WHEN = 383; + public static readonly KW_WHERE = 384; + public static readonly KW_WHILE = 385; + public static readonly KW_WINDOW = 386; + public static readonly KW_WITH = 387; + public static readonly KW_WITHIN = 388; + public static readonly KW_WORK = 389; + public static readonly KW_WORKLOAD = 390; + public static readonly KW_WRITE = 391; + public static readonly KW_YEAR = 392; + public static readonly KW_YEARS = 393; + public static readonly KW_ZONE = 394; + public static readonly DOT = 395; + public static readonly COLON = 396; + public static readonly COMMA = 397; + public static readonly SEMICOLON = 398; + public static readonly LPAREN = 399; + public static readonly RPAREN = 400; + public static readonly LSQUARE = 401; + public static readonly RSQUARE = 402; + public static readonly LCURLY = 403; + public static readonly RCURLY = 404; + public static readonly EQUAL = 405; + public static readonly EQUAL_NS = 406; + public static readonly NOTEQUAL = 407; + public static readonly LESSTHANOREQUALTO = 408; + public static readonly LESSTHAN = 409; + public static readonly GREATERTHANOREQUALTO = 410; + public static readonly GREATERTHAN = 411; + public static readonly DIVIDE = 412; + public static readonly PLUS = 413; + public static readonly MINUS = 414; + public static readonly STAR = 415; + public static readonly MOD = 416; + public static readonly DIV = 417; + public static readonly BITWISENOT = 418; + public static readonly AMPERSAND = 419; + public static readonly TILDE = 420; + public static readonly BITWISEOR = 421; + public static readonly CONCATENATE = 422; + public static readonly BITWISEXOR = 423; + public static readonly QUESTION = 424; + public static readonly DOLLAR = 425; + public static readonly StringLiteral = 426; + public static readonly CharSetLiteral = 427; + public static readonly IntegralLiteral = 428; + public static readonly NumberLiteral = 429; + public static readonly ByteLengthLiteral = 430; + public static readonly Number = 431; + public static readonly Identifier = 432; + public static readonly CharSetName = 433; + public static readonly WHITE_SPACE = 434; + public static readonly LINE_COMMENT = 435; + public static readonly QUERY_HINT = 436; + public static readonly SHOW_HINT = 437; + public static readonly HIDDEN_HINT = 438; public static readonly RULE_program = 0; public static readonly RULE_statement = 1; public static readonly RULE_explainStatement = 2; @@ -564,416 +565,417 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_definedAsSpec = 107; public static readonly RULE_showStmtIdentifier = 108; public static readonly RULE_tableComment = 109; - public static readonly RULE_createTablePartitionSpec = 110; - public static readonly RULE_createTablePartitionColumnTypeSpec = 111; - public static readonly RULE_createTablePartitionColumnSpec = 112; - public static readonly RULE_partitionTransformSpec = 113; - public static readonly RULE_columnNameTransformConstraint = 114; - public static readonly RULE_partitionTransformType = 115; - public static readonly RULE_tableBuckets = 116; - public static readonly RULE_tableImplBuckets = 117; - public static readonly RULE_tableSkewed = 118; - public static readonly RULE_rowFormat = 119; - public static readonly RULE_recordReader = 120; - public static readonly RULE_recordWriter = 121; - public static readonly RULE_rowFormatSerde = 122; - public static readonly RULE_rowFormatDelimited = 123; - public static readonly RULE_tableRowFormat = 124; - public static readonly RULE_tablePropertiesPrefixed = 125; - public static readonly RULE_tableProperties = 126; - public static readonly RULE_tablePropertiesList = 127; - public static readonly RULE_keyValueProperty = 128; - public static readonly RULE_keyProperty = 129; - public static readonly RULE_tableRowFormatFieldIdentifier = 130; - public static readonly RULE_tableRowFormatCollItemsIdentifier = 131; - public static readonly RULE_tableRowFormatMapKeysIdentifier = 132; - public static readonly RULE_tableRowFormatLinesIdentifier = 133; - public static readonly RULE_tableRowNullFormat = 134; - public static readonly RULE_tableFileFormat = 135; - public static readonly RULE_tableLocation = 136; - public static readonly RULE_columnNameTypeList = 137; - public static readonly RULE_columnNameTypeOrConstraintList = 138; - public static readonly RULE_columnNameColonTypeList = 139; - public static readonly RULE_columnNameList = 140; - public static readonly RULE_columnName = 141; - public static readonly RULE_columnNameCreate = 142; - public static readonly RULE_extColumnName = 143; - public static readonly RULE_columnNameOrderList = 144; - public static readonly RULE_columnParenthesesList = 145; - public static readonly RULE_enableValidateSpecification = 146; - public static readonly RULE_enableSpecification = 147; - public static readonly RULE_validateSpecification = 148; - public static readonly RULE_enforcedSpecification = 149; - public static readonly RULE_relySpecification = 150; - public static readonly RULE_createConstraint = 151; - public static readonly RULE_alterConstraintWithName = 152; - public static readonly RULE_tableLevelConstraint = 153; - public static readonly RULE_pkUkConstraint = 154; - public static readonly RULE_checkConstraint = 155; - public static readonly RULE_createForeignKey = 156; - public static readonly RULE_alterForeignKeyWithName = 157; - public static readonly RULE_skewedValueElement = 158; - public static readonly RULE_skewedColumnValuePairList = 159; - public static readonly RULE_skewedColumnValuePair = 160; - public static readonly RULE_skewedColumnValues = 161; - public static readonly RULE_skewedColumnValue = 162; - public static readonly RULE_skewedValueLocationElement = 163; - public static readonly RULE_orderSpecification = 164; - public static readonly RULE_nullOrdering = 165; - public static readonly RULE_columnNameOrder = 166; - public static readonly RULE_columnNameCommentList = 167; - public static readonly RULE_columnNameComment = 168; - public static readonly RULE_orderSpecificationRewrite = 169; - public static readonly RULE_columnRefOrder = 170; - public static readonly RULE_columnNameType = 171; - public static readonly RULE_columnNameTypeOrConstraint = 172; - public static readonly RULE_tableConstraint = 173; - public static readonly RULE_columnNameTypeConstraint = 174; - public static readonly RULE_columnConstraint = 175; - public static readonly RULE_foreignKeyConstraint = 176; - public static readonly RULE_colConstraint = 177; - public static readonly RULE_alterColumnConstraint = 178; - public static readonly RULE_alterForeignKeyConstraint = 179; - public static readonly RULE_alterColConstraint = 180; - public static readonly RULE_columnConstraintType = 181; - public static readonly RULE_defaultVal = 182; - public static readonly RULE_tableConstraintType = 183; - public static readonly RULE_constraintOptsCreate = 184; - public static readonly RULE_constraintOptsAlter = 185; - public static readonly RULE_columnNameColonType = 186; - public static readonly RULE_colType = 187; - public static readonly RULE_colTypeList = 188; - public static readonly RULE_type = 189; - public static readonly RULE_primitiveType = 190; - public static readonly RULE_listType = 191; - public static readonly RULE_structType = 192; - public static readonly RULE_mapType = 193; - public static readonly RULE_unionType = 194; - public static readonly RULE_setOperator = 195; - public static readonly RULE_queryStatementExpression = 196; - public static readonly RULE_queryStatementExpressionBody = 197; - public static readonly RULE_withClause = 198; - public static readonly RULE_cteStatement = 199; - public static readonly RULE_fromStatement = 200; - public static readonly RULE_singleFromStatement = 201; - public static readonly RULE_regularBody = 202; - public static readonly RULE_atomSelectStatement = 203; - public static readonly RULE_selectStatement = 204; - public static readonly RULE_setOpSelectStatement = 205; - public static readonly RULE_selectStatementWithCTE = 206; - public static readonly RULE_insertClause = 207; - public static readonly RULE_destination = 208; - public static readonly RULE_limitClause = 209; - public static readonly RULE_deleteStatement = 210; - public static readonly RULE_columnAssignmentClause = 211; - public static readonly RULE_precedencePlusExpressionOrDefault = 212; - public static readonly RULE_setColumnsClause = 213; - public static readonly RULE_updateStatement = 214; - public static readonly RULE_sqlTransactionStatement = 215; - public static readonly RULE_startTransactionStatement = 216; - public static readonly RULE_transactionMode = 217; - public static readonly RULE_transactionAccessMode = 218; - public static readonly RULE_isolationLevel = 219; - public static readonly RULE_levelOfIsolation = 220; - public static readonly RULE_commitStatement = 221; - public static readonly RULE_rollbackStatement = 222; - public static readonly RULE_setAutoCommitStatement = 223; - public static readonly RULE_abortTransactionStatement = 224; - public static readonly RULE_abortCompactionStatement = 225; - public static readonly RULE_mergeStatement = 226; - public static readonly RULE_whenClauses = 227; - public static readonly RULE_whenNotMatchedClause = 228; - public static readonly RULE_whenMatchedAndClause = 229; - public static readonly RULE_whenMatchedThenClause = 230; - public static readonly RULE_updateOrDelete = 231; - public static readonly RULE_killQueryStatement = 232; - public static readonly RULE_compactionId = 233; - public static readonly RULE_compactionPool = 234; - public static readonly RULE_compactionType = 235; - public static readonly RULE_compactionStatus = 236; - public static readonly RULE_alterStatement = 237; - public static readonly RULE_alterTableStatementSuffix = 238; - public static readonly RULE_alterTblPartitionStatementSuffix = 239; - public static readonly RULE_alterStatementPartitionKeyType = 240; - public static readonly RULE_alterViewStatementSuffix = 241; - public static readonly RULE_alterMaterializedViewStatementSuffix = 242; - public static readonly RULE_alterMaterializedViewSuffixRewrite = 243; - public static readonly RULE_alterMaterializedViewSuffixRebuild = 244; - public static readonly RULE_alterDatabaseStatementSuffix = 245; - public static readonly RULE_alterDatabaseSuffixProperties = 246; - public static readonly RULE_alterDatabaseSuffixSetOwner = 247; - public static readonly RULE_alterDatabaseSuffixSetLocation = 248; - public static readonly RULE_alterDatabaseSuffixSetManagedLocation = 249; - public static readonly RULE_alterStatementSuffixRename = 250; - public static readonly RULE_alterStatementSuffixAddCol = 251; - public static readonly RULE_alterStatementSuffixAddConstraint = 252; - public static readonly RULE_alterStatementSuffixUpdateColumns = 253; - public static readonly RULE_alterStatementSuffixProtections = 254; - public static readonly RULE_alterStatementSuffixDropConstraint = 255; - public static readonly RULE_alterStatementSuffixRenameCol = 256; - public static readonly RULE_alterStatementSuffixUpdateStatsCol = 257; - public static readonly RULE_alterStatementSuffixUpdateStats = 258; - public static readonly RULE_alterStatementChangeColPosition = 259; - public static readonly RULE_alterStatementSuffixAddPartitions = 260; - public static readonly RULE_alterStatementSuffixAddPartitionsElement = 261; - public static readonly RULE_alterStatementSuffixTouch = 262; - public static readonly RULE_alterStatementSuffixArchive = 263; - public static readonly RULE_alterStatementSuffixUnArchive = 264; - public static readonly RULE_partitionLocation = 265; - public static readonly RULE_alterStatementSuffixRecoverPartitions = 266; - public static readonly RULE_alterStatementSuffixDropPartitions = 267; - public static readonly RULE_alterStatementSuffixProperties = 268; - public static readonly RULE_alterViewSuffixProperties = 269; - public static readonly RULE_alterStatementSuffixSerdeProperties = 270; - public static readonly RULE_tablePartitionPrefix = 271; - public static readonly RULE_alterStatementSuffixFileFormat = 272; - public static readonly RULE_alterStatementSuffixClusterbySortby = 273; - public static readonly RULE_alterTblPartitionStatementSuffixSkewedLocation = 274; - public static readonly RULE_skewedLocations = 275; - public static readonly RULE_skewedLocationsList = 276; - public static readonly RULE_skewedLocationMap = 277; - public static readonly RULE_alterStatementSuffixLocation = 278; - public static readonly RULE_alterStatementSuffixSkewedby = 279; - public static readonly RULE_alterStatementSuffixExchangePartition = 280; - public static readonly RULE_alterStatementSuffixRenamePart = 281; - public static readonly RULE_alterStatementSuffixStatsPart = 282; - public static readonly RULE_alterStatementSuffixMergeFiles = 283; - public static readonly RULE_alterStatementSuffixBucketNum = 284; - public static readonly RULE_blocking = 285; - public static readonly RULE_compactPool = 286; - public static readonly RULE_alterStatementSuffixCompact = 287; - public static readonly RULE_alterStatementSuffixSetOwner = 288; - public static readonly RULE_alterStatementSuffixSetPartSpec = 289; - public static readonly RULE_alterStatementSuffixExecute = 290; - public static readonly RULE_alterIndexStatementSuffix = 291; - public static readonly RULE_fileFormat = 292; - public static readonly RULE_alterDataConnectorStatementSuffix = 293; - public static readonly RULE_alterDataConnectorSuffixProperties = 294; - public static readonly RULE_alterDataConnectorSuffixSetOwner = 295; - public static readonly RULE_alterDataConnectorSuffixSetUrl = 296; - public static readonly RULE_likeTableOrFile = 297; - public static readonly RULE_createTableStatement = 298; - public static readonly RULE_createDataConnectorStatement = 299; - public static readonly RULE_dataConnectorComment = 300; - public static readonly RULE_dataConnectorUrl = 301; - public static readonly RULE_dataConnectorType = 302; - public static readonly RULE_dcProperties = 303; - public static readonly RULE_dropDataConnectorStatement = 304; - public static readonly RULE_tableAllColumns = 305; - public static readonly RULE_defaultValue = 306; - public static readonly RULE_expressionList = 307; - public static readonly RULE_aliasList = 308; - public static readonly RULE_fromClause = 309; - public static readonly RULE_fromSource = 310; - public static readonly RULE_atomjoinSource = 311; - public static readonly RULE_joinSource = 312; - public static readonly RULE_joinSourcePart = 313; - public static readonly RULE_uniqueJoinSource = 314; - public static readonly RULE_uniqueJoinExpr = 315; - public static readonly RULE_uniqueJoinToken = 316; - public static readonly RULE_joinToken = 317; - public static readonly RULE_lateralView = 318; - public static readonly RULE_tableAlias = 319; - public static readonly RULE_tableBucketSample = 320; - public static readonly RULE_splitSample = 321; - public static readonly RULE_tableSample = 322; - public static readonly RULE_tableSource = 323; - public static readonly RULE_asOfClause = 324; - public static readonly RULE_uniqueJoinTableSource = 325; - public static readonly RULE_dbSchemaName = 326; - public static readonly RULE_dbSchemaNameCreate = 327; - public static readonly RULE_tableOrView = 328; - public static readonly RULE_tableName = 329; - public static readonly RULE_tableNameCreate = 330; - public static readonly RULE_viewName = 331; - public static readonly RULE_viewNameCreate = 332; - public static readonly RULE_subQuerySource = 333; - public static readonly RULE_partitioningSpec = 334; - public static readonly RULE_partitionTableFunctionSource = 335; - public static readonly RULE_partitionedTableFunction = 336; - public static readonly RULE_whereClause = 337; - public static readonly RULE_searchCondition = 338; - public static readonly RULE_valuesSource = 339; - public static readonly RULE_valuesClause = 340; - public static readonly RULE_valuesTableConstructor = 341; - public static readonly RULE_valueRowConstructor = 342; - public static readonly RULE_firstValueRowConstructor = 343; - public static readonly RULE_virtualTableSource = 344; - public static readonly RULE_selectClause = 345; - public static readonly RULE_all_distinct = 346; - public static readonly RULE_selectList = 347; - public static readonly RULE_selectTrfmClause = 348; - public static readonly RULE_selectItem = 349; - public static readonly RULE_trfmClause = 350; - public static readonly RULE_selectExpression = 351; - public static readonly RULE_selectExpressionList = 352; - public static readonly RULE_window_clause = 353; - public static readonly RULE_window_defn = 354; - public static readonly RULE_window_specification = 355; - public static readonly RULE_window_frame = 356; - public static readonly RULE_window_range_expression = 357; - public static readonly RULE_window_value_expression = 358; - public static readonly RULE_window_frame_start_boundary = 359; - public static readonly RULE_window_frame_boundary = 360; - public static readonly RULE_groupByClause = 361; - public static readonly RULE_groupby_expression = 362; - public static readonly RULE_groupByEmpty = 363; - public static readonly RULE_rollupStandard = 364; - public static readonly RULE_rollupOldSyntax = 365; - public static readonly RULE_groupingSetExpression = 366; - public static readonly RULE_groupingSetExpressionMultiple = 367; - public static readonly RULE_groupingExpressionSingle = 368; - public static readonly RULE_havingClause = 369; - public static readonly RULE_qualifyClause = 370; - public static readonly RULE_havingCondition = 371; - public static readonly RULE_expressionsInParenthesis = 372; - public static readonly RULE_expressionsNotInParenthesis = 373; - public static readonly RULE_expressionPart = 374; - public static readonly RULE_expressionOrDefault = 375; - public static readonly RULE_firstExpressionsWithAlias = 376; - public static readonly RULE_expressionWithAlias = 377; - public static readonly RULE_expressions = 378; - public static readonly RULE_columnRefOrderInParenthesis = 379; - public static readonly RULE_columnRefOrderNotInParenthesis = 380; - public static readonly RULE_orderByClause = 381; - public static readonly RULE_clusterByClause = 382; - public static readonly RULE_partitionByClause = 383; - public static readonly RULE_distributeByClause = 384; - public static readonly RULE_sortByClause = 385; - public static readonly RULE_trimFunction = 386; - public static readonly RULE_function_ = 387; - public static readonly RULE_null_treatment = 388; - public static readonly RULE_functionNameCreate = 389; - public static readonly RULE_functionNameForDDL = 390; - public static readonly RULE_functionNameForInvoke = 391; - public static readonly RULE_userDefinedFuncName = 392; - public static readonly RULE_internalFunctionName = 393; - public static readonly RULE_castExpression = 394; - public static readonly RULE_caseExpression = 395; - public static readonly RULE_whenExpression = 396; - public static readonly RULE_floorExpression = 397; - public static readonly RULE_floorDateQualifiers = 398; - public static readonly RULE_extractExpression = 399; - public static readonly RULE_timeQualifiers = 400; - public static readonly RULE_constant = 401; - public static readonly RULE_prepareStmtParam = 402; - public static readonly RULE_parameterIdx = 403; - public static readonly RULE_stringLiteralSequence = 404; - public static readonly RULE_charSetStringLiteral = 405; - public static readonly RULE_dateLiteral = 406; - public static readonly RULE_timestampLiteral = 407; - public static readonly RULE_timestampLocalTZLiteral = 408; - public static readonly RULE_intervalValue = 409; - public static readonly RULE_intervalLiteral = 410; - public static readonly RULE_intervalExpression = 411; - public static readonly RULE_intervalQualifiers = 412; - public static readonly RULE_expression = 413; - public static readonly RULE_atomExpression = 414; - public static readonly RULE_precedenceFieldExpression = 415; - public static readonly RULE_precedenceUnaryOperator = 416; - public static readonly RULE_precedenceUnaryPrefixExpression = 417; - public static readonly RULE_precedenceBitwiseXorOperator = 418; - public static readonly RULE_precedenceBitwiseXorExpression = 419; - public static readonly RULE_precedenceStarOperator = 420; - public static readonly RULE_precedenceStarExpression = 421; - public static readonly RULE_precedencePlusOperator = 422; - public static readonly RULE_precedencePlusExpression = 423; - public static readonly RULE_precedenceConcatenateOperator = 424; - public static readonly RULE_precedenceConcatenateExpression = 425; - public static readonly RULE_precedenceAmpersandOperator = 426; - public static readonly RULE_precedenceAmpersandExpression = 427; - public static readonly RULE_precedenceBitwiseOrOperator = 428; - public static readonly RULE_precedenceBitwiseOrExpression = 429; - public static readonly RULE_precedenceRegexpOperator = 430; - public static readonly RULE_precedenceSimilarOperator = 431; - public static readonly RULE_subQueryExpression = 432; - public static readonly RULE_precedenceSimilarExpression = 433; - public static readonly RULE_precedenceSimilarExpressionMain = 434; - public static readonly RULE_precedenceSimilarExpressionPart = 435; - public static readonly RULE_precedenceSimilarExpressionAtom = 436; - public static readonly RULE_precedenceSimilarExpressionQuantifierPredicate = 437; - public static readonly RULE_quantifierType = 438; - public static readonly RULE_precedenceSimilarExpressionIn = 439; - public static readonly RULE_precedenceSimilarExpressionPartNot = 440; - public static readonly RULE_precedenceDistinctOperator = 441; - public static readonly RULE_precedenceEqualOperator = 442; - public static readonly RULE_precedenceEqualExpression = 443; - public static readonly RULE_isCondition = 444; - public static readonly RULE_precedenceUnarySuffixExpression = 445; - public static readonly RULE_precedenceNotOperator = 446; - public static readonly RULE_precedenceNotExpression = 447; - public static readonly RULE_precedenceAndOperator = 448; - public static readonly RULE_precedenceAndExpression = 449; - public static readonly RULE_precedenceOrOperator = 450; - public static readonly RULE_precedenceOrExpression = 451; - public static readonly RULE_booleanValue = 452; - public static readonly RULE_booleanValueTok = 453; - public static readonly RULE_tableOrPartition = 454; - public static readonly RULE_partitionSpec = 455; - public static readonly RULE_partitionVal = 456; - public static readonly RULE_partitionSelectorSpec = 457; - public static readonly RULE_partitionSelectorVal = 458; - public static readonly RULE_partitionSelectorOperator = 459; - public static readonly RULE_subQuerySelectorOperator = 460; - public static readonly RULE_sysFuncNames = 461; - public static readonly RULE_id_ = 462; - public static readonly RULE_functionIdentifier = 463; - public static readonly RULE_principalIdentifier = 464; - public static readonly RULE_nonReserved = 465; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 466; - public static readonly RULE_hint = 467; - public static readonly RULE_hintList = 468; - public static readonly RULE_hintItem = 469; - public static readonly RULE_hintName = 470; - public static readonly RULE_hintArgs = 471; - public static readonly RULE_hintArgName = 472; - public static readonly RULE_prepareStatement = 473; - public static readonly RULE_executeStatement = 474; - public static readonly RULE_executeParamList = 475; - public static readonly RULE_resourcePlanDdlStatements = 476; - public static readonly RULE_rpAssign = 477; - public static readonly RULE_rpAssignList = 478; - public static readonly RULE_rpUnassign = 479; - public static readonly RULE_rpUnassignList = 480; - public static readonly RULE_createResourcePlanStatement = 481; - public static readonly RULE_withReplace = 482; - public static readonly RULE_activate = 483; - public static readonly RULE_enable = 484; - public static readonly RULE_disable = 485; - public static readonly RULE_unmanaged = 486; - public static readonly RULE_year = 487; - public static readonly RULE_month = 488; - public static readonly RULE_week = 489; - public static readonly RULE_day = 490; - public static readonly RULE_hour = 491; - public static readonly RULE_minute = 492; - public static readonly RULE_second = 493; - public static readonly RULE_decimal = 494; - public static readonly RULE_alterResourcePlanStatement = 495; - public static readonly RULE_globalWmStatement = 496; - public static readonly RULE_replaceResourcePlanStatement = 497; - public static readonly RULE_dropResourcePlanStatement = 498; - public static readonly RULE_poolPath = 499; - public static readonly RULE_triggerExpression = 500; - public static readonly RULE_triggerExpressionStandalone = 501; - public static readonly RULE_triggerOrExpression = 502; - public static readonly RULE_triggerAndExpression = 503; - public static readonly RULE_triggerAtomExpression = 504; - public static readonly RULE_triggerLiteral = 505; - public static readonly RULE_comparisionOperator = 506; - public static readonly RULE_triggerActionExpression = 507; - public static readonly RULE_triggerActionExpressionStandalone = 508; - public static readonly RULE_createTriggerStatement = 509; - public static readonly RULE_alterTriggerStatement = 510; - public static readonly RULE_dropTriggerStatement = 511; - public static readonly RULE_poolAssign = 512; - public static readonly RULE_poolAssignList = 513; - public static readonly RULE_createPoolStatement = 514; - public static readonly RULE_alterPoolStatement = 515; - public static readonly RULE_dropPoolStatement = 516; - public static readonly RULE_createMappingStatement = 517; - public static readonly RULE_alterMappingStatement = 518; - public static readonly RULE_dropMappingStatement = 519; + public static readonly RULE_tableLifecycle = 110; + public static readonly RULE_createTablePartitionSpec = 111; + public static readonly RULE_createTablePartitionColumnTypeSpec = 112; + public static readonly RULE_createTablePartitionColumnSpec = 113; + public static readonly RULE_partitionTransformSpec = 114; + public static readonly RULE_columnNameTransformConstraint = 115; + public static readonly RULE_partitionTransformType = 116; + public static readonly RULE_tableBuckets = 117; + public static readonly RULE_tableImplBuckets = 118; + public static readonly RULE_tableSkewed = 119; + public static readonly RULE_rowFormat = 120; + public static readonly RULE_recordReader = 121; + public static readonly RULE_recordWriter = 122; + public static readonly RULE_rowFormatSerde = 123; + public static readonly RULE_rowFormatDelimited = 124; + public static readonly RULE_tableRowFormat = 125; + public static readonly RULE_tablePropertiesPrefixed = 126; + public static readonly RULE_tableProperties = 127; + public static readonly RULE_tablePropertiesList = 128; + public static readonly RULE_keyValueProperty = 129; + public static readonly RULE_keyProperty = 130; + public static readonly RULE_tableRowFormatFieldIdentifier = 131; + public static readonly RULE_tableRowFormatCollItemsIdentifier = 132; + public static readonly RULE_tableRowFormatMapKeysIdentifier = 133; + public static readonly RULE_tableRowFormatLinesIdentifier = 134; + public static readonly RULE_tableRowNullFormat = 135; + public static readonly RULE_tableFileFormat = 136; + public static readonly RULE_tableLocation = 137; + public static readonly RULE_columnNameTypeList = 138; + public static readonly RULE_columnNameTypeOrConstraintList = 139; + public static readonly RULE_columnNameColonTypeList = 140; + public static readonly RULE_columnNameList = 141; + public static readonly RULE_columnName = 142; + public static readonly RULE_columnNameCreate = 143; + public static readonly RULE_extColumnName = 144; + public static readonly RULE_columnNameOrderList = 145; + public static readonly RULE_columnParenthesesList = 146; + public static readonly RULE_enableValidateSpecification = 147; + public static readonly RULE_enableSpecification = 148; + public static readonly RULE_validateSpecification = 149; + public static readonly RULE_enforcedSpecification = 150; + public static readonly RULE_relySpecification = 151; + public static readonly RULE_createConstraint = 152; + public static readonly RULE_alterConstraintWithName = 153; + public static readonly RULE_tableLevelConstraint = 154; + public static readonly RULE_pkUkConstraint = 155; + public static readonly RULE_checkConstraint = 156; + public static readonly RULE_createForeignKey = 157; + public static readonly RULE_alterForeignKeyWithName = 158; + public static readonly RULE_skewedValueElement = 159; + public static readonly RULE_skewedColumnValuePairList = 160; + public static readonly RULE_skewedColumnValuePair = 161; + public static readonly RULE_skewedColumnValues = 162; + public static readonly RULE_skewedColumnValue = 163; + public static readonly RULE_skewedValueLocationElement = 164; + public static readonly RULE_orderSpecification = 165; + public static readonly RULE_nullOrdering = 166; + public static readonly RULE_columnNameOrder = 167; + public static readonly RULE_columnNameCommentList = 168; + public static readonly RULE_columnNameComment = 169; + public static readonly RULE_orderSpecificationRewrite = 170; + public static readonly RULE_columnRefOrder = 171; + public static readonly RULE_columnNameType = 172; + public static readonly RULE_columnNameTypeOrConstraint = 173; + public static readonly RULE_tableConstraint = 174; + public static readonly RULE_columnNameTypeConstraint = 175; + public static readonly RULE_columnConstraint = 176; + public static readonly RULE_foreignKeyConstraint = 177; + public static readonly RULE_colConstraint = 178; + public static readonly RULE_alterColumnConstraint = 179; + public static readonly RULE_alterForeignKeyConstraint = 180; + public static readonly RULE_alterColConstraint = 181; + public static readonly RULE_columnConstraintType = 182; + public static readonly RULE_defaultVal = 183; + public static readonly RULE_tableConstraintType = 184; + public static readonly RULE_constraintOptsCreate = 185; + public static readonly RULE_constraintOptsAlter = 186; + public static readonly RULE_columnNameColonType = 187; + public static readonly RULE_colType = 188; + public static readonly RULE_colTypeList = 189; + public static readonly RULE_type = 190; + public static readonly RULE_primitiveType = 191; + public static readonly RULE_listType = 192; + public static readonly RULE_structType = 193; + public static readonly RULE_mapType = 194; + public static readonly RULE_unionType = 195; + public static readonly RULE_setOperator = 196; + public static readonly RULE_queryStatementExpression = 197; + public static readonly RULE_queryStatementExpressionBody = 198; + public static readonly RULE_withClause = 199; + public static readonly RULE_cteStatement = 200; + public static readonly RULE_fromStatement = 201; + public static readonly RULE_singleFromStatement = 202; + public static readonly RULE_regularBody = 203; + public static readonly RULE_atomSelectStatement = 204; + public static readonly RULE_selectStatement = 205; + public static readonly RULE_setOpSelectStatement = 206; + public static readonly RULE_selectStatementWithCTE = 207; + public static readonly RULE_insertClause = 208; + public static readonly RULE_destination = 209; + public static readonly RULE_limitClause = 210; + public static readonly RULE_deleteStatement = 211; + public static readonly RULE_columnAssignmentClause = 212; + public static readonly RULE_precedencePlusExpressionOrDefault = 213; + public static readonly RULE_setColumnsClause = 214; + public static readonly RULE_updateStatement = 215; + public static readonly RULE_sqlTransactionStatement = 216; + public static readonly RULE_startTransactionStatement = 217; + public static readonly RULE_transactionMode = 218; + public static readonly RULE_transactionAccessMode = 219; + public static readonly RULE_isolationLevel = 220; + public static readonly RULE_levelOfIsolation = 221; + public static readonly RULE_commitStatement = 222; + public static readonly RULE_rollbackStatement = 223; + public static readonly RULE_setAutoCommitStatement = 224; + public static readonly RULE_abortTransactionStatement = 225; + public static readonly RULE_abortCompactionStatement = 226; + public static readonly RULE_mergeStatement = 227; + public static readonly RULE_whenClauses = 228; + public static readonly RULE_whenNotMatchedClause = 229; + public static readonly RULE_whenMatchedAndClause = 230; + public static readonly RULE_whenMatchedThenClause = 231; + public static readonly RULE_updateOrDelete = 232; + public static readonly RULE_killQueryStatement = 233; + public static readonly RULE_compactionId = 234; + public static readonly RULE_compactionPool = 235; + public static readonly RULE_compactionType = 236; + public static readonly RULE_compactionStatus = 237; + public static readonly RULE_alterStatement = 238; + public static readonly RULE_alterTableStatementSuffix = 239; + public static readonly RULE_alterTblPartitionStatementSuffix = 240; + public static readonly RULE_alterStatementPartitionKeyType = 241; + public static readonly RULE_alterViewStatementSuffix = 242; + public static readonly RULE_alterMaterializedViewStatementSuffix = 243; + public static readonly RULE_alterMaterializedViewSuffixRewrite = 244; + public static readonly RULE_alterMaterializedViewSuffixRebuild = 245; + public static readonly RULE_alterDatabaseStatementSuffix = 246; + public static readonly RULE_alterDatabaseSuffixProperties = 247; + public static readonly RULE_alterDatabaseSuffixSetOwner = 248; + public static readonly RULE_alterDatabaseSuffixSetLocation = 249; + public static readonly RULE_alterDatabaseSuffixSetManagedLocation = 250; + public static readonly RULE_alterStatementSuffixRename = 251; + public static readonly RULE_alterStatementSuffixAddCol = 252; + public static readonly RULE_alterStatementSuffixAddConstraint = 253; + public static readonly RULE_alterStatementSuffixUpdateColumns = 254; + public static readonly RULE_alterStatementSuffixProtections = 255; + public static readonly RULE_alterStatementSuffixDropConstraint = 256; + public static readonly RULE_alterStatementSuffixRenameCol = 257; + public static readonly RULE_alterStatementSuffixUpdateStatsCol = 258; + public static readonly RULE_alterStatementSuffixUpdateStats = 259; + public static readonly RULE_alterStatementChangeColPosition = 260; + public static readonly RULE_alterStatementSuffixAddPartitions = 261; + public static readonly RULE_alterStatementSuffixAddPartitionsElement = 262; + public static readonly RULE_alterStatementSuffixTouch = 263; + public static readonly RULE_alterStatementSuffixArchive = 264; + public static readonly RULE_alterStatementSuffixUnArchive = 265; + public static readonly RULE_partitionLocation = 266; + public static readonly RULE_alterStatementSuffixRecoverPartitions = 267; + public static readonly RULE_alterStatementSuffixDropPartitions = 268; + public static readonly RULE_alterStatementSuffixProperties = 269; + public static readonly RULE_alterViewSuffixProperties = 270; + public static readonly RULE_alterStatementSuffixSerdeProperties = 271; + public static readonly RULE_tablePartitionPrefix = 272; + public static readonly RULE_alterStatementSuffixFileFormat = 273; + public static readonly RULE_alterStatementSuffixClusterbySortby = 274; + public static readonly RULE_alterTblPartitionStatementSuffixSkewedLocation = 275; + public static readonly RULE_skewedLocations = 276; + public static readonly RULE_skewedLocationsList = 277; + public static readonly RULE_skewedLocationMap = 278; + public static readonly RULE_alterStatementSuffixLocation = 279; + public static readonly RULE_alterStatementSuffixSkewedby = 280; + public static readonly RULE_alterStatementSuffixExchangePartition = 281; + public static readonly RULE_alterStatementSuffixRenamePart = 282; + public static readonly RULE_alterStatementSuffixStatsPart = 283; + public static readonly RULE_alterStatementSuffixMergeFiles = 284; + public static readonly RULE_alterStatementSuffixBucketNum = 285; + public static readonly RULE_blocking = 286; + public static readonly RULE_compactPool = 287; + public static readonly RULE_alterStatementSuffixCompact = 288; + public static readonly RULE_alterStatementSuffixSetOwner = 289; + public static readonly RULE_alterStatementSuffixSetPartSpec = 290; + public static readonly RULE_alterStatementSuffixExecute = 291; + public static readonly RULE_alterIndexStatementSuffix = 292; + public static readonly RULE_fileFormat = 293; + public static readonly RULE_alterDataConnectorStatementSuffix = 294; + public static readonly RULE_alterDataConnectorSuffixProperties = 295; + public static readonly RULE_alterDataConnectorSuffixSetOwner = 296; + public static readonly RULE_alterDataConnectorSuffixSetUrl = 297; + public static readonly RULE_likeTableOrFile = 298; + public static readonly RULE_createTableStatement = 299; + public static readonly RULE_createDataConnectorStatement = 300; + public static readonly RULE_dataConnectorComment = 301; + public static readonly RULE_dataConnectorUrl = 302; + public static readonly RULE_dataConnectorType = 303; + public static readonly RULE_dcProperties = 304; + public static readonly RULE_dropDataConnectorStatement = 305; + public static readonly RULE_tableAllColumns = 306; + public static readonly RULE_defaultValue = 307; + public static readonly RULE_expressionList = 308; + public static readonly RULE_aliasList = 309; + public static readonly RULE_fromClause = 310; + public static readonly RULE_fromSource = 311; + public static readonly RULE_atomjoinSource = 312; + public static readonly RULE_joinSource = 313; + public static readonly RULE_joinSourcePart = 314; + public static readonly RULE_uniqueJoinSource = 315; + public static readonly RULE_uniqueJoinExpr = 316; + public static readonly RULE_uniqueJoinToken = 317; + public static readonly RULE_joinToken = 318; + public static readonly RULE_lateralView = 319; + public static readonly RULE_tableAlias = 320; + public static readonly RULE_tableBucketSample = 321; + public static readonly RULE_splitSample = 322; + public static readonly RULE_tableSample = 323; + public static readonly RULE_tableSource = 324; + public static readonly RULE_asOfClause = 325; + public static readonly RULE_uniqueJoinTableSource = 326; + public static readonly RULE_dbSchemaName = 327; + public static readonly RULE_dbSchemaNameCreate = 328; + public static readonly RULE_tableOrView = 329; + public static readonly RULE_tableName = 330; + public static readonly RULE_tableNameCreate = 331; + public static readonly RULE_viewName = 332; + public static readonly RULE_viewNameCreate = 333; + public static readonly RULE_subQuerySource = 334; + public static readonly RULE_partitioningSpec = 335; + public static readonly RULE_partitionTableFunctionSource = 336; + public static readonly RULE_partitionedTableFunction = 337; + public static readonly RULE_whereClause = 338; + public static readonly RULE_searchCondition = 339; + public static readonly RULE_valuesSource = 340; + public static readonly RULE_valuesClause = 341; + public static readonly RULE_valuesTableConstructor = 342; + public static readonly RULE_valueRowConstructor = 343; + public static readonly RULE_firstValueRowConstructor = 344; + public static readonly RULE_virtualTableSource = 345; + public static readonly RULE_selectClause = 346; + public static readonly RULE_all_distinct = 347; + public static readonly RULE_selectList = 348; + public static readonly RULE_selectTrfmClause = 349; + public static readonly RULE_selectItem = 350; + public static readonly RULE_trfmClause = 351; + public static readonly RULE_selectExpression = 352; + public static readonly RULE_selectExpressionList = 353; + public static readonly RULE_window_clause = 354; + public static readonly RULE_window_defn = 355; + public static readonly RULE_window_specification = 356; + public static readonly RULE_window_frame = 357; + public static readonly RULE_window_range_expression = 358; + public static readonly RULE_window_value_expression = 359; + public static readonly RULE_window_frame_start_boundary = 360; + public static readonly RULE_window_frame_boundary = 361; + public static readonly RULE_groupByClause = 362; + public static readonly RULE_groupby_expression = 363; + public static readonly RULE_groupByEmpty = 364; + public static readonly RULE_rollupStandard = 365; + public static readonly RULE_rollupOldSyntax = 366; + public static readonly RULE_groupingSetExpression = 367; + public static readonly RULE_groupingSetExpressionMultiple = 368; + public static readonly RULE_groupingExpressionSingle = 369; + public static readonly RULE_havingClause = 370; + public static readonly RULE_qualifyClause = 371; + public static readonly RULE_havingCondition = 372; + public static readonly RULE_expressionsInParenthesis = 373; + public static readonly RULE_expressionsNotInParenthesis = 374; + public static readonly RULE_expressionPart = 375; + public static readonly RULE_expressionOrDefault = 376; + public static readonly RULE_firstExpressionsWithAlias = 377; + public static readonly RULE_expressionWithAlias = 378; + public static readonly RULE_expressions = 379; + public static readonly RULE_columnRefOrderInParenthesis = 380; + public static readonly RULE_columnRefOrderNotInParenthesis = 381; + public static readonly RULE_orderByClause = 382; + public static readonly RULE_clusterByClause = 383; + public static readonly RULE_partitionByClause = 384; + public static readonly RULE_distributeByClause = 385; + public static readonly RULE_sortByClause = 386; + public static readonly RULE_trimFunction = 387; + public static readonly RULE_function_ = 388; + public static readonly RULE_null_treatment = 389; + public static readonly RULE_functionNameCreate = 390; + public static readonly RULE_functionNameForDDL = 391; + public static readonly RULE_functionNameForInvoke = 392; + public static readonly RULE_userDefinedFuncName = 393; + public static readonly RULE_internalFunctionName = 394; + public static readonly RULE_castExpression = 395; + public static readonly RULE_caseExpression = 396; + public static readonly RULE_whenExpression = 397; + public static readonly RULE_floorExpression = 398; + public static readonly RULE_floorDateQualifiers = 399; + public static readonly RULE_extractExpression = 400; + public static readonly RULE_timeQualifiers = 401; + public static readonly RULE_constant = 402; + public static readonly RULE_prepareStmtParam = 403; + public static readonly RULE_parameterIdx = 404; + public static readonly RULE_stringLiteralSequence = 405; + public static readonly RULE_charSetStringLiteral = 406; + public static readonly RULE_dateLiteral = 407; + public static readonly RULE_timestampLiteral = 408; + public static readonly RULE_timestampLocalTZLiteral = 409; + public static readonly RULE_intervalValue = 410; + public static readonly RULE_intervalLiteral = 411; + public static readonly RULE_intervalExpression = 412; + public static readonly RULE_intervalQualifiers = 413; + public static readonly RULE_expression = 414; + public static readonly RULE_atomExpression = 415; + public static readonly RULE_precedenceFieldExpression = 416; + public static readonly RULE_precedenceUnaryOperator = 417; + public static readonly RULE_precedenceUnaryPrefixExpression = 418; + public static readonly RULE_precedenceBitwiseXorOperator = 419; + public static readonly RULE_precedenceBitwiseXorExpression = 420; + public static readonly RULE_precedenceStarOperator = 421; + public static readonly RULE_precedenceStarExpression = 422; + public static readonly RULE_precedencePlusOperator = 423; + public static readonly RULE_precedencePlusExpression = 424; + public static readonly RULE_precedenceConcatenateOperator = 425; + public static readonly RULE_precedenceConcatenateExpression = 426; + public static readonly RULE_precedenceAmpersandOperator = 427; + public static readonly RULE_precedenceAmpersandExpression = 428; + public static readonly RULE_precedenceBitwiseOrOperator = 429; + public static readonly RULE_precedenceBitwiseOrExpression = 430; + public static readonly RULE_precedenceRegexpOperator = 431; + public static readonly RULE_precedenceSimilarOperator = 432; + public static readonly RULE_subQueryExpression = 433; + public static readonly RULE_precedenceSimilarExpression = 434; + public static readonly RULE_precedenceSimilarExpressionMain = 435; + public static readonly RULE_precedenceSimilarExpressionPart = 436; + public static readonly RULE_precedenceSimilarExpressionAtom = 437; + public static readonly RULE_precedenceSimilarExpressionQuantifierPredicate = 438; + public static readonly RULE_quantifierType = 439; + public static readonly RULE_precedenceSimilarExpressionIn = 440; + public static readonly RULE_precedenceSimilarExpressionPartNot = 441; + public static readonly RULE_precedenceDistinctOperator = 442; + public static readonly RULE_precedenceEqualOperator = 443; + public static readonly RULE_precedenceEqualExpression = 444; + public static readonly RULE_isCondition = 445; + public static readonly RULE_precedenceUnarySuffixExpression = 446; + public static readonly RULE_precedenceNotOperator = 447; + public static readonly RULE_precedenceNotExpression = 448; + public static readonly RULE_precedenceAndOperator = 449; + public static readonly RULE_precedenceAndExpression = 450; + public static readonly RULE_precedenceOrOperator = 451; + public static readonly RULE_precedenceOrExpression = 452; + public static readonly RULE_booleanValue = 453; + public static readonly RULE_booleanValueTok = 454; + public static readonly RULE_tableOrPartition = 455; + public static readonly RULE_partitionSpec = 456; + public static readonly RULE_partitionVal = 457; + public static readonly RULE_partitionSelectorSpec = 458; + public static readonly RULE_partitionSelectorVal = 459; + public static readonly RULE_partitionSelectorOperator = 460; + public static readonly RULE_subQuerySelectorOperator = 461; + public static readonly RULE_sysFuncNames = 462; + public static readonly RULE_id_ = 463; + public static readonly RULE_functionIdentifier = 464; + public static readonly RULE_principalIdentifier = 465; + public static readonly RULE_nonReserved = 466; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 467; + public static readonly RULE_hint = 468; + public static readonly RULE_hintList = 469; + public static readonly RULE_hintItem = 470; + public static readonly RULE_hintName = 471; + public static readonly RULE_hintArgs = 472; + public static readonly RULE_hintArgName = 473; + public static readonly RULE_prepareStatement = 474; + public static readonly RULE_executeStatement = 475; + public static readonly RULE_executeParamList = 476; + public static readonly RULE_resourcePlanDdlStatements = 477; + public static readonly RULE_rpAssign = 478; + public static readonly RULE_rpAssignList = 479; + public static readonly RULE_rpUnassign = 480; + public static readonly RULE_rpUnassignList = 481; + public static readonly RULE_createResourcePlanStatement = 482; + public static readonly RULE_withReplace = 483; + public static readonly RULE_activate = 484; + public static readonly RULE_enable = 485; + public static readonly RULE_disable = 486; + public static readonly RULE_unmanaged = 487; + public static readonly RULE_year = 488; + public static readonly RULE_month = 489; + public static readonly RULE_week = 490; + public static readonly RULE_day = 491; + public static readonly RULE_hour = 492; + public static readonly RULE_minute = 493; + public static readonly RULE_second = 494; + public static readonly RULE_decimal = 495; + public static readonly RULE_alterResourcePlanStatement = 496; + public static readonly RULE_globalWmStatement = 497; + public static readonly RULE_replaceResourcePlanStatement = 498; + public static readonly RULE_dropResourcePlanStatement = 499; + public static readonly RULE_poolPath = 500; + public static readonly RULE_triggerExpression = 501; + public static readonly RULE_triggerExpressionStandalone = 502; + public static readonly RULE_triggerOrExpression = 503; + public static readonly RULE_triggerAndExpression = 504; + public static readonly RULE_triggerAtomExpression = 505; + public static readonly RULE_triggerLiteral = 506; + public static readonly RULE_comparisionOperator = 507; + public static readonly RULE_triggerActionExpression = 508; + public static readonly RULE_triggerActionExpressionStandalone = 509; + public static readonly RULE_createTriggerStatement = 510; + public static readonly RULE_alterTriggerStatement = 511; + public static readonly RULE_dropTriggerStatement = 512; + public static readonly RULE_poolAssign = 513; + public static readonly RULE_poolAssignList = 514; + public static readonly RULE_createPoolStatement = 515; + public static readonly RULE_alterPoolStatement = 516; + public static readonly RULE_dropPoolStatement = 517; + public static readonly RULE_createMappingStatement = 518; + public static readonly RULE_alterMappingStatement = 519; + public static readonly RULE_dropMappingStatement = 520; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1008,48 +1010,49 @@ export class HiveSqlParser extends SQLParserBase { "'INT'", "'INTEGER'", "'INTERSECT'", "'INTERVAL'", "'INTO'", "'IS'", "'ISOLATION'", "'ITEMS'", "'JAR'", "'JOIN'", "'JOINCOST'", "'KEY'", "'KEYS'", "'$KEY$'", "'KILL'", "'LAST'", "'LATERAL'", "'LEADING'", - "'LEFT'", "'LESS'", "'LEVEL'", "'LIKE'", "'LIMIT'", "'LINES'", "'LOAD'", - "'LOCAL'", "'LOCATION'", "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", - "'MACRO'", "'MANAGED'", "'MANAGEDLOCATION'", "'MANAGEMENT'", "'MAP'", - "'MAPJOIN'", "'MAPPING'", "'MATCHED'", "'MATERIALIZED'", "'MERGE'", - "'METADATA'", "'MINUS'", "'MINUTE'", "'MINUTES'", "'MONTH'", "'MONTHS'", - "'MORE'", "'MOVE'", "'MSCK'", "'NONE'", "'NORELY'", "'NOSCAN'", - "'NOT'", "'NOVALIDATE'", "'NO_DROP'", "'NULL'", "'NULLS'", "'OF'", - "'OFFLINE'", "'OFFSET'", "'ON'", "'ONLY'", "'OPERATOR'", "'OPTION'", - "'OR'", "'ORDER'", "'OUT'", "'OUTER'", "'OUTPUTDRIVER'", "'OUTPUTFORMAT'", - "'OVER'", "'OVERWRITE'", "'OWNER'", "'PARTITION'", "'PARTITIONED'", - "'PARTITIONS'", "'PATH'", "'PERCENT'", "'PKFK_JOIN'", "'PLAN'", - "'PLANS'", "'PLUS'", "'POOL'", "'PRECEDING'", "'PRECISION'", "'PREPARE'", - "'PRESERVE'", "'PRIMARY'", "'PRINCIPALS'", "'PROCEDURE'", "'PROTECTION'", - "'PURGE'", "'QUALIFY'", "'QUARTER'", "'QUERY'", "'QUERY_PARALLELISM'", - "'RANGE'", "'READ'", "'READONLY'", "'READS'", "'REAL'", "'REBUILD'", - "'RECORDREADER'", "'RECORDWRITER'", "'REDUCE'", "'REFERENCES'", - "'REGEXP'", "'RELOAD'", "'RELY'", "'REMOTE'", "'RENAME'", "'REOPTIMIZATION'", - "'REPAIR'", "'REPL'", "'REPLACE'", "'REPLICATION'", "'RESOURCE'", - "'RESPECT'", "'RESTRICT'", "'REVOKE'", "'REWRITE'", "'RIGHT'", "'RLIKE'", - "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", "'ROW'", "'ROWS'", - "'SCHEDULED'", "'SCHEDULING_POLICY'", "'SCHEMA'", "'SCHEMAS'", "'SECOND'", - "'SECONDS'", "'SELECT'", "'SEMI'", "'SERDE'", "'SERDEPROPERTIES'", - "'SERVER'", "'SET'", "'SETS'", "'SET_CURRENT_SNAPSHOT'", "'SHARED'", - "'SHOW'", "'SHOW_DATABASE'", "'SKEWED'", "'SMALLINT'", "'SNAPSHOT'", - "'SOME'", "'SORT'", "'SORTED'", "'SPEC'", "'SSL'", "'START'", "'STATISTICS'", - "'STATUS'", "'STORED'", "'STREAMTABLE'", "'STRING'", "'STRUCT'", - "'SUMMARY'", "'SYNC'", "'SYSTEM_TIME'", "'SYSTEM_VERSION'", "'TABLE'", - "'TABLES'", "'TABLESAMPLE'", "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", - "'THEN'", "'TIME'", "'TIMESTAMP'", "'TIMESTAMPLOCALTZ'", "'TIMESTAMPTZ'", - "'TINYINT'", "'TO'", "'TOUCH'", "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONAL'", - "'TRANSACTIONS'", "'TRANSFORM'", "'TRIGGER'", "'TRIM'", "'TRUE'", - "'TRUNCATE'", "'TYPE'", "'UNARCHIVE'", "'UNBOUNDED'", "'UNDO'", - "'UNION'", "'UNIONTYPE'", "'UNIQUE'", "'UNIQUEJOIN'", "'UNKNOWN'", - "'UNLOCK'", "'UNMANAGED'", "'UNSET'", "'UNSIGNED'", "'UPDATE'", - "'URI'", "'URL'", "'USE'", "'USER'", "'USING'", "'UTC'", "'UTC_TMESTAMP'", - "'VALIDATE'", "'VALUES'", "'$VALUE$'", "'VARCHAR'", "'VECTORIZATION'", - "'VIEW'", "'VIEWS'", "'WAIT'", "'WEEK'", "'WEEKS'", "'WHEN'", "'WHERE'", - "'WHILE'", "'WINDOW'", "'WITH'", "'WITHIN'", "'WORK'", "'WORKLOAD'", - "'WRITE'", "'YEAR'", "'YEARS'", "'ZONE'", "'.'", "':'", "','", "';'", - "'('", "')'", "'['", "']'", "'{'", "'}'", null, "'<=>'", null, "'<='", - "'<'", "'>='", "'>'", "'/'", "'+'", "'-'", "'*'", "'%'", "'DIV'", - "'!'", "'&'", "'~'", "'|'", "'||'", "'^'", "'?'", "'$'" + "'LEFT'", "'LESS'", "'LEVEL'", "'LIFECYCLE'", "'LIKE'", "'LIMIT'", + "'LINES'", "'LOAD'", "'LOCAL'", "'LOCATION'", "'LOCK'", "'LOCKS'", + "'LOGICAL'", "'LONG'", "'MACRO'", "'MANAGED'", "'MANAGEDLOCATION'", + "'MANAGEMENT'", "'MAP'", "'MAPJOIN'", "'MAPPING'", "'MATCHED'", + "'MATERIALIZED'", "'MERGE'", "'METADATA'", "'MINUS'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MORE'", "'MOVE'", "'MSCK'", + "'NONE'", "'NORELY'", "'NOSCAN'", "'NOT'", "'NOVALIDATE'", "'NO_DROP'", + "'NULL'", "'NULLS'", "'OF'", "'OFFLINE'", "'OFFSET'", "'ON'", "'ONLY'", + "'OPERATOR'", "'OPTION'", "'OR'", "'ORDER'", "'OUT'", "'OUTER'", + "'OUTPUTDRIVER'", "'OUTPUTFORMAT'", "'OVER'", "'OVERWRITE'", "'OWNER'", + "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PATH'", "'PERCENT'", + "'PKFK_JOIN'", "'PLAN'", "'PLANS'", "'PLUS'", "'POOL'", "'PRECEDING'", + "'PRECISION'", "'PREPARE'", "'PRESERVE'", "'PRIMARY'", "'PRINCIPALS'", + "'PROCEDURE'", "'PROTECTION'", "'PURGE'", "'QUALIFY'", "'QUARTER'", + "'QUERY'", "'QUERY_PARALLELISM'", "'RANGE'", "'READ'", "'READONLY'", + "'READS'", "'REAL'", "'REBUILD'", "'RECORDREADER'", "'RECORDWRITER'", + "'REDUCE'", "'REFERENCES'", "'REGEXP'", "'RELOAD'", "'RELY'", "'REMOTE'", + "'RENAME'", "'REOPTIMIZATION'", "'REPAIR'", "'REPL'", "'REPLACE'", + "'REPLICATION'", "'RESOURCE'", "'RESPECT'", "'RESTRICT'", "'REVOKE'", + "'REWRITE'", "'RIGHT'", "'RLIKE'", "'ROLE'", "'ROLES'", "'ROLLBACK'", + "'ROLLUP'", "'ROW'", "'ROWS'", "'SCHEDULED'", "'SCHEDULING_POLICY'", + "'SCHEMA'", "'SCHEMAS'", "'SECOND'", "'SECONDS'", "'SELECT'", "'SEMI'", + "'SERDE'", "'SERDEPROPERTIES'", "'SERVER'", "'SET'", "'SETS'", "'SET_CURRENT_SNAPSHOT'", + "'SHARED'", "'SHOW'", "'SHOW_DATABASE'", "'SKEWED'", "'SMALLINT'", + "'SNAPSHOT'", "'SOME'", "'SORT'", "'SORTED'", "'SPEC'", "'SSL'", + "'START'", "'STATISTICS'", "'STATUS'", "'STORED'", "'STREAMTABLE'", + "'STRING'", "'STRUCT'", "'SUMMARY'", "'SYNC'", "'SYSTEM_TIME'", + "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TBLPROPERTIES'", + "'TEMPORARY'", "'TERMINATED'", "'THEN'", "'TIME'", "'TIMESTAMP'", + "'TIMESTAMPLOCALTZ'", "'TIMESTAMPTZ'", "'TINYINT'", "'TO'", "'TOUCH'", + "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONAL'", "'TRANSACTIONS'", + "'TRANSFORM'", "'TRIGGER'", "'TRIM'", "'TRUE'", "'TRUNCATE'", "'TYPE'", + "'UNARCHIVE'", "'UNBOUNDED'", "'UNDO'", "'UNION'", "'UNIONTYPE'", + "'UNIQUE'", "'UNIQUEJOIN'", "'UNKNOWN'", "'UNLOCK'", "'UNMANAGED'", + "'UNSET'", "'UNSIGNED'", "'UPDATE'", "'URI'", "'URL'", "'USE'", + "'USER'", "'USING'", "'UTC'", "'UTC_TMESTAMP'", "'VALIDATE'", "'VALUES'", + "'$VALUE$'", "'VARCHAR'", "'VECTORIZATION'", "'VIEW'", "'VIEWS'", + "'WAIT'", "'WEEK'", "'WEEKS'", "'WHEN'", "'WHERE'", "'WHILE'", "'WINDOW'", + "'WITH'", "'WITHIN'", "'WORK'", "'WORKLOAD'", "'WRITE'", "'YEAR'", + "'YEARS'", "'ZONE'", "'.'", "':'", "','", "';'", "'('", "')'", "'['", + "']'", "'{'", "'}'", null, "'<=>'", null, "'<='", "'<'", "'>='", + "'>'", "'/'", "'+'", "'-'", "'*'", "'%'", "'DIV'", "'!'", "'&'", + "'~'", "'|'", "'||'", "'^'", "'?'", "'$'" ]; public static readonly symbolicNames = [ @@ -1087,13 +1090,13 @@ export class HiveSqlParser extends SQLParserBase { "KW_INT", "KW_INTEGER", "KW_INTERSECT", "KW_INTERVAL", "KW_INTO", "KW_IS", "KW_ISOLATION", "KW_ITEMS", "KW_JAR", "KW_JOIN", "KW_JOINCOST", "KW_KEY", "KW_KEYS", "KW_KEY_TYPE", "KW_KILL", "KW_LAST", "KW_LATERAL", - "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIKE", "KW_LIMIT", - "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", "KW_LOCK", "KW_LOCKS", - "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", "KW_MANAGEDLOCATION", - "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", "KW_MATCHED", - "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", "KW_MINUTE", - "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", "KW_MSCK", - "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", + "KW_LEADING", "KW_LEFT", "KW_LESS", "KW_LEVEL", "KW_LIFECYCLE", + "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", + "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MANAGED", + "KW_MANAGEDLOCATION", "KW_MANAGEMENT", "KW_MAP", "KW_MAPJOIN", "KW_MAPPING", + "KW_MATCHED", "KW_MATERIALIZED", "KW_MERGE", "KW_METADATA", "KW_MINUS", + "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MORE", "KW_MOVE", + "KW_MSCK", "KW_NONE", "KW_NORELY", "KW_NOSCAN", "KW_NOT", "KW_NOVALIDATE", "KW_NO_DROP", "KW_NULL", "KW_NULLS", "KW_OF", "KW_OFFLINE", "KW_OFFSET", "KW_ON", "KW_ONLY", "KW_OPERATOR", "KW_OPTION", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTPUTDRIVER", "KW_OUTPUTFORMAT", "KW_OVER", @@ -1167,7 +1170,7 @@ export class HiveSqlParser extends SQLParserBase { "dropMaterializedViewStatement", "createScheduledQueryStatement", "dropScheduledQueryStatement", "alterScheduledQueryStatement", "alterScheduledQueryChange", "scheduleSpec", "executedAsSpec", "definedAsSpec", "showStmtIdentifier", - "tableComment", "createTablePartitionSpec", "createTablePartitionColumnTypeSpec", + "tableComment", "tableLifecycle", "createTablePartitionSpec", "createTablePartitionColumnTypeSpec", "createTablePartitionColumnSpec", "partitionTransformSpec", "columnNameTransformConstraint", "partitionTransformType", "tableBuckets", "tableImplBuckets", "tableSkewed", "rowFormat", "recordReader", "recordWriter", "rowFormatSerde", "rowFormatDelimited", @@ -1317,21 +1320,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1043; + this.state = 1045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 33622025) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 810024961) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 35717185) !== 0) || _la === 317 || ((((_la - 350)) & ~0x1F) === 0 && ((1 << (_la - 350)) & 8537089) !== 0) || _la === 386 || _la === 398) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 1040; + this.state = 1042; this.statement(); } } - this.state = 1045; + this.state = 1047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1046; + this.state = 1048; this.match(HiveSqlParser.EOF); } } @@ -1355,12 +1358,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 1048; + this.state = 1050; this.explainStatement(); } break; @@ -1408,19 +1411,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 1049; + this.state = 1051; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1053; + this.state = 1055; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 1052; + this.state = 1054; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1448,9 +1451,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 1057; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 1065; + this.state = 1067; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1509,31 +1512,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 1059; + this.state = 1061; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1056; + this.state = 1058; this.explainOption(); } } } - this.state = 1061; + this.state = 1063; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 1062; + this.state = 1064; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 1063; + this.state = 1065; this.match(HiveSqlParser.KW_REWRITE); - this.state = 1064; + this.state = 1066; this.queryStatementExpression(); } break; @@ -1561,41 +1564,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 1089; + this.state = 1091; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1069; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 1068; + this.state = 1070; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 1069; + this.state = 1071; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 1070; - this.match(HiveSqlParser.KW_CBO); this.state = 1072; + this.match(HiveSqlParser.KW_CBO); + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 1071; + this.state = 1073; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1612,66 +1615,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 1074; + this.state = 1076; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 1075; + this.state = 1077; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 1076; + this.state = 1078; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 1077; + this.state = 1079; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 1078; + this.state = 1080; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 1079; + this.state = 1081; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 1080; - this.match(HiveSqlParser.KW_VECTORIZATION); this.state = 1082; + this.match(HiveSqlParser.KW_VECTORIZATION); + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 224) { + if (_la === 225) { { - this.state = 1081; + this.state = 1083; this.vectorizationOnly(); } } - this.state = 1085; + this.state = 1087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 91 || _la === 121 || _la === 225 || _la === 324) { + if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 1084; + this.state = 1086; this.vectorizatonDetail(); } } @@ -1681,14 +1684,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 1087; + this.state = 1089; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 1088; + this.state = 1090; this.match(HiveSqlParser.KW_DDL); } break; @@ -1716,7 +1719,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1093; this.match(HiveSqlParser.KW_ONLY); } } @@ -1741,9 +1744,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1093; + this.state = 1095; _la = this.tokenStream.LA(1); - if(!(_la === 91 || _la === 121 || _la === 225 || _la === 324)) { + if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); } else { @@ -1770,104 +1773,104 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ExecStatementContext(this.context, this.state); this.enterRule(localContext, 12, HiveSqlParser.RULE_execStatement); try { - this.state = 1109; + this.state = 1111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1095; + this.state = 1097; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1096; + this.state = 1098; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1097; + this.state = 1099; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1098; + this.state = 1100; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1099; + this.state = 1101; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1100; + this.state = 1102; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1101; + this.state = 1103; this.replStatusStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1102; + this.state = 1104; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1103; + this.state = 1105; this.deleteStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1104; + this.state = 1106; this.updateStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1105; + this.state = 1107; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1106; + this.state = 1108; this.mergeStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1107; + this.state = 1109; this.prepareStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1108; + this.state = 1110; this.executeStatement(); } break; @@ -1894,46 +1897,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1111; + this.state = 1113; this.match(HiveSqlParser.KW_LOAD); - this.state = 1112; - this.match(HiveSqlParser.KW_DATA); this.state = 1114; + this.match(HiveSqlParser.KW_DATA); + this.state = 1116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 187) { + if (_la === 188) { { - this.state = 1113; + this.state = 1115; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 1116; + this.state = 1118; this.match(HiveSqlParser.KW_INPATH); - this.state = 1117; - this.match(HiveSqlParser.StringLiteral); this.state = 1119; + this.match(HiveSqlParser.StringLiteral); + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 234) { + if (_la === 235) { { - this.state = 1118; + this.state = 1120; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 1121; - this.match(HiveSqlParser.KW_INTO); - this.state = 1122; - this.match(HiveSqlParser.KW_TABLE); this.state = 1123; - this.tableOrPartition(); + this.match(HiveSqlParser.KW_INTO); + this.state = 1124; + this.match(HiveSqlParser.KW_TABLE); this.state = 1125; + this.tableOrPartition(); + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 1124; + this.state = 1126; this.inputFileFormat(); } } @@ -1960,9 +1963,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1127; + this.state = 1129; this.match(HiveSqlParser.KW_IGNORE); - this.state = 1128; + this.state = 1130; this.match(HiveSqlParser.KW_PROTECTION); } } @@ -1987,25 +1990,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1130; - this.match(HiveSqlParser.KW_FOR); this.state = 1132; + this.match(HiveSqlParser.KW_FOR); + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 203) { + if (_la === 204) { { - this.state = 1131; + this.state = 1133; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 1134; - this.match(HiveSqlParser.KW_REPLICATION); - this.state = 1135; - this.match(HiveSqlParser.LPAREN); this.state = 1136; - this.match(HiveSqlParser.StringLiteral); + this.match(HiveSqlParser.KW_REPLICATION); this.state = 1137; + this.match(HiveSqlParser.LPAREN); + this.state = 1138; + this.match(HiveSqlParser.StringLiteral); + this.state = 1139; this.match(HiveSqlParser.RPAREN); } } @@ -2030,22 +2033,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1139; - this.match(HiveSqlParser.KW_EXPORT); - this.state = 1140; - this.match(HiveSqlParser.KW_TABLE); this.state = 1141; - this.tableOrPartition(); + this.match(HiveSqlParser.KW_EXPORT); this.state = 1142; - this.match(HiveSqlParser.KW_TO); + this.match(HiveSqlParser.KW_TABLE); this.state = 1143; - this.match(HiveSqlParser.StringLiteral); + this.tableOrPartition(); + this.state = 1144; + this.match(HiveSqlParser.KW_TO); this.state = 1145; + this.match(HiveSqlParser.StringLiteral); + this.state = 1147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1144; + this.state = 1146; this.replicationClause(); } } @@ -2073,40 +2076,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1147; + this.state = 1149; this.match(HiveSqlParser.KW_IMPORT); - this.state = 1153; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 123 || _la === 328) { + if (_la === 123 || _la === 329) { { - this.state = 1149; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 1148; + this.state = 1150; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 1151; + this.state = 1153; this.match(HiveSqlParser.KW_TABLE); - this.state = 1152; + this.state = 1154; this.tableOrPartition(); } } - this.state = 1155; + this.state = 1157; this.match(HiveSqlParser.KW_FROM); - this.state = 1156; - localContext._path = this.match(HiveSqlParser.StringLiteral); this.state = 1158; + localContext._path = this.match(HiveSqlParser.StringLiteral); + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 1157; + this.state = 1159; this.tableLocation(); } } @@ -2133,32 +2136,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1160; - this.match(HiveSqlParser.KW_REPL); - this.state = 1161; - this.match(HiveSqlParser.KW_DUMP); this.state = 1162; + this.match(HiveSqlParser.KW_REPL); + this.state = 1163; + this.match(HiveSqlParser.KW_DUMP); + this.state = 1164; localContext._dbPolicy = this.replDbPolicy(); - this.state = 1165; + this.state = 1167; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 1163; + this.state = 1165; this.match(HiveSqlParser.KW_REPLACE); - this.state = 1164; + this.state = 1166; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 1169; + this.state = 1171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 1167; + this.state = 1169; this.match(HiveSqlParser.KW_WITH); - this.state = 1168; + this.state = 1170; localContext._replConf = this.replConfigs(); } break; @@ -2186,16 +2189,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1171; + this.state = 1173; localContext._dbName = this.dbSchemaName(); - this.state = 1174; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 394) { + if (_la === 395) { { - this.state = 1172; + this.state = 1174; this.match(HiveSqlParser.DOT); - this.state = 1173; + this.state = 1175; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2223,32 +2226,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1176; - this.match(HiveSqlParser.KW_REPL); - this.state = 1177; - this.match(HiveSqlParser.KW_LOAD); this.state = 1178; + this.match(HiveSqlParser.KW_REPL); + this.state = 1179; + this.match(HiveSqlParser.KW_LOAD); + this.state = 1180; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 1181; + this.state = 1183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1179; + this.state = 1181; this.match(HiveSqlParser.KW_INTO); - this.state = 1180; + this.state = 1182; localContext._dbName = this.dbSchemaName(); } } - this.state = 1185; + this.state = 1187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1183; + this.state = 1185; this.match(HiveSqlParser.KW_WITH); - this.state = 1184; + this.state = 1186; localContext._replConf = this.replConfigs(); } break; @@ -2275,11 +2278,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1187; - this.match(HiveSqlParser.LPAREN); - this.state = 1188; - this.replConfigsList(); this.state = 1189; + this.match(HiveSqlParser.LPAREN); + this.state = 1190; + this.replConfigsList(); + this.state = 1191; this.match(HiveSqlParser.RPAREN); } } @@ -2304,21 +2307,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1191; + this.state = 1193; this.keyValueProperty(); - this.state = 1196; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1192; + this.state = 1194; this.match(HiveSqlParser.COMMA); - this.state = 1193; + this.state = 1195; this.keyValueProperty(); } } - this.state = 1198; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2345,16 +2348,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1199; + this.state = 1201; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 1202; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 394) { + if (_la === 395) { { - this.state = 1200; + this.state = 1202; this.match(HiveSqlParser.DOT); - this.state = 1201; + this.state = 1203; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2381,20 +2384,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1204; - this.match(HiveSqlParser.KW_REPL); - this.state = 1205; - this.match(HiveSqlParser.KW_STATUS); this.state = 1206; + this.match(HiveSqlParser.KW_REPL); + this.state = 1207; + this.match(HiveSqlParser.KW_STATUS); + this.state = 1208; localContext._dbName = this.dbSchemaName(); - this.state = 1209; + this.state = 1211; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 1207; + this.state = 1209; this.match(HiveSqlParser.KW_WITH); - this.state = 1208; + this.state = 1210; localContext._replConf = this.replConfigs(); } break; @@ -2419,335 +2422,335 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 38, HiveSqlParser.RULE_ddlStatement); try { - this.state = 1258; + this.state = 1260; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1211; + this.state = 1213; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1212; + this.state = 1214; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1213; + this.state = 1215; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1214; + this.state = 1216; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1215; + this.state = 1217; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1216; + this.state = 1218; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1217; + this.state = 1219; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1218; + this.state = 1220; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1219; + this.state = 1221; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1220; + this.state = 1222; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1221; + this.state = 1223; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1222; + this.state = 1224; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1223; + this.state = 1225; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1224; + this.state = 1226; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1225; + this.state = 1227; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1226; + this.state = 1228; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1227; + this.state = 1229; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1228; + this.state = 1230; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1229; + this.state = 1231; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1230; + this.state = 1232; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1231; + this.state = 1233; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1232; + this.state = 1234; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1233; + this.state = 1235; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1234; + this.state = 1236; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1235; + this.state = 1237; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1236; + this.state = 1238; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1237; + this.state = 1239; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1238; + this.state = 1240; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1239; + this.state = 1241; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1240; + this.state = 1242; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1241; + this.state = 1243; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1242; + this.state = 1244; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1243; + this.state = 1245; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1244; + this.state = 1246; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1245; + this.state = 1247; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1246; + this.state = 1248; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1247; + this.state = 1249; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1248; + this.state = 1250; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1249; + this.state = 1251; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1250; + this.state = 1252; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1251; + this.state = 1253; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1252; + this.state = 1254; this.abortTransactionStatement(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1253; + this.state = 1255; this.abortCompactionStatement(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1254; + this.state = 1256; this.killQueryStatement(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1255; + this.state = 1257; this.resourcePlanDdlStatements(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1256; + this.state = 1258; this.createDataConnectorStatement(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1257; + this.state = 1259; this.dropDataConnectorStatement(); } break; @@ -2773,9 +2776,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1260; + this.state = 1262; this.match(HiveSqlParser.KW_IF); - this.state = 1261; + this.state = 1263; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2800,9 +2803,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1263; + this.state = 1265; _la = this.tokenStream.LA(1); - if(!(_la === 34 || _la === 281)) { + if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); } else { @@ -2831,11 +2834,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1265; - this.match(HiveSqlParser.KW_IF); - this.state = 1266; - this.match(HiveSqlParser.KW_NOT); this.state = 1267; + this.match(HiveSqlParser.KW_IF); + this.state = 1268; + this.match(HiveSqlParser.KW_NOT); + this.state = 1269; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2859,7 +2862,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1269; + this.state = 1271; this.match(HiveSqlParser.KW_FORCE); } } @@ -2883,9 +2886,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1273; this.enable(); - this.state = 1272; + this.state = 1274; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2909,9 +2912,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1274; + this.state = 1276; this.disable(); - this.state = 1275; + this.state = 1277; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2935,11 +2938,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1277; - this.match(HiveSqlParser.KW_STORED); - this.state = 1278; - this.match(HiveSqlParser.KW_AS); this.state = 1279; + this.match(HiveSqlParser.KW_STORED); + this.state = 1280; + this.match(HiveSqlParser.KW_AS); + this.state = 1281; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2963,9 +2966,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1281; + this.state = 1283; this.match(HiveSqlParser.KW_OR); - this.state = 1282; + this.state = 1284; this.match(HiveSqlParser.KW_REPLACE); } } @@ -2988,78 +2991,78 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 56, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1323; + this.state = 1325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1284; - this.match(HiveSqlParser.KW_CREATE); this.state = 1286; + this.match(HiveSqlParser.KW_CREATE); + this.state = 1288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 272) { + if (_la === 273) { { - this.state = 1285; + this.state = 1287; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 1288; - this.db_schema(); this.state = 1290; + this.db_schema(); + this.state = 1292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1289; + this.state = 1291; this.ifNotExists(); } } - this.state = 1292; - localContext._name = this.dbSchemaNameCreate(); this.state = 1294; + localContext._name = this.dbSchemaNameCreate(); + this.state = 1296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1293; + this.state = 1295; this.databaseComment(); } } - this.state = 1297; + this.state = 1299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 1296; + this.state = 1298; this.dbLocation(); } } - this.state = 1300; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 195) { + if (_la === 196) { { - this.state = 1299; + this.state = 1301; this.dbManagedLocation(); } } - this.state = 1305; + this.state = 1307; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 1302; - this.match(HiveSqlParser.KW_WITH); - this.state = 1303; - this.match(HiveSqlParser.KW_DBPROPERTIES); this.state = 1304; + this.match(HiveSqlParser.KW_WITH); + this.state = 1305; + this.match(HiveSqlParser.KW_DBPROPERTIES); + this.state = 1306; localContext._dbprops = this.dbProperties(); } break; @@ -3069,46 +3072,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1307; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1308; - this.match(HiveSqlParser.KW_REMOTE); this.state = 1309; - this.db_schema(); + this.match(HiveSqlParser.KW_CREATE); + this.state = 1310; + this.match(HiveSqlParser.KW_REMOTE); this.state = 1311; + this.db_schema(); + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1310; + this.state = 1312; this.ifNotExists(); } } - this.state = 1313; - localContext._name = this.dbSchemaNameCreate(); this.state = 1315; + localContext._name = this.dbSchemaNameCreate(); + this.state = 1317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1314; + this.state = 1316; this.databaseComment(); } } - this.state = 1317; + this.state = 1319; this.dbConnectorName(); - this.state = 1321; + this.state = 1323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: { - this.state = 1318; - this.match(HiveSqlParser.KW_WITH); - this.state = 1319; - this.match(HiveSqlParser.KW_DBPROPERTIES); this.state = 1320; + this.match(HiveSqlParser.KW_WITH); + this.state = 1321; + this.match(HiveSqlParser.KW_DBPROPERTIES); + this.state = 1322; localContext._dbprops = this.dbProperties(); } break; @@ -3137,9 +3140,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1325; + this.state = 1327; this.match(HiveSqlParser.KW_LOCATION); - this.state = 1326; + this.state = 1328; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -3163,9 +3166,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1328; + this.state = 1330; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1329; + this.state = 1331; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -3189,11 +3192,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1331; - this.match(HiveSqlParser.LPAREN); - this.state = 1332; - this.dbPropertiesList(); this.state = 1333; + this.match(HiveSqlParser.LPAREN); + this.state = 1334; + this.dbPropertiesList(); + this.state = 1335; this.match(HiveSqlParser.RPAREN); } } @@ -3218,21 +3221,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1335; + this.state = 1337; this.keyValueProperty(); - this.state = 1340; + this.state = 1342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1336; + this.state = 1338; this.match(HiveSqlParser.COMMA); - this.state = 1337; + this.state = 1339; this.keyValueProperty(); } } - this.state = 1342; + this.state = 1344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3258,9 +3261,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1345; this.match(HiveSqlParser.KW_USING); - this.state = 1344; + this.state = 1346; localContext._dcName = this.dbSchemaName(); } } @@ -3284,9 +3287,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1348; this.match(HiveSqlParser.KW_USE); - this.state = 1347; + this.state = 1349; this.dbSchemaName(); } } @@ -3311,28 +3314,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1351; this.match(HiveSqlParser.KW_DROP); - this.state = 1350; - this.db_schema(); this.state = 1352; + this.db_schema(); + this.state = 1354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1351; + this.state = 1353; this.ifExists(); } } - this.state = 1354; - this.dbSchemaName(); this.state = 1356; + this.dbSchemaName(); + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34 || _la === 281) { + if (_la === 34 || _la === 282) { { - this.state = 1355; + this.state = 1357; this.restrictOrCascade(); } } @@ -3359,9 +3362,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1358; + this.state = 1360; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1359; + this.state = 1361; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3386,42 +3389,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1361; - this.match(HiveSqlParser.KW_TRUNCATE); this.state = 1363; + this.match(HiveSqlParser.KW_TRUNCATE); + this.state = 1365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 328) { + if (_la === 329) { { - this.state = 1362; + this.state = 1364; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1365; + this.state = 1367; this.tablePartitionPrefix(); - this.state = 1371; + this.state = 1373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1366; - this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1367; - this.match(HiveSqlParser.LPAREN); this.state = 1368; - this.columnNameList(); + this.match(HiveSqlParser.KW_COLUMNS); this.state = 1369; + this.match(HiveSqlParser.LPAREN); + this.state = 1370; + this.columnNameList(); + this.state = 1371; this.match(HiveSqlParser.RPAREN); } } - this.state = 1374; + this.state = 1376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1373; + this.state = 1375; this.force(); } } @@ -3449,38 +3452,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1376; + this.state = 1378; this.match(HiveSqlParser.KW_DROP); - this.state = 1377; - this.match(HiveSqlParser.KW_TABLE); this.state = 1379; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1378; + this.state = 1380; this.ifExists(); } } - this.state = 1381; - this.tableName(); this.state = 1383; + this.tableName(); + this.state = 1385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 254) { + if (_la === 255) { { - this.state = 1382; + this.state = 1384; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1386; + this.state = 1388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1385; + this.state = 1387; this.replicationClause(); } } @@ -3507,13 +3510,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; - this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1389; - localContext._inFmt = this.match(HiveSqlParser.StringLiteral); this.state = 1390; - this.match(HiveSqlParser.KW_SERDE); + this.match(HiveSqlParser.KW_INPUTFORMAT); this.state = 1391; + localContext._inFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 1392; + this.match(HiveSqlParser.KW_SERDE); + this.state = 1393; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3538,66 +3541,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1393; + this.state = 1395; this.id_(); - this.state = 1396; + this.state = 1398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 394) { + if (_la === 395) { { - this.state = 1394; + this.state = 1396; this.match(HiveSqlParser.DOT); - this.state = 1395; + this.state = 1397; this.id_(); } } - this.state = 1411; + this.state = 1413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 1398; + this.state = 1400; this.id_(); - this.state = 1408; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 394) { + while (_la === 395) { { { - this.state = 1399; + this.state = 1401; this.match(HiveSqlParser.DOT); - this.state = 1404; + this.state = 1406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1400; + this.state = 1402; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1401; + this.state = 1403; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1402; + this.state = 1404; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1403; + this.state = 1405; this.id_(); } break; } } } - this.state = 1410; + this.state = 1412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3627,14 +3630,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1413; - this.tabTypeExpr(); this.state = 1415; + this.tabTypeExpr(); + this.state = 1417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1414; + this.state = 1416; this.partitionSpec(); } } @@ -3661,24 +3664,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1417; - this.tableOrView(); this.state = 1419; + this.tableOrView(); + this.state = 1421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 1418; + this.state = 1420; this.partitionSpec(); } break; } - this.state = 1422; + this.state = 1424; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1421; + this.state = 1423; this.extColumnName(); } break; @@ -3706,7 +3709,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1424; + this.state = 1426; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3715,90 +3718,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1447; + this.state = 1449; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1425; - this.db_schema(); this.state = 1427; + this.db_schema(); + this.state = 1429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1426; + this.state = 1428; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1429; + this.state = 1431; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1431; - this.match(HiveSqlParser.KW_DATACONNECTOR); this.state = 1433; + this.match(HiveSqlParser.KW_DATACONNECTOR); + this.state = 1435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1432; + this.state = 1434; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1435; + this.state = 1437; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1436; - this.match(HiveSqlParser.KW_FUNCTION); this.state = 1438; + this.match(HiveSqlParser.KW_FUNCTION); + this.state = 1440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1437; + this.state = 1439; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1440; + this.state = 1442; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1443; + this.state = 1445; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1441; + this.state = 1443; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1442; + this.state = 1444; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1445; + this.state = 1447; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1446; + this.state = 1448; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3825,42 +3828,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1449; - this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1450; - this.match(HiveSqlParser.KW_TABLE); this.state = 1451; + this.match(HiveSqlParser.KW_ANALYZE); + this.state = 1452; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1453; localContext._parttype = this.tableOrPartition(); - this.state = 1464; + this.state = 1466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1452; + this.state = 1454; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1453; + this.state = 1455; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1460; + this.state = 1462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1454; + this.state = 1456; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1455; + this.state = 1457; this.match(HiveSqlParser.KW_FOR); - this.state = 1456; - this.match(HiveSqlParser.KW_COLUMNS); this.state = 1458; + this.match(HiveSqlParser.KW_COLUMNS); + this.state = 1460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1457; + this.state = 1459; localContext._statsColumnName = this.columnNameList(); } break; @@ -3921,9 +3924,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1462; + this.state = 1464; this.match(HiveSqlParser.KW_CACHE); - this.state = 1463; + this.state = 1465; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3953,7 +3956,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1466; + this.state = 1468; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3985,9 +3988,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1470; _la = this.tokenStream.LA(1); - if(!(_la === 67 || _la === 294)) { + if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); } else { @@ -4015,31 +4018,31 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 94, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1663; + this.state = 1665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1472; this.match(HiveSqlParser.KW_SHOW); - this.state = 1471; + this.state = 1473; _la = this.tokenStream.LA(1); - if(!(_la === 68 || _la === 295)) { + if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1474; + this.state = 1476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 183) { + if (_la === 184) { { - this.state = 1472; + this.state = 1474; this.match(HiveSqlParser.KW_LIKE); - this.state = 1473; + this.state = 1475; this.showStmtIdentifier(); } } @@ -4049,38 +4052,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1476; - this.match(HiveSqlParser.KW_SHOW); this.state = 1478; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1477; + this.state = 1479; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1480; + this.state = 1482; this.match(HiveSqlParser.KW_TABLES); - this.state = 1484; + this.state = 1486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 1481; + this.state = 1483; this.from_in(); - this.state = 1482; + this.state = 1484; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1487; + this.state = 1489; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1486; + this.state = 1488; localContext._filter = this.showTablesFilterExpr(); } break; @@ -4090,36 +4093,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1489; + this.state = 1491; this.match(HiveSqlParser.KW_SHOW); - this.state = 1490; + this.state = 1492; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1494; + this.state = 1496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1491; + this.state = 1493; this.from_in(); - this.state = 1492; + this.state = 1494; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1499; + this.state = 1501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1496; + this.state = 1498; this.match(HiveSqlParser.KW_LIKE); - this.state = 1497; + this.state = 1499; this.showStmtIdentifier(); } break; case 2: { - this.state = 1498; + this.state = 1500; this.showStmtIdentifier(); } break; @@ -4129,38 +4132,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1501; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1502; - this.match(HiveSqlParser.KW_MATERIALIZED); this.state = 1503; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1504; + this.match(HiveSqlParser.KW_MATERIALIZED); + this.state = 1505; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1507; + this.state = 1509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1504; + this.state = 1506; this.from_in(); - this.state = 1505; + this.state = 1507; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1512; + this.state = 1514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: { - this.state = 1509; + this.state = 1511; this.match(HiveSqlParser.KW_LIKE); - this.state = 1510; + this.state = 1512; this.showStmtIdentifier(); } break; case 2: { - this.state = 1511; + this.state = 1513; this.showStmtIdentifier(); } break; @@ -4170,50 +4173,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1514; - this.match(HiveSqlParser.KW_SHOW); this.state = 1516; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 314) { + if (_la === 315) { { - this.state = 1515; + this.state = 1517; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1518; - this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1519; - this.from_in(); this.state = 1520; + this.match(HiveSqlParser.KW_COLUMNS); + this.state = 1521; + this.from_in(); + this.state = 1522; this.tableOrView(); - this.state = 1524; + this.state = 1526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1521; + this.state = 1523; this.from_in(); - this.state = 1522; + this.state = 1524; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1529; + this.state = 1531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1526; + this.state = 1528; this.match(HiveSqlParser.KW_LIKE); - this.state = 1527; + this.state = 1529; this.showStmtIdentifier(); } break; case 2: { - this.state = 1528; + this.state = 1530; this.showStmtIdentifier(); } break; @@ -4223,18 +4226,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1531; + this.state = 1533; this.match(HiveSqlParser.KW_SHOW); - this.state = 1532; + this.state = 1534; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1535; + this.state = 1537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 183) { + if (_la === 184) { { - this.state = 1533; + this.state = 1535; this.match(HiveSqlParser.KW_LIKE); - this.state = 1534; + this.state = 1536; this.functionNameForDDL(); } } @@ -4244,48 +4247,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1537; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1538; - this.match(HiveSqlParser.KW_PARTITIONS); this.state = 1539; - localContext._tabOrViewName = this.tableOrView(); + this.match(HiveSqlParser.KW_SHOW); + this.state = 1540; + this.match(HiveSqlParser.KW_PARTITIONS); this.state = 1541; + localContext._tabOrViewName = this.tableOrView(); + this.state = 1543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1540; + this.state = 1542; this.partitionSpec(); } } - this.state = 1544; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 1543; + this.state = 1545; this.whereClause(); } } - this.state = 1547; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 1546; + this.state = 1548; this.orderByClause(); } } - this.state = 1550; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 1549; + this.state = 1551; this.limitClause(); } } @@ -4295,27 +4298,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1552; + this.state = 1554; this.match(HiveSqlParser.KW_SHOW); - this.state = 1553; + this.state = 1555; this.match(HiveSqlParser.KW_CREATE); - this.state = 1559; + this.state = 1561; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1554; + this.state = 1556; this.db_schema(); - this.state = 1555; + this.state = 1557; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1557; + this.state = 1559; this.match(HiveSqlParser.KW_TABLE); - this.state = 1558; + this.state = 1560; localContext._tabName = this.tableName(); } break; @@ -4327,34 +4330,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1561; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1562; - this.match(HiveSqlParser.KW_TABLE); this.state = 1563; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1564; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1565; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1567; + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1564; + this.state = 1566; this.from_in(); - this.state = 1565; + this.state = 1567; localContext._db_name = this.dbSchemaName(); } } - this.state = 1569; + this.state = 1571; this.match(HiveSqlParser.KW_LIKE); - this.state = 1570; - this.showStmtIdentifier(); this.state = 1572; + this.showStmtIdentifier(); + this.state = 1574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1571; + this.state = 1573; this.partitionSpec(); } } @@ -4364,22 +4367,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1574; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1575; - this.match(HiveSqlParser.KW_TBLPROPERTIES); this.state = 1576; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1577; + this.match(HiveSqlParser.KW_TBLPROPERTIES); + this.state = 1578; this.tableName(); - this.state = 1580; + this.state = 1582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 1577; - this.match(HiveSqlParser.LPAREN); - this.state = 1578; - localContext._prptyName = this.match(HiveSqlParser.StringLiteral); this.state = 1579; + this.match(HiveSqlParser.LPAREN); + this.state = 1580; + localContext._prptyName = this.match(HiveSqlParser.StringLiteral); + this.state = 1581; this.match(HiveSqlParser.RPAREN); } break; @@ -4389,25 +4392,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1582; + this.state = 1584; this.match(HiveSqlParser.KW_SHOW); - this.state = 1583; + this.state = 1585; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1595; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 1584; + this.state = 1586; this.db_schema(); - this.state = 1585; - localContext._dbName = this.dbSchemaName(); this.state = 1587; + localContext._dbName = this.dbSchemaName(); + this.state = 1589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1586; + this.state = 1588; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4416,22 +4419,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1590; + this.state = 1592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 1589; + this.state = 1591; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1593; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1592; + this.state = 1594; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4444,71 +4447,71 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1597; + this.state = 1599; this.match(HiveSqlParser.KW_SHOW); - this.state = 1598; + this.state = 1600; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1635; + this.state = 1637; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1599; + this.state = 1601; this.compactionId(); } break; case 2: { - this.state = 1600; + this.state = 1602; this.db_schema(); - this.state = 1601; - localContext._dbName = this.dbSchemaName(); this.state = 1603; + localContext._dbName = this.dbSchemaName(); + this.state = 1605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 245) { + if (_la === 246) { { - this.state = 1602; + this.state = 1604; this.compactionPool(); } } - this.state = 1606; + this.state = 1608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1605; + this.state = 1607; this.compactionType(); } } - this.state = 1609; + this.state = 1611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 319) { + if (_la === 320) { { - this.state = 1608; + this.state = 1610; this.compactionStatus(); } } - this.state = 1612; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 1611; + this.state = 1613; this.orderByClause(); } } - this.state = 1615; + this.state = 1617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 1614; + this.state = 1616; this.limitClause(); } } @@ -4517,62 +4520,62 @@ export class HiveSqlParser extends SQLParserBase { break; case 3: { - this.state = 1618; + this.state = 1620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1617; + this.state = 1619; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1621; + this.state = 1623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 245) { + if (_la === 246) { { - this.state = 1620; + this.state = 1622; this.compactionPool(); } } - this.state = 1624; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1623; + this.state = 1625; this.compactionType(); } } - this.state = 1627; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 319) { + if (_la === 320) { { - this.state = 1626; + this.state = 1628; this.compactionStatus(); } } - this.state = 1630; + this.state = 1632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 1629; + this.state = 1631; this.orderByClause(); } } - this.state = 1633; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 1632; + this.state = 1634; this.limitClause(); } } @@ -4585,44 +4588,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1637; + this.state = 1639; this.match(HiveSqlParser.KW_SHOW); - this.state = 1638; + this.state = 1640; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1639; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1640; - this.match(HiveSqlParser.KW_CONF); this.state = 1641; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1642; + this.match(HiveSqlParser.KW_CONF); + this.state = 1643; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1642; + this.state = 1644; this.match(HiveSqlParser.KW_SHOW); - this.state = 1643; + this.state = 1645; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1647; + this.state = 1649; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1644; + this.state = 1646; this.match(HiveSqlParser.KW_PLAN); - this.state = 1645; + this.state = 1647; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1646; + this.state = 1648; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4634,28 +4637,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1649; + this.state = 1651; this.match(HiveSqlParser.KW_SHOW); - this.state = 1650; + this.state = 1652; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1651; - this.match(HiveSqlParser.KW_SHOW); this.state = 1653; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1652; + this.state = 1654; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1655; + this.state = 1657; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4664,18 +4667,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1656; + this.state = 1658; this.match(HiveSqlParser.KW_ON); - this.state = 1657; + this.state = 1659; this.tableName(); - this.state = 1661; + this.state = 1663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1658; + this.state = 1660; this.from_in(); - this.state = 1659; + this.state = 1661; this.dbSchemaName(); } break; @@ -4702,28 +4705,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 96, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1673; + this.state = 1675; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1665; - this.match(HiveSqlParser.KW_WHERE); - this.state = 1666; - this.id_(); this.state = 1667; - this.match(HiveSqlParser.EQUAL); + this.match(HiveSqlParser.KW_WHERE); this.state = 1668; + this.id_(); + this.state = 1669; + this.match(HiveSqlParser.EQUAL); + this.state = 1670; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1670; + this.state = 1672; this.match(HiveSqlParser.KW_LIKE); - this.state = 1671; + this.state = 1673; this.showStmtIdentifier(); } break; @@ -4826,6 +4829,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -4969,7 +4973,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1672; + this.state = 1674; this.showStmtIdentifier(); } break; @@ -4998,23 +5002,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1675; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1676; - this.match(HiveSqlParser.KW_TABLE); this.state = 1677; - this.tableName(); + this.match(HiveSqlParser.KW_LOCK); + this.state = 1678; + this.match(HiveSqlParser.KW_TABLE); this.state = 1679; + this.tableName(); + this.state = 1681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1678; + this.state = 1680; this.partitionSpec(); } } - this.state = 1681; + this.state = 1683; this.lockMode(); } } @@ -5038,13 +5042,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1683; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1684; - this.db_schema(); this.state = 1685; - localContext._dbName = this.dbSchemaName(); + this.match(HiveSqlParser.KW_LOCK); this.state = 1686; + this.db_schema(); + this.state = 1687; + localContext._dbName = this.dbSchemaName(); + this.state = 1688; this.lockMode(); } } @@ -5069,9 +5073,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1688; + this.state = 1690; _la = this.tokenStream.LA(1); - if(!(_la === 114 || _la === 306)) { + if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); } else { @@ -5101,18 +5105,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1690; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1691; - this.match(HiveSqlParser.KW_TABLE); this.state = 1692; - this.tableName(); + this.match(HiveSqlParser.KW_UNLOCK); + this.state = 1693; + this.match(HiveSqlParser.KW_TABLE); this.state = 1694; + this.tableName(); + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1693; + this.state = 1695; this.partitionSpec(); } } @@ -5139,11 +5143,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1696; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1697; - this.db_schema(); this.state = 1698; + this.match(HiveSqlParser.KW_UNLOCK); + this.state = 1699; + this.db_schema(); + this.state = 1700; localContext._dbName = this.dbSchemaName(); } } @@ -5167,11 +5171,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1700; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1701; - this.match(HiveSqlParser.KW_ROLE); this.state = 1702; + this.match(HiveSqlParser.KW_CREATE); + this.state = 1703; + this.match(HiveSqlParser.KW_ROLE); + this.state = 1704; localContext._roleName = this.id_(); } } @@ -5195,11 +5199,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1704; - this.match(HiveSqlParser.KW_DROP); - this.state = 1705; - this.match(HiveSqlParser.KW_ROLE); this.state = 1706; + this.match(HiveSqlParser.KW_DROP); + this.state = 1707; + this.match(HiveSqlParser.KW_ROLE); + this.state = 1708; localContext._roleName = this.id_(); } } @@ -5224,30 +5228,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1710; this.match(HiveSqlParser.KW_GRANT); - this.state = 1709; - localContext._privList = this.privilegeList(); this.state = 1711; + localContext._privList = this.privilegeList(); + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 223) { + if (_la === 224) { { - this.state = 1710; + this.state = 1712; this.privilegeObject(); } } - this.state = 1713; + this.state = 1715; this.match(HiveSqlParser.KW_TO); - this.state = 1714; - this.principalSpecification(); this.state = 1716; + this.principalSpecification(); + this.state = 1718; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1715; + this.state = 1717; this.withGrantOption(); } break; @@ -5275,33 +5279,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1718; - this.match(HiveSqlParser.KW_REVOKE); this.state = 1720; + this.match(HiveSqlParser.KW_REVOKE); + this.state = 1722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1719; + this.state = 1721; this.grantOptionFor(); } } - this.state = 1722; - this.privilegeList(); this.state = 1724; + this.privilegeList(); + this.state = 1726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 223) { + if (_la === 224) { { - this.state = 1723; + this.state = 1725; this.privilegeObject(); } } - this.state = 1726; + this.state = 1728; this.match(HiveSqlParser.KW_FROM); - this.state = 1727; + this.state = 1729; this.principalSpecification(); } } @@ -5326,46 +5330,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1729; - this.match(HiveSqlParser.KW_GRANT); this.state = 1731; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1730; + this.state = 1732; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1733; + this.state = 1735; this.id_(); - this.state = 1738; + this.state = 1740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1734; + this.state = 1736; this.match(HiveSqlParser.COMMA); - this.state = 1735; + this.state = 1737; this.id_(); } } - this.state = 1740; + this.state = 1742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1741; + this.state = 1743; this.match(HiveSqlParser.KW_TO); - this.state = 1742; - this.principalSpecification(); this.state = 1744; + this.principalSpecification(); + this.state = 1746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { case 1: { - this.state = 1743; + this.state = 1745; this.withAdminOption(); } break; @@ -5393,49 +5397,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1746; - this.match(HiveSqlParser.KW_REVOKE); this.state = 1748; + this.match(HiveSqlParser.KW_REVOKE); + this.state = 1750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1747; + this.state = 1749; this.adminOptionFor(); } break; } - this.state = 1751; + this.state = 1753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1750; + this.state = 1752; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1753; + this.state = 1755; this.id_(); - this.state = 1758; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1754; + this.state = 1756; this.match(HiveSqlParser.COMMA); - this.state = 1755; + this.state = 1757; this.id_(); } } - this.state = 1760; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1761; + this.state = 1763; this.match(HiveSqlParser.KW_FROM); - this.state = 1762; + this.state = 1764; this.principalSpecification(); } } @@ -5459,13 +5463,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1764; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1765; - this.match(HiveSqlParser.KW_ROLE); this.state = 1766; - this.match(HiveSqlParser.KW_GRANT); + this.match(HiveSqlParser.KW_SHOW); this.state = 1767; + this.match(HiveSqlParser.KW_ROLE); + this.state = 1768; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1769; this.principalName(); } } @@ -5489,9 +5493,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1769; + this.state = 1771; this.match(HiveSqlParser.KW_SHOW); - this.state = 1770; + this.state = 1772; this.match(HiveSqlParser.KW_ROLES); } } @@ -5515,11 +5519,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1772; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1773; - this.match(HiveSqlParser.KW_CURRENT); this.state = 1774; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1775; + this.match(HiveSqlParser.KW_CURRENT); + this.state = 1776; this.match(HiveSqlParser.KW_ROLES); } } @@ -5543,22 +5547,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1776; + this.state = 1778; this.match(HiveSqlParser.KW_SET); - this.state = 1777; + this.state = 1779; this.match(HiveSqlParser.KW_ROLE); - this.state = 1781; + this.state = 1783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1778; + this.state = 1780; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1779; + this.state = 1781; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5661,6 +5665,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -5802,7 +5807,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1780; + this.state = 1782; this.id_(); } break; @@ -5832,28 +5837,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1785; this.match(HiveSqlParser.KW_SHOW); - this.state = 1784; - this.match(HiveSqlParser.KW_GRANT); this.state = 1786; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 144 || _la === 286 || _la === 368) { + if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1785; + this.state = 1787; this.principalName(); } } - this.state = 1790; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 223) { + if (_la === 224) { { - this.state = 1788; + this.state = 1790; this.match(HiveSqlParser.KW_ON); - this.state = 1789; + this.state = 1791; this.privilegeIncludeColObject(); } } @@ -5880,11 +5885,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1792; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1793; - this.match(HiveSqlParser.KW_PRINCIPALS); this.state = 1794; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1795; + this.match(HiveSqlParser.KW_PRINCIPALS); + this.state = 1796; localContext._roleName = this.id_(); } } @@ -5906,13 +5911,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 132, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1798; + this.state = 1800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1798; this.match(HiveSqlParser.KW_ALL); } break; @@ -6016,6 +6021,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -6159,7 +6165,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1799; this.privObjectCols(); } break; @@ -6187,9 +6193,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1800; + this.state = 1802; this.match(HiveSqlParser.KW_ON); - this.state = 1801; + this.state = 1803; this.privObject(); } } @@ -6212,39 +6218,39 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 136, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1817; + this.state = 1819; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1803; + this.state = 1805; this.db_schema(); - this.state = 1804; + this.state = 1806; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1807; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 328) { + if (_la === 329) { { - this.state = 1806; + this.state = 1808; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1809; - this.tableName(); this.state = 1811; + this.tableName(); + this.state = 1813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1810; + this.state = 1812; this.partitionSpec(); } } @@ -6254,18 +6260,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1813; + this.state = 1815; this.match(HiveSqlParser.KW_URI); - this.state = 1814; + this.state = 1816; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1815; + this.state = 1817; this.match(HiveSqlParser.KW_SERVER); - this.state = 1816; + this.state = 1818; this.id_(); } break; @@ -6290,53 +6296,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 138, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1839; + this.state = 1841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1821; this.db_schema(); - this.state = 1820; + this.state = 1822; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1823; + this.state = 1825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 328) { + if (_la === 329) { { - this.state = 1822; + this.state = 1824; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1825; + this.state = 1827; this.tableName(); - this.state = 1830; + this.state = 1832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1826; - this.match(HiveSqlParser.LPAREN); - this.state = 1827; - localContext._cols = this.columnNameList(); this.state = 1828; + this.match(HiveSqlParser.LPAREN); + this.state = 1829; + localContext._cols = this.columnNameList(); + this.state = 1830; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1833; + this.state = 1835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 1832; + this.state = 1834; this.partitionSpec(); } } @@ -6346,18 +6352,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1835; + this.state = 1837; this.match(HiveSqlParser.KW_URI); - this.state = 1836; + this.state = 1838; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1837; + this.state = 1839; this.match(HiveSqlParser.KW_SERVER); - this.state = 1838; + this.state = 1840; this.id_(); } break; @@ -6384,21 +6390,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1843; this.privlegeDef(); - this.state = 1846; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1842; + this.state = 1844; this.match(HiveSqlParser.COMMA); - this.state = 1843; + this.state = 1845; this.privlegeDef(); } } - this.state = 1848; + this.state = 1850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6425,18 +6431,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1849; + this.state = 1851; this.privilegeType(); - this.state = 1854; + this.state = 1856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 1850; - this.match(HiveSqlParser.LPAREN); - this.state = 1851; - localContext._cols = this.columnNameList(); this.state = 1852; + this.match(HiveSqlParser.LPAREN); + this.state = 1853; + localContext._cols = this.columnNameList(); + this.state = 1854; this.match(HiveSqlParser.RPAREN); } } @@ -6464,9 +6470,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1858; _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 189 || _la === 298 || _la === 308 || _la === 364)) { + if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); } else { @@ -6496,21 +6502,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1858; + this.state = 1860; this.principalName(); - this.state = 1863; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1859; + this.state = 1861; this.match(HiveSqlParser.COMMA); - this.state = 1860; + this.state = 1862; this.principalName(); } } - this.state = 1865; + this.state = 1867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6534,33 +6540,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 148, HiveSqlParser.RULE_principalName); try { - this.state = 1872; + this.state = 1874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1868; this.match(HiveSqlParser.KW_USER); - this.state = 1867; + this.state = 1869; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1868; + this.state = 1870; this.match(HiveSqlParser.KW_GROUP); - this.state = 1869; + this.state = 1871; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1870; + this.state = 1872; this.match(HiveSqlParser.KW_ROLE); - this.state = 1871; + this.state = 1873; this.id_(); } break; @@ -6586,31 +6592,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 150, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1879; + this.state = 1881; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1874; + this.state = 1876; this.match(HiveSqlParser.KW_USER); - this.state = 1875; + this.state = 1877; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1876; + this.state = 1878; this.match(HiveSqlParser.KW_ROLE); - this.state = 1877; + this.state = 1879; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1878; + this.state = 1880; this.id_(); } break; @@ -6636,11 +6642,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1881; - this.match(HiveSqlParser.KW_WITH); - this.state = 1882; - this.match(HiveSqlParser.KW_GRANT); this.state = 1883; + this.match(HiveSqlParser.KW_WITH); + this.state = 1884; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1885; this.match(HiveSqlParser.KW_OPTION); } } @@ -6664,11 +6670,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1885; - this.match(HiveSqlParser.KW_GRANT); - this.state = 1886; - this.match(HiveSqlParser.KW_OPTION); this.state = 1887; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1888; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1889; this.match(HiveSqlParser.KW_FOR); } } @@ -6692,11 +6698,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1889; - this.match(HiveSqlParser.KW_ADMIN); - this.state = 1890; - this.match(HiveSqlParser.KW_OPTION); this.state = 1891; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1892; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1893; this.match(HiveSqlParser.KW_FOR); } } @@ -6720,11 +6726,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1893; - this.match(HiveSqlParser.KW_WITH); - this.state = 1894; - this.match(HiveSqlParser.KW_ADMIN); this.state = 1895; + this.match(HiveSqlParser.KW_WITH); + this.state = 1896; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1897; this.match(HiveSqlParser.KW_OPTION); } } @@ -6749,46 +6755,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1897; - this.match(HiveSqlParser.KW_MSCK); this.state = 1899; + this.match(HiveSqlParser.KW_MSCK); + this.state = 1901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 275) { + if (_la === 276) { { - this.state = 1898; + this.state = 1900; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1901; + this.state = 1903; this.match(HiveSqlParser.KW_TABLE); - this.state = 1902; + this.state = 1904; this.tableName(); - this.state = 1908; + this.state = 1910; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1903; + this.state = 1905; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 4 || _la === 101 || _la === 325)) { + if(!(_la === 4 || _la === 101 || _la === 326)) { localContext._opt = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1904; - localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); this.state = 1906; + localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); + this.state = 1908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1905; + this.state = 1907; this.partitionSelectorSpec(); } break; @@ -6820,21 +6826,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1912; this.resource(); - this.state = 1915; + this.state = 1917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 1911; + this.state = 1913; this.match(HiveSqlParser.COMMA); - this.state = 1912; + this.state = 1914; this.resource(); } } - this.state = 1917; + this.state = 1919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6860,9 +6866,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1920; localContext._resType = this.resourceType(); - this.state = 1919; + this.state = 1921; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6887,7 +6893,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1921; + this.state = 1923; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6919,34 +6925,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; - this.match(HiveSqlParser.KW_CREATE); this.state = 1925; + this.match(HiveSqlParser.KW_CREATE); + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 332) { + if (_la === 333) { { - this.state = 1924; + this.state = 1926; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1927; - this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1928; - this.functionNameCreate(); this.state = 1929; - this.match(HiveSqlParser.KW_AS); + this.match(HiveSqlParser.KW_FUNCTION); this.state = 1930; + this.functionNameCreate(); + this.state = 1931; + this.match(HiveSqlParser.KW_AS); + this.state = 1932; this.match(HiveSqlParser.StringLiteral); - this.state = 1933; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 369) { + if (_la === 370) { { - this.state = 1931; + this.state = 1933; this.match(HiveSqlParser.KW_USING); - this.state = 1932; + this.state = 1934; localContext._rList = this.resourceList(); } } @@ -6974,31 +6980,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1935; - this.match(HiveSqlParser.KW_DROP); this.state = 1937; + this.match(HiveSqlParser.KW_DROP); + this.state = 1939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 332) { + if (_la === 333) { { - this.state = 1936; + this.state = 1938; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1939; - this.match(HiveSqlParser.KW_FUNCTION); this.state = 1941; + this.match(HiveSqlParser.KW_FUNCTION); + this.state = 1943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1940; + this.state = 1942; this.ifExists(); } } - this.state = 1943; + this.state = 1945; this.functionNameForDDL(); } } @@ -7023,9 +7029,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1945; + this.state = 1947; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1946; + this.state = 1948; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -7057,29 +7063,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1948; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1949; - this.match(HiveSqlParser.KW_TEMPORARY); this.state = 1950; - this.match(HiveSqlParser.KW_MACRO); + this.match(HiveSqlParser.KW_CREATE); this.state = 1951; - this.match(HiveSqlParser.Identifier); + this.match(HiveSqlParser.KW_TEMPORARY); this.state = 1952; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_MACRO); + this.state = 1953; + this.match(HiveSqlParser.Identifier); this.state = 1954; + this.match(HiveSqlParser.LPAREN); + this.state = 1956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1953; + this.state = 1955; this.columnNameTypeList(); } } - this.state = 1956; + this.state = 1958; this.match(HiveSqlParser.RPAREN); - this.state = 1957; + this.state = 1959; this.expression(); } } @@ -7104,23 +7110,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1959; - this.match(HiveSqlParser.KW_DROP); - this.state = 1960; - this.match(HiveSqlParser.KW_TEMPORARY); this.state = 1961; - this.match(HiveSqlParser.KW_MACRO); + this.match(HiveSqlParser.KW_DROP); + this.state = 1962; + this.match(HiveSqlParser.KW_TEMPORARY); this.state = 1963; + this.match(HiveSqlParser.KW_MACRO); + this.state = 1965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1962; + this.state = 1964; this.ifExists(); } } - this.state = 1965; + this.state = 1967; this.match(HiveSqlParser.Identifier); } } @@ -7145,126 +7151,126 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1967; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1968; - this.match(HiveSqlParser.KW_INDEX); this.state = 1969; - this.id_(); + this.match(HiveSqlParser.KW_CREATE); this.state = 1970; - this.match(HiveSqlParser.KW_ON); + this.match(HiveSqlParser.KW_INDEX); this.state = 1971; - this.match(HiveSqlParser.KW_TABLE); + this.id_(); this.state = 1972; - this.tableName(); + this.match(HiveSqlParser.KW_ON); this.state = 1973; - this.columnParenthesesList(); + this.match(HiveSqlParser.KW_TABLE); this.state = 1974; - this.match(HiveSqlParser.KW_AS); + this.tableName(); this.state = 1975; + this.columnParenthesesList(); + this.state = 1976; + this.match(HiveSqlParser.KW_AS); + this.state = 1977; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1979; + this.state = 1981; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1976; - this.match(HiveSqlParser.KW_WITH); - this.state = 1977; - this.match(HiveSqlParser.KW_DEFERRED); this.state = 1978; + this.match(HiveSqlParser.KW_WITH); + this.state = 1979; + this.match(HiveSqlParser.KW_DEFERRED); + this.state = 1980; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1983; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1981; + this.state = 1983; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1982; + this.state = 1984; this.tableProperties(); } } - this.state = 1988; + this.state = 1990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1985; - this.match(HiveSqlParser.KW_IN); - this.state = 1986; - this.match(HiveSqlParser.KW_TABLE); this.state = 1987; + this.match(HiveSqlParser.KW_IN); + this.state = 1988; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1989; this.tableName(); } } - this.state = 1993; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 238) { { - this.state = 1990; - this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1991; - this.match(HiveSqlParser.KW_BY); this.state = 1992; + this.match(HiveSqlParser.KW_PARTITIONED); + this.state = 1993; + this.match(HiveSqlParser.KW_BY); + this.state = 1994; this.columnParenthesesList(); } } - this.state = 1999; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290 || _la === 320) { + if (_la === 291 || _la === 321) { { - this.state = 1996; + this.state = 1998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 1995; + this.state = 1997; this.tableRowFormat(); } } - this.state = 1998; + this.state = 2000; this.tableFileFormat(); } } - this.state = 2003; + this.state = 2005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 2001; + this.state = 2003; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2002; + this.state = 2004; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2006; + this.state = 2008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 2005; + this.state = 2007; this.tablePropertiesPrefixed(); } } - this.state = 2009; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2008; + this.state = 2010; this.tableComment(); } } @@ -7292,25 +7298,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2011; + this.state = 2013; this.match(HiveSqlParser.KW_DROP); - this.state = 2012; - this.match(HiveSqlParser.KW_INDEX); this.state = 2014; + this.match(HiveSqlParser.KW_INDEX); + this.state = 2016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2013; + this.state = 2015; this.ifExists(); } } - this.state = 2016; - this.id_(); - this.state = 2017; - this.match(HiveSqlParser.KW_ON); this.state = 2018; + this.id_(); + this.state = 2019; + this.match(HiveSqlParser.KW_ON); + this.state = 2020; this.tableName(); } } @@ -7335,79 +7341,79 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2020; - this.match(HiveSqlParser.KW_CREATE); this.state = 2022; + this.match(HiveSqlParser.KW_CREATE); + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 227) { + if (_la === 228) { { - this.state = 2021; + this.state = 2023; this.orReplace(); } } - this.state = 2024; - this.match(HiveSqlParser.KW_VIEW); this.state = 2026; + this.match(HiveSqlParser.KW_VIEW); + this.state = 2028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2025; + this.state = 2027; this.ifNotExists(); } } - this.state = 2028; + this.state = 2030; localContext._name = this.viewNameCreate(); - this.state = 2033; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 2029; - this.match(HiveSqlParser.LPAREN); - this.state = 2030; - this.columnNameCommentList(); this.state = 2031; + this.match(HiveSqlParser.LPAREN); + this.state = 2032; + this.columnNameCommentList(); + this.state = 2033; this.match(HiveSqlParser.RPAREN); } } - this.state = 2036; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2035; + this.state = 2037; this.tableComment(); } } - this.state = 2039; + this.state = 2041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 238) { { - this.state = 2038; + this.state = 2040; this.viewPartition(); } } - this.state = 2042; + this.state = 2044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 2041; + this.state = 2043; this.tablePropertiesPrefixed(); } } - this.state = 2044; + this.state = 2046; this.match(HiveSqlParser.KW_AS); - this.state = 2045; + this.state = 2047; this.selectStatementWithCTE(); } } @@ -7431,35 +7437,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2049; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 2048; + this.state = 2050; this.match(HiveSqlParser.KW_ON); - this.state = 2054; + this.state = 2056; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 2049; + this.state = 2051; this.match(HiveSqlParser.LPAREN); - this.state = 2050; + this.state = 2052; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 2051; - this.match(HiveSqlParser.KW_SPEC); - this.state = 2052; - this.match(HiveSqlParser.LPAREN); this.state = 2053; + this.match(HiveSqlParser.KW_SPEC); + this.state = 2054; + this.match(HiveSqlParser.LPAREN); + this.state = 2055; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2056; + this.state = 2058; this.match(HiveSqlParser.RPAREN); } } @@ -7481,20 +7487,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_viewOrganization); try { - this.state = 2060; + this.state = 2062; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 2058; + this.state = 2060; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 2059; + this.state = 2061; this.viewComplexSpec(); } break; @@ -7522,15 +7528,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2062; - this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2063; - this.match(HiveSqlParser.KW_ON); this.state = 2064; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_CLUSTERED); this.state = 2065; - this.columnNameList(); + this.match(HiveSqlParser.KW_ON); this.state = 2066; + this.match(HiveSqlParser.LPAREN); + this.state = 2067; + this.columnNameList(); + this.state = 2068; this.match(HiveSqlParser.RPAREN); } } @@ -7554,9 +7560,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2070; this.viewDistSpec(); - this.state = 2069; + this.state = 2071; this.viewSortSpec(); } } @@ -7580,15 +7586,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2071; - this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 2072; - this.match(HiveSqlParser.KW_ON); this.state = 2073; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_DISTRIBUTED); this.state = 2074; - localContext._colList = this.columnNameList(); + this.match(HiveSqlParser.KW_ON); this.state = 2075; + this.match(HiveSqlParser.LPAREN); + this.state = 2076; + localContext._colList = this.columnNameList(); + this.state = 2077; this.match(HiveSqlParser.RPAREN); } } @@ -7612,15 +7618,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2077; - this.match(HiveSqlParser.KW_SORTED); - this.state = 2078; - this.match(HiveSqlParser.KW_ON); this.state = 2079; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_SORTED); this.state = 2080; - localContext._colList = this.columnNameList(); + this.match(HiveSqlParser.KW_ON); this.state = 2081; + this.match(HiveSqlParser.LPAREN); + this.state = 2082; + localContext._colList = this.columnNameList(); + this.state = 2083; this.match(HiveSqlParser.RPAREN); } } @@ -7645,21 +7651,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2083; + this.state = 2085; this.match(HiveSqlParser.KW_DROP); - this.state = 2084; - this.match(HiveSqlParser.KW_VIEW); this.state = 2086; + this.match(HiveSqlParser.KW_VIEW); + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2085; + this.state = 2087; this.ifExists(); } } - this.state = 2088; + this.state = 2090; this.viewName(); } } @@ -7684,107 +7690,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; - this.match(HiveSqlParser.KW_CREATE); - this.state = 2091; - this.match(HiveSqlParser.KW_MATERIALIZED); this.state = 2092; - this.match(HiveSqlParser.KW_VIEW); + this.match(HiveSqlParser.KW_CREATE); + this.state = 2093; + this.match(HiveSqlParser.KW_MATERIALIZED); this.state = 2094; + this.match(HiveSqlParser.KW_VIEW); + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2093; + this.state = 2095; this.ifNotExists(); } } - this.state = 2096; - localContext._name = this.viewNameCreate(); this.state = 2098; + localContext._name = this.viewNameCreate(); + this.state = 2100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 2097; + this.state = 2099; this.rewriteDisabled(); } } - this.state = 2101; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2100; + this.state = 2102; this.tableComment(); } } - this.state = 2104; + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 238) { { - this.state = 2103; + this.state = 2105; this.viewPartition(); } } - this.state = 2107; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 2106; + this.state = 2108; this.viewOrganization(); } } - this.state = 2110; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 2109; + this.state = 2111; this.tableRowFormat(); } } - this.state = 2113; + this.state = 2115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 2112; + this.state = 2114; this.tableFileFormat(); } } - this.state = 2116; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 2115; + this.state = 2117; this.tableLocation(); } } - this.state = 2119; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 2118; + this.state = 2120; this.tablePropertiesPrefixed(); } } - this.state = 2121; + this.state = 2123; this.match(HiveSqlParser.KW_AS); - this.state = 2122; + this.state = 2124; this.selectStatementWithCTE(); } } @@ -7809,23 +7815,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2124; - this.match(HiveSqlParser.KW_DROP); - this.state = 2125; - this.match(HiveSqlParser.KW_MATERIALIZED); this.state = 2126; - this.match(HiveSqlParser.KW_VIEW); + this.match(HiveSqlParser.KW_DROP); + this.state = 2127; + this.match(HiveSqlParser.KW_MATERIALIZED); this.state = 2128; + this.match(HiveSqlParser.KW_VIEW); + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2127; + this.state = 2129; this.ifExists(); } } - this.state = 2130; + this.state = 2132; this.viewName(); } } @@ -7850,37 +7856,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2132; - this.match(HiveSqlParser.KW_CREATE); - this.state = 2133; - this.match(HiveSqlParser.KW_SCHEDULED); this.state = 2134; - this.match(HiveSqlParser.KW_QUERY); + this.match(HiveSqlParser.KW_CREATE); this.state = 2135; - localContext._name = this.id_(); + this.match(HiveSqlParser.KW_SCHEDULED); this.state = 2136; - this.scheduleSpec(); + this.match(HiveSqlParser.KW_QUERY); + this.state = 2137; + localContext._name = this.id_(); this.state = 2138; + this.scheduleSpec(); + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 2137; + this.state = 2139; this.executedAsSpec(); } } - this.state = 2141; + this.state = 2143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 2140; + this.state = 2142; this.enableSpecification(); } } - this.state = 2143; + this.state = 2145; this.definedAsSpec(); } } @@ -7904,13 +7910,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2145; - this.match(HiveSqlParser.KW_DROP); - this.state = 2146; - this.match(HiveSqlParser.KW_SCHEDULED); this.state = 2147; - this.match(HiveSqlParser.KW_QUERY); + this.match(HiveSqlParser.KW_DROP); this.state = 2148; + this.match(HiveSqlParser.KW_SCHEDULED); + this.state = 2149; + this.match(HiveSqlParser.KW_QUERY); + this.state = 2150; localContext._name = this.id_(); } } @@ -7934,15 +7940,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2150; - this.match(HiveSqlParser.KW_ALTER); - this.state = 2151; - this.match(HiveSqlParser.KW_SCHEDULED); this.state = 2152; - this.match(HiveSqlParser.KW_QUERY); + this.match(HiveSqlParser.KW_ALTER); this.state = 2153; - localContext._name = this.id_(); + this.match(HiveSqlParser.KW_SCHEDULED); this.state = 2154; + this.match(HiveSqlParser.KW_QUERY); + this.state = 2155; + localContext._name = this.id_(); + this.state = 2156; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7964,21 +7970,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 208, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 2161; + this.state = 2163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2158; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 2157; + this.state = 2159; this.executedAsSpec(); } break; @@ -7988,7 +7994,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 2158; + this.state = 2160; this.enableSpecification(); } break; @@ -7996,14 +8002,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 2159; + this.state = 2161; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 2160; + this.state = 2162; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -8030,61 +8036,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 210, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 2178; + this.state = 2180; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2165; this.match(HiveSqlParser.KW_CRON); - this.state = 2164; + this.state = 2166; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 2165; - this.match(HiveSqlParser.KW_EVERY); this.state = 2167; + this.match(HiveSqlParser.KW_EVERY); + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 430) { + if (_la === 431) { { - this.state = 2166; + this.state = 2168; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 2169; + this.state = 2171; localContext._qualifier = this.intervalQualifiers(); - this.state = 2176; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 20 || _la === 222) { + if (_la === 20 || _la === 223) { { - this.state = 2173; + this.state = 2175; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 2170; + this.state = 2172; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 2171; + this.state = 2173; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2172; + this.state = 2174; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2175; + this.state = 2177; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -8115,11 +8121,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2180; - this.match(HiveSqlParser.KW_EXECUTED); - this.state = 2181; - this.match(HiveSqlParser.KW_AS); this.state = 2182; + this.match(HiveSqlParser.KW_EXECUTED); + this.state = 2183; + this.match(HiveSqlParser.KW_AS); + this.state = 2184; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -8144,19 +8150,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 2184; + this.state = 2186; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 2187; + this.state = 2189; this.match(HiveSqlParser.KW_AS); - this.state = 2188; + this.state = 2190; this.statement(); } } @@ -8178,7 +8184,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 216, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 2192; + this.state = 2194; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8280,6 +8286,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -8422,14 +8429,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 2190; + this.state = 2192; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 2191; + this.state = 2193; this.match(HiveSqlParser.StringLiteral); } break; @@ -8457,9 +8464,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2196; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2195; + this.state = 2197; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8477,35 +8484,61 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public tableLifecycle(): TableLifecycleContext { + let localContext = new TableLifecycleContext(this.context, this.state); + this.enterRule(localContext, 220, HiveSqlParser.RULE_tableLifecycle); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2199; + this.match(HiveSqlParser.KW_LIFECYCLE); + this.state = 2200; + this.match(HiveSqlParser.Number); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public createTablePartitionSpec(): CreateTablePartitionSpecContext { let localContext = new CreateTablePartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 220, HiveSqlParser.RULE_createTablePartitionSpec); + this.enterRule(localContext, 222, HiveSqlParser.RULE_createTablePartitionSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2202; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 2198; + this.state = 2203; this.match(HiveSqlParser.KW_BY); - this.state = 2207; + this.state = 2212; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 2199; + this.state = 2204; this.match(HiveSqlParser.LPAREN); - this.state = 2202; + this.state = 2207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 2200; + this.state = 2205; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 2201; + this.state = 2206; localContext._opt2 = this.createTablePartitionColumnSpec(); } break; @@ -8514,18 +8547,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 2204; + this.state = 2209; this.match(HiveSqlParser.KW_SPEC); - this.state = 2205; + this.state = 2210; this.match(HiveSqlParser.LPAREN); - this.state = 2206; + this.state = 2211; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2209; + this.state = 2214; this.match(HiveSqlParser.RPAREN); } } @@ -8545,26 +8578,26 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionColumnTypeSpec(): CreateTablePartitionColumnTypeSpecContext { let localContext = new CreateTablePartitionColumnTypeSpecContext(this.context, this.state); - this.enterRule(localContext, 222, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); + this.enterRule(localContext, 224, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2211; - this.columnNameTypeConstraint(); this.state = 2216; + this.columnNameTypeConstraint(); + this.state = 2221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2212; + this.state = 2217; this.match(HiveSqlParser.COMMA); - this.state = 2213; + this.state = 2218; this.columnNameTypeConstraint(); } } - this.state = 2218; + this.state = 2223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8586,26 +8619,26 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionColumnSpec(): CreateTablePartitionColumnSpecContext { let localContext = new CreateTablePartitionColumnSpecContext(this.context, this.state); - this.enterRule(localContext, 224, HiveSqlParser.RULE_createTablePartitionColumnSpec); + this.enterRule(localContext, 226, HiveSqlParser.RULE_createTablePartitionColumnSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; - this.columnName(); this.state = 2224; + this.columnName(); + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2220; + this.state = 2225; this.match(HiveSqlParser.COMMA); - this.state = 2221; + this.state = 2226; this.columnName(); } } - this.state = 2226; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8627,26 +8660,26 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformSpec(): PartitionTransformSpecContext { let localContext = new PartitionTransformSpecContext(this.context, this.state); - this.enterRule(localContext, 226, HiveSqlParser.RULE_partitionTransformSpec); + this.enterRule(localContext, 228, HiveSqlParser.RULE_partitionTransformSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2227; - this.columnNameTransformConstraint(); this.state = 2232; + this.columnNameTransformConstraint(); + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2228; + this.state = 2233; this.match(HiveSqlParser.COMMA); - this.state = 2229; + this.state = 2234; this.columnNameTransformConstraint(); } } - this.state = 2234; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8668,11 +8701,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTransformConstraint(): ColumnNameTransformConstraintContext { let localContext = new ColumnNameTransformConstraintContext(this.context, this.state); - this.enterRule(localContext, 228, HiveSqlParser.RULE_columnNameTransformConstraint); + this.enterRule(localContext, 230, HiveSqlParser.RULE_columnNameTransformConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2240; this.partitionTransformType(); } } @@ -8692,85 +8725,85 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformType(): PartitionTransformTypeContext { let localContext = new PartitionTransformTypeContext(this.context, this.state); - this.enterRule(localContext, 230, HiveSqlParser.RULE_partitionTransformType); + this.enterRule(localContext, 232, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 2255; + this.state = 2260; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2237; + this.state = 2242; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 2238; + this.state = 2243; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 2239; + this.state = 2244; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 2240; + this.state = 2245; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 2241; + this.state = 2246; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2244; + this.state = 2249; this.match(HiveSqlParser.LPAREN); - this.state = 2245; + this.state = 2250; this.columnName(); - this.state = 2246; + this.state = 2251; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2248; + this.state = 2253; _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 350)) { + if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2249; + this.state = 2254; this.match(HiveSqlParser.LPAREN); - this.state = 2250; + this.state = 2255; localContext._value = this.match(HiveSqlParser.Number); - this.state = 2251; + this.state = 2256; this.match(HiveSqlParser.COMMA); - this.state = 2252; + this.state = 2257; this.columnName(); - this.state = 2253; + this.state = 2258; this.match(HiveSqlParser.RPAREN); } break; @@ -8792,69 +8825,39 @@ export class HiveSqlParser extends SQLParserBase { } public tableBuckets(): TableBucketsContext { let localContext = new TableBucketsContext(this.context, this.state); - this.enterRule(localContext, 232, HiveSqlParser.RULE_tableBuckets); + this.enterRule(localContext, 234, HiveSqlParser.RULE_tableBuckets); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2262; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2258; + this.state = 2263; this.match(HiveSqlParser.KW_BY); - this.state = 2259; + this.state = 2264; this.match(HiveSqlParser.LPAREN); - this.state = 2260; + this.state = 2265; localContext._bucketCols = this.columnNameList(); - this.state = 2261; + this.state = 2266; this.match(HiveSqlParser.RPAREN); - this.state = 2268; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 314) { + if (_la === 315) { { - this.state = 2262; + this.state = 2267; this.match(HiveSqlParser.KW_SORTED); - this.state = 2263; + this.state = 2268; this.match(HiveSqlParser.KW_BY); - this.state = 2264; + this.state = 2269; this.match(HiveSqlParser.LPAREN); - this.state = 2265; + this.state = 2270; localContext._sortCols = this.columnNameOrderList(); - this.state = 2266; + this.state = 2271; this.match(HiveSqlParser.RPAREN); } } - this.state = 2270; - this.match(HiveSqlParser.KW_INTO); - this.state = 2271; - localContext._num = this.match(HiveSqlParser.Number); - this.state = 2272; - this.match(HiveSqlParser.KW_BUCKETS); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public tableImplBuckets(): TableImplBucketsContext { - let localContext = new TableImplBucketsContext(this.context, this.state); - this.enterRule(localContext, 234, HiveSqlParser.RULE_tableImplBuckets); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2274; - this.match(HiveSqlParser.KW_CLUSTERED); this.state = 2275; this.match(HiveSqlParser.KW_INTO); this.state = 2276; @@ -8877,36 +8880,66 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableSkewed(): TableSkewedContext { - let localContext = new TableSkewedContext(this.context, this.state); - this.enterRule(localContext, 236, HiveSqlParser.RULE_tableSkewed); + public tableImplBuckets(): TableImplBucketsContext { + let localContext = new TableImplBucketsContext(this.context, this.state); + this.enterRule(localContext, 236, HiveSqlParser.RULE_tableImplBuckets); try { this.enterOuterAlt(localContext, 1); { this.state = 2279; - this.match(HiveSqlParser.KW_SKEWED); + this.match(HiveSqlParser.KW_CLUSTERED); this.state = 2280; - this.match(HiveSqlParser.KW_BY); + this.match(HiveSqlParser.KW_INTO); this.state = 2281; - this.match(HiveSqlParser.LPAREN); + localContext._num = this.match(HiveSqlParser.Number); this.state = 2282; - localContext._skewedCols = this.columnNameList(); - this.state = 2283; - this.match(HiveSqlParser.RPAREN); + this.match(HiveSqlParser.KW_BUCKETS); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableSkewed(): TableSkewedContext { + let localContext = new TableSkewedContext(this.context, this.state); + this.enterRule(localContext, 238, HiveSqlParser.RULE_tableSkewed); + try { + this.enterOuterAlt(localContext, 1); + { this.state = 2284; - this.match(HiveSqlParser.KW_ON); + this.match(HiveSqlParser.KW_SKEWED); this.state = 2285; - this.match(HiveSqlParser.LPAREN); + this.match(HiveSqlParser.KW_BY); this.state = 2286; - localContext._skewedValues = this.skewedValueElement(); + this.match(HiveSqlParser.LPAREN); this.state = 2287; + localContext._skewedCols = this.columnNameList(); + this.state = 2288; this.match(HiveSqlParser.RPAREN); this.state = 2289; + this.match(HiveSqlParser.KW_ON); + this.state = 2290; + this.match(HiveSqlParser.LPAREN); + this.state = 2291; + localContext._skewedValues = this.skewedValueElement(); + this.state = 2292; + this.match(HiveSqlParser.RPAREN); + this.state = 2294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2288; + this.state = 2293; this.storedAsDirs(); } break; @@ -8929,22 +8962,22 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 238, HiveSqlParser.RULE_rowFormat); + this.enterRule(localContext, 240, HiveSqlParser.RULE_rowFormat); try { - this.state = 2293; + this.state = 2298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2291; + this.state = 2296; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2292; + this.state = 2297; this.rowFormatDelimited(); } break; @@ -8966,13 +8999,13 @@ export class HiveSqlParser extends SQLParserBase { } public recordReader(): RecordReaderContext { let localContext = new RecordReaderContext(this.context, this.state); - this.enterRule(localContext, 240, HiveSqlParser.RULE_recordReader); + this.enterRule(localContext, 242, HiveSqlParser.RULE_recordReader); try { this.enterOuterAlt(localContext, 1); { - this.state = 2295; + this.state = 2300; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 2296; + this.state = 2301; this.match(HiveSqlParser.StringLiteral); } } @@ -8992,13 +9025,13 @@ export class HiveSqlParser extends SQLParserBase { } public recordWriter(): RecordWriterContext { let localContext = new RecordWriterContext(this.context, this.state); - this.enterRule(localContext, 242, HiveSqlParser.RULE_recordWriter); + this.enterRule(localContext, 244, HiveSqlParser.RULE_recordWriter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2303; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 2299; + this.state = 2304; this.match(HiveSqlParser.StringLiteral); } } @@ -9018,28 +9051,28 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormatSerde(): RowFormatSerdeContext { let localContext = new RowFormatSerdeContext(this.context, this.state); - this.enterRule(localContext, 244, HiveSqlParser.RULE_rowFormatSerde); + this.enterRule(localContext, 246, HiveSqlParser.RULE_rowFormatSerde); try { this.enterOuterAlt(localContext, 1); { - this.state = 2301; + this.state = 2306; this.match(HiveSqlParser.KW_ROW); - this.state = 2302; + this.state = 2307; this.match(HiveSqlParser.KW_FORMAT); - this.state = 2303; - this.match(HiveSqlParser.KW_SERDE); - this.state = 2304; - localContext._name = this.match(HiveSqlParser.StringLiteral); this.state = 2308; + this.match(HiveSqlParser.KW_SERDE); + this.state = 2309; + localContext._name = this.match(HiveSqlParser.StringLiteral); + this.state = 2313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2305; + this.state = 2310; this.match(HiveSqlParser.KW_WITH); - this.state = 2306; + this.state = 2311; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2307; + this.state = 2312; localContext._serdeprops = this.tableProperties(); } break; @@ -9062,63 +9095,63 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormatDelimited(): RowFormatDelimitedContext { let localContext = new RowFormatDelimitedContext(this.context, this.state); - this.enterRule(localContext, 246, HiveSqlParser.RULE_rowFormatDelimited); + this.enterRule(localContext, 248, HiveSqlParser.RULE_rowFormatDelimited); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2315; this.match(HiveSqlParser.KW_ROW); - this.state = 2311; + this.state = 2316; this.match(HiveSqlParser.KW_FORMAT); - this.state = 2312; + this.state = 2317; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 2314; + this.state = 2319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 2313; + this.state = 2318; this.tableRowFormatFieldIdentifier(); } } - this.state = 2317; + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 2316; + this.state = 2321; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 2320; + this.state = 2325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2319; + this.state = 2324; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 2323; + this.state = 2328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 185) { + if (_la === 186) { { - this.state = 2322; + this.state = 2327; this.tableRowFormatLinesIdentifier(); } } - this.state = 2326; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 218) { + if (_la === 219) { { - this.state = 2325; + this.state = 2330; this.tableRowNullFormat(); } } @@ -9141,22 +9174,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowFormat(): TableRowFormatContext { let localContext = new TableRowFormatContext(this.context, this.state); - this.enterRule(localContext, 248, HiveSqlParser.RULE_tableRowFormat); + this.enterRule(localContext, 250, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 2330; + this.state = 2335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2328; + this.state = 2333; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2329; + this.state = 2334; this.rowFormatSerde(); } break; @@ -9178,13 +9211,13 @@ export class HiveSqlParser extends SQLParserBase { } public tablePropertiesPrefixed(): TablePropertiesPrefixedContext { let localContext = new TablePropertiesPrefixedContext(this.context, this.state); - this.enterRule(localContext, 250, HiveSqlParser.RULE_tablePropertiesPrefixed); + this.enterRule(localContext, 252, HiveSqlParser.RULE_tablePropertiesPrefixed); try { this.enterOuterAlt(localContext, 1); { - this.state = 2332; + this.state = 2337; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2333; + this.state = 2338; this.tableProperties(); } } @@ -9204,15 +9237,15 @@ export class HiveSqlParser extends SQLParserBase { } public tableProperties(): TablePropertiesContext { let localContext = new TablePropertiesContext(this.context, this.state); - this.enterRule(localContext, 252, HiveSqlParser.RULE_tableProperties); + this.enterRule(localContext, 254, HiveSqlParser.RULE_tableProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 2335; + this.state = 2340; this.match(HiveSqlParser.LPAREN); - this.state = 2336; + this.state = 2341; this.tablePropertiesList(); - this.state = 2337; + this.state = 2342; this.match(HiveSqlParser.RPAREN); } } @@ -9232,30 +9265,30 @@ export class HiveSqlParser extends SQLParserBase { } public tablePropertiesList(): TablePropertiesListContext { let localContext = new TablePropertiesListContext(this.context, this.state); - this.enterRule(localContext, 254, HiveSqlParser.RULE_tablePropertiesList); + this.enterRule(localContext, 256, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2355; + this.state = 2360; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2339; - this.keyValueProperty(); this.state = 2344; + this.keyValueProperty(); + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2340; + this.state = 2345; this.match(HiveSqlParser.COMMA); - this.state = 2341; + this.state = 2346; this.keyValueProperty(); } } - this.state = 2346; + this.state = 2351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9264,21 +9297,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2347; - this.keyProperty(); this.state = 2352; + this.keyProperty(); + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2348; + this.state = 2353; this.match(HiveSqlParser.COMMA); - this.state = 2349; + this.state = 2354; this.keyProperty(); } } - this.state = 2354; + this.state = 2359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9302,15 +9335,15 @@ export class HiveSqlParser extends SQLParserBase { } public keyValueProperty(): KeyValuePropertyContext { let localContext = new KeyValuePropertyContext(this.context, this.state); - this.enterRule(localContext, 256, HiveSqlParser.RULE_keyValueProperty); + this.enterRule(localContext, 258, HiveSqlParser.RULE_keyValueProperty); try { this.enterOuterAlt(localContext, 1); { - this.state = 2357; + this.state = 2362; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2358; + this.state = 2363; this.match(HiveSqlParser.EQUAL); - this.state = 2359; + this.state = 2364; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9330,11 +9363,11 @@ export class HiveSqlParser extends SQLParserBase { } public keyProperty(): KeyPropertyContext { let localContext = new KeyPropertyContext(this.context, this.state); - this.enterRule(localContext, 258, HiveSqlParser.RULE_keyProperty); + this.enterRule(localContext, 260, HiveSqlParser.RULE_keyProperty); try { this.enterOuterAlt(localContext, 1); { - this.state = 2361; + this.state = 2366; localContext._key = this.match(HiveSqlParser.StringLiteral); } } @@ -9354,29 +9387,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowFormatFieldIdentifier(): TableRowFormatFieldIdentifierContext { let localContext = new TableRowFormatFieldIdentifierContext(this.context, this.state); - this.enterRule(localContext, 260, HiveSqlParser.RULE_tableRowFormatFieldIdentifier); + this.enterRule(localContext, 262, HiveSqlParser.RULE_tableRowFormatFieldIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2363; + this.state = 2368; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2364; + this.state = 2369; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2365; - this.match(HiveSqlParser.KW_BY); - this.state = 2366; - localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); this.state = 2370; + this.match(HiveSqlParser.KW_BY); + this.state = 2371; + localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2367; + this.state = 2372; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2368; + this.state = 2373; this.match(HiveSqlParser.KW_BY); - this.state = 2369; + this.state = 2374; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9399,19 +9432,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowFormatCollItemsIdentifier(): TableRowFormatCollItemsIdentifierContext { let localContext = new TableRowFormatCollItemsIdentifierContext(this.context, this.state); - this.enterRule(localContext, 262, HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier); + this.enterRule(localContext, 264, HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2372; + this.state = 2377; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2373; + this.state = 2378; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2374; + this.state = 2379; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2375; + this.state = 2380; this.match(HiveSqlParser.KW_BY); - this.state = 2376; + this.state = 2381; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9431,19 +9464,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowFormatMapKeysIdentifier(): TableRowFormatMapKeysIdentifierContext { let localContext = new TableRowFormatMapKeysIdentifierContext(this.context, this.state); - this.enterRule(localContext, 264, HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier); + this.enterRule(localContext, 266, HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2378; + this.state = 2383; this.match(HiveSqlParser.KW_MAP); - this.state = 2379; + this.state = 2384; this.match(HiveSqlParser.KW_KEYS); - this.state = 2380; + this.state = 2385; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2381; + this.state = 2386; this.match(HiveSqlParser.KW_BY); - this.state = 2382; + this.state = 2387; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9463,17 +9496,17 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowFormatLinesIdentifier(): TableRowFormatLinesIdentifierContext { let localContext = new TableRowFormatLinesIdentifierContext(this.context, this.state); - this.enterRule(localContext, 266, HiveSqlParser.RULE_tableRowFormatLinesIdentifier); + this.enterRule(localContext, 268, HiveSqlParser.RULE_tableRowFormatLinesIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2384; + this.state = 2389; this.match(HiveSqlParser.KW_LINES); - this.state = 2385; + this.state = 2390; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2386; + this.state = 2391; this.match(HiveSqlParser.KW_BY); - this.state = 2387; + this.state = 2392; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9493,17 +9526,17 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowNullFormat(): TableRowNullFormatContext { let localContext = new TableRowNullFormatContext(this.context, this.state); - this.enterRule(localContext, 268, HiveSqlParser.RULE_tableRowNullFormat); + this.enterRule(localContext, 270, HiveSqlParser.RULE_tableRowNullFormat); try { this.enterOuterAlt(localContext, 1); { - this.state = 2389; + this.state = 2394; this.match(HiveSqlParser.KW_NULL); - this.state = 2390; + this.state = 2395; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2391; + this.state = 2396; this.match(HiveSqlParser.KW_AS); - this.state = 2392; + this.state = 2397; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9523,39 +9556,39 @@ export class HiveSqlParser extends SQLParserBase { } public tableFileFormat(): TableFileFormatContext { let localContext = new TableFileFormatContext(this.context, this.state); - this.enterRule(localContext, 270, HiveSqlParser.RULE_tableFileFormat); + this.enterRule(localContext, 272, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2435; + this.state = 2440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 204, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2394; - this.match(HiveSqlParser.KW_STORED); - this.state = 2395; - this.match(HiveSqlParser.KW_AS); - this.state = 2396; - this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2397; - localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2398; - this.match(HiveSqlParser.KW_OUTPUTFORMAT); this.state = 2399; - localContext._outFmt = this.match(HiveSqlParser.StringLiteral); + this.match(HiveSqlParser.KW_STORED); + this.state = 2400; + this.match(HiveSqlParser.KW_AS); + this.state = 2401; + this.match(HiveSqlParser.KW_INPUTFORMAT); + this.state = 2402; + localContext._inFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 2403; + this.match(HiveSqlParser.KW_OUTPUTFORMAT); this.state = 2404; + localContext._outFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 2409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2400; + this.state = 2405; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2401; + this.state = 2406; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2402; + this.state = 2407; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2403; + this.state = 2408; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9565,36 +9598,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2406; + this.state = 2411; this.match(HiveSqlParser.KW_STORED); - this.state = 2407; - this.match(HiveSqlParser.KW_BY); - this.state = 2408; - localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); this.state = 2412; + this.match(HiveSqlParser.KW_BY); + this.state = 2413; + localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); + this.state = 2417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: { - this.state = 2409; + this.state = 2414; this.match(HiveSqlParser.KW_WITH); - this.state = 2410; + this.state = 2415; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2411; + this.state = 2416; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2417; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 2414; + this.state = 2419; this.match(HiveSqlParser.KW_STORED); - this.state = 2415; + this.state = 2420; this.match(HiveSqlParser.KW_AS); - this.state = 2416; + this.state = 2421; localContext._fileformat = this.id_(); } } @@ -9604,36 +9637,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2419; + this.state = 2424; this.match(HiveSqlParser.KW_STORED); - this.state = 2420; - this.match(HiveSqlParser.KW_BY); - this.state = 2421; - localContext._genericSpec = this.id_(); this.state = 2425; + this.match(HiveSqlParser.KW_BY); + this.state = 2426; + localContext._genericSpec = this.id_(); + this.state = 2430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2422; + this.state = 2427; this.match(HiveSqlParser.KW_WITH); - this.state = 2423; + this.state = 2428; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2424; + this.state = 2429; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2430; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 2427; + this.state = 2432; this.match(HiveSqlParser.KW_STORED); - this.state = 2428; + this.state = 2433; this.match(HiveSqlParser.KW_AS); - this.state = 2429; + this.state = 2434; localContext._fileformat = this.id_(); } } @@ -9643,11 +9676,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2432; + this.state = 2437; this.match(HiveSqlParser.KW_STORED); - this.state = 2433; + this.state = 2438; this.match(HiveSqlParser.KW_AS); - this.state = 2434; + this.state = 2439; localContext._genericSpec = this.id_(); } break; @@ -9669,13 +9702,13 @@ export class HiveSqlParser extends SQLParserBase { } public tableLocation(): TableLocationContext { let localContext = new TableLocationContext(this.context, this.state); - this.enterRule(localContext, 272, HiveSqlParser.RULE_tableLocation); + this.enterRule(localContext, 274, HiveSqlParser.RULE_tableLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2437; + this.state = 2442; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2438; + this.state = 2443; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -9695,26 +9728,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeList(): ColumnNameTypeListContext { let localContext = new ColumnNameTypeListContext(this.context, this.state); - this.enterRule(localContext, 274, HiveSqlParser.RULE_columnNameTypeList); + this.enterRule(localContext, 276, HiveSqlParser.RULE_columnNameTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2440; - this.columnNameType(); this.state = 2445; + this.columnNameType(); + this.state = 2450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2441; + this.state = 2446; this.match(HiveSqlParser.COMMA); - this.state = 2442; + this.state = 2447; this.columnNameType(); } } - this.state = 2447; + this.state = 2452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9736,26 +9769,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraintList(): ColumnNameTypeOrConstraintListContext { let localContext = new ColumnNameTypeOrConstraintListContext(this.context, this.state); - this.enterRule(localContext, 276, HiveSqlParser.RULE_columnNameTypeOrConstraintList); + this.enterRule(localContext, 278, HiveSqlParser.RULE_columnNameTypeOrConstraintList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2448; - this.columnNameTypeOrConstraint(); this.state = 2453; + this.columnNameTypeOrConstraint(); + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2449; + this.state = 2454; this.match(HiveSqlParser.COMMA); - this.state = 2450; + this.state = 2455; this.columnNameTypeOrConstraint(); } } - this.state = 2455; + this.state = 2460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9777,26 +9810,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonTypeList(): ColumnNameColonTypeListContext { let localContext = new ColumnNameColonTypeListContext(this.context, this.state); - this.enterRule(localContext, 278, HiveSqlParser.RULE_columnNameColonTypeList); + this.enterRule(localContext, 280, HiveSqlParser.RULE_columnNameColonTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2456; - this.columnNameColonType(); this.state = 2461; + this.columnNameColonType(); + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2457; + this.state = 2462; this.match(HiveSqlParser.COMMA); - this.state = 2458; + this.state = 2463; this.columnNameColonType(); } } - this.state = 2463; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9818,26 +9851,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 280, HiveSqlParser.RULE_columnNameList); + this.enterRule(localContext, 282, HiveSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2464; - this.columnName(); this.state = 2469; + this.columnName(); + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2465; + this.state = 2470; this.match(HiveSqlParser.COMMA); - this.state = 2466; + this.state = 2471; this.columnName(); } } - this.state = 2471; + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9859,32 +9892,32 @@ export class HiveSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 282, HiveSqlParser.RULE_columnName); + this.enterRule(localContext, 284, HiveSqlParser.RULE_columnName); try { let alternative: number; - this.state = 2481; + this.state = 2486; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2472; - this.id_(); this.state = 2477; + this.id_(); + this.state = 2482; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2473; + this.state = 2478; this.match(HiveSqlParser.DOT); - this.state = 2474; + this.state = 2479; this.id_(); } } } - this.state = 2479; + this.state = 2484; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } @@ -9893,7 +9926,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2480; + this.state = 2485; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -9917,11 +9950,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 284, HiveSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 286, HiveSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2488; this.id_(); } } @@ -9941,52 +9974,52 @@ export class HiveSqlParser extends SQLParserBase { } public extColumnName(): ExtColumnNameContext { let localContext = new ExtColumnNameContext(this.context, this.state); - this.enterRule(localContext, 286, HiveSqlParser.RULE_extColumnName); + this.enterRule(localContext, 288, HiveSqlParser.RULE_extColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2485; + this.state = 2490; this.columnName(); - this.state = 2495; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 394) { + while (_la === 395) { { { - this.state = 2486; - this.match(HiveSqlParser.DOT); this.state = 2491; + this.match(HiveSqlParser.DOT); + this.state = 2496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2487; + this.state = 2492; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2488; + this.state = 2493; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2489; + this.state = 2494; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2490; + this.state = 2495; this.id_(); } break; } } } - this.state = 2497; + this.state = 2502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10008,26 +10041,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrderList(): ColumnNameOrderListContext { let localContext = new ColumnNameOrderListContext(this.context, this.state); - this.enterRule(localContext, 288, HiveSqlParser.RULE_columnNameOrderList); + this.enterRule(localContext, 290, HiveSqlParser.RULE_columnNameOrderList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2498; - this.columnNameOrder(); this.state = 2503; + this.columnNameOrder(); + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2499; + this.state = 2504; this.match(HiveSqlParser.COMMA); - this.state = 2500; + this.state = 2505; this.columnNameOrder(); } } - this.state = 2505; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10049,15 +10082,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnParenthesesList(): ColumnParenthesesListContext { let localContext = new ColumnParenthesesListContext(this.context, this.state); - this.enterRule(localContext, 290, HiveSqlParser.RULE_columnParenthesesList); + this.enterRule(localContext, 292, HiveSqlParser.RULE_columnParenthesesList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2506; + this.state = 2511; this.match(HiveSqlParser.LPAREN); - this.state = 2507; + this.state = 2512; this.columnNameList(); - this.state = 2508; + this.state = 2513; this.match(HiveSqlParser.RPAREN); } } @@ -10077,10 +10110,10 @@ export class HiveSqlParser extends SQLParserBase { } public enableValidateSpecification(): EnableValidateSpecificationContext { let localContext = new EnableValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 292, HiveSqlParser.RULE_enableValidateSpecification); + this.enterRule(localContext, 294, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2515; + this.state = 2520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -10089,14 +10122,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2510; + this.state = 2515; this.enableSpecification(); - this.state = 2512; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216 || _la === 372) { + if (_la === 217 || _la === 373) { { - this.state = 2511; + this.state = 2516; this.validateSpecification(); } } @@ -10107,7 +10140,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2514; + this.state = 2519; this.enforcedSpecification(); } break; @@ -10131,16 +10164,16 @@ export class HiveSqlParser extends SQLParserBase { } public enableSpecification(): EnableSpecificationContext { let localContext = new EnableSpecificationContext(this.context, this.state); - this.enterRule(localContext, 294, HiveSqlParser.RULE_enableSpecification); + this.enterRule(localContext, 296, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2519; + this.state = 2524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2517; + this.state = 2522; this.enable(); } break; @@ -10148,7 +10181,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2518; + this.state = 2523; this.disable(); } break; @@ -10172,14 +10205,14 @@ export class HiveSqlParser extends SQLParserBase { } public validateSpecification(): ValidateSpecificationContext { let localContext = new ValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 296, HiveSqlParser.RULE_validateSpecification); + this.enterRule(localContext, 298, HiveSqlParser.RULE_validateSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2521; + this.state = 2526; _la = this.tokenStream.LA(1); - if(!(_la === 216 || _la === 372)) { + if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); } else { @@ -10204,24 +10237,24 @@ export class HiveSqlParser extends SQLParserBase { } public enforcedSpecification(): EnforcedSpecificationContext { let localContext = new EnforcedSpecificationContext(this.context, this.state); - this.enterRule(localContext, 298, HiveSqlParser.RULE_enforcedSpecification); + this.enterRule(localContext, 300, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2526; + this.state = 2531; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2523; + this.state = 2528; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2524; + this.state = 2529; this.match(HiveSqlParser.KW_NOT); - this.state = 2525; + this.state = 2530; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10245,14 +10278,14 @@ export class HiveSqlParser extends SQLParserBase { } public relySpecification(): RelySpecificationContext { let localContext = new RelySpecificationContext(this.context, this.state); - this.enterRule(localContext, 300, HiveSqlParser.RULE_relySpecification); + this.enterRule(localContext, 302, HiveSqlParser.RULE_relySpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2528; + this.state = 2533; _la = this.tokenStream.LA(1); - if(!(_la === 213 || _la === 271)) { + if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); } else { @@ -10277,31 +10310,31 @@ export class HiveSqlParser extends SQLParserBase { } public createConstraint(): CreateConstraintContext { let localContext = new CreateConstraintContext(this.context, this.state); - this.enterRule(localContext, 302, HiveSqlParser.RULE_createConstraint); + this.enterRule(localContext, 304, HiveSqlParser.RULE_createConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2532; + this.state = 2537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2530; + this.state = 2535; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2531; + this.state = 2536; localContext._constraintName = this.id_(); } } - this.state = 2534; + this.state = 2539; this.tableLevelConstraint(); - this.state = 2536; + this.state = 2541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { + if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2535; + this.state = 2540; this.constraintOptsCreate(); } } @@ -10324,22 +10357,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterConstraintWithName(): AlterConstraintWithNameContext { let localContext = new AlterConstraintWithNameContext(this.context, this.state); - this.enterRule(localContext, 304, HiveSqlParser.RULE_alterConstraintWithName); + this.enterRule(localContext, 306, HiveSqlParser.RULE_alterConstraintWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2538; + this.state = 2543; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2539; + this.state = 2544; localContext._constraintName = this.id_(); - this.state = 2540; + this.state = 2545; this.tableLevelConstraint(); - this.state = 2542; + this.state = 2547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2541; + this.state = 2546; this.constraintOptsAlter(); } break; @@ -10362,23 +10395,23 @@ export class HiveSqlParser extends SQLParserBase { } public tableLevelConstraint(): TableLevelConstraintContext { let localContext = new TableLevelConstraintContext(this.context, this.state); - this.enterRule(localContext, 306, HiveSqlParser.RULE_tableLevelConstraint); + this.enterRule(localContext, 308, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2546; + this.state = 2551; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2544; + this.state = 2549; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2545; + this.state = 2550; this.checkConstraint(); } break; @@ -10402,13 +10435,13 @@ export class HiveSqlParser extends SQLParserBase { } public pkUkConstraint(): PkUkConstraintContext { let localContext = new PkUkConstraintContext(this.context, this.state); - this.enterRule(localContext, 308, HiveSqlParser.RULE_pkUkConstraint); + this.enterRule(localContext, 310, HiveSqlParser.RULE_pkUkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2553; this.tableConstraintType(); - this.state = 2549; + this.state = 2554; localContext._pkCols = this.columnParenthesesList(); } } @@ -10428,17 +10461,17 @@ export class HiveSqlParser extends SQLParserBase { } public checkConstraint(): CheckConstraintContext { let localContext = new CheckConstraintContext(this.context, this.state); - this.enterRule(localContext, 310, HiveSqlParser.RULE_checkConstraint); + this.enterRule(localContext, 312, HiveSqlParser.RULE_checkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2551; + this.state = 2556; this.match(HiveSqlParser.KW_CHECK); - this.state = 2552; + this.state = 2557; this.match(HiveSqlParser.LPAREN); - this.state = 2553; + this.state = 2558; this.expression(); - this.state = 2554; + this.state = 2559; this.match(HiveSqlParser.RPAREN); } } @@ -10458,41 +10491,41 @@ export class HiveSqlParser extends SQLParserBase { } public createForeignKey(): CreateForeignKeyContext { let localContext = new CreateForeignKeyContext(this.context, this.state); - this.enterRule(localContext, 312, HiveSqlParser.RULE_createForeignKey); + this.enterRule(localContext, 314, HiveSqlParser.RULE_createForeignKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2558; + this.state = 2563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2556; + this.state = 2561; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2557; + this.state = 2562; localContext._constraintName = this.id_(); } } - this.state = 2560; - this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2561; - this.match(HiveSqlParser.KW_KEY); - this.state = 2562; - localContext._fkCols = this.columnParenthesesList(); - this.state = 2563; - this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2564; - localContext._tabName = this.tableName(); this.state = 2565; - localContext._parCols = this.columnParenthesesList(); + this.match(HiveSqlParser.KW_FOREIGN); + this.state = 2566; + this.match(HiveSqlParser.KW_KEY); this.state = 2567; + localContext._fkCols = this.columnParenthesesList(); + this.state = 2568; + this.match(HiveSqlParser.KW_REFERENCES); + this.state = 2569; + localContext._tabName = this.tableName(); + this.state = 2570; + localContext._parCols = this.columnParenthesesList(); + this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { + if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2566; + this.state = 2571; this.constraintOptsCreate(); } } @@ -10515,32 +10548,32 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyWithName(): AlterForeignKeyWithNameContext { let localContext = new AlterForeignKeyWithNameContext(this.context, this.state); - this.enterRule(localContext, 314, HiveSqlParser.RULE_alterForeignKeyWithName); + this.enterRule(localContext, 316, HiveSqlParser.RULE_alterForeignKeyWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; - this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2570; - localContext._constraintName = this.id_(); - this.state = 2571; - this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2572; - this.match(HiveSqlParser.KW_KEY); - this.state = 2573; - localContext._fkCols = this.columnParenthesesList(); this.state = 2574; - this.match(HiveSqlParser.KW_REFERENCES); + this.match(HiveSqlParser.KW_CONSTRAINT); this.state = 2575; - localContext._tabName = this.tableName(); + localContext._constraintName = this.id_(); this.state = 2576; - localContext._parCols = this.columnParenthesesList(); + this.match(HiveSqlParser.KW_FOREIGN); + this.state = 2577; + this.match(HiveSqlParser.KW_KEY); this.state = 2578; + localContext._fkCols = this.columnParenthesesList(); + this.state = 2579; + this.match(HiveSqlParser.KW_REFERENCES); + this.state = 2580; + localContext._tabName = this.tableName(); + this.state = 2581; + localContext._parCols = this.columnParenthesesList(); + this.state = 2583; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 2577; + this.state = 2582; this.constraintOptsAlter(); } break; @@ -10563,9 +10596,9 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueElement(): SkewedValueElementContext { let localContext = new SkewedValueElementContext(this.context, this.state); - this.enterRule(localContext, 316, HiveSqlParser.RULE_skewedValueElement); + this.enterRule(localContext, 318, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2582; + this.state = 2587; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -10584,14 +10617,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2585; this.skewedColumnValues(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2581; + this.state = 2586; this.skewedColumnValuePairList(); } break; @@ -10615,26 +10648,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePairList(): SkewedColumnValuePairListContext { let localContext = new SkewedColumnValuePairListContext(this.context, this.state); - this.enterRule(localContext, 318, HiveSqlParser.RULE_skewedColumnValuePairList); + this.enterRule(localContext, 320, HiveSqlParser.RULE_skewedColumnValuePairList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2584; - this.skewedColumnValuePair(); this.state = 2589; + this.skewedColumnValuePair(); + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2585; + this.state = 2590; this.match(HiveSqlParser.COMMA); - this.state = 2586; + this.state = 2591; this.skewedColumnValuePair(); } } - this.state = 2591; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10656,15 +10689,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePair(): SkewedColumnValuePairContext { let localContext = new SkewedColumnValuePairContext(this.context, this.state); - this.enterRule(localContext, 320, HiveSqlParser.RULE_skewedColumnValuePair); + this.enterRule(localContext, 322, HiveSqlParser.RULE_skewedColumnValuePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 2592; + this.state = 2597; this.match(HiveSqlParser.LPAREN); - this.state = 2593; + this.state = 2598; localContext._colValues = this.skewedColumnValues(); - this.state = 2594; + this.state = 2599; this.match(HiveSqlParser.RPAREN); } } @@ -10684,26 +10717,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValues(): SkewedColumnValuesContext { let localContext = new SkewedColumnValuesContext(this.context, this.state); - this.enterRule(localContext, 322, HiveSqlParser.RULE_skewedColumnValues); + this.enterRule(localContext, 324, HiveSqlParser.RULE_skewedColumnValues); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2596; - this.skewedColumnValue(); this.state = 2601; + this.skewedColumnValue(); + this.state = 2606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2597; + this.state = 2602; this.match(HiveSqlParser.COMMA); - this.state = 2598; + this.state = 2603; this.skewedColumnValue(); } } - this.state = 2603; + this.state = 2608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10725,11 +10758,11 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValue(): SkewedColumnValueContext { let localContext = new SkewedColumnValueContext(this.context, this.state); - this.enterRule(localContext, 324, HiveSqlParser.RULE_skewedColumnValue); + this.enterRule(localContext, 326, HiveSqlParser.RULE_skewedColumnValue); try { this.enterOuterAlt(localContext, 1); { - this.state = 2604; + this.state = 2609; this.constant(); } } @@ -10749,9 +10782,9 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueLocationElement(): SkewedValueLocationElementContext { let localContext = new SkewedValueLocationElementContext(this.context, this.state); - this.enterRule(localContext, 326, HiveSqlParser.RULE_skewedValueLocationElement); + this.enterRule(localContext, 328, HiveSqlParser.RULE_skewedValueLocationElement); try { - this.state = 2608; + this.state = 2613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -10770,14 +10803,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2611; this.skewedColumnValue(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2607; + this.state = 2612; this.skewedColumnValuePair(); } break; @@ -10801,12 +10834,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecification(): OrderSpecificationContext { let localContext = new OrderSpecificationContext(this.context, this.state); - this.enterRule(localContext, 328, HiveSqlParser.RULE_orderSpecification); + this.enterRule(localContext, 330, HiveSqlParser.RULE_orderSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2610; + this.state = 2615; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10833,14 +10866,14 @@ export class HiveSqlParser extends SQLParserBase { } public nullOrdering(): NullOrderingContext { let localContext = new NullOrderingContext(this.context, this.state); - this.enterRule(localContext, 330, HiveSqlParser.RULE_nullOrdering); + this.enterRule(localContext, 332, HiveSqlParser.RULE_nullOrdering); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2612; + this.state = 2617; this.match(HiveSqlParser.KW_NULLS); - this.state = 2613; + this.state = 2618; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10867,29 +10900,29 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrder(): ColumnNameOrderContext { let localContext = new ColumnNameOrderContext(this.context, this.state); - this.enterRule(localContext, 332, HiveSqlParser.RULE_columnNameOrder); + this.enterRule(localContext, 334, HiveSqlParser.RULE_columnNameOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2620; this.columnName(); - this.state = 2617; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2616; + this.state = 2621; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2620; + this.state = 2625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 219) { + if (_la === 220) { { - this.state = 2619; + this.state = 2624; localContext._nullSpec = this.nullOrdering(); } } @@ -10912,26 +10945,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCommentList(): ColumnNameCommentListContext { let localContext = new ColumnNameCommentListContext(this.context, this.state); - this.enterRule(localContext, 334, HiveSqlParser.RULE_columnNameCommentList); + this.enterRule(localContext, 336, HiveSqlParser.RULE_columnNameCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2622; - this.columnNameComment(); this.state = 2627; + this.columnNameComment(); + this.state = 2632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2623; + this.state = 2628; this.match(HiveSqlParser.COMMA); - this.state = 2624; + this.state = 2629; this.columnNameComment(); } } - this.state = 2629; + this.state = 2634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10953,21 +10986,21 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameComment(): ColumnNameCommentContext { let localContext = new ColumnNameCommentContext(this.context, this.state); - this.enterRule(localContext, 336, HiveSqlParser.RULE_columnNameComment); + this.enterRule(localContext, 338, HiveSqlParser.RULE_columnNameComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2630; + this.state = 2635; localContext._colName = this.columnNameCreate(); - this.state = 2633; + this.state = 2638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2631; + this.state = 2636; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2632; + this.state = 2637; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10990,12 +11023,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecificationRewrite(): OrderSpecificationRewriteContext { let localContext = new OrderSpecificationRewriteContext(this.context, this.state); - this.enterRule(localContext, 338, HiveSqlParser.RULE_orderSpecificationRewrite); + this.enterRule(localContext, 340, HiveSqlParser.RULE_orderSpecificationRewrite); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2635; + this.state = 2640; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -11022,43 +11055,43 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrder(): ColumnRefOrderContext { let localContext = new ColumnRefOrderContext(this.context, this.state); - this.enterRule(localContext, 340, HiveSqlParser.RULE_columnRefOrder); + this.enterRule(localContext, 342, HiveSqlParser.RULE_columnRefOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2639; + this.state = 2644; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2637; + this.state = 2642; this.columnName(); } break; case 2: { - this.state = 2638; + this.state = 2643; this.expression(); } break; } - this.state = 2642; + this.state = 2647; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2641; + this.state = 2646; localContext._orderSpec = this.orderSpecificationRewrite(); } break; } - this.state = 2645; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 219) { + if (_la === 220) { { - this.state = 2644; + this.state = 2649; localContext._nullSpec = this.nullOrdering(); } } @@ -11081,23 +11114,23 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameType(): ColumnNameTypeContext { let localContext = new ColumnNameTypeContext(this.context, this.state); - this.enterRule(localContext, 342, HiveSqlParser.RULE_columnNameType); + this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2647; + this.state = 2652; localContext._colName = this.columnNameCreate(); - this.state = 2648; + this.state = 2653; this.colType(); - this.state = 2651; + this.state = 2656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2649; + this.state = 2654; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2650; + this.state = 2655; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11120,22 +11153,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); - this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameTypeOrConstraint); + this.enterRule(localContext, 346, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2655; + this.state = 2660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2653; + this.state = 2658; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2654; + this.state = 2659; this.columnNameTypeConstraint(); } break; @@ -11157,22 +11190,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 346, HiveSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 348, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2659; + this.state = 2664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2657; + this.state = 2662; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2658; + this.state = 2663; this.createConstraint(); } break; @@ -11194,33 +11227,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); - this.enterRule(localContext, 348, HiveSqlParser.RULE_columnNameTypeConstraint); + this.enterRule(localContext, 350, HiveSqlParser.RULE_columnNameTypeConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2661; + this.state = 2666; localContext._colName = this.columnNameCreate(); - this.state = 2662; + this.state = 2667; this.colType(); - this.state = 2664; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 40 || _la === 55 || _la === 83 || _la === 215 || _la === 250 || _la === 268 || _la === 357) { + if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2663; + this.state = 2668; this.columnConstraint(); } } - this.state = 2668; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2666; + this.state = 2671; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2667; + this.state = 2672; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11243,22 +11276,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 350, HiveSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 352, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2672; + this.state = 2677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2670; + this.state = 2675; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2671; + this.state = 2676; this.colConstraint(); } break; @@ -11280,39 +11313,39 @@ export class HiveSqlParser extends SQLParserBase { } public foreignKeyConstraint(): ForeignKeyConstraintContext { let localContext = new ForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 352, HiveSqlParser.RULE_foreignKeyConstraint); + this.enterRule(localContext, 354, HiveSqlParser.RULE_foreignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2676; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2674; + this.state = 2679; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2675; + this.state = 2680; localContext._constraintName = this.id_(); } } - this.state = 2678; + this.state = 2683; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2679; - localContext._tabName = this.tableName(); - this.state = 2680; - this.match(HiveSqlParser.LPAREN); - this.state = 2681; - localContext._colName = this.columnName(); - this.state = 2682; - this.match(HiveSqlParser.RPAREN); this.state = 2684; + localContext._tabName = this.tableName(); + this.state = 2685; + this.match(HiveSqlParser.LPAREN); + this.state = 2686; + localContext._colName = this.columnName(); + this.state = 2687; + this.match(HiveSqlParser.RPAREN); + this.state = 2689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { + if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2683; + this.state = 2688; this.constraintOptsCreate(); } } @@ -11335,31 +11368,31 @@ export class HiveSqlParser extends SQLParserBase { } public colConstraint(): ColConstraintContext { let localContext = new ColConstraintContext(this.context, this.state); - this.enterRule(localContext, 354, HiveSqlParser.RULE_colConstraint); + this.enterRule(localContext, 356, HiveSqlParser.RULE_colConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2688; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2686; + this.state = 2691; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2687; + this.state = 2692; localContext._constraintName = this.id_(); } } - this.state = 2690; + this.state = 2695; this.columnConstraintType(); - this.state = 2692; + this.state = 2697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 215) { + if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2691; + this.state = 2696; this.constraintOptsCreate(); } } @@ -11382,22 +11415,22 @@ export class HiveSqlParser extends SQLParserBase { } public alterColumnConstraint(): AlterColumnConstraintContext { let localContext = new AlterColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 356, HiveSqlParser.RULE_alterColumnConstraint); + this.enterRule(localContext, 358, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2696; + this.state = 2701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2694; + this.state = 2699; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2695; + this.state = 2700; this.alterColConstraint(); } break; @@ -11419,39 +11452,39 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext { let localContext = new AlterForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 358, HiveSqlParser.RULE_alterForeignKeyConstraint); + this.enterRule(localContext, 360, HiveSqlParser.RULE_alterForeignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2700; + this.state = 2705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2698; + this.state = 2703; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2699; + this.state = 2704; localContext._constraintName = this.id_(); } } - this.state = 2702; + this.state = 2707; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2703; - localContext._tabName = this.tableName(); - this.state = 2704; - this.match(HiveSqlParser.LPAREN); - this.state = 2705; - localContext._colName = this.columnName(); - this.state = 2706; - this.match(HiveSqlParser.RPAREN); this.state = 2708; + localContext._tabName = this.tableName(); + this.state = 2709; + this.match(HiveSqlParser.LPAREN); + this.state = 2710; + localContext._colName = this.columnName(); + this.state = 2711; + this.match(HiveSqlParser.RPAREN); + this.state = 2713; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2707; + this.state = 2712; this.constraintOptsAlter(); } break; @@ -11474,31 +11507,31 @@ export class HiveSqlParser extends SQLParserBase { } public alterColConstraint(): AlterColConstraintContext { let localContext = new AlterColConstraintContext(this.context, this.state); - this.enterRule(localContext, 360, HiveSqlParser.RULE_alterColConstraint); + this.enterRule(localContext, 362, HiveSqlParser.RULE_alterColConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2712; + this.state = 2717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2710; + this.state = 2715; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2711; + this.state = 2716; localContext._constraintName = this.id_(); } } - this.state = 2714; + this.state = 2719; this.columnConstraintType(); - this.state = 2716; + this.state = 2721; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2715; + this.state = 2720; this.constraintOptsAlter(); } break; @@ -11521,33 +11554,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraintType(): ColumnConstraintTypeContext { let localContext = new ColumnConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 362, HiveSqlParser.RULE_columnConstraintType); + this.enterRule(localContext, 364, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2724; + this.state = 2729; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2718; + this.state = 2723; this.match(HiveSqlParser.KW_NOT); - this.state = 2719; + this.state = 2724; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2720; + this.state = 2725; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2721; + this.state = 2726; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2722; + this.state = 2727; this.checkConstraint(); } break; @@ -11555,7 +11588,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2723; + this.state = 2728; this.tableConstraintType(); } break; @@ -11579,29 +11612,29 @@ export class HiveSqlParser extends SQLParserBase { } public defaultVal(): DefaultValContext { let localContext = new DefaultValContext(this.context, this.state); - this.enterRule(localContext, 364, HiveSqlParser.RULE_defaultVal); + this.enterRule(localContext, 366, HiveSqlParser.RULE_defaultVal); try { - this.state = 2729; + this.state = 2734; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2726; + this.state = 2731; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2732; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2728; + this.state = 2733; this.castExpression(); } break; @@ -11623,24 +11656,24 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraintType(): TableConstraintTypeContext { let localContext = new TableConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 366, HiveSqlParser.RULE_tableConstraintType); + this.enterRule(localContext, 368, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2734; + this.state = 2739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2731; + this.state = 2736; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2732; + this.state = 2737; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2733; + this.state = 2738; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11664,19 +11697,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsCreate(): ConstraintOptsCreateContext { let localContext = new ConstraintOptsCreateContext(this.context, this.state); - this.enterRule(localContext, 368, HiveSqlParser.RULE_constraintOptsCreate); + this.enterRule(localContext, 370, HiveSqlParser.RULE_constraintOptsCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2741; this.enableValidateSpecification(); - this.state = 2738; + this.state = 2743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 213 || _la === 271) { + if (_la === 214 || _la === 272) { { - this.state = 2737; + this.state = 2742; this.relySpecification(); } } @@ -11699,19 +11732,19 @@ export class HiveSqlParser extends SQLParserBase { } public constraintOptsAlter(): ConstraintOptsAlterContext { let localContext = new ConstraintOptsAlterContext(this.context, this.state); - this.enterRule(localContext, 370, HiveSqlParser.RULE_constraintOptsAlter); + this.enterRule(localContext, 372, HiveSqlParser.RULE_constraintOptsAlter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2740; + this.state = 2745; this.enableValidateSpecification(); - this.state = 2742; + this.state = 2747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 213 || _la === 271) { + if (_la === 214 || _la === 272) { { - this.state = 2741; + this.state = 2746; this.relySpecification(); } } @@ -11734,25 +11767,25 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonType(): ColumnNameColonTypeContext { let localContext = new ColumnNameColonTypeContext(this.context, this.state); - this.enterRule(localContext, 372, HiveSqlParser.RULE_columnNameColonType); + this.enterRule(localContext, 374, HiveSqlParser.RULE_columnNameColonType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2744; - localContext._colName = this.columnNameCreate(); - this.state = 2745; - this.match(HiveSqlParser.COLON); - this.state = 2746; - this.colType(); this.state = 2749; + localContext._colName = this.columnNameCreate(); + this.state = 2750; + this.match(HiveSqlParser.COLON); + this.state = 2751; + this.colType(); + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2747; + this.state = 2752; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2748; + this.state = 2753; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11775,11 +11808,11 @@ export class HiveSqlParser extends SQLParserBase { } public colType(): ColTypeContext { let localContext = new ColTypeContext(this.context, this.state); - this.enterRule(localContext, 374, HiveSqlParser.RULE_colType); + this.enterRule(localContext, 376, HiveSqlParser.RULE_colType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2756; this.type_(); } } @@ -11799,26 +11832,26 @@ export class HiveSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 376, HiveSqlParser.RULE_colTypeList); + this.enterRule(localContext, 378, HiveSqlParser.RULE_colTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2753; - this.colType(); this.state = 2758; + this.colType(); + this.state = 2763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2754; + this.state = 2759; this.match(HiveSqlParser.COMMA); - this.state = 2755; + this.state = 2760; this.colType(); } } - this.state = 2760; + this.state = 2765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11840,9 +11873,9 @@ export class HiveSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 378, HiveSqlParser.RULE_type); + this.enterRule(localContext, 380, HiveSqlParser.RULE_type); try { - this.state = 2766; + this.state = 2771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11867,35 +11900,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2761; + this.state = 2766; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2762; + this.state = 2767; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2763; + this.state = 2768; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2764; + this.state = 2769; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2765; + this.state = 2770; this.unionType(); } break; @@ -11919,79 +11952,79 @@ export class HiveSqlParser extends SQLParserBase { } public primitiveType(): PrimitiveTypeContext { let localContext = new PrimitiveTypeContext(this.context, this.state); - this.enterRule(localContext, 380, HiveSqlParser.RULE_primitiveType); + this.enterRule(localContext, 382, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2805; + this.state = 2810; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2768; + this.state = 2773; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2769; + this.state = 2774; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2770; + this.state = 2775; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2771; + this.state = 2776; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2772; + this.state = 2777; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2773; + this.state = 2778; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2774; + this.state = 2779; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2775; + this.state = 2780; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2776; + this.state = 2781; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2778; + this.state = 2783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 248) { { - this.state = 2777; + this.state = 2782; this.match(HiveSqlParser.KW_PRECISION); } } @@ -12001,87 +12034,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2780; + this.state = 2785; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2781; + this.state = 2786; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2782; + this.state = 2787; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2783; + this.state = 2788; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2784; + this.state = 2789; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2785; + this.state = 2790; this.match(HiveSqlParser.KW_WITH); - this.state = 2786; + this.state = 2791; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2787; + this.state = 2792; this.match(HiveSqlParser.KW_TIME); - this.state = 2788; + this.state = 2793; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2789; + this.state = 2794; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2790; + this.state = 2795; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2791; + this.state = 2796; this.decimal(); - this.state = 2799; + this.state = 2804; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2792; + this.state = 2797; this.match(HiveSqlParser.LPAREN); - this.state = 2793; + this.state = 2798; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2796; + this.state = 2801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 396) { + if (_la === 397) { { - this.state = 2794; + this.state = 2799; this.match(HiveSqlParser.COMMA); - this.state = 2795; + this.state = 2800; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2798; + this.state = 2803; this.match(HiveSqlParser.RPAREN); } break; @@ -12091,20 +12124,20 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2801; + this.state = 2806; _la = this.tokenStream.LA(1); - if(!(_la === 39 || _la === 375)) { + if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2802; + this.state = 2807; this.match(HiveSqlParser.LPAREN); - this.state = 2803; + this.state = 2808; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2804; + this.state = 2809; this.match(HiveSqlParser.RPAREN); } break; @@ -12126,17 +12159,17 @@ export class HiveSqlParser extends SQLParserBase { } public listType(): ListTypeContext { let localContext = new ListTypeContext(this.context, this.state); - this.enterRule(localContext, 382, HiveSqlParser.RULE_listType); + this.enterRule(localContext, 384, HiveSqlParser.RULE_listType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2807; + this.state = 2812; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2808; + this.state = 2813; this.match(HiveSqlParser.LESSTHAN); - this.state = 2809; + this.state = 2814; this.type_(); - this.state = 2810; + this.state = 2815; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12156,17 +12189,17 @@ export class HiveSqlParser extends SQLParserBase { } public structType(): StructTypeContext { let localContext = new StructTypeContext(this.context, this.state); - this.enterRule(localContext, 384, HiveSqlParser.RULE_structType); + this.enterRule(localContext, 386, HiveSqlParser.RULE_structType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2812; + this.state = 2817; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2813; + this.state = 2818; this.match(HiveSqlParser.LESSTHAN); - this.state = 2814; + this.state = 2819; this.columnNameColonTypeList(); - this.state = 2815; + this.state = 2820; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12186,21 +12219,21 @@ export class HiveSqlParser extends SQLParserBase { } public mapType(): MapTypeContext { let localContext = new MapTypeContext(this.context, this.state); - this.enterRule(localContext, 386, HiveSqlParser.RULE_mapType); + this.enterRule(localContext, 388, HiveSqlParser.RULE_mapType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2817; - this.match(HiveSqlParser.KW_MAP); - this.state = 2818; - this.match(HiveSqlParser.LESSTHAN); - this.state = 2819; - localContext._left = this.primitiveType(); - this.state = 2820; - this.match(HiveSqlParser.COMMA); - this.state = 2821; - localContext._right = this.type_(); this.state = 2822; + this.match(HiveSqlParser.KW_MAP); + this.state = 2823; + this.match(HiveSqlParser.LESSTHAN); + this.state = 2824; + localContext._left = this.primitiveType(); + this.state = 2825; + this.match(HiveSqlParser.COMMA); + this.state = 2826; + localContext._right = this.type_(); + this.state = 2827; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12220,17 +12253,17 @@ export class HiveSqlParser extends SQLParserBase { } public unionType(): UnionTypeContext { let localContext = new UnionTypeContext(this.context, this.state); - this.enterRule(localContext, 388, HiveSqlParser.RULE_unionType); + this.enterRule(localContext, 390, HiveSqlParser.RULE_unionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2824; + this.state = 2829; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2825; + this.state = 2830; this.match(HiveSqlParser.LESSTHAN); - this.state = 2826; + this.state = 2831; this.colTypeList(); - this.state = 2827; + this.state = 2832; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12250,26 +12283,26 @@ export class HiveSqlParser extends SQLParserBase { } public setOperator(): SetOperatorContext { let localContext = new SetOperatorContext(this.context, this.state); - this.enterRule(localContext, 390, HiveSqlParser.RULE_setOperator); + this.enterRule(localContext, 392, HiveSqlParser.RULE_setOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2829; + this.state = 2834; _la = this.tokenStream.LA(1); - if(!(_la === 112 || _la === 164 || _la === 204 || _la === 355)) { + if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2831; + this.state = 2836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2830; + this.state = 2835; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12299,22 +12332,22 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpression(): QueryStatementExpressionContext { let localContext = new QueryStatementExpressionContext(this.context, this.state); - this.enterRule(localContext, 392, HiveSqlParser.RULE_queryStatementExpression); + this.enterRule(localContext, 394, HiveSqlParser.RULE_queryStatementExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2834; + this.state = 2839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 386) { + if (_la === 387) { { - this.state = 2833; + this.state = 2838; localContext._w = this.withClause(); } } - this.state = 2836; + this.state = 2841; this.queryStatementExpressionBody(); } } @@ -12334,15 +12367,15 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpressionBody(): QueryStatementExpressionBodyContext { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); - this.enterRule(localContext, 394, HiveSqlParser.RULE_queryStatementExpressionBody); + this.enterRule(localContext, 396, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2840; + this.state = 2845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2838; + this.state = 2843; this.fromStatement(); } break; @@ -12354,7 +12387,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2839; + this.state = 2844; this.regularBody(); } break; @@ -12378,28 +12411,28 @@ export class HiveSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 396, HiveSqlParser.RULE_withClause); + this.enterRule(localContext, 398, HiveSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2842; + this.state = 2847; this.match(HiveSqlParser.KW_WITH); - this.state = 2843; - this.cteStatement(); this.state = 2848; + this.cteStatement(); + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 2844; + this.state = 2849; this.match(HiveSqlParser.COMMA); - this.state = 2845; + this.state = 2850; this.cteStatement(); } } - this.state = 2850; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12421,34 +12454,34 @@ export class HiveSqlParser extends SQLParserBase { } public cteStatement(): CteStatementContext { let localContext = new CteStatementContext(this.context, this.state); - this.enterRule(localContext, 398, HiveSqlParser.RULE_cteStatement); + this.enterRule(localContext, 400, HiveSqlParser.RULE_cteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2851; - this.id_(); this.state = 2856; + this.id_(); + this.state = 2861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 2852; + this.state = 2857; this.match(HiveSqlParser.LPAREN); - this.state = 2853; + this.state = 2858; localContext._colAliases = this.columnNameList(); - this.state = 2854; + this.state = 2859; this.match(HiveSqlParser.RPAREN); } } - this.state = 2858; + this.state = 2863; this.match(HiveSqlParser.KW_AS); - this.state = 2859; + this.state = 2864; this.match(HiveSqlParser.LPAREN); - this.state = 2860; + this.state = 2865; this.queryStatementExpression(); - this.state = 2861; + this.state = 2866; this.match(HiveSqlParser.RPAREN); } } @@ -12468,26 +12501,26 @@ export class HiveSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 400, HiveSqlParser.RULE_fromStatement); + this.enterRule(localContext, 402, HiveSqlParser.RULE_fromStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2863; + this.state = 2868; this.singleFromStatement(); - this.state = 2869; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 112 || _la === 164 || _la === 204 || _la === 355) { + while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2864; + this.state = 2869; localContext._u = this.setOperator(); - this.state = 2865; + this.state = 2870; localContext._r = this.singleFromStatement(); } } - this.state = 2871; + this.state = 2876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12509,128 +12542,128 @@ export class HiveSqlParser extends SQLParserBase { } public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); - this.enterRule(localContext, 402, HiveSqlParser.RULE_singleFromStatement); + this.enterRule(localContext, 404, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2943; + this.state = 2948; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2872; + this.state = 2877; this.fromClause(); - this.state = 2873; + this.state = 2878; this.insertClause(); - this.state = 2874; + this.state = 2879; this.selectClause(); - this.state = 2876; + this.state = 2881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 178 || _la === 396) { + if (_la === 178 || _la === 397) { { - this.state = 2875; + this.state = 2880; this.lateralView(); } } - this.state = 2879; + this.state = 2884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 2878; + this.state = 2883; this.whereClause(); } } - this.state = 2882; + this.state = 2887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2881; + this.state = 2886; this.groupByClause(); } } - this.state = 2885; + this.state = 2890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2884; + this.state = 2889; this.havingClause(); } } - this.state = 2888; + this.state = 2893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 385) { + if (_la === 386) { { - this.state = 2887; + this.state = 2892; this.window_clause(); } } - this.state = 2891; + this.state = 2896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 255) { + if (_la === 256) { { - this.state = 2890; + this.state = 2895; this.qualifyClause(); } } - this.state = 2894; + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 2893; + this.state = 2898; this.orderByClause(); } } - this.state = 2897; + this.state = 2902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2896; + this.state = 2901; this.clusterByClause(); } } - this.state = 2900; + this.state = 2905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2899; + this.state = 2904; this.distributeByClause(); } } - this.state = 2903; + this.state = 2908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 313) { + if (_la === 314) { { - this.state = 2902; + this.state = 2907; this.sortByClause(); } } - this.state = 2906; + this.state = 2911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 2905; + this.state = 2910; this.limitClause(); } } @@ -12641,116 +12674,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2908; + this.state = 2913; this.fromClause(); - this.state = 2909; + this.state = 2914; this.selectClause(); - this.state = 2911; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 178 || _la === 396) { + if (_la === 178 || _la === 397) { { - this.state = 2910; + this.state = 2915; this.lateralView(); } } - this.state = 2914; + this.state = 2919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 2913; + this.state = 2918; this.whereClause(); } } - this.state = 2917; + this.state = 2922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2916; + this.state = 2921; this.groupByClause(); } } - this.state = 2920; + this.state = 2925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2919; + this.state = 2924; this.havingClause(); } } - this.state = 2923; + this.state = 2928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 385) { + if (_la === 386) { { - this.state = 2922; + this.state = 2927; this.window_clause(); } } - this.state = 2926; + this.state = 2931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 255) { + if (_la === 256) { { - this.state = 2925; + this.state = 2930; this.qualifyClause(); } } - this.state = 2929; + this.state = 2934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 2928; + this.state = 2933; this.orderByClause(); } } - this.state = 2932; + this.state = 2937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2931; + this.state = 2936; this.clusterByClause(); } } - this.state = 2935; + this.state = 2940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2934; + this.state = 2939; this.distributeByClause(); } } - this.state = 2938; + this.state = 2943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 313) { + if (_la === 314) { { - this.state = 2937; + this.state = 2942; this.sortByClause(); } } - this.state = 2941; + this.state = 2946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 2940; + this.state = 2945; this.limitClause(); } } @@ -12775,18 +12808,18 @@ export class HiveSqlParser extends SQLParserBase { } public regularBody(): RegularBodyContext { let localContext = new RegularBodyContext(this.context, this.state); - this.enterRule(localContext, 404, HiveSqlParser.RULE_regularBody); + this.enterRule(localContext, 406, HiveSqlParser.RULE_regularBody); try { - this.state = 2949; + this.state = 2954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2945; + this.state = 2950; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2946; + this.state = 2951; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12798,7 +12831,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2948; + this.state = 2953; this.selectStatement(); } break; @@ -12822,10 +12855,10 @@ export class HiveSqlParser extends SQLParserBase { } public atomSelectStatement(): AtomSelectStatementContext { let localContext = new AtomSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 406, HiveSqlParser.RULE_atomSelectStatement); + this.enterRule(localContext, 408, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2975; + this.state = 2980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12833,64 +12866,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2951; + this.state = 2956; localContext._s = this.selectClause(); - this.state = 2953; + this.state = 2958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2952; + this.state = 2957; localContext._f = this.fromClause(); } break; } - this.state = 2956; + this.state = 2961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 2955; + this.state = 2960; localContext._w = this.whereClause(); } } - this.state = 2959; + this.state = 2964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2958; + this.state = 2963; localContext._g = this.groupByClause(); } } - this.state = 2962; + this.state = 2967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2961; + this.state = 2966; localContext._h = this.havingClause(); } } - this.state = 2965; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 385) { + if (_la === 386) { { - this.state = 2964; + this.state = 2969; localContext._win = this.window_clause(); } } - this.state = 2968; + this.state = 2973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 255) { + if (_la === 256) { { - this.state = 2967; + this.state = 2972; localContext._q = this.qualifyClause(); } } @@ -12900,18 +12933,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2970; + this.state = 2975; this.match(HiveSqlParser.LPAREN); - this.state = 2971; + this.state = 2976; this.selectStatement(); - this.state = 2972; + this.state = 2977; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2974; + this.state = 2979; this.valuesSource(); } break; @@ -12935,69 +12968,69 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 408, HiveSqlParser.RULE_selectStatement); + this.enterRule(localContext, 410, HiveSqlParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2977; + this.state = 2982; localContext._a = this.atomSelectStatement(); - this.state = 2979; + this.state = 2984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 112 || _la === 164 || _la === 204 || _la === 355) { + if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2978; + this.state = 2983; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2982; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 2981; + this.state = 2986; localContext._o = this.orderByClause(); } } - this.state = 2985; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2984; + this.state = 2989; localContext._c = this.clusterByClause(); } } - this.state = 2988; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2987; + this.state = 2992; localContext._d = this.distributeByClause(); } } - this.state = 2991; + this.state = 2996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 313) { + if (_la === 314) { { - this.state = 2990; + this.state = 2995; localContext._sort = this.sortByClause(); } } - this.state = 2994; + this.state = 2999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 184) { + if (_la === 185) { { - this.state = 2993; + this.state = 2998; localContext._l = this.limitClause(); } } @@ -13020,27 +13053,27 @@ export class HiveSqlParser extends SQLParserBase { } public setOpSelectStatement(): SetOpSelectStatementContext { let localContext = new SetOpSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 410, HiveSqlParser.RULE_setOpSelectStatement); + this.enterRule(localContext, 412, HiveSqlParser.RULE_setOpSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2999; + this.state = 3004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2996; + this.state = 3001; localContext._u = this.setOperator(); - this.state = 2997; + this.state = 3002; localContext._b = this.atomSelectStatement(); } } - this.state = 3001; + this.state = 3006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 112 || _la === 164 || _la === 204 || _la === 355); + } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); } } catch (re) { @@ -13059,22 +13092,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatementWithCTE(): SelectStatementWithCTEContext { let localContext = new SelectStatementWithCTEContext(this.context, this.state); - this.enterRule(localContext, 412, HiveSqlParser.RULE_selectStatementWithCTE); + this.enterRule(localContext, 414, HiveSqlParser.RULE_selectStatementWithCTE); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3004; + this.state = 3009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 386) { + if (_la === 387) { { - this.state = 3003; + this.state = 3008; localContext._w = this.withClause(); } } - this.state = 3006; + this.state = 3011; this.selectStatement(); } } @@ -13094,28 +13127,28 @@ export class HiveSqlParser extends SQLParserBase { } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 416, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3008; + this.state = 3013; this.match(HiveSqlParser.KW_INSERT); - this.state = 3025; + this.state = 3030; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 3009; + this.state = 3014; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3010; + this.state = 3015; this.destination(); - this.state = 3012; + this.state = 3017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3011; + this.state = 3016; this.ifNotExists(); } } @@ -13124,30 +13157,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 3014; + this.state = 3019; this.match(HiveSqlParser.KW_INTO); - this.state = 3016; + this.state = 3021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 328) { + if (_la === 329) { { - this.state = 3015; + this.state = 3020; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 3018; - this.tableOrPartition(); this.state = 3023; + this.tableOrPartition(); + this.state = 3028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 3019; + this.state = 3024; this.match(HiveSqlParser.LPAREN); - this.state = 3020; + this.state = 3025; localContext._targetCols = this.columnNameList(); - this.state = 3021; + this.state = 3026; this.match(HiveSqlParser.RPAREN); } break; @@ -13175,46 +13208,46 @@ export class HiveSqlParser extends SQLParserBase { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 418, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 3040; + this.state = 3045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 3028; + this.state = 3033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 187) { + if (_la === 188) { { - this.state = 3027; + this.state = 3032; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 3030; + this.state = 3035; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 3031; + this.state = 3036; this.match(HiveSqlParser.StringLiteral); - this.state = 3033; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 3032; + this.state = 3037; this.tableRowFormat(); } } - this.state = 3036; + this.state = 3041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 3035; + this.state = 3040; this.tableFileFormat(); } } @@ -13224,9 +13257,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3038; + this.state = 3043; this.match(HiveSqlParser.KW_TABLE); - this.state = 3039; + this.state = 3044; this.tableOrPartition(); } break; @@ -13250,40 +13283,40 @@ export class HiveSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 420, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3042; + this.state = 3047; this.match(HiveSqlParser.KW_LIMIT); - this.state = 3051; + this.state = 3056; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 3045; + this.state = 3050; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 3043; + this.state = 3048; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 3044; + this.state = 3049; this.match(HiveSqlParser.COMMA); } break; } - this.state = 3047; + this.state = 3052; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 3048; + this.state = 3053; localContext._num = this.match(HiveSqlParser.Number); - this.state = 3049; + this.state = 3054; this.match(HiveSqlParser.KW_OFFSET); - this.state = 3050; + this.state = 3055; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13306,23 +13339,23 @@ export class HiveSqlParser extends SQLParserBase { } public deleteStatement(): DeleteStatementContext { let localContext = new DeleteStatementContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_deleteStatement); + this.enterRule(localContext, 422, HiveSqlParser.RULE_deleteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3053; + this.state = 3058; this.match(HiveSqlParser.KW_DELETE); - this.state = 3054; + this.state = 3059; this.match(HiveSqlParser.KW_FROM); - this.state = 3055; + this.state = 3060; this.tableName(); - this.state = 3057; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 3056; + this.state = 3061; this.whereClause(); } } @@ -13345,15 +13378,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 424, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3059; + this.state = 3064; this.columnName(); - this.state = 3060; + this.state = 3065; this.match(HiveSqlParser.EQUAL); - this.state = 3061; + this.state = 3066; this.precedencePlusExpressionOrDefault(); } } @@ -13373,22 +13406,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 426, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 3065; + this.state = 3070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3063; + this.state = 3068; this.defaultValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3064; + this.state = 3069; this.precedencePlusExpression(); } break; @@ -13410,28 +13443,28 @@ export class HiveSqlParser extends SQLParserBase { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 428, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3067; + this.state = 3072; this.match(HiveSqlParser.KW_SET); - this.state = 3068; - this.columnAssignmentClause(); this.state = 3073; + this.columnAssignmentClause(); + this.state = 3078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3069; + this.state = 3074; this.match(HiveSqlParser.COMMA); - this.state = 3070; + this.state = 3075; this.columnAssignmentClause(); } } - this.state = 3075; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13453,23 +13486,23 @@ export class HiveSqlParser extends SQLParserBase { } public updateStatement(): UpdateStatementContext { let localContext = new UpdateStatementContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_updateStatement); + this.enterRule(localContext, 430, HiveSqlParser.RULE_updateStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3076; + this.state = 3081; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3077; + this.state = 3082; this.tableName(); - this.state = 3078; + this.state = 3083; this.setColumnsClause(); - this.state = 3080; + this.state = 3085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 383) { + if (_la === 384) { { - this.state = 3079; + this.state = 3084; this.whereClause(); } } @@ -13492,36 +13525,36 @@ export class HiveSqlParser extends SQLParserBase { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 432, HiveSqlParser.RULE_sqlTransactionStatement); try { - this.state = 3086; + this.state = 3091; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 3082; + this.state = 3087; this.startTransactionStatement(); } break; case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 3083; + this.state = 3088; this.commitStatement(); } break; case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 3084; + this.state = 3089; this.rollbackStatement(); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 3085; + this.state = 3090; this.setAutoCommitStatement(); } break; @@ -13545,35 +13578,35 @@ export class HiveSqlParser extends SQLParserBase { } public startTransactionStatement(): StartTransactionStatementContext { let localContext = new StartTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_startTransactionStatement); + this.enterRule(localContext, 434, HiveSqlParser.RULE_startTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3088; + this.state = 3093; this.match(HiveSqlParser.KW_START); - this.state = 3089; + this.state = 3094; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 3098; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 168 || _la === 260) { + if (_la === 168 || _la === 261) { { - this.state = 3090; - this.transactionMode(); this.state = 3095; + this.transactionMode(); + this.state = 3100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3091; + this.state = 3096; this.match(HiveSqlParser.COMMA); - this.state = 3092; + this.state = 3097; this.transactionMode(); } } - this.state = 3097; + this.state = 3102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13598,22 +13631,22 @@ export class HiveSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 436, HiveSqlParser.RULE_transactionMode); try { - this.state = 3102; + this.state = 3107; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 3100; + this.state = 3105; this.isolationLevel(); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 3101; + this.state = 3106; this.transactionAccessMode(); } break; @@ -13637,16 +13670,16 @@ export class HiveSqlParser extends SQLParserBase { } public transactionAccessMode(): TransactionAccessModeContext { let localContext = new TransactionAccessModeContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_transactionAccessMode); + this.enterRule(localContext, 438, HiveSqlParser.RULE_transactionAccessMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3104; + this.state = 3109; this.match(HiveSqlParser.KW_READ); - this.state = 3105; + this.state = 3110; _la = this.tokenStream.LA(1); - if(!(_la === 224 || _la === 390)) { + if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); } else { @@ -13671,15 +13704,15 @@ export class HiveSqlParser extends SQLParserBase { } public isolationLevel(): IsolationLevelContext { let localContext = new IsolationLevelContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_isolationLevel); + this.enterRule(localContext, 440, HiveSqlParser.RULE_isolationLevel); try { this.enterOuterAlt(localContext, 1); { - this.state = 3107; + this.state = 3112; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 3108; + this.state = 3113; this.match(HiveSqlParser.KW_LEVEL); - this.state = 3109; + this.state = 3114; this.levelOfIsolation(); } } @@ -13699,11 +13732,11 @@ export class HiveSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 442, HiveSqlParser.RULE_levelOfIsolation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3111; + this.state = 3116; this.match(HiveSqlParser.KW_SNAPSHOT); } } @@ -13723,19 +13756,19 @@ export class HiveSqlParser extends SQLParserBase { } public commitStatement(): CommitStatementContext { let localContext = new CommitStatementContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_commitStatement); + this.enterRule(localContext, 444, HiveSqlParser.RULE_commitStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3113; + this.state = 3118; this.match(HiveSqlParser.KW_COMMIT); - this.state = 3115; + this.state = 3120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 388) { + if (_la === 389) { { - this.state = 3114; + this.state = 3119; this.match(HiveSqlParser.KW_WORK); } } @@ -13758,19 +13791,19 @@ export class HiveSqlParser extends SQLParserBase { } public rollbackStatement(): RollbackStatementContext { let localContext = new RollbackStatementContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_rollbackStatement); + this.enterRule(localContext, 446, HiveSqlParser.RULE_rollbackStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3117; + this.state = 3122; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3119; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 388) { + if (_la === 389) { { - this.state = 3118; + this.state = 3123; this.match(HiveSqlParser.KW_WORK); } } @@ -13793,15 +13826,15 @@ export class HiveSqlParser extends SQLParserBase { } public setAutoCommitStatement(): SetAutoCommitStatementContext { let localContext = new SetAutoCommitStatementContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_setAutoCommitStatement); + this.enterRule(localContext, 448, HiveSqlParser.RULE_setAutoCommitStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 3121; + this.state = 3126; this.match(HiveSqlParser.KW_SET); - this.state = 3122; + this.state = 3127; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 3123; + this.state = 3128; this.booleanValueTok(); } } @@ -13821,29 +13854,29 @@ export class HiveSqlParser extends SQLParserBase { } public abortTransactionStatement(): AbortTransactionStatementContext { let localContext = new AbortTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_abortTransactionStatement); + this.enterRule(localContext, 450, HiveSqlParser.RULE_abortTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3125; + this.state = 3130; this.match(HiveSqlParser.KW_ABORT); - this.state = 3126; + this.state = 3131; this.match(HiveSqlParser.KW_TRANSACTIONS); - this.state = 3128; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3127; + this.state = 3132; this.match(HiveSqlParser.Number); } } - this.state = 3130; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 430); + } while (_la === 431); } } catch (re) { @@ -13862,29 +13895,29 @@ export class HiveSqlParser extends SQLParserBase { } public abortCompactionStatement(): AbortCompactionStatementContext { let localContext = new AbortCompactionStatementContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_abortCompactionStatement); + this.enterRule(localContext, 452, HiveSqlParser.RULE_abortCompactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3132; + this.state = 3137; this.match(HiveSqlParser.KW_ABORT); - this.state = 3133; + this.state = 3138; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 3135; + this.state = 3140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3134; + this.state = 3139; this.match(HiveSqlParser.Number); } } - this.state = 3137; + this.state = 3142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 430); + } while (_la === 431); } } catch (re) { @@ -13903,56 +13936,56 @@ export class HiveSqlParser extends SQLParserBase { } public mergeStatement(): MergeStatementContext { let localContext = new MergeStatementContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_mergeStatement); + this.enterRule(localContext, 454, HiveSqlParser.RULE_mergeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3139; + this.state = 3144; this.match(HiveSqlParser.KW_MERGE); - this.state = 3141; + this.state = 3146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 435) { + if (_la === 436) { { - this.state = 3140; + this.state = 3145; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 3143; + this.state = 3148; this.match(HiveSqlParser.KW_INTO); - this.state = 3144; - this.tableName(); this.state = 3149; + this.tableName(); + this.state = 3154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3146; + this.state = 3151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3145; + this.state = 3150; this.match(HiveSqlParser.KW_AS); } } - this.state = 3148; + this.state = 3153; this.id_(); } } - this.state = 3151; + this.state = 3156; this.match(HiveSqlParser.KW_USING); - this.state = 3152; + this.state = 3157; this.joinSourcePart(); - this.state = 3153; + this.state = 3158; this.match(HiveSqlParser.KW_ON); - this.state = 3154; + this.state = 3159; this.expression(); - this.state = 3155; + this.state = 3160; this.whenClauses(); } } @@ -13972,46 +14005,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 456, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3161; + this.state = 3166; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3159; + this.state = 3164; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3157; + this.state = 3162; this.whenMatchedAndClause(); } break; case 2: { - this.state = 3158; + this.state = 3163; this.whenMatchedThenClause(); } break; } } } - this.state = 3163; + this.state = 3168; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 334, this.context); } - this.state = 3165; + this.state = 3170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 382) { + if (_la === 383) { { - this.state = 3164; + this.state = 3169; this.whenNotMatchedClause(); } } @@ -14034,46 +14067,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 458, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3167; - this.match(HiveSqlParser.KW_WHEN); - this.state = 3168; - this.match(HiveSqlParser.KW_NOT); - this.state = 3169; - this.match(HiveSqlParser.KW_MATCHED); this.state = 3172; + this.match(HiveSqlParser.KW_WHEN); + this.state = 3173; + this.match(HiveSqlParser.KW_NOT); + this.state = 3174; + this.match(HiveSqlParser.KW_MATCHED); + this.state = 3177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3170; + this.state = 3175; this.match(HiveSqlParser.KW_AND); - this.state = 3171; + this.state = 3176; this.expression(); } } - this.state = 3174; + this.state = 3179; this.match(HiveSqlParser.KW_THEN); - this.state = 3175; + this.state = 3180; this.match(HiveSqlParser.KW_INSERT); - this.state = 3177; + this.state = 3182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 3176; + this.state = 3181; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 3179; + this.state = 3184; this.match(HiveSqlParser.KW_VALUES); - this.state = 3180; + this.state = 3185; this.valueRowConstructor(); } } @@ -14093,48 +14126,18 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 460, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3182; - this.match(HiveSqlParser.KW_WHEN); - this.state = 3183; - this.match(HiveSqlParser.KW_MATCHED); - this.state = 3184; - this.match(HiveSqlParser.KW_AND); - this.state = 3185; - this.expression(); - this.state = 3186; - this.match(HiveSqlParser.KW_THEN); this.state = 3187; - this.updateOrDelete(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public whenMatchedThenClause(): WhenMatchedThenClauseContext { - let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_whenMatchedThenClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3189; this.match(HiveSqlParser.KW_WHEN); - this.state = 3190; + this.state = 3188; this.match(HiveSqlParser.KW_MATCHED); + this.state = 3189; + this.match(HiveSqlParser.KW_AND); + this.state = 3190; + this.expression(); this.state = 3191; this.match(HiveSqlParser.KW_THEN); this.state = 3192; @@ -14155,26 +14158,56 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public whenMatchedThenClause(): WhenMatchedThenClauseContext { + let localContext = new WhenMatchedThenClauseContext(this.context, this.state); + this.enterRule(localContext, 462, HiveSqlParser.RULE_whenMatchedThenClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3194; + this.match(HiveSqlParser.KW_WHEN); + this.state = 3195; + this.match(HiveSqlParser.KW_MATCHED); + this.state = 3196; + this.match(HiveSqlParser.KW_THEN); + this.state = 3197; + this.updateOrDelete(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public updateOrDelete(): UpdateOrDeleteContext { let localContext = new UpdateOrDeleteContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_updateOrDelete); + this.enterRule(localContext, 464, HiveSqlParser.RULE_updateOrDelete); try { - this.state = 3197; + this.state = 3202; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 1); { - this.state = 3194; + this.state = 3199; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3195; + this.state = 3200; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3196; + this.state = 3201; this.match(HiveSqlParser.KW_DELETE); } break; @@ -14198,29 +14231,29 @@ export class HiveSqlParser extends SQLParserBase { } public killQueryStatement(): KillQueryStatementContext { let localContext = new KillQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_killQueryStatement); + this.enterRule(localContext, 466, HiveSqlParser.RULE_killQueryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3199; + this.state = 3204; this.match(HiveSqlParser.KW_KILL); - this.state = 3200; + this.state = 3205; this.match(HiveSqlParser.KW_QUERY); - this.state = 3202; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3201; + this.state = 3206; this.match(HiveSqlParser.StringLiteral); } } - this.state = 3204; + this.state = 3209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 425); + } while (_la === 426); } } catch (re) { @@ -14239,15 +14272,15 @@ export class HiveSqlParser extends SQLParserBase { } public compactionId(): CompactionIdContext { let localContext = new CompactionIdContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_compactionId); + this.enterRule(localContext, 468, HiveSqlParser.RULE_compactionId); try { this.enterOuterAlt(localContext, 1); { - this.state = 3206; + this.state = 3211; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 3207; + this.state = 3212; this.match(HiveSqlParser.EQUAL); - this.state = 3208; + this.state = 3213; localContext._compactId = this.match(HiveSqlParser.Number); } } @@ -14267,13 +14300,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionPool(): CompactionPoolContext { let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_compactionPool); + this.enterRule(localContext, 470, HiveSqlParser.RULE_compactionPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 3210; + this.state = 3215; this.match(HiveSqlParser.KW_POOL); - this.state = 3211; + this.state = 3216; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -14293,13 +14326,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionType(): CompactionTypeContext { let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_compactionType); + this.enterRule(localContext, 472, HiveSqlParser.RULE_compactionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3213; + this.state = 3218; this.match(HiveSqlParser.KW_TYPE); - this.state = 3214; + this.state = 3219; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -14319,13 +14352,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactionStatus(): CompactionStatusContext { let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_compactionStatus); + this.enterRule(localContext, 474, HiveSqlParser.RULE_compactionStatus); try { this.enterOuterAlt(localContext, 1); { - this.state = 3216; + this.state = 3221; this.match(HiveSqlParser.KW_STATUS); - this.state = 3217; + this.state = 3222; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -14345,80 +14378,80 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 476, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3219; + this.state = 3224; this.match(HiveSqlParser.KW_ALTER); - this.state = 3243; + this.state = 3248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 3220; + this.state = 3225; this.match(HiveSqlParser.KW_TABLE); - this.state = 3221; + this.state = 3226; this.tableName(); - this.state = 3222; + this.state = 3227; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 3224; + this.state = 3229; this.match(HiveSqlParser.KW_VIEW); - this.state = 3225; + this.state = 3230; this.viewName(); - this.state = 3227; + this.state = 3232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3226; + this.state = 3231; this.match(HiveSqlParser.KW_AS); } } - this.state = 3229; + this.state = 3234; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 3231; + this.state = 3236; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 3232; + this.state = 3237; this.match(HiveSqlParser.KW_VIEW); - this.state = 3233; + this.state = 3238; localContext._tableNameTree = this.viewName(); - this.state = 3234; + this.state = 3239; this.alterMaterializedViewStatementSuffix(); } break; case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 3236; + this.state = 3241; this.db_schema(); - this.state = 3237; + this.state = 3242; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 3239; + this.state = 3244; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3240; + this.state = 3245; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 3241; + this.state = 3246; this.match(HiveSqlParser.KW_INDEX); - this.state = 3242; + this.state = 3247; this.alterIndexStatementSuffix(); } break; @@ -14443,145 +14476,145 @@ export class HiveSqlParser extends SQLParserBase { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 478, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 3266; + this.state = 3271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3245; + this.state = 3250; this.alterStatementSuffixRename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3246; + this.state = 3251; this.alterStatementSuffixRecoverPartitions(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3247; + this.state = 3252; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3248; + this.state = 3253; this.alterStatementSuffixAddPartitions(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3249; + this.state = 3254; this.alterStatementSuffixTouch(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3250; + this.state = 3255; this.alterStatementSuffixArchive(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3251; + this.state = 3256; this.alterStatementSuffixUnArchive(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3252; + this.state = 3257; this.alterStatementSuffixProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3253; + this.state = 3258; this.alterStatementSuffixSkewedby(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3254; + this.state = 3259; this.alterStatementSuffixExchangePartition(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3255; + this.state = 3260; this.alterStatementPartitionKeyType(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3256; + this.state = 3261; this.alterStatementSuffixDropConstraint(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3257; + this.state = 3262; this.alterStatementSuffixAddConstraint(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3258; + this.state = 3263; this.alterTblPartitionStatementSuffix(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3260; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 3259; + this.state = 3264; this.partitionSpec(); } } - this.state = 3262; + this.state = 3267; this.alterTblPartitionStatementSuffix(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3263; + this.state = 3268; this.alterStatementSuffixSetOwner(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3264; + this.state = 3269; this.alterStatementSuffixSetPartSpec(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3265; + this.state = 3270; this.alterStatementSuffixExecute(); } break; @@ -14603,113 +14636,113 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 480, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); try { - this.state = 3283; + this.state = 3288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3268; + this.state = 3273; this.alterStatementSuffixFileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3269; + this.state = 3274; this.alterStatementSuffixLocation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3270; + this.state = 3275; this.alterStatementSuffixMergeFiles(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3271; + this.state = 3276; this.alterStatementSuffixSerdeProperties(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3272; + this.state = 3277; this.alterStatementSuffixRenamePart(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3273; + this.state = 3278; this.alterStatementSuffixBucketNum(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3274; + this.state = 3279; this.alterTblPartitionStatementSuffixSkewedLocation(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3275; + this.state = 3280; this.alterStatementSuffixClusterbySortby(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3276; + this.state = 3281; this.alterStatementSuffixCompact(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3277; + this.state = 3282; this.alterStatementSuffixUpdateStatsCol(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3278; + this.state = 3283; this.alterStatementSuffixUpdateStats(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3279; + this.state = 3284; this.alterStatementSuffixRenameCol(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3280; + this.state = 3285; this.alterStatementSuffixAddCol(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3281; + this.state = 3286; this.alterStatementSuffixUpdateColumns(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3282; + this.state = 3287; this.alterStatementSuffixProtections(); } break; @@ -14731,19 +14764,19 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementPartitionKeyType(): AlterStatementPartitionKeyTypeContext { let localContext = new AlterStatementPartitionKeyTypeContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_alterStatementPartitionKeyType); + this.enterRule(localContext, 482, HiveSqlParser.RULE_alterStatementPartitionKeyType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3285; + this.state = 3290; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3286; + this.state = 3291; this.match(HiveSqlParser.KW_COLUMN); - this.state = 3287; + this.state = 3292; this.match(HiveSqlParser.LPAREN); - this.state = 3288; + this.state = 3293; this.columnNameType(); - this.state = 3289; + this.state = 3294; this.match(HiveSqlParser.RPAREN); } } @@ -14763,37 +14796,37 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 484, HiveSqlParser.RULE_alterViewStatementSuffix); try { - this.state = 3296; + this.state = 3301; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 1); { - this.state = 3291; + this.state = 3296; this.alterViewSuffixProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 2); { - this.state = 3292; + this.state = 3297; this.alterStatementSuffixRename(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 3); { - this.state = 3293; + this.state = 3298; this.alterStatementSuffixAddPartitions(); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 4); { - this.state = 3294; + this.state = 3299; this.alterStatementSuffixDropPartitions(); } break; @@ -14805,7 +14838,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 5); { - this.state = 3295; + this.state = 3300; this.selectStatementWithCTE(); } break; @@ -14829,9 +14862,9 @@ export class HiveSqlParser extends SQLParserBase { } public alterMaterializedViewStatementSuffix(): AlterMaterializedViewStatementSuffixContext { let localContext = new AlterMaterializedViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_alterMaterializedViewStatementSuffix); + this.enterRule(localContext, 486, HiveSqlParser.RULE_alterMaterializedViewStatementSuffix); try { - this.state = 3300; + this.state = 3305; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -14840,14 +14873,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 3298; + this.state = 3303; this.alterMaterializedViewSuffixRewrite(); } break; case HiveSqlParser.KW_REBUILD: this.enterOuterAlt(localContext, 2); { - this.state = 3299; + this.state = 3304; this.alterMaterializedViewSuffixRebuild(); } break; @@ -14871,16 +14904,16 @@ export class HiveSqlParser extends SQLParserBase { } public alterMaterializedViewSuffixRewrite(): AlterMaterializedViewSuffixRewriteContext { let localContext = new AlterMaterializedViewSuffixRewriteContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_alterMaterializedViewSuffixRewrite); + this.enterRule(localContext, 488, HiveSqlParser.RULE_alterMaterializedViewSuffixRewrite); try { - this.state = 3304; + this.state = 3309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 3302; + this.state = 3307; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; @@ -14888,7 +14921,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 3303; + this.state = 3308; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; @@ -14912,11 +14945,11 @@ export class HiveSqlParser extends SQLParserBase { } public alterMaterializedViewSuffixRebuild(): AlterMaterializedViewSuffixRebuildContext { let localContext = new AlterMaterializedViewSuffixRebuildContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_alterMaterializedViewSuffixRebuild); + this.enterRule(localContext, 490, HiveSqlParser.RULE_alterMaterializedViewSuffixRebuild); try { this.enterOuterAlt(localContext, 1); { - this.state = 3306; + this.state = 3311; this.match(HiveSqlParser.KW_REBUILD); } } @@ -14936,29 +14969,29 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 492, HiveSqlParser.RULE_alterDatabaseStatementSuffix); try { - this.state = 3311; + this.state = 3316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3308; + this.state = 3313; this.alterDatabaseSuffixProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3309; + this.state = 3314; this.alterDatabaseSuffixSetOwner(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3310; + this.state = 3315; this.alterDatabaseSuffixSetLocation(); } break; @@ -14980,17 +15013,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseSuffixProperties(): AlterDatabaseSuffixPropertiesContext { let localContext = new AlterDatabaseSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_alterDatabaseSuffixProperties); + this.enterRule(localContext, 494, HiveSqlParser.RULE_alterDatabaseSuffixProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3313; + this.state = 3318; localContext._name = this.dbSchemaName(); - this.state = 3314; + this.state = 3319; this.match(HiveSqlParser.KW_SET); - this.state = 3315; + this.state = 3320; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3316; + this.state = 3321; this.dbProperties(); } } @@ -15010,17 +15043,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseSuffixSetOwner(): AlterDatabaseSuffixSetOwnerContext { let localContext = new AlterDatabaseSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_alterDatabaseSuffixSetOwner); + this.enterRule(localContext, 496, HiveSqlParser.RULE_alterDatabaseSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3318; + this.state = 3323; localContext._dbName = this.dbSchemaName(); - this.state = 3319; + this.state = 3324; this.match(HiveSqlParser.KW_SET); - this.state = 3320; + this.state = 3325; this.match(HiveSqlParser.KW_OWNER); - this.state = 3321; + this.state = 3326; this.principalAlterName(); } } @@ -15040,25 +15073,25 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseSuffixSetLocation(): AlterDatabaseSuffixSetLocationContext { let localContext = new AlterDatabaseSuffixSetLocationContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_alterDatabaseSuffixSetLocation); + this.enterRule(localContext, 498, HiveSqlParser.RULE_alterDatabaseSuffixSetLocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3323; + this.state = 3328; localContext._dbName = this.dbSchemaName(); - this.state = 3324; + this.state = 3329; this.match(HiveSqlParser.KW_SET); - this.state = 3325; + this.state = 3330; _la = this.tokenStream.LA(1); - if(!(_la === 188 || _la === 195)) { + if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3326; + this.state = 3331; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } } @@ -15078,17 +15111,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseSuffixSetManagedLocation(): AlterDatabaseSuffixSetManagedLocationContext { let localContext = new AlterDatabaseSuffixSetManagedLocationContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_alterDatabaseSuffixSetManagedLocation); + this.enterRule(localContext, 500, HiveSqlParser.RULE_alterDatabaseSuffixSetManagedLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3328; + this.state = 3333; localContext._dbName = this.dbSchemaName(); - this.state = 3329; + this.state = 3334; this.match(HiveSqlParser.KW_SET); - this.state = 3330; + this.state = 3335; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 3331; + this.state = 3336; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } } @@ -15108,15 +15141,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixRename(): AlterStatementSuffixRenameContext { let localContext = new AlterStatementSuffixRenameContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_alterStatementSuffixRename); + this.enterRule(localContext, 502, HiveSqlParser.RULE_alterStatementSuffixRename); try { this.enterOuterAlt(localContext, 1); { - this.state = 3333; + this.state = 3338; this.match(HiveSqlParser.KW_RENAME); - this.state = 3334; + this.state = 3339; this.match(HiveSqlParser.KW_TO); - this.state = 3335; + this.state = 3340; this.tableNameCreate(); } } @@ -15136,43 +15169,43 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixAddCol(): AlterStatementSuffixAddColContext { let localContext = new AlterStatementSuffixAddColContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_alterStatementSuffixAddCol); + this.enterRule(localContext, 504, HiveSqlParser.RULE_alterStatementSuffixAddCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3344; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3337; + this.state = 3342; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3338; + this.state = 3343; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3341; - this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3342; - this.match(HiveSqlParser.LPAREN); - this.state = 3343; - this.columnNameTypeList(); - this.state = 3344; - this.match(HiveSqlParser.RPAREN); this.state = 3346; + this.match(HiveSqlParser.KW_COLUMNS); + this.state = 3347; + this.match(HiveSqlParser.LPAREN); + this.state = 3348; + this.columnNameTypeList(); + this.state = 3349; + this.match(HiveSqlParser.RPAREN); + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34 || _la === 281) { + if (_la === 34 || _la === 282) { { - this.state = 3345; + this.state = 3350; this.restrictOrCascade(); } } @@ -15195,24 +15228,24 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixAddConstraint(): AlterStatementSuffixAddConstraintContext { let localContext = new AlterStatementSuffixAddConstraintContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_alterStatementSuffixAddConstraint); + this.enterRule(localContext, 506, HiveSqlParser.RULE_alterStatementSuffixAddConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 3348; + this.state = 3353; this.match(HiveSqlParser.KW_ADD); - this.state = 3351; + this.state = 3356; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3349; + this.state = 3354; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 3350; + this.state = 3355; this.alterConstraintWithName(); } break; @@ -15235,21 +15268,21 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixUpdateColumns(): AlterStatementSuffixUpdateColumnsContext { let localContext = new AlterStatementSuffixUpdateColumnsContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_alterStatementSuffixUpdateColumns); + this.enterRule(localContext, 508, HiveSqlParser.RULE_alterStatementSuffixUpdateColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3353; + this.state = 3358; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3354; + this.state = 3359; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3356; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34 || _la === 281) { + if (_la === 34 || _la === 282) { { - this.state = 3355; + this.state = 3360; this.restrictOrCascade(); } } @@ -15272,25 +15305,25 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixProtections(): AlterStatementSuffixProtectionsContext { let localContext = new AlterStatementSuffixProtectionsContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_alterStatementSuffixProtections); + this.enterRule(localContext, 510, HiveSqlParser.RULE_alterStatementSuffixProtections); let _la: number; try { - this.state = 3366; + this.state = 3371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3358; + this.state = 3363; this.enableSpecification(); - this.state = 3359; + this.state = 3364; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3361; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3360; + this.state = 3365; this.match(HiveSqlParser.KW_CASCADE); } } @@ -15300,9 +15333,9 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3363; + this.state = 3368; this.enableSpecification(); - this.state = 3364; + this.state = 3369; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -15324,15 +15357,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropConstraint(): AlterStatementSuffixDropConstraintContext { let localContext = new AlterStatementSuffixDropConstraintContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_alterStatementSuffixDropConstraint); + this.enterRule(localContext, 512, HiveSqlParser.RULE_alterStatementSuffixDropConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 3368; + this.state = 3373; this.match(HiveSqlParser.KW_DROP); - this.state = 3369; + this.state = 3374; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 3370; + this.state = 3375; localContext._cName = this.id_(); } } @@ -15352,67 +15385,67 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixRenameCol(): AlterStatementSuffixRenameColContext { let localContext = new AlterStatementSuffixRenameColContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_alterStatementSuffixRenameCol); + this.enterRule(localContext, 514, HiveSqlParser.RULE_alterStatementSuffixRenameCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3372; + this.state = 3377; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3374; + this.state = 3379; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 3373; + this.state = 3378; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3376; + this.state = 3381; localContext._oldName = this.columnName(); - this.state = 3377; + this.state = 3382; localContext._newName = this.columnNameCreate(); - this.state = 3378; + this.state = 3383; this.colType(); - this.state = 3380; + this.state = 3385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 40 || _la === 55 || _la === 83 || _la === 215 || _la === 250 || _la === 268 || _la === 357) { + if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3379; + this.state = 3384; this.alterColumnConstraint(); } } - this.state = 3384; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3382; + this.state = 3387; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3383; + this.state = 3388; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3387; + this.state = 3392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6 || _la === 130) { { - this.state = 3386; + this.state = 3391; this.alterStatementChangeColPosition(); } } - this.state = 3390; + this.state = 3395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34 || _la === 281) { + if (_la === 34 || _la === 282) { { - this.state = 3389; + this.state = 3394; this.restrictOrCascade(); } } @@ -15435,41 +15468,41 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixUpdateStatsCol(): AlterStatementSuffixUpdateStatsColContext { let localContext = new AlterStatementSuffixUpdateStatsColContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_alterStatementSuffixUpdateStatsCol); + this.enterRule(localContext, 516, HiveSqlParser.RULE_alterStatementSuffixUpdateStatsCol); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3392; + this.state = 3397; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3393; + this.state = 3398; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3394; + this.state = 3399; this.match(HiveSqlParser.KW_FOR); - this.state = 3396; + this.state = 3401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { - this.state = 3395; + this.state = 3400; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3398; - localContext._colName = this.columnName(); - this.state = 3399; - this.match(HiveSqlParser.KW_SET); - this.state = 3400; - this.tableProperties(); this.state = 3403; + localContext._colName = this.columnName(); + this.state = 3404; + this.match(HiveSqlParser.KW_SET); + this.state = 3405; + this.tableProperties(); + this.state = 3408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3401; + this.state = 3406; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3402; + this.state = 3407; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -15492,17 +15525,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixUpdateStats(): AlterStatementSuffixUpdateStatsContext { let localContext = new AlterStatementSuffixUpdateStatsContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_alterStatementSuffixUpdateStats); + this.enterRule(localContext, 518, HiveSqlParser.RULE_alterStatementSuffixUpdateStats); try { this.enterOuterAlt(localContext, 1); { - this.state = 3405; + this.state = 3410; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3406; + this.state = 3411; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3407; + this.state = 3412; this.match(HiveSqlParser.KW_SET); - this.state = 3408; + this.state = 3413; this.tableProperties(); } } @@ -15522,24 +15555,24 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementChangeColPosition(): AlterStatementChangeColPositionContext { let localContext = new AlterStatementChangeColPositionContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_alterStatementChangeColPosition); + this.enterRule(localContext, 520, HiveSqlParser.RULE_alterStatementChangeColPosition); try { - this.state = 3413; + this.state = 3418; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3410; + this.state = 3415; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3411; + this.state = 3416; this.match(HiveSqlParser.KW_AFTER); - this.state = 3412; + this.state = 3417; localContext._afterCol = this.id_(); } break; @@ -15563,37 +15596,37 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixAddPartitions(): AlterStatementSuffixAddPartitionsContext { let localContext = new AlterStatementSuffixAddPartitionsContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_alterStatementSuffixAddPartitions); + this.enterRule(localContext, 522, HiveSqlParser.RULE_alterStatementSuffixAddPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3415; + this.state = 3420; this.match(HiveSqlParser.KW_ADD); - this.state = 3417; + this.state = 3422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3416; + this.state = 3421; this.ifNotExists(); } } - this.state = 3420; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3419; + this.state = 3424; this.alterStatementSuffixAddPartitionsElement(); } } - this.state = 3422; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 236); + } while (_la === 237); } } catch (re) { @@ -15612,19 +15645,19 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixAddPartitionsElement(): AlterStatementSuffixAddPartitionsElementContext { let localContext = new AlterStatementSuffixAddPartitionsElementContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_alterStatementSuffixAddPartitionsElement); + this.enterRule(localContext, 524, HiveSqlParser.RULE_alterStatementSuffixAddPartitionsElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3424; + this.state = 3429; this.partitionSpec(); - this.state = 3426; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 3425; + this.state = 3430; this.partitionLocation(); } } @@ -15647,24 +15680,24 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixTouch(): AlterStatementSuffixTouchContext { let localContext = new AlterStatementSuffixTouchContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_alterStatementSuffixTouch); + this.enterRule(localContext, 526, HiveSqlParser.RULE_alterStatementSuffixTouch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3428; + this.state = 3433; this.match(HiveSqlParser.KW_TOUCH); - this.state = 3432; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 236) { + while (_la === 237) { { { - this.state = 3429; + this.state = 3434; this.partitionSpec(); } } - this.state = 3434; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15686,24 +15719,24 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixArchive(): AlterStatementSuffixArchiveContext { let localContext = new AlterStatementSuffixArchiveContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_alterStatementSuffixArchive); + this.enterRule(localContext, 528, HiveSqlParser.RULE_alterStatementSuffixArchive); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3435; + this.state = 3440; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 3439; + this.state = 3444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 236) { + while (_la === 237) { { { - this.state = 3436; + this.state = 3441; this.partitionSpec(); } } - this.state = 3441; + this.state = 3446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15725,24 +15758,24 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixUnArchive(): AlterStatementSuffixUnArchiveContext { let localContext = new AlterStatementSuffixUnArchiveContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_alterStatementSuffixUnArchive); + this.enterRule(localContext, 530, HiveSqlParser.RULE_alterStatementSuffixUnArchive); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3442; + this.state = 3447; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 3446; + this.state = 3451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 236) { + while (_la === 237) { { { - this.state = 3443; + this.state = 3448; this.partitionSpec(); } } - this.state = 3448; + this.state = 3453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15764,13 +15797,13 @@ export class HiveSqlParser extends SQLParserBase { } public partitionLocation(): PartitionLocationContext { let localContext = new PartitionLocationContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_partitionLocation); + this.enterRule(localContext, 532, HiveSqlParser.RULE_partitionLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3449; + this.state = 3454; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3450; + this.state = 3455; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15790,13 +15823,13 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixRecoverPartitions(): AlterStatementSuffixRecoverPartitionsContext { let localContext = new AlterStatementSuffixRecoverPartitionsContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_alterStatementSuffixRecoverPartitions); + this.enterRule(localContext, 534, HiveSqlParser.RULE_alterStatementSuffixRecoverPartitions); try { this.enterOuterAlt(localContext, 1); { - this.state = 3452; + this.state = 3457; this.match(HiveSqlParser.KW_RECOVER); - this.state = 3453; + this.state = 3458; this.match(HiveSqlParser.KW_PARTITIONS); } } @@ -15816,71 +15849,71 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 536, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3455; + this.state = 3460; this.match(HiveSqlParser.KW_DROP); - this.state = 3457; + this.state = 3462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3456; + this.state = 3461; this.ifExists(); } } - this.state = 3459; + this.state = 3464; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3460; + this.state = 3465; this.partitionSelectorSpec(); - this.state = 3466; + this.state = 3471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3461; + this.state = 3466; this.match(HiveSqlParser.COMMA); - this.state = 3462; + this.state = 3467; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3463; + this.state = 3468; this.partitionSelectorSpec(); } } - this.state = 3468; + this.state = 3473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3470; + this.state = 3475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3469; + this.state = 3474; this.dropPartitionsIgnoreClause(); } } - this.state = 3473; + this.state = 3478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 254) { + if (_la === 255) { { - this.state = 3472; + this.state = 3477; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3476; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3475; + this.state = 3480; this.replicationClause(); } } @@ -15903,41 +15936,41 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixProperties(): AlterStatementSuffixPropertiesContext { let localContext = new AlterStatementSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_alterStatementSuffixProperties); + this.enterRule(localContext, 538, HiveSqlParser.RULE_alterStatementSuffixProperties); let _la: number; try { - this.state = 3487; + this.state = 3492; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3483; this.match(HiveSqlParser.KW_SET); - this.state = 3479; + this.state = 3484; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3480; + this.state = 3485; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3481; + this.state = 3486; this.match(HiveSqlParser.KW_UNSET); - this.state = 3482; + this.state = 3487; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3484; + this.state = 3489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3483; + this.state = 3488; this.ifExists(); } } - this.state = 3486; + this.state = 3491; this.tableProperties(); } break; @@ -15961,41 +15994,41 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewSuffixProperties(): AlterViewSuffixPropertiesContext { let localContext = new AlterViewSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_alterViewSuffixProperties); + this.enterRule(localContext, 540, HiveSqlParser.RULE_alterViewSuffixProperties); let _la: number; try { - this.state = 3498; + this.state = 3503; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3489; + this.state = 3494; this.match(HiveSqlParser.KW_SET); - this.state = 3490; + this.state = 3495; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3491; + this.state = 3496; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3492; + this.state = 3497; this.match(HiveSqlParser.KW_UNSET); - this.state = 3493; + this.state = 3498; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3495; + this.state = 3500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3494; + this.state = 3499; this.ifExists(); } } - this.state = 3497; + this.state = 3502; this.tableProperties(); } break; @@ -16019,35 +16052,35 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixSerdeProperties(): AlterStatementSuffixSerdePropertiesContext { let localContext = new AlterStatementSuffixSerdePropertiesContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_alterStatementSuffixSerdeProperties); + this.enterRule(localContext, 542, HiveSqlParser.RULE_alterStatementSuffixSerdeProperties); try { - this.state = 3515; + this.state = 3520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3500; + this.state = 3505; this.match(HiveSqlParser.KW_SET); - this.state = 3510; + this.state = 3515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 3501; - this.match(HiveSqlParser.KW_SERDE); - this.state = 3502; - localContext._serdeName = this.match(HiveSqlParser.StringLiteral); this.state = 3506; + this.match(HiveSqlParser.KW_SERDE); + this.state = 3507; + localContext._serdeName = this.match(HiveSqlParser.StringLiteral); + this.state = 3511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 3503; + this.state = 3508; this.match(HiveSqlParser.KW_WITH); - this.state = 3504; + this.state = 3509; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3505; + this.state = 3510; this.tableProperties(); } break; @@ -16056,9 +16089,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 3508; + this.state = 3513; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3509; + this.state = 3514; this.tableProperties(); } break; @@ -16070,11 +16103,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3512; + this.state = 3517; this.match(HiveSqlParser.KW_UNSET); - this.state = 3513; + this.state = 3518; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 3514; + this.state = 3519; this.tableProperties(); } break; @@ -16098,19 +16131,19 @@ export class HiveSqlParser extends SQLParserBase { } public tablePartitionPrefix(): TablePartitionPrefixContext { let localContext = new TablePartitionPrefixContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_tablePartitionPrefix); + this.enterRule(localContext, 544, HiveSqlParser.RULE_tablePartitionPrefix); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3522; this.tableName(); - this.state = 3519; + this.state = 3524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 3518; + this.state = 3523; this.partitionSpec(); } } @@ -16133,15 +16166,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixFileFormat(): AlterStatementSuffixFileFormatContext { let localContext = new AlterStatementSuffixFileFormatContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_alterStatementSuffixFileFormat); + this.enterRule(localContext, 546, HiveSqlParser.RULE_alterStatementSuffixFileFormat); try { this.enterOuterAlt(localContext, 1); { - this.state = 3521; + this.state = 3526; this.match(HiveSqlParser.KW_SET); - this.state = 3522; + this.state = 3527; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 3523; + this.state = 3528; this.fileFormat(); } } @@ -16161,20 +16194,20 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixClusterbySortby(): AlterStatementSuffixClusterbySortbyContext { let localContext = new AlterStatementSuffixClusterbySortbyContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_alterStatementSuffixClusterbySortby); + this.enterRule(localContext, 548, HiveSqlParser.RULE_alterStatementSuffixClusterbySortby); let _la: number; try { - this.state = 3528; + this.state = 3533; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3525; + this.state = 3530; this.match(HiveSqlParser.KW_NOT); - this.state = 3526; + this.state = 3531; _la = this.tokenStream.LA(1); - if(!(_la === 42 || _la === 314)) { + if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); } else { @@ -16186,7 +16219,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 2); { - this.state = 3527; + this.state = 3532; this.tableBuckets(); } break; @@ -16210,17 +16243,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffixSkewedLocation(): AlterTblPartitionStatementSuffixSkewedLocationContext { let localContext = new AlterTblPartitionStatementSuffixSkewedLocationContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_alterTblPartitionStatementSuffixSkewedLocation); + this.enterRule(localContext, 550, HiveSqlParser.RULE_alterTblPartitionStatementSuffixSkewedLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3530; + this.state = 3535; this.match(HiveSqlParser.KW_SET); - this.state = 3531; + this.state = 3536; this.match(HiveSqlParser.KW_SKEWED); - this.state = 3532; + this.state = 3537; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3533; + this.state = 3538; this.skewedLocations(); } } @@ -16240,15 +16273,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocations(): SkewedLocationsContext { let localContext = new SkewedLocationsContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_skewedLocations); + this.enterRule(localContext, 552, HiveSqlParser.RULE_skewedLocations); try { this.enterOuterAlt(localContext, 1); { - this.state = 3535; + this.state = 3540; this.match(HiveSqlParser.LPAREN); - this.state = 3536; + this.state = 3541; this.skewedLocationsList(); - this.state = 3537; + this.state = 3542; this.match(HiveSqlParser.RPAREN); } } @@ -16268,26 +16301,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationsList(): SkewedLocationsListContext { let localContext = new SkewedLocationsListContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_skewedLocationsList); + this.enterRule(localContext, 554, HiveSqlParser.RULE_skewedLocationsList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; - this.skewedLocationMap(); this.state = 3544; + this.skewedLocationMap(); + this.state = 3549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3540; + this.state = 3545; this.match(HiveSqlParser.COMMA); - this.state = 3541; + this.state = 3546; this.skewedLocationMap(); } } - this.state = 3546; + this.state = 3551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16309,15 +16342,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 556, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3547; + this.state = 3552; localContext._key = this.skewedValueLocationElement(); - this.state = 3548; + this.state = 3553; this.match(HiveSqlParser.EQUAL); - this.state = 3549; + this.state = 3554; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -16337,15 +16370,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixLocation(): AlterStatementSuffixLocationContext { let localContext = new AlterStatementSuffixLocationContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_alterStatementSuffixLocation); + this.enterRule(localContext, 558, HiveSqlParser.RULE_alterStatementSuffixLocation); try { this.enterOuterAlt(localContext, 1); { - this.state = 3551; + this.state = 3556; this.match(HiveSqlParser.KW_SET); - this.state = 3552; + this.state = 3557; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3553; + this.state = 3558; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } } @@ -16365,35 +16398,35 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixSkewedby(): AlterStatementSuffixSkewedbyContext { let localContext = new AlterStatementSuffixSkewedbyContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_alterStatementSuffixSkewedby); + this.enterRule(localContext, 560, HiveSqlParser.RULE_alterStatementSuffixSkewedby); try { - this.state = 3561; + this.state = 3566; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3560; this.tableSkewed(); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3561; this.match(HiveSqlParser.KW_NOT); - this.state = 3559; + this.state = 3564; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 3557; + this.state = 3562; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 3558; + this.state = 3563; this.storedAsDirs(); } break; @@ -16422,19 +16455,19 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExchangePartition(): AlterStatementSuffixExchangePartitionContext { let localContext = new AlterStatementSuffixExchangePartitionContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_alterStatementSuffixExchangePartition); + this.enterRule(localContext, 562, HiveSqlParser.RULE_alterStatementSuffixExchangePartition); try { this.enterOuterAlt(localContext, 1); { - this.state = 3563; + this.state = 3568; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 3564; + this.state = 3569; this.partitionSpec(); - this.state = 3565; + this.state = 3570; this.match(HiveSqlParser.KW_WITH); - this.state = 3566; + this.state = 3571; this.match(HiveSqlParser.KW_TABLE); - this.state = 3567; + this.state = 3572; localContext._exchangename = this.tableName(); } } @@ -16454,15 +16487,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixRenamePart(): AlterStatementSuffixRenamePartContext { let localContext = new AlterStatementSuffixRenamePartContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_alterStatementSuffixRenamePart); + this.enterRule(localContext, 564, HiveSqlParser.RULE_alterStatementSuffixRenamePart); try { this.enterOuterAlt(localContext, 1); { - this.state = 3569; + this.state = 3574; this.match(HiveSqlParser.KW_RENAME); - this.state = 3570; + this.state = 3575; this.match(HiveSqlParser.KW_TO); - this.state = 3571; + this.state = 3576; this.partitionSpec(); } } @@ -16482,41 +16515,41 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixStatsPart(): AlterStatementSuffixStatsPartContext { let localContext = new AlterStatementSuffixStatsPartContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_alterStatementSuffixStatsPart); + this.enterRule(localContext, 566, HiveSqlParser.RULE_alterStatementSuffixStatsPart); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3573; + this.state = 3578; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3574; + this.state = 3579; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3575; + this.state = 3580; this.match(HiveSqlParser.KW_FOR); - this.state = 3577; + this.state = 3582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 3576; + this.state = 3581; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3579; - localContext._colName = this.columnName(); - this.state = 3580; - this.match(HiveSqlParser.KW_SET); - this.state = 3581; - this.tableProperties(); this.state = 3584; + localContext._colName = this.columnName(); + this.state = 3585; + this.match(HiveSqlParser.KW_SET); + this.state = 3586; + this.tableProperties(); + this.state = 3589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3582; + this.state = 3587; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3583; + this.state = 3588; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -16539,11 +16572,11 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixMergeFiles(): AlterStatementSuffixMergeFilesContext { let localContext = new AlterStatementSuffixMergeFilesContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_alterStatementSuffixMergeFiles); + this.enterRule(localContext, 568, HiveSqlParser.RULE_alterStatementSuffixMergeFiles); try { this.enterOuterAlt(localContext, 1); { - this.state = 3586; + this.state = 3591; this.match(HiveSqlParser.KW_CONCATENATE); } } @@ -16563,15 +16596,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixBucketNum(): AlterStatementSuffixBucketNumContext { let localContext = new AlterStatementSuffixBucketNumContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_alterStatementSuffixBucketNum); + this.enterRule(localContext, 570, HiveSqlParser.RULE_alterStatementSuffixBucketNum); try { this.enterOuterAlt(localContext, 1); { - this.state = 3588; + this.state = 3593; this.match(HiveSqlParser.KW_INTO); - this.state = 3589; + this.state = 3594; localContext._num = this.match(HiveSqlParser.Number); - this.state = 3590; + this.state = 3595; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -16591,13 +16624,13 @@ export class HiveSqlParser extends SQLParserBase { } public blocking(): BlockingContext { let localContext = new BlockingContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_blocking); + this.enterRule(localContext, 572, HiveSqlParser.RULE_blocking); try { this.enterOuterAlt(localContext, 1); { - this.state = 3592; + this.state = 3597; this.match(HiveSqlParser.KW_AND); - this.state = 3593; + this.state = 3598; this.match(HiveSqlParser.KW_WAIT); } } @@ -16617,13 +16650,13 @@ export class HiveSqlParser extends SQLParserBase { } public compactPool(): CompactPoolContext { let localContext = new CompactPoolContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_compactPool); + this.enterRule(localContext, 574, HiveSqlParser.RULE_compactPool); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3600; this.match(HiveSqlParser.KW_POOL); - this.state = 3596; + this.state = 3601; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -16643,67 +16676,67 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixCompact(): AlterStatementSuffixCompactContext { let localContext = new AlterStatementSuffixCompactContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_alterStatementSuffixCompact); + this.enterRule(localContext, 576, HiveSqlParser.RULE_alterStatementSuffixCompact); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3598; + this.state = 3603; this.match(HiveSqlParser.KW_COMPACT); - this.state = 3599; + this.state = 3604; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 3601; + this.state = 3606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 3600; + this.state = 3605; this.blocking(); } } - this.state = 3604; + this.state = 3609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3603; + this.state = 3608; this.tableImplBuckets(); } } - this.state = 3607; + this.state = 3612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 3606; + this.state = 3611; this.orderByClause(); } } - this.state = 3610; + this.state = 3615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 245) { + if (_la === 246) { { - this.state = 3609; + this.state = 3614; this.compactPool(); } } - this.state = 3616; + this.state = 3621; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3612; + this.state = 3617; this.match(HiveSqlParser.KW_WITH); - this.state = 3613; + this.state = 3618; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3614; + this.state = 3619; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3615; + this.state = 3620; this.tableProperties(); } break; @@ -16726,15 +16759,15 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixSetOwner(): AlterStatementSuffixSetOwnerContext { let localContext = new AlterStatementSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_alterStatementSuffixSetOwner); + this.enterRule(localContext, 578, HiveSqlParser.RULE_alterStatementSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3623; this.match(HiveSqlParser.KW_SET); - this.state = 3619; + this.state = 3624; this.match(HiveSqlParser.KW_OWNER); - this.state = 3620; + this.state = 3625; this.principalName(); } } @@ -16754,21 +16787,21 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixSetPartSpec(): AlterStatementSuffixSetPartSpecContext { let localContext = new AlterStatementSuffixSetPartSpecContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_alterStatementSuffixSetPartSpec); + this.enterRule(localContext, 580, HiveSqlParser.RULE_alterStatementSuffixSetPartSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 3622; - this.match(HiveSqlParser.KW_SET); - this.state = 3623; - this.match(HiveSqlParser.KW_PARTITION); - this.state = 3624; - this.match(HiveSqlParser.KW_SPEC); - this.state = 3625; - this.match(HiveSqlParser.LPAREN); - this.state = 3626; - localContext._spec = this.partitionTransformSpec(); this.state = 3627; + this.match(HiveSqlParser.KW_SET); + this.state = 3628; + this.match(HiveSqlParser.KW_PARTITION); + this.state = 3629; + this.match(HiveSqlParser.KW_SPEC); + this.state = 3630; + this.match(HiveSqlParser.LPAREN); + this.state = 3631; + localContext._spec = this.partitionTransformSpec(); + this.state = 3632; this.match(HiveSqlParser.RPAREN); } } @@ -16788,26 +16821,26 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 582, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3629; + this.state = 3634; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3639; + this.state = 3644; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3630; + this.state = 3635; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3631; + this.state = 3636; this.match(HiveSqlParser.LPAREN); - this.state = 3632; + this.state = 3637; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 425 || _la === 430)) { + if(!(_la === 426 || _la === 431)) { localContext._rollbackParam = this.errorHandler.recoverInline(this); } else { @@ -16818,28 +16851,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3633; + this.state = 3638; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3634; + this.state = 3639; this.match(HiveSqlParser.LPAREN); - this.state = 3635; + this.state = 3640; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3636; + this.state = 3641; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3637; + this.state = 3642; this.match(HiveSqlParser.LPAREN); - this.state = 3638; + this.state = 3643; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3641; + this.state = 3646; this.match(HiveSqlParser.RPAREN); } } @@ -16859,28 +16892,28 @@ export class HiveSqlParser extends SQLParserBase { } public alterIndexStatementSuffix(): AlterIndexStatementSuffixContext { let localContext = new AlterIndexStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_alterIndexStatementSuffix); + this.enterRule(localContext, 584, HiveSqlParser.RULE_alterIndexStatementSuffix); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3648; this.id_(); - this.state = 3644; + this.state = 3649; this.match(HiveSqlParser.KW_ON); - this.state = 3645; + this.state = 3650; this.tableName(); - this.state = 3647; + this.state = 3652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 3646; + this.state = 3651; this.partitionSpec(); } } - this.state = 3649; + this.state = 3654; this.match(HiveSqlParser.KW_REBUILD); } } @@ -16900,39 +16933,39 @@ export class HiveSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 586, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3664; + this.state = 3669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3651; - this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3652; - localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3653; - this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3654; - localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3655; - this.match(HiveSqlParser.KW_SERDE); this.state = 3656; - localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); + this.match(HiveSqlParser.KW_INPUTFORMAT); + this.state = 3657; + localContext._inFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 3658; + this.match(HiveSqlParser.KW_OUTPUTFORMAT); + this.state = 3659; + localContext._outFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 3660; + this.match(HiveSqlParser.KW_SERDE); this.state = 3661; + localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); + this.state = 3666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3657; + this.state = 3662; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3658; + this.state = 3663; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3659; + this.state = 3664; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3660; + this.state = 3665; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -16942,7 +16975,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3663; + this.state = 3668; localContext._genericSpec = this.id_(); } break; @@ -16964,29 +16997,29 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 588, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3669; + this.state = 3674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3666; + this.state = 3671; this.alterDataConnectorSuffixProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3667; + this.state = 3672; this.alterDataConnectorSuffixSetOwner(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3668; + this.state = 3673; this.alterDataConnectorSuffixSetUrl(); } break; @@ -17008,17 +17041,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorSuffixProperties(): AlterDataConnectorSuffixPropertiesContext { let localContext = new AlterDataConnectorSuffixPropertiesContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_alterDataConnectorSuffixProperties); + this.enterRule(localContext, 590, HiveSqlParser.RULE_alterDataConnectorSuffixProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3671; + this.state = 3676; localContext._name = this.dbSchemaName(); - this.state = 3672; + this.state = 3677; this.match(HiveSqlParser.KW_SET); - this.state = 3673; + this.state = 3678; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3674; + this.state = 3679; this.dcProperties(); } } @@ -17038,17 +17071,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorSuffixSetOwner(): AlterDataConnectorSuffixSetOwnerContext { let localContext = new AlterDataConnectorSuffixSetOwnerContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_alterDataConnectorSuffixSetOwner); + this.enterRule(localContext, 592, HiveSqlParser.RULE_alterDataConnectorSuffixSetOwner); try { this.enterOuterAlt(localContext, 1); { - this.state = 3676; + this.state = 3681; localContext._dcName = this.dbSchemaName(); - this.state = 3677; + this.state = 3682; this.match(HiveSqlParser.KW_SET); - this.state = 3678; + this.state = 3683; this.match(HiveSqlParser.KW_OWNER); - this.state = 3679; + this.state = 3684; this.principalAlterName(); } } @@ -17068,17 +17101,17 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorSuffixSetUrl(): AlterDataConnectorSuffixSetUrlContext { let localContext = new AlterDataConnectorSuffixSetUrlContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_alterDataConnectorSuffixSetUrl); + this.enterRule(localContext, 594, HiveSqlParser.RULE_alterDataConnectorSuffixSetUrl); try { this.enterOuterAlt(localContext, 1); { - this.state = 3681; + this.state = 3686; localContext._dcName = this.dbSchemaName(); - this.state = 3682; + this.state = 3687; this.match(HiveSqlParser.KW_SET); - this.state = 3683; + this.state = 3688; this.match(HiveSqlParser.KW_URL); - this.state = 3684; + this.state = 3689; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } } @@ -17098,39 +17131,39 @@ export class HiveSqlParser extends SQLParserBase { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 596, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3695; + this.state = 3700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3686; + this.state = 3691; this.match(HiveSqlParser.KW_LIKE); - this.state = 3687; + this.state = 3692; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3688; + this.state = 3693; this.match(HiveSqlParser.KW_LIKE); - this.state = 3689; + this.state = 3694; this.match(HiveSqlParser.KW_FILE); - this.state = 3690; + this.state = 3695; localContext._format = this.id_(); - this.state = 3691; + this.state = 3696; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3693; + this.state = 3698; this.match(HiveSqlParser.KW_LIKE); - this.state = 3694; + this.state = 3699; localContext._likeName = this.tableName(); } break; @@ -17152,114 +17185,114 @@ export class HiveSqlParser extends SQLParserBase { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 598, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3820; + this.state = 3831; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3702; this.match(HiveSqlParser.KW_CREATE); - this.state = 3699; + this.state = 3704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 332) { + if (_la === 333) { { - this.state = 3698; + this.state = 3703; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3702; + this.state = 3707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 344) { + if (_la === 345) { { - this.state = 3701; + this.state = 3706; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3705; + this.state = 3710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3704; + this.state = 3709; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3707; + this.state = 3712; this.match(HiveSqlParser.KW_TABLE); - this.state = 3709; + this.state = 3714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3708; + this.state = 3713; this.ifNotExists(); } } - this.state = 3711; + this.state = 3716; localContext._name = this.tableNameCreate(); - this.state = 3762; + this.state = 3770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3712; + this.state = 3717; this.likeTableOrFile(); - this.state = 3714; + this.state = 3719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 238) { { - this.state = 3713; + this.state = 3718; this.createTablePartitionSpec(); } } - this.state = 3717; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 3716; + this.state = 3721; this.tableRowFormat(); } } - this.state = 3720; + this.state = 3725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 3719; + this.state = 3724; this.tableFileFormat(); } } - this.state = 3723; + this.state = 3728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 3722; + this.state = 3727; this.tableLocation(); } } - this.state = 3726; + this.state = 3731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 3725; + this.state = 3730; this.tablePropertiesPrefixed(); } } @@ -17291,6 +17324,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_IMPORT: case HiveSqlParser.KW_INSERT: case HiveSqlParser.KW_KILL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LOAD: case HiveSqlParser.KW_LOCATION: case HiveSqlParser.KW_LOCK: @@ -17322,108 +17356,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3732; + this.state = 3737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3728; + this.state = 3733; this.match(HiveSqlParser.LPAREN); - this.state = 3729; + this.state = 3734; this.columnNameTypeOrConstraintList(); - this.state = 3730; + this.state = 3735; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3735; + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3734; + this.state = 3739; this.tableComment(); } } - this.state = 3738; + this.state = 3743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 183) { { - this.state = 3737; + this.state = 3742; + this.tableLifecycle(); + } + } + + this.state = 3746; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 238) { + { + this.state = 3745; this.createTablePartitionSpec(); } } - this.state = 3741; + this.state = 3749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3740; + this.state = 3748; this.tableBuckets(); } } - this.state = 3744; + this.state = 3752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 309) { + if (_la === 310) { { - this.state = 3743; + this.state = 3751; this.tableSkewed(); } } - this.state = 3747; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 3746; + this.state = 3754; this.tableRowFormat(); } } - this.state = 3750; + this.state = 3758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 3749; + this.state = 3757; this.tableFileFormat(); } } - this.state = 3753; + this.state = 3761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 3752; + this.state = 3760; this.tableLocation(); } } - this.state = 3756; + this.state = 3764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 3755; + this.state = 3763; this.tablePropertiesPrefixed(); } } - this.state = 3760; + this.state = 3768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3758; + this.state = 3766; this.match(HiveSqlParser.KW_AS); - this.state = 3759; + this.state = 3767; this.selectStatementWithCTE(); } } @@ -17438,67 +17482,67 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3764; + this.state = 3772; this.match(HiveSqlParser.KW_CREATE); - this.state = 3765; + this.state = 3773; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3766; + this.state = 3774; this.match(HiveSqlParser.KW_TABLE); - this.state = 3768; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3767; + this.state = 3775; this.ifNotExists(); } } - this.state = 3770; + this.state = 3778; localContext._name = this.tableNameCreate(); - this.state = 3818; + this.state = 3829; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3771; + this.state = 3779; this.likeTableOrFile(); - this.state = 3773; + this.state = 3781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 3772; + this.state = 3780; this.tableRowFormat(); } } - this.state = 3776; + this.state = 3784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 3775; + this.state = 3783; this.tableFileFormat(); } } - this.state = 3779; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 3778; + this.state = 3786; this.tableLocation(); } } - this.state = 3782; + this.state = 3790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 3781; + this.state = 3789; this.tablePropertiesPrefixed(); } } @@ -17530,6 +17574,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_IMPORT: case HiveSqlParser.KW_INSERT: case HiveSqlParser.KW_KILL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LOAD: case HiveSqlParser.KW_LOCATION: case HiveSqlParser.KW_LOCK: @@ -17561,108 +17606,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3788; + this.state = 3796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3784; + this.state = 3792; this.match(HiveSqlParser.LPAREN); - this.state = 3785; + this.state = 3793; this.columnNameTypeOrConstraintList(); - this.state = 3786; + this.state = 3794; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3791; + this.state = 3799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3790; + this.state = 3798; this.tableComment(); } } - this.state = 3794; + this.state = 3802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 237) { + if (_la === 183) { { - this.state = 3793; + this.state = 3801; + this.tableLifecycle(); + } + } + + this.state = 3805; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 238) { + { + this.state = 3804; this.createTablePartitionSpec(); } } - this.state = 3797; + this.state = 3808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3796; + this.state = 3807; this.tableBuckets(); } } - this.state = 3800; + this.state = 3811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 309) { + if (_la === 310) { { - this.state = 3799; + this.state = 3810; this.tableSkewed(); } } - this.state = 3803; + this.state = 3814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 290) { + if (_la === 291) { { - this.state = 3802; + this.state = 3813; this.tableRowFormat(); } } - this.state = 3806; + this.state = 3817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 320) { + if (_la === 321) { { - this.state = 3805; + this.state = 3816; this.tableFileFormat(); } } - this.state = 3809; + this.state = 3820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 188) { + if (_la === 189) { { - this.state = 3808; + this.state = 3819; this.tableLocation(); } } - this.state = 3812; + this.state = 3823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 3811; + this.state = 3822; this.tablePropertiesPrefixed(); } } - this.state = 3816; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3814; + this.state = 3825; this.match(HiveSqlParser.KW_AS); - this.state = 3815; + this.state = 3826; this.selectStatementWithCTE(); } } @@ -17692,67 +17747,67 @@ export class HiveSqlParser extends SQLParserBase { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 600, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3822; + this.state = 3833; this.match(HiveSqlParser.KW_CREATE); - this.state = 3823; + this.state = 3834; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3825; + this.state = 3836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3824; + this.state = 3835; this.ifNotExists(); } } - this.state = 3827; + this.state = 3838; localContext._name = this.id_(); - this.state = 3829; + this.state = 3840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 3828; + this.state = 3839; this.dataConnectorType(); } } - this.state = 3832; + this.state = 3843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 366) { + if (_la === 367) { { - this.state = 3831; + this.state = 3842; this.dataConnectorUrl(); } } - this.state = 3835; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3834; + this.state = 3845; this.dataConnectorComment(); } } - this.state = 3840; + this.state = 3851; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3837; + this.state = 3848; this.match(HiveSqlParser.KW_WITH); - this.state = 3838; + this.state = 3849; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3839; + this.state = 3850; localContext._dcprops = this.dcProperties(); } break; @@ -17775,13 +17830,13 @@ export class HiveSqlParser extends SQLParserBase { } public dataConnectorComment(): DataConnectorCommentContext { let localContext = new DataConnectorCommentContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_dataConnectorComment); + this.enterRule(localContext, 602, HiveSqlParser.RULE_dataConnectorComment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3842; + this.state = 3853; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3843; + this.state = 3854; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -17801,13 +17856,13 @@ export class HiveSqlParser extends SQLParserBase { } public dataConnectorUrl(): DataConnectorUrlContext { let localContext = new DataConnectorUrlContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_dataConnectorUrl); + this.enterRule(localContext, 604, HiveSqlParser.RULE_dataConnectorUrl); try { this.enterOuterAlt(localContext, 1); { - this.state = 3845; + this.state = 3856; this.match(HiveSqlParser.KW_URL); - this.state = 3846; + this.state = 3857; localContext._url = this.match(HiveSqlParser.StringLiteral); } } @@ -17827,13 +17882,13 @@ export class HiveSqlParser extends SQLParserBase { } public dataConnectorType(): DataConnectorTypeContext { let localContext = new DataConnectorTypeContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_dataConnectorType); + this.enterRule(localContext, 606, HiveSqlParser.RULE_dataConnectorType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3848; + this.state = 3859; this.match(HiveSqlParser.KW_TYPE); - this.state = 3849; + this.state = 3860; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } @@ -17853,15 +17908,15 @@ export class HiveSqlParser extends SQLParserBase { } public dcProperties(): DcPropertiesContext { let localContext = new DcPropertiesContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_dcProperties); + this.enterRule(localContext, 608, HiveSqlParser.RULE_dcProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3862; this.match(HiveSqlParser.LPAREN); - this.state = 3852; + this.state = 3863; this.dbPropertiesList(); - this.state = 3853; + this.state = 3864; this.match(HiveSqlParser.RPAREN); } } @@ -17881,26 +17936,26 @@ export class HiveSqlParser extends SQLParserBase { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 610, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3855; + this.state = 3866; this.match(HiveSqlParser.KW_DROP); - this.state = 3856; + this.state = 3867; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3858; + this.state = 3869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3857; + this.state = 3868; this.ifExists(); } } - this.state = 3860; + this.state = 3871; this.id_(); } } @@ -17920,28 +17975,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 612, HiveSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3867; + this.state = 3878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3862; + this.state = 3873; this.id_(); - this.state = 3863; + this.state = 3874; this.match(HiveSqlParser.DOT); } } - this.state = 3869; + this.state = 3880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3870; + this.state = 3881; this.match(HiveSqlParser.STAR); } } @@ -17961,11 +18016,11 @@ export class HiveSqlParser extends SQLParserBase { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_defaultValue); + this.enterRule(localContext, 614, HiveSqlParser.RULE_defaultValue); try { this.enterOuterAlt(localContext, 1); { - this.state = 3872; + this.state = 3883; this.match(HiveSqlParser.KW_DEFAULT); } } @@ -17985,26 +18040,26 @@ export class HiveSqlParser extends SQLParserBase { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 616, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3874; + this.state = 3885; this.expression(); - this.state = 3879; + this.state = 3890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3875; + this.state = 3886; this.match(HiveSqlParser.COMMA); - this.state = 3876; + this.state = 3887; this.expression(); } } - this.state = 3881; + this.state = 3892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18026,26 +18081,26 @@ export class HiveSqlParser extends SQLParserBase { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 618, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3882; + this.state = 3893; this.id_(); - this.state = 3887; + this.state = 3898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 3883; + this.state = 3894; this.match(HiveSqlParser.COMMA); - this.state = 3884; + this.state = 3895; this.id_(); } } - this.state = 3889; + this.state = 3900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18067,13 +18122,13 @@ export class HiveSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 620, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3890; + this.state = 3901; this.match(HiveSqlParser.KW_FROM); - this.state = 3891; + this.state = 3902; this.fromSource(); } } @@ -18093,35 +18148,35 @@ export class HiveSqlParser extends SQLParserBase { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 622, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3902; + this.state = 3913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3893; + this.state = 3904; this.uniqueJoinToken(); - this.state = 3894; + this.state = 3905; this.uniqueJoinSource(); - this.state = 3897; + this.state = 3908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3895; + this.state = 3906; this.match(HiveSqlParser.COMMA); - this.state = 3896; + this.state = 3907; this.uniqueJoinSource(); } } - this.state = 3899; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 396); + } while (_la === 397); } break; case HiveSqlParser.KW_ABORT: @@ -18223,6 +18278,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -18367,7 +18423,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3901; + this.state = 3912; this.joinSource(); } break; @@ -18391,112 +18447,112 @@ export class HiveSqlParser extends SQLParserBase { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 624, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3936; + this.state = 3947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3904; - this.tableSource(); - this.state = 3908; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 3905; - this.lateralView(); - } - } - } - this.state = 3910; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); - } - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3911; - this.virtualTableSource(); this.state = 3915; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 3912; - this.lateralView(); - } - } - } - this.state = 3917; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); - } - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3918; - this.subQuerySource(); - this.state = 3922; + this.tableSource(); + this.state = 3919; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3919; + this.state = 3916; this.lateralView(); } } } - this.state = 3924; + this.state = 3921; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); } } break; - case 4: - this.enterOuterAlt(localContext, 4); + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 3925; - this.partitionedTableFunction(); - this.state = 3929; + this.state = 3922; + this.virtualTableSource(); + this.state = 3926; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3926; + this.state = 3923; this.lateralView(); } } } - this.state = 3931; + this.state = 3928; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 450, this.context); } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 3929; + this.subQuerySource(); + this.state = 3933; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3930; + this.lateralView(); + } + } + } + this.state = 3935; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + } + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 3936; + this.partitionedTableFunction(); + this.state = 3940; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3937; + this.lateralView(); + } + } + } + this.state = 3942; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 452, this.context); + } + } + break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3932; + this.state = 3943; this.match(HiveSqlParser.LPAREN); - this.state = 3933; + this.state = 3944; this.joinSource(); - this.state = 3934; + this.state = 3945; this.match(HiveSqlParser.RPAREN); } break; @@ -18518,39 +18574,39 @@ export class HiveSqlParser extends SQLParserBase { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 626, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3938; - this.atomjoinSource(); this.state = 3949; + this.atomjoinSource(); + this.state = 3960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 284 || _la === 396) { + while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3939; + this.state = 3950; this.joinToken(); - this.state = 3940; + this.state = 3951; this.joinSourcePart(); - this.state = 3945; + this.state = 3956; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3941; + this.state = 3952; this.match(HiveSqlParser.KW_ON); - this.state = 3942; + this.state = 3953; this.expression(); } break; case HiveSqlParser.KW_USING: { - this.state = 3943; + this.state = 3954; this.match(HiveSqlParser.KW_USING); - this.state = 3944; + this.state = 3955; this.columnParenthesesList(); } break; @@ -18628,7 +18684,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3951; + this.state = 3962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18650,54 +18706,54 @@ export class HiveSqlParser extends SQLParserBase { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 628, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3956; + this.state = 3967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3952; + this.state = 3963; this.tableSource(); } break; case 2: { - this.state = 3953; + this.state = 3964; this.virtualTableSource(); } break; case 3: { - this.state = 3954; + this.state = 3965; this.subQuerySource(); } break; case 4: { - this.state = 3955; + this.state = 3966; this.partitionedTableFunction(); } break; } - this.state = 3961; + this.state = 3972; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3958; + this.state = 3969; this.lateralView(); } } } - this.state = 3963; + this.state = 3974; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } } } @@ -18717,24 +18773,24 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 630, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 250) { { - this.state = 3964; + this.state = 3975; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3967; + this.state = 3978; this.uniqueJoinTableSource(); - this.state = 3968; + this.state = 3979; this.uniqueJoinExpr(); } } @@ -18754,15 +18810,15 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinExpr(): UniqueJoinExprContext { let localContext = new UniqueJoinExprContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_uniqueJoinExpr); + this.enterRule(localContext, 632, HiveSqlParser.RULE_uniqueJoinExpr); try { this.enterOuterAlt(localContext, 1); { - this.state = 3970; + this.state = 3981; this.match(HiveSqlParser.LPAREN); - this.state = 3971; + this.state = 3982; this.expressionList(); - this.state = 3972; + this.state = 3983; this.match(HiveSqlParser.RPAREN); } } @@ -18782,11 +18838,11 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinToken(): UniqueJoinTokenContext { let localContext = new UniqueJoinTokenContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_uniqueJoinToken); + this.enterRule(localContext, 634, HiveSqlParser.RULE_uniqueJoinToken); try { this.enterOuterAlt(localContext, 1); { - this.state = 3974; + this.state = 3985; this.match(HiveSqlParser.KW_UNIQUEJOIN); } } @@ -18806,16 +18862,16 @@ export class HiveSqlParser extends SQLParserBase { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 636, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3990; + this.state = 4001; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3976; + this.state = 3987; this.match(HiveSqlParser.COMMA); } break; @@ -18827,39 +18883,39 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3987; + this.state = 3998; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3977; + this.state = 3988; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3978; + this.state = 3989; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3979; + this.state = 3990; _la = this.tokenStream.LA(1); - if(!(_la === 140 || _la === 284)) { + if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3981; + this.state = 3992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 230) { + if (_la === 231) { { - this.state = 3980; + this.state = 3991; this.match(HiveSqlParser.KW_OUTER); } } @@ -18868,16 +18924,16 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3983; + this.state = 3994; this.match(HiveSqlParser.KW_LEFT); - this.state = 3985; + this.state = 3996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 12 || _la === 230 || _la === 299) { + if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3984; + this.state = 3995; _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 230 || _la === 299)) { + if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); } else { @@ -18894,7 +18950,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3989; + this.state = 4000; this.match(HiveSqlParser.KW_JOIN); } break; @@ -18918,52 +18974,52 @@ export class HiveSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 638, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; - this.state = 4049; + this.state = 4060; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3992; + this.state = 4003; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3993; + this.state = 4004; this.match(HiveSqlParser.KW_VIEW); - this.state = 3994; + this.state = 4005; this.match(HiveSqlParser.KW_OUTER); - this.state = 3995; - this.function_(); - this.state = 3996; - this.tableAlias(); this.state = 4006; + this.function_(); + this.state = 4007; + this.tableAlias(); + this.state = 4017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3997; + this.state = 4008; this.match(HiveSqlParser.KW_AS); - this.state = 3998; + this.state = 4009; this.id_(); - this.state = 4003; + this.state = 4014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 463, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3999; + this.state = 4010; this.match(HiveSqlParser.COMMA); - this.state = 4000; + this.state = 4011; this.id_(); } } } - this.state = 4005; + this.state = 4016; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 463, this.context); } } } @@ -18973,55 +19029,55 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4009; + this.state = 4020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 396) { + if (_la === 397) { { - this.state = 4008; + this.state = 4019; this.match(HiveSqlParser.COMMA); } } - this.state = 4011; + this.state = 4022; this.match(HiveSqlParser.KW_LATERAL); - this.state = 4047; + this.state = 4058; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 4012; + this.state = 4023; this.match(HiveSqlParser.KW_VIEW); - this.state = 4013; - this.function_(); - this.state = 4014; - this.tableAlias(); this.state = 4024; + this.function_(); + this.state = 4025; + this.tableAlias(); + this.state = 4035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4015; + this.state = 4026; this.match(HiveSqlParser.KW_AS); - this.state = 4016; + this.state = 4027; this.id_(); - this.state = 4021; + this.state = 4032; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 464, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4017; + this.state = 4028; this.match(HiveSqlParser.COMMA); - this.state = 4018; + this.state = 4029; this.id_(); } } } - this.state = 4023; + this.state = 4034; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 464, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } } } @@ -19030,52 +19086,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 4026; + this.state = 4037; this.match(HiveSqlParser.KW_TABLE); - this.state = 4027; + this.state = 4038; this.match(HiveSqlParser.LPAREN); - this.state = 4028; + this.state = 4039; this.valuesClause(); - this.state = 4029; + this.state = 4040; this.match(HiveSqlParser.RPAREN); - this.state = 4031; + this.state = 4042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4030; + this.state = 4041; this.match(HiveSqlParser.KW_AS); } } - this.state = 4033; + this.state = 4044; this.tableAlias(); - this.state = 4045; + this.state = 4056; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 4034; + this.state = 4045; this.match(HiveSqlParser.LPAREN); - this.state = 4035; + this.state = 4046; this.id_(); - this.state = 4040; + this.state = 4051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4036; + this.state = 4047; this.match(HiveSqlParser.COMMA); - this.state = 4037; + this.state = 4048; this.id_(); } } - this.state = 4042; + this.state = 4053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4043; + this.state = 4054; this.match(HiveSqlParser.RPAREN); } break; @@ -19105,11 +19161,11 @@ export class HiveSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 640, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 4051; + this.state = 4062; this.id_(); } } @@ -19129,56 +19185,56 @@ export class HiveSqlParser extends SQLParserBase { } public tableBucketSample(): TableBucketSampleContext { let localContext = new TableBucketSampleContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_tableBucketSample); + this.enterRule(localContext, 642, HiveSqlParser.RULE_tableBucketSample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4053; + this.state = 4064; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 4054; + this.state = 4065; this.match(HiveSqlParser.LPAREN); - this.state = 4055; + this.state = 4066; this.match(HiveSqlParser.KW_BUCKET); - this.state = 4056; + this.state = 4067; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 4057; + this.state = 4068; this.match(HiveSqlParser.KW_OUT); - this.state = 4058; - this.match(HiveSqlParser.KW_OF); - this.state = 4059; - localContext._denominator = this.match(HiveSqlParser.Number); this.state = 4069; + this.match(HiveSqlParser.KW_OF); + this.state = 4070; + localContext._denominator = this.match(HiveSqlParser.Number); + this.state = 4080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 223) { + if (_la === 224) { { - this.state = 4060; + this.state = 4071; this.match(HiveSqlParser.KW_ON); - this.state = 4061; + this.state = 4072; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 4066; + this.state = 4077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4062; + this.state = 4073; this.match(HiveSqlParser.COMMA); - this.state = 4063; + this.state = 4074; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 4068; + this.state = 4079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4071; + this.state = 4082; this.match(HiveSqlParser.RPAREN); } } @@ -19198,25 +19254,25 @@ export class HiveSqlParser extends SQLParserBase { } public splitSample(): SplitSampleContext { let localContext = new SplitSampleContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_splitSample); + this.enterRule(localContext, 644, HiveSqlParser.RULE_splitSample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4073; + this.state = 4084; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 4074; + this.state = 4085; this.match(HiveSqlParser.LPAREN); - this.state = 4078; + this.state = 4089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 4075; + this.state = 4086; this.match(HiveSqlParser.Number); - this.state = 4076; + this.state = 4087; _la = this.tokenStream.LA(1); - if(!(_la === 240 || _la === 291)) { + if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); } else { @@ -19227,14 +19283,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 4077; + this.state = 4088; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4080; + this.state = 4091; this.match(HiveSqlParser.RPAREN); } } @@ -19254,22 +19310,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 646, HiveSqlParser.RULE_tableSample); try { - this.state = 4084; + this.state = 4095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4082; + this.state = 4093; this.tableBucketSample(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4083; + this.state = 4094; this.splitSample(); } break; @@ -19291,59 +19347,59 @@ export class HiveSqlParser extends SQLParserBase { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 648, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4086; + this.state = 4097; localContext._tabname = this.tableOrView(); - this.state = 4088; + this.state = 4099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 4087; + this.state = 4098; localContext._props = this.tableProperties(); } break; } - this.state = 4091; + this.state = 4102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 330) { + if (_la === 331) { { - this.state = 4090; + this.state = 4101; localContext._ts = this.tableSample(); } } - this.state = 4094; + this.state = 4105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 4093; + this.state = 4104; localContext._asOf = this.asOfClause(); } } - this.state = 4100; + this.state = 4111; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { case 1: { - this.state = 4097; + this.state = 4108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4096; + this.state = 4107; this.match(HiveSqlParser.KW_AS); } } - this.state = 4099; + this.state = 4110; localContext._alias = this.id_(); } break; @@ -19366,38 +19422,38 @@ export class HiveSqlParser extends SQLParserBase { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 650, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4102; + this.state = 4113; this.match(HiveSqlParser.KW_FOR); - this.state = 4112; + this.state = 4123; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 4103; + this.state = 4114; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 4104; + this.state = 4115; this.match(HiveSqlParser.KW_AS); - this.state = 4105; + this.state = 4116; this.match(HiveSqlParser.KW_OF); - this.state = 4106; + this.state = 4117; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 4107; + this.state = 4118; this.match(HiveSqlParser.KW_FOR); - this.state = 4108; + this.state = 4119; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 4109; + this.state = 4120; this.match(HiveSqlParser.KW_AS); - this.state = 4110; + this.state = 4121; this.match(HiveSqlParser.KW_OF); - this.state = 4111; + this.state = 4122; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -19422,39 +19478,39 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinTableSource(): UniqueJoinTableSourceContext { let localContext = new UniqueJoinTableSourceContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_uniqueJoinTableSource); + this.enterRule(localContext, 652, HiveSqlParser.RULE_uniqueJoinTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4114; + this.state = 4125; localContext._tabname = this.tableOrView(); - this.state = 4116; + this.state = 4127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 330) { + if (_la === 331) { { - this.state = 4115; + this.state = 4126; localContext._ts = this.tableSample(); } } - this.state = 4122; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4119; + this.state = 4130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4118; + this.state = 4129; this.match(HiveSqlParser.KW_AS); } } - this.state = 4121; + this.state = 4132; localContext._alias = this.id_(); } } @@ -19477,11 +19533,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 654, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 4124; + this.state = 4135; this.id_(); } } @@ -19501,11 +19557,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 656, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4126; + this.state = 4137; this.id_(); } } @@ -19525,22 +19581,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 658, HiveSqlParser.RULE_tableOrView); try { - this.state = 4130; + this.state = 4141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4128; + this.state = 4139; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4129; + this.state = 4140; this.viewName(); } break; @@ -19562,28 +19618,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 660, HiveSqlParser.RULE_tableName); try { - this.state = 4140; + this.state = 4151; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4132; + this.state = 4143; localContext._db = this.id_(); - this.state = 4133; + this.state = 4144; this.match(HiveSqlParser.DOT); - this.state = 4134; + this.state = 4145; localContext._tab = this.id_(); - this.state = 4137; + this.state = 4148; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: { - this.state = 4135; + this.state = 4146; this.match(HiveSqlParser.DOT); - this.state = 4136; + this.state = 4147; localContext._meta = this.id_(); } break; @@ -19593,7 +19649,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4139; + this.state = 4150; localContext._tab = this.id_(); } break; @@ -19615,29 +19671,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 662, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 4150; + this.state = 4161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4142; + this.state = 4153; localContext._db = this.id_(); - this.state = 4143; + this.state = 4154; this.match(HiveSqlParser.DOT); - this.state = 4144; + this.state = 4155; localContext._tab = this.id_(); - this.state = 4147; + this.state = 4158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 394) { + if (_la === 395) { { - this.state = 4145; + this.state = 4156; this.match(HiveSqlParser.DOT); - this.state = 4146; + this.state = 4157; localContext._meta = this.id_(); } } @@ -19647,7 +19703,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4149; + this.state = 4160; localContext._tab = this.id_(); } break; @@ -19669,23 +19725,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 664, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 4155; + this.state = 4166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 4152; + this.state = 4163; localContext._db = this.id_(); - this.state = 4153; + this.state = 4164; this.match(HiveSqlParser.DOT); } break; } - this.state = 4157; + this.state = 4168; localContext._view = this.id_(); } } @@ -19705,23 +19761,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 666, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4162; + this.state = 4173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 4159; + this.state = 4170; localContext._db = this.id_(); - this.state = 4160; + this.state = 4171; this.match(HiveSqlParser.DOT); } break; } - this.state = 4164; + this.state = 4175; localContext._view = this.id_(); } } @@ -19741,28 +19797,28 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 668, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4166; + this.state = 4177; this.match(HiveSqlParser.LPAREN); - this.state = 4167; + this.state = 4178; this.queryStatementExpression(); - this.state = 4168; + this.state = 4179; this.match(HiveSqlParser.RPAREN); - this.state = 4170; + this.state = 4181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4169; + this.state = 4180; this.match(HiveSqlParser.KW_AS); } } - this.state = 4172; + this.state = 4183; this.id_(); } } @@ -19782,23 +19838,23 @@ export class HiveSqlParser extends SQLParserBase { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 670, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 4185; + this.state = 4196; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 4174; + this.state = 4185; this.partitionByClause(); - this.state = 4176; + this.state = 4187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 229) { { - this.state = 4175; + this.state = 4186; this.orderByClause(); } } @@ -19808,21 +19864,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4178; + this.state = 4189; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 4179; + this.state = 4190; this.distributeByClause(); - this.state = 4181; + this.state = 4192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 313) { + if (_la === 314) { { - this.state = 4180; + this.state = 4191; this.sortByClause(); } } @@ -19832,14 +19888,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 4183; + this.state = 4194; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 4184; + this.state = 4195; this.clusterByClause(); } break; @@ -19863,29 +19919,29 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 672, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 4190; + this.state = 4201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4187; + this.state = 4198; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4188; + this.state = 4199; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4189; + this.state = 4200; this.partitionedTableFunction(); } break; @@ -19907,75 +19963,75 @@ export class HiveSqlParser extends SQLParserBase { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 674, HiveSqlParser.RULE_partitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4192; + this.state = 4203; localContext._n = this.id_(); - this.state = 4193; + this.state = 4204; this.match(HiveSqlParser.LPAREN); - this.state = 4194; + this.state = 4205; this.match(HiveSqlParser.KW_ON); - this.state = 4195; + this.state = 4206; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 4197; + this.state = 4208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 41 || _la === 97 || _la === 228 || _la === 236 || _la === 313) { + if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 4196; + this.state = 4207; localContext._spec = this.partitioningSpec(); } } - this.state = 4214; + this.state = 4225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 431) { + if (_la === 432) { { - this.state = 4199; + this.state = 4210; this.match(HiveSqlParser.Identifier); - this.state = 4200; - this.match(HiveSqlParser.LPAREN); - this.state = 4201; - this.expression(); - this.state = 4202; - this.match(HiveSqlParser.RPAREN); this.state = 4211; + this.match(HiveSqlParser.LPAREN); + this.state = 4212; + this.expression(); + this.state = 4213; + this.match(HiveSqlParser.RPAREN); + this.state = 4222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4203; + this.state = 4214; this.match(HiveSqlParser.COMMA); - this.state = 4204; + this.state = 4215; this.match(HiveSqlParser.Identifier); - this.state = 4205; + this.state = 4216; this.match(HiveSqlParser.LPAREN); - this.state = 4206; + this.state = 4217; this.expression(); - this.state = 4207; + this.state = 4218; this.match(HiveSqlParser.RPAREN); } } - this.state = 4213; + this.state = 4224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4216; + this.state = 4227; this.match(HiveSqlParser.RPAREN); - this.state = 4218; + this.state = 4229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 4217; + this.state = 4228; localContext._alias = this.id_(); } break; @@ -19998,13 +20054,13 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 676, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4220; + this.state = 4231; this.match(HiveSqlParser.KW_WHERE); - this.state = 4221; + this.state = 4232; this.searchCondition(); } } @@ -20024,11 +20080,11 @@ export class HiveSqlParser extends SQLParserBase { } public searchCondition(): SearchConditionContext { let localContext = new SearchConditionContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_searchCondition); + this.enterRule(localContext, 678, HiveSqlParser.RULE_searchCondition); try { this.enterOuterAlt(localContext, 1); { - this.state = 4223; + this.state = 4234; this.expression(); } } @@ -20048,11 +20104,11 @@ export class HiveSqlParser extends SQLParserBase { } public valuesSource(): ValuesSourceContext { let localContext = new ValuesSourceContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_valuesSource); + this.enterRule(localContext, 680, HiveSqlParser.RULE_valuesSource); try { this.enterOuterAlt(localContext, 1); { - this.state = 4225; + this.state = 4236; this.valuesClause(); } } @@ -20072,13 +20128,13 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 682, HiveSqlParser.RULE_valuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4227; + this.state = 4238; this.match(HiveSqlParser.KW_VALUES); - this.state = 4228; + this.state = 4239; this.valuesTableConstructor(); } } @@ -20098,30 +20154,30 @@ export class HiveSqlParser extends SQLParserBase { } public valuesTableConstructor(): ValuesTableConstructorContext { let localContext = new ValuesTableConstructorContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_valuesTableConstructor); + this.enterRule(localContext, 684, HiveSqlParser.RULE_valuesTableConstructor); let _la: number; try { - this.state = 4246; + this.state = 4257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4230; + this.state = 4241; this.valueRowConstructor(); - this.state = 4235; + this.state = 4246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4231; + this.state = 4242; this.match(HiveSqlParser.COMMA); - this.state = 4232; + this.state = 4243; this.valueRowConstructor(); } } - this.state = 4237; + this.state = 4248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20130,21 +20186,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4238; + this.state = 4249; this.firstValueRowConstructor(); - this.state = 4243; + this.state = 4254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4239; + this.state = 4250; this.match(HiveSqlParser.COMMA); - this.state = 4240; + this.state = 4251; this.valueRowConstructor(); } } - this.state = 4245; + this.state = 4256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20168,11 +20224,11 @@ export class HiveSqlParser extends SQLParserBase { } public valueRowConstructor(): ValueRowConstructorContext { let localContext = new ValueRowConstructorContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_valueRowConstructor); + this.enterRule(localContext, 686, HiveSqlParser.RULE_valueRowConstructor); try { this.enterOuterAlt(localContext, 1); { - this.state = 4248; + this.state = 4259; this.expressionsInParenthesis(); } } @@ -20192,15 +20248,15 @@ export class HiveSqlParser extends SQLParserBase { } public firstValueRowConstructor(): FirstValueRowConstructorContext { let localContext = new FirstValueRowConstructorContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_firstValueRowConstructor); + this.enterRule(localContext, 688, HiveSqlParser.RULE_firstValueRowConstructor); try { this.enterOuterAlt(localContext, 1); { - this.state = 4250; + this.state = 4261; this.match(HiveSqlParser.LPAREN); - this.state = 4251; + this.state = 4262; this.firstExpressionsWithAlias(); - this.state = 4252; + this.state = 4263; this.match(HiveSqlParser.RPAREN); } } @@ -20220,60 +20276,60 @@ export class HiveSqlParser extends SQLParserBase { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 690, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4254; + this.state = 4265; this.match(HiveSqlParser.KW_TABLE); - this.state = 4255; + this.state = 4266; this.match(HiveSqlParser.LPAREN); - this.state = 4256; + this.state = 4267; this.valuesClause(); - this.state = 4257; + this.state = 4268; this.match(HiveSqlParser.RPAREN); - this.state = 4259; + this.state = 4270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4258; + this.state = 4269; this.match(HiveSqlParser.KW_AS); } } - this.state = 4261; + this.state = 4272; this.tableAlias(); - this.state = 4271; + this.state = 4282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 4262; + this.state = 4273; this.match(HiveSqlParser.LPAREN); - this.state = 4263; + this.state = 4274; this.id_(); - this.state = 4268; + this.state = 4279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4264; + this.state = 4275; this.match(HiveSqlParser.COMMA); - this.state = 4265; + this.state = 4276; this.id_(); } } - this.state = 4270; + this.state = 4281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4273; + this.state = 4284; this.match(HiveSqlParser.RPAREN); } } @@ -20293,50 +20349,50 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 692, HiveSqlParser.RULE_selectClause); try { - this.state = 4288; + this.state = 4299; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 4275; + this.state = 4286; this.match(HiveSqlParser.KW_SELECT); - this.state = 4277; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { - case 1: - { - this.state = 4276; - this.match(HiveSqlParser.QUERY_HINT); - } - break; - } - this.state = 4285; + this.state = 4288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4280; + this.state = 4287; + this.match(HiveSqlParser.QUERY_HINT); + } + break; + } + this.state = 4296; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { + case 1: + { + this.state = 4291; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 4279; + this.state = 4290; this.all_distinct(); } break; } - this.state = 4282; + this.state = 4293; this.selectList(); } break; case 2: { - this.state = 4283; + this.state = 4294; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 4284; + this.state = 4295; this.selectTrfmClause(); } break; @@ -20347,7 +20403,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 4287; + this.state = 4298; this.trfmClause(); } break; @@ -20371,12 +20427,12 @@ export class HiveSqlParser extends SQLParserBase { } public all_distinct(): All_distinctContext { let localContext = new All_distinctContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_all_distinct); + this.enterRule(localContext, 694, HiveSqlParser.RULE_all_distinct); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4290; + this.state = 4301; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -20403,30 +20459,30 @@ export class HiveSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_selectList); + this.enterRule(localContext, 696, HiveSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4292; + this.state = 4303; this.selectItem(); - this.state = 4297; + this.state = 4308; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 510, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 512, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4293; + this.state = 4304; this.match(HiveSqlParser.COMMA); - this.state = 4294; + this.state = 4305; this.selectItem(); } } } - this.state = 4299; + this.state = 4310; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 510, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 512, this.context); } } } @@ -20446,68 +20502,68 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 698, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4300; + this.state = 4311; this.match(HiveSqlParser.LPAREN); - this.state = 4301; + this.state = 4312; this.selectExpressionList(); - this.state = 4302; + this.state = 4313; this.match(HiveSqlParser.RPAREN); - this.state = 4303; + this.state = 4314; this.rowFormat(); - this.state = 4304; + this.state = 4315; this.recordWriter(); - this.state = 4305; + this.state = 4316; this.match(HiveSqlParser.KW_USING); - this.state = 4306; + this.state = 4317; this.match(HiveSqlParser.StringLiteral); - this.state = 4319; + this.state = 4330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4307; + this.state = 4318; this.match(HiveSqlParser.KW_AS); - this.state = 4317; + this.state = 4328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: { - this.state = 4308; + this.state = 4319; this.match(HiveSqlParser.LPAREN); - this.state = 4311; + this.state = 4322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 4309; + this.state = 4320; this.aliasList(); } break; case 2: { - this.state = 4310; + this.state = 4321; this.columnNameTypeList(); } break; } - this.state = 4313; + this.state = 4324; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4315; + this.state = 4326; this.aliasList(); } break; case 3: { - this.state = 4316; + this.state = 4327; this.columnNameTypeList(); } break; @@ -20515,9 +20571,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4321; + this.state = 4332; this.rowFormat(); - this.state = 4322; + this.state = 4333; this.recordReader(); } } @@ -20537,16 +20593,16 @@ export class HiveSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 700, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 4347; + this.state = 4358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 520, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4324; + this.state = 4335; this.tableAllColumns(); } break; @@ -20554,66 +20610,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 4327; + this.state = 4338; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4325; + this.state = 4336; this.columnName(); } break; case 2: { - this.state = 4326; + this.state = 4337; this.expression(); } break; } - this.state = 4345; + this.state = 4356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 517, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { case 1: { - this.state = 4330; + this.state = 4341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4329; + this.state = 4340; this.match(HiveSqlParser.KW_AS); } } - this.state = 4332; + this.state = 4343; this.id_(); } break; case 2: { - this.state = 4333; + this.state = 4344; this.match(HiveSqlParser.KW_AS); - this.state = 4334; + this.state = 4345; this.match(HiveSqlParser.LPAREN); - this.state = 4335; + this.state = 4346; this.id_(); - this.state = 4340; + this.state = 4351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4336; + this.state = 4347; this.match(HiveSqlParser.COMMA); - this.state = 4337; + this.state = 4348; this.id_(); } } - this.state = 4342; + this.state = 4353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4343; + this.state = 4354; this.match(HiveSqlParser.RPAREN); } break; @@ -20639,73 +20695,73 @@ export class HiveSqlParser extends SQLParserBase { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 702, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4349; + this.state = 4360; _la = this.tokenStream.LA(1); - if(!(_la === 197 || _la === 267)) { + if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4350; + this.state = 4361; this.selectExpressionList(); - this.state = 4351; + this.state = 4362; this.rowFormat(); - this.state = 4352; + this.state = 4363; this.recordWriter(); - this.state = 4353; + this.state = 4364; this.match(HiveSqlParser.KW_USING); - this.state = 4354; + this.state = 4365; this.match(HiveSqlParser.StringLiteral); - this.state = 4367; + this.state = 4378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4355; + this.state = 4366; this.match(HiveSqlParser.KW_AS); - this.state = 4365; + this.state = 4376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 520, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 4356; + this.state = 4367; this.match(HiveSqlParser.LPAREN); - this.state = 4359; + this.state = 4370; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 521, this.context) ) { case 1: { - this.state = 4357; + this.state = 4368; this.aliasList(); } break; case 2: { - this.state = 4358; + this.state = 4369; this.columnNameTypeList(); } break; } - this.state = 4361; + this.state = 4372; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4363; + this.state = 4374; this.aliasList(); } break; case 3: { - this.state = 4364; + this.state = 4375; this.columnNameTypeList(); } break; @@ -20713,9 +20769,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4369; + this.state = 4380; this.rowFormat(); - this.state = 4370; + this.state = 4381; this.recordReader(); } } @@ -20735,22 +20791,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 704, HiveSqlParser.RULE_selectExpression); try { - this.state = 4374; + this.state = 4385; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4372; + this.state = 4383; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4373; + this.state = 4384; this.expression(); } break; @@ -20772,26 +20828,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 706, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4376; + this.state = 4387; this.selectExpression(); - this.state = 4381; + this.state = 4392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4377; + this.state = 4388; this.match(HiveSqlParser.COMMA); - this.state = 4378; + this.state = 4389; this.selectExpression(); } } - this.state = 4383; + this.state = 4394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20813,28 +20869,28 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 706, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 708, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4384; + this.state = 4395; this.match(HiveSqlParser.KW_WINDOW); - this.state = 4385; + this.state = 4396; this.window_defn(); - this.state = 4390; + this.state = 4401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4386; + this.state = 4397; this.match(HiveSqlParser.COMMA); - this.state = 4387; + this.state = 4398; this.window_defn(); } } - this.state = 4392; + this.state = 4403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20856,15 +20912,15 @@ export class HiveSqlParser extends SQLParserBase { } public window_defn(): Window_defnContext { let localContext = new Window_defnContext(this.context, this.state); - this.enterRule(localContext, 708, HiveSqlParser.RULE_window_defn); + this.enterRule(localContext, 710, HiveSqlParser.RULE_window_defn); try { this.enterOuterAlt(localContext, 1); { - this.state = 4393; + this.state = 4404; this.id_(); - this.state = 4394; + this.state = 4405; this.match(HiveSqlParser.KW_AS); - this.state = 4395; + this.state = 4406; this.window_specification(); } } @@ -20884,10 +20940,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 710, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 712, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 4409; + this.state = 4420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -20989,6 +21045,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -21131,46 +21188,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4397; + this.state = 4408; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 4398; + this.state = 4409; this.match(HiveSqlParser.LPAREN); - this.state = 4400; + this.state = 4411; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4399; + this.state = 4410; this.id_(); } break; } - this.state = 4403; + this.state = 4414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 41 || _la === 97 || _la === 228 || _la === 236 || _la === 313) { + if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 4402; + this.state = 4413; this.partitioningSpec(); } } - this.state = 4406; + this.state = 4417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 259 || _la === 291) { + if (_la === 260 || _la === 292) { { - this.state = 4405; + this.state = 4416; this.window_frame(); } } - this.state = 4408; + this.state = 4419; this.match(HiveSqlParser.RPAREN); } break; @@ -21194,22 +21251,22 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 712, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 714, HiveSqlParser.RULE_window_frame); try { - this.state = 4413; + this.state = 4424; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 1); { - this.state = 4411; + this.state = 4422; this.window_range_expression(); } break; case HiveSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 4412; + this.state = 4423; this.window_value_expression(); } break; @@ -21233,32 +21290,32 @@ export class HiveSqlParser extends SQLParserBase { } public window_range_expression(): Window_range_expressionContext { let localContext = new Window_range_expressionContext(this.context, this.state); - this.enterRule(localContext, 714, HiveSqlParser.RULE_window_range_expression); + this.enterRule(localContext, 716, HiveSqlParser.RULE_window_range_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4415; + this.state = 4426; this.match(HiveSqlParser.KW_ROWS); - this.state = 4422; + this.state = 4433; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 4416; + this.state = 4427; this.window_frame_start_boundary(); } break; case HiveSqlParser.KW_BETWEEN: { - this.state = 4417; + this.state = 4428; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4418; + this.state = 4429; this.window_frame_boundary(); - this.state = 4419; + this.state = 4430; this.match(HiveSqlParser.KW_AND); - this.state = 4420; + this.state = 4431; this.window_frame_boundary(); } break; @@ -21283,32 +21340,32 @@ export class HiveSqlParser extends SQLParserBase { } public window_value_expression(): Window_value_expressionContext { let localContext = new Window_value_expressionContext(this.context, this.state); - this.enterRule(localContext, 716, HiveSqlParser.RULE_window_value_expression); + this.enterRule(localContext, 718, HiveSqlParser.RULE_window_value_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4424; + this.state = 4435; this.match(HiveSqlParser.KW_RANGE); - this.state = 4431; + this.state = 4442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 4425; + this.state = 4436; this.window_frame_start_boundary(); } break; case HiveSqlParser.KW_BETWEEN: { - this.state = 4426; + this.state = 4437; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4427; + this.state = 4438; this.window_frame_boundary(); - this.state = 4428; + this.state = 4439; this.match(HiveSqlParser.KW_AND); - this.state = 4429; + this.state = 4440; this.window_frame_boundary(); } break; @@ -21333,35 +21390,35 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_start_boundary(): Window_frame_start_boundaryContext { let localContext = new Window_frame_start_boundaryContext(this.context, this.state); - this.enterRule(localContext, 718, HiveSqlParser.RULE_window_frame_start_boundary); + this.enterRule(localContext, 720, HiveSqlParser.RULE_window_frame_start_boundary); try { - this.state = 4439; + this.state = 4450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4444; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 4434; + this.state = 4445; this.match(HiveSqlParser.KW_PRECEDING); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 4435; + this.state = 4446; this.match(HiveSqlParser.KW_CURRENT); - this.state = 4436; + this.state = 4447; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.Number: this.enterOuterAlt(localContext, 3); { - this.state = 4437; + this.state = 4448; this.match(HiveSqlParser.Number); - this.state = 4438; + this.state = 4449; this.match(HiveSqlParser.KW_PRECEDING); } break; @@ -21385,28 +21442,28 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 720, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 722, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 4445; + this.state = 4456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 4441; + this.state = 4452; _la = this.tokenStream.LA(1); - if(!(_la === 353 || _la === 430)) { + if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4442; + this.state = 4453; _la = this.tokenStream.LA(1); - if(!(_la === 133 || _la === 246)) { + if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); } else { @@ -21418,9 +21475,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 4443; + this.state = 4454; this.match(HiveSqlParser.KW_CURRENT); - this.state = 4444; + this.state = 4455; this.match(HiveSqlParser.KW_ROW); } break; @@ -21444,15 +21501,15 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 722, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 724, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4447; + this.state = 4458; this.match(HiveSqlParser.KW_GROUP); - this.state = 4448; + this.state = 4459; this.match(HiveSqlParser.KW_BY); - this.state = 4449; + this.state = 4460; this.groupby_expression(); } } @@ -21472,36 +21529,36 @@ export class HiveSqlParser extends SQLParserBase { } public groupby_expression(): Groupby_expressionContext { let localContext = new Groupby_expressionContext(this.context, this.state); - this.enterRule(localContext, 724, HiveSqlParser.RULE_groupby_expression); + this.enterRule(localContext, 726, HiveSqlParser.RULE_groupby_expression); try { - this.state = 4455; + this.state = 4466; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 536, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4451; + this.state = 4462; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4452; + this.state = 4463; this.rollupStandard(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4453; + this.state = 4464; this.rollupOldSyntax(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4454; + this.state = 4465; this.groupByEmpty(); } break; @@ -21523,13 +21580,13 @@ export class HiveSqlParser extends SQLParserBase { } public groupByEmpty(): GroupByEmptyContext { let localContext = new GroupByEmptyContext(this.context, this.state); - this.enterRule(localContext, 726, HiveSqlParser.RULE_groupByEmpty); + this.enterRule(localContext, 728, HiveSqlParser.RULE_groupByEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 4457; + this.state = 4468; this.match(HiveSqlParser.LPAREN); - this.state = 4458; + this.state = 4469; this.match(HiveSqlParser.RPAREN); } } @@ -21549,50 +21606,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 728, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 730, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4462; + this.state = 4473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 4460; + this.state = 4471; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 4461; + this.state = 4472; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4464; + this.state = 4475; this.match(HiveSqlParser.LPAREN); - this.state = 4465; + this.state = 4476; this.expression(); - this.state = 4470; + this.state = 4481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4466; + this.state = 4477; this.match(HiveSqlParser.COMMA); - this.state = 4467; + this.state = 4478; this.expression(); } } - this.state = 4472; + this.state = 4483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4473; + this.state = 4484; this.match(HiveSqlParser.RPAREN); } } @@ -21612,63 +21669,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 730, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 732, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4475; + this.state = 4486; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 4480; + this.state = 4491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 537, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { case 1: { - this.state = 4476; + this.state = 4487; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 4477; + this.state = 4488; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 4478; + this.state = 4489; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 4479; + this.state = 4490; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 4495; + this.state = 4506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 4482; + this.state = 4493; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 4483; + this.state = 4494; this.match(HiveSqlParser.KW_SETS); - this.state = 4484; + this.state = 4495; this.match(HiveSqlParser.LPAREN); - this.state = 4485; + this.state = 4496; this.groupingSetExpression(); - this.state = 4490; + this.state = 4501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4486; + this.state = 4497; this.match(HiveSqlParser.COMMA); - this.state = 4487; + this.state = 4498; this.groupingSetExpression(); } } - this.state = 4492; + this.state = 4503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4493; + this.state = 4504; this.match(HiveSqlParser.RPAREN); } } @@ -21691,22 +21748,22 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 732, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 734, HiveSqlParser.RULE_groupingSetExpression); try { - this.state = 4499; + this.state = 4510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4497; + this.state = 4508; this.groupingSetExpressionMultiple(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4498; + this.state = 4509; this.groupingExpressionSingle(); } break; @@ -21728,40 +21785,40 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpressionMultiple(): GroupingSetExpressionMultipleContext { let localContext = new GroupingSetExpressionMultipleContext(this.context, this.state); - this.enterRule(localContext, 734, HiveSqlParser.RULE_groupingSetExpressionMultiple); + this.enterRule(localContext, 736, HiveSqlParser.RULE_groupingSetExpressionMultiple); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4501; + this.state = 4512; this.match(HiveSqlParser.LPAREN); - this.state = 4503; + this.state = 4514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 2112945611) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 2616949503) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 3658431331) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 989854189) !== 0) || ((((_la - 292)) & ~0x1F) === 0 && ((1 << (_la - 292)) & 4260362175) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 1530590125) !== 0) || ((((_la - 356)) & ~0x1F) === 0 && ((1 << (_la - 356)) & 2549468921) !== 0) || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 4294902847) !== 0) || ((((_la - 420)) & ~0x1F) === 0 && ((1 << (_la - 420)) & 7597) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4502; + this.state = 4513; this.expression(); } } - this.state = 4509; + this.state = 4520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4505; + this.state = 4516; this.match(HiveSqlParser.COMMA); - this.state = 4506; + this.state = 4517; this.expression(); } } - this.state = 4511; + this.state = 4522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4512; + this.state = 4523; this.match(HiveSqlParser.RPAREN); } } @@ -21781,11 +21838,11 @@ export class HiveSqlParser extends SQLParserBase { } public groupingExpressionSingle(): GroupingExpressionSingleContext { let localContext = new GroupingExpressionSingleContext(this.context, this.state); - this.enterRule(localContext, 736, HiveSqlParser.RULE_groupingExpressionSingle); + this.enterRule(localContext, 738, HiveSqlParser.RULE_groupingExpressionSingle); try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4525; this.expression(); } } @@ -21805,13 +21862,13 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 738, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 740, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4516; + this.state = 4527; this.match(HiveSqlParser.KW_HAVING); - this.state = 4517; + this.state = 4528; this.havingCondition(); } } @@ -21831,13 +21888,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 740, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 742, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4519; + this.state = 4530; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 4520; + this.state = 4531; this.expression(); } } @@ -21857,11 +21914,11 @@ export class HiveSqlParser extends SQLParserBase { } public havingCondition(): HavingConditionContext { let localContext = new HavingConditionContext(this.context, this.state); - this.enterRule(localContext, 742, HiveSqlParser.RULE_havingCondition); + this.enterRule(localContext, 744, HiveSqlParser.RULE_havingCondition); try { this.enterOuterAlt(localContext, 1); { - this.state = 4522; + this.state = 4533; this.expression(); } } @@ -21881,15 +21938,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 744, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 746, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4535; this.match(HiveSqlParser.LPAREN); - this.state = 4525; + this.state = 4536; this.expressionsNotInParenthesis(); - this.state = 4526; + this.state = 4537; this.match(HiveSqlParser.RPAREN); } } @@ -21909,19 +21966,19 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 746, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 748, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4528; + this.state = 4539; localContext._first = this.expressionOrDefault(); - this.state = 4530; + this.state = 4541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 396) { + if (_la === 397) { { - this.state = 4529; + this.state = 4540; localContext._more = this.expressionPart(); } } @@ -21944,27 +22001,27 @@ export class HiveSqlParser extends SQLParserBase { } public expressionPart(): ExpressionPartContext { let localContext = new ExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 748, HiveSqlParser.RULE_expressionPart); + this.enterRule(localContext, 750, HiveSqlParser.RULE_expressionPart); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4534; + this.state = 4545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4532; + this.state = 4543; this.match(HiveSqlParser.COMMA); - this.state = 4533; + this.state = 4544; this.expressionOrDefault(); } } - this.state = 4536; + this.state = 4547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 396); + } while (_la === 397); } } catch (re) { @@ -21983,22 +22040,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 750, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 752, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 4540; + this.state = 4551; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4538; + this.state = 4549; this.defaultValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4539; + this.state = 4550; this.expression(); } break; @@ -22020,46 +22077,46 @@ export class HiveSqlParser extends SQLParserBase { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 752, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 754, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4542; + this.state = 4553; localContext._first = this.expression(); - this.state = 4544; + this.state = 4555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4543; + this.state = 4554; this.match(HiveSqlParser.KW_AS); } } - this.state = 4547; + this.state = 4558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4546; + this.state = 4557; localContext._colAlias = this.id_(); } } - this.state = 4553; + this.state = 4564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4549; + this.state = 4560; this.match(HiveSqlParser.COMMA); - this.state = 4550; + this.state = 4561; this.expressionWithAlias(); } } - this.state = 4555; + this.state = 4566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22081,29 +22138,29 @@ export class HiveSqlParser extends SQLParserBase { } public expressionWithAlias(): ExpressionWithAliasContext { let localContext = new ExpressionWithAliasContext(this.context, this.state); - this.enterRule(localContext, 754, HiveSqlParser.RULE_expressionWithAlias); + this.enterRule(localContext, 756, HiveSqlParser.RULE_expressionWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4556; + this.state = 4567; this.expression(); - this.state = 4558; + this.state = 4569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4557; + this.state = 4568; this.match(HiveSqlParser.KW_AS); } } - this.state = 4561; + this.state = 4572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393 || _la === 431) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4560; + this.state = 4571; localContext._alias = this.id_(); } } @@ -22126,22 +22183,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 756, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 758, HiveSqlParser.RULE_expressions); try { - this.state = 4565; + this.state = 4576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4563; + this.state = 4574; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4564; + this.state = 4575; this.expressionsNotInParenthesis(); } break; @@ -22163,32 +22220,32 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrderInParenthesis(): ColumnRefOrderInParenthesisContext { let localContext = new ColumnRefOrderInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 758, HiveSqlParser.RULE_columnRefOrderInParenthesis); + this.enterRule(localContext, 760, HiveSqlParser.RULE_columnRefOrderInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4567; + this.state = 4578; this.match(HiveSqlParser.LPAREN); - this.state = 4568; + this.state = 4579; this.columnRefOrder(); - this.state = 4573; + this.state = 4584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4569; + this.state = 4580; this.match(HiveSqlParser.COMMA); - this.state = 4570; + this.state = 4581; this.columnRefOrder(); } } - this.state = 4575; + this.state = 4586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4576; + this.state = 4587; this.match(HiveSqlParser.RPAREN); } } @@ -22208,26 +22265,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrderNotInParenthesis(): ColumnRefOrderNotInParenthesisContext { let localContext = new ColumnRefOrderNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 760, HiveSqlParser.RULE_columnRefOrderNotInParenthesis); + this.enterRule(localContext, 762, HiveSqlParser.RULE_columnRefOrderNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4578; + this.state = 4589; this.columnRefOrder(); - this.state = 4583; + this.state = 4594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4579; + this.state = 4590; this.match(HiveSqlParser.COMMA); - this.state = 4580; + this.state = 4591; this.columnRefOrder(); } } - this.state = 4585; + this.state = 4596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22249,30 +22306,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 762, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 764, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4586; + this.state = 4597; this.match(HiveSqlParser.KW_ORDER); - this.state = 4587; + this.state = 4598; this.match(HiveSqlParser.KW_BY); - this.state = 4588; + this.state = 4599; this.columnRefOrder(); - this.state = 4593; + this.state = 4604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4589; + this.state = 4600; this.match(HiveSqlParser.COMMA); - this.state = 4590; + this.state = 4601; this.columnRefOrder(); } } - this.state = 4595; + this.state = 4606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22294,15 +22351,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 764, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 766, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4596; + this.state = 4607; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4597; + this.state = 4608; this.match(HiveSqlParser.KW_BY); - this.state = 4598; + this.state = 4609; this.expressions(); } } @@ -22322,15 +22379,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 766, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 768, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4600; + this.state = 4611; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4601; + this.state = 4612; this.match(HiveSqlParser.KW_BY); - this.state = 4602; + this.state = 4613; this.expressions(); } } @@ -22350,15 +22407,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 768, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 770, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4604; + this.state = 4615; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4605; + this.state = 4616; this.match(HiveSqlParser.KW_BY); - this.state = 4606; + this.state = 4617; this.expressions(); } } @@ -22378,26 +22435,26 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 770, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 772, HiveSqlParser.RULE_sortByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4608; + this.state = 4619; this.match(HiveSqlParser.KW_SORT); - this.state = 4609; + this.state = 4620; this.match(HiveSqlParser.KW_BY); - this.state = 4612; + this.state = 4623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4610; + this.state = 4621; this.columnRefOrderInParenthesis(); } break; case 2: { - this.state = 4611; + this.state = 4622; this.columnRefOrderNotInParenthesis(); } break; @@ -22420,33 +22477,33 @@ export class HiveSqlParser extends SQLParserBase { } public trimFunction(): TrimFunctionContext { let localContext = new TrimFunctionContext(this.context, this.state); - this.enterRule(localContext, 772, HiveSqlParser.RULE_trimFunction); + this.enterRule(localContext, 774, HiveSqlParser.RULE_trimFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4614; + this.state = 4625; this.match(HiveSqlParser.KW_TRIM); - this.state = 4615; + this.state = 4626; this.match(HiveSqlParser.LPAREN); - this.state = 4619; + this.state = 4630; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4616; + this.state = 4627; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4617; + this.state = 4628; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4618; + this.state = 4629; this.match(HiveSqlParser.KW_BOTH); } break; @@ -22573,6 +22630,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIKE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: @@ -22755,21 +22813,21 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4622; + this.state = 4633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 2112945611) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 2616949503) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 3658431331) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 989854189) !== 0) || ((((_la - 292)) & ~0x1F) === 0 && ((1 << (_la - 292)) & 4260362175) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 1530590125) !== 0) || ((((_la - 356)) & ~0x1F) === 0 && ((1 << (_la - 356)) & 2549468921) !== 0) || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 4294902847) !== 0) || ((((_la - 420)) & ~0x1F) === 0 && ((1 << (_la - 420)) & 7597) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4621; + this.state = 4632; localContext._trim_characters = this.selectExpression(); } } - this.state = 4624; + this.state = 4635; this.match(HiveSqlParser.KW_FROM); - this.state = 4625; + this.state = 4636; localContext._str = this.selectExpression(); - this.state = 4626; + this.state = 4637; this.match(HiveSqlParser.RPAREN); } } @@ -22789,67 +22847,67 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 774, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 776, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4668; + this.state = 4679; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 566, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4628; + this.state = 4639; this.trimFunction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4629; + this.state = 4640; this.functionNameForInvoke(); - this.state = 4630; + this.state = 4641; this.match(HiveSqlParser.LPAREN); - this.state = 4645; + this.state = 4656; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: { - this.state = 4631; + this.state = 4642; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4633; + this.state = 4644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4632; + this.state = 4643; localContext._dist = this.all_distinct(); } } - this.state = 4643; + this.state = 4654; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 562, this.context) ) { case 1: { - this.state = 4635; + this.state = 4646; this.selectExpression(); - this.state = 4640; + this.state = 4651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 4636; + this.state = 4647; this.match(HiveSqlParser.COMMA); - this.state = 4637; + this.state = 4648; this.selectExpression(); } } - this.state = 4642; + this.state = 4653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22859,60 +22917,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4666; + this.state = 4677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: { - this.state = 4647; + this.state = 4658; this.match(HiveSqlParser.RPAREN); - this.state = 4648; + this.state = 4659; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4649; + this.state = 4660; this.match(HiveSqlParser.KW_GROUP); - this.state = 4650; + this.state = 4661; this.match(HiveSqlParser.LPAREN); - this.state = 4651; + this.state = 4662; localContext._ordBy = this.orderByClause(); - this.state = 4652; + this.state = 4663; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4654; + this.state = 4665; this.match(HiveSqlParser.RPAREN); - this.state = 4656; + this.state = 4667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 152 || _la === 280) { + if (_la === 152 || _la === 281) { { - this.state = 4655; + this.state = 4666; localContext._nt = this.null_treatment(); } } - this.state = 4658; + this.state = 4669; this.match(HiveSqlParser.KW_OVER); - this.state = 4659; + this.state = 4670; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4660; + this.state = 4671; localContext._nt = this.null_treatment(); - this.state = 4661; + this.state = 4672; this.match(HiveSqlParser.RPAREN); - this.state = 4662; + this.state = 4673; this.match(HiveSqlParser.KW_OVER); - this.state = 4663; + this.state = 4674; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4665; + this.state = 4676; this.match(HiveSqlParser.RPAREN); } break; @@ -22937,26 +22995,26 @@ export class HiveSqlParser extends SQLParserBase { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 776, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 778, HiveSqlParser.RULE_null_treatment); try { - this.state = 4674; + this.state = 4685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 1); { - this.state = 4670; + this.state = 4681; this.match(HiveSqlParser.KW_RESPECT); - this.state = 4671; + this.state = 4682; this.match(HiveSqlParser.KW_NULLS); } break; case HiveSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 2); { - this.state = 4672; + this.state = 4683; this.match(HiveSqlParser.KW_IGNORE); - this.state = 4673; + this.state = 4684; this.match(HiveSqlParser.KW_NULLS); } break; @@ -22980,11 +23038,11 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 778, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 780, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4676; + this.state = 4687; this.functionIdentifier(); } } @@ -23004,9 +23062,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 780, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 782, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4680; + this.state = 4691; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -23108,6 +23166,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -23250,14 +23309,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4678; + this.state = 4689; this.userDefinedFuncName(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4679; + this.state = 4690; this.match(HiveSqlParser.StringLiteral); } break; @@ -23281,22 +23340,22 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 782, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 784, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4684; + this.state = 4695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4682; + this.state = 4693; this.userDefinedFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4683; + this.state = 4694; this.internalFunctionName(); } break; @@ -23318,11 +23377,11 @@ export class HiveSqlParser extends SQLParserBase { } public userDefinedFuncName(): UserDefinedFuncNameContext { let localContext = new UserDefinedFuncNameContext(this.context, this.state); - this.enterRule(localContext, 784, HiveSqlParser.RULE_userDefinedFuncName); + this.enterRule(localContext, 786, HiveSqlParser.RULE_userDefinedFuncName); try { this.enterOuterAlt(localContext, 1); { - this.state = 4686; + this.state = 4697; this.functionIdentifier(); } } @@ -23342,22 +23401,22 @@ export class HiveSqlParser extends SQLParserBase { } public internalFunctionName(): InternalFunctionNameContext { let localContext = new InternalFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 786, HiveSqlParser.RULE_internalFunctionName); + this.enterRule(localContext, 788, HiveSqlParser.RULE_internalFunctionName); try { - this.state = 4690; + this.state = 4701; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4688; + this.state = 4699; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4689; + this.state = 4700; this.sysFuncNames(); } break; @@ -23379,34 +23438,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 788, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 790, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4692; + this.state = 4703; this.match(HiveSqlParser.KW_CAST); - this.state = 4693; + this.state = 4704; this.match(HiveSqlParser.LPAREN); - this.state = 4694; + this.state = 4705; this.expression(); - this.state = 4695; + this.state = 4706; this.match(HiveSqlParser.KW_AS); - this.state = 4696; + this.state = 4707; localContext._toType = this.primitiveType(); - this.state = 4699; + this.state = 4710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4697; + this.state = 4708; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4698; + this.state = 4709; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4701; + this.state = 4712; this.match(HiveSqlParser.RPAREN); } } @@ -23426,48 +23485,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 790, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 792, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4703; + this.state = 4714; this.match(HiveSqlParser.KW_CASE); - this.state = 4704; + this.state = 4715; this.expression(); - this.state = 4710; + this.state = 4721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4705; + this.state = 4716; this.match(HiveSqlParser.KW_WHEN); - this.state = 4706; + this.state = 4717; this.expression(); - this.state = 4707; + this.state = 4718; this.match(HiveSqlParser.KW_THEN); - this.state = 4708; + this.state = 4719; this.expression(); } } - this.state = 4712; + this.state = 4723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 382); - this.state = 4716; + } while (_la === 383); + this.state = 4727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4714; + this.state = 4725; this.match(HiveSqlParser.KW_ELSE); - this.state = 4715; + this.state = 4726; this.expression(); } } - this.state = 4718; + this.state = 4729; this.match(HiveSqlParser.KW_END); } } @@ -23487,46 +23546,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 792, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 794, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4720; + this.state = 4731; this.match(HiveSqlParser.KW_CASE); - this.state = 4726; + this.state = 4737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4721; + this.state = 4732; this.match(HiveSqlParser.KW_WHEN); - this.state = 4722; + this.state = 4733; this.expression(); - this.state = 4723; + this.state = 4734; this.match(HiveSqlParser.KW_THEN); - this.state = 4724; + this.state = 4735; this.expression(); } } - this.state = 4728; + this.state = 4739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 382); - this.state = 4732; + } while (_la === 383); + this.state = 4743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4730; + this.state = 4741; this.match(HiveSqlParser.KW_ELSE); - this.state = 4731; + this.state = 4742; this.expression(); } } - this.state = 4734; + this.state = 4745; this.match(HiveSqlParser.KW_END); } } @@ -23546,30 +23605,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 794, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 796, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4736; + this.state = 4747; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4737; + this.state = 4748; this.match(HiveSqlParser.LPAREN); - this.state = 4738; + this.state = 4749; this.expression(); - this.state = 4741; + this.state = 4752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 340) { + if (_la === 341) { { - this.state = 4739; + this.state = 4750; this.match(HiveSqlParser.KW_TO); - this.state = 4740; + this.state = 4751; localContext._floorUnit = this.floorDateQualifiers(); } } - this.state = 4743; + this.state = 4754; this.match(HiveSqlParser.RPAREN); } } @@ -23589,23 +23648,23 @@ export class HiveSqlParser extends SQLParserBase { } public floorDateQualifiers(): FloorDateQualifiersContext { let localContext = new FloorDateQualifiersContext(this.context, this.state); - this.enterRule(localContext, 796, HiveSqlParser.RULE_floorDateQualifiers); + this.enterRule(localContext, 798, HiveSqlParser.RULE_floorDateQualifiers); try { - this.state = 4753; + this.state = 4764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4745; + this.state = 4756; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4746; + this.state = 4757; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -23613,7 +23672,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4747; + this.state = 4758; this.month(); } break; @@ -23621,7 +23680,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4748; + this.state = 4759; this.week(); } break; @@ -23629,7 +23688,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4749; + this.state = 4760; this.day(); } break; @@ -23637,7 +23696,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4750; + this.state = 4761; this.hour(); } break; @@ -23645,7 +23704,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4751; + this.state = 4762; this.minute(); } break; @@ -23653,7 +23712,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4752; + this.state = 4763; this.second(); } break; @@ -23677,21 +23736,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 798, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 800, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4755; + this.state = 4766; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4756; + this.state = 4767; this.match(HiveSqlParser.LPAREN); - this.state = 4757; + this.state = 4768; localContext._timeUnit = this.timeQualifiers(); - this.state = 4758; + this.state = 4769; this.match(HiveSqlParser.KW_FROM); - this.state = 4759; + this.state = 4770; this.expression(); - this.state = 4760; + this.state = 4771; this.match(HiveSqlParser.RPAREN); } } @@ -23711,23 +23770,23 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 800, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 802, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4770; + this.state = 4781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4762; + this.state = 4773; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4763; + this.state = 4774; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -23735,7 +23794,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4764; + this.state = 4775; this.month(); } break; @@ -23743,7 +23802,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4765; + this.state = 4776; this.week(); } break; @@ -23751,7 +23810,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4766; + this.state = 4777; this.day(); } break; @@ -23759,7 +23818,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4767; + this.state = 4778; this.hour(); } break; @@ -23767,7 +23826,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4768; + this.state = 4779; this.minute(); } break; @@ -23775,7 +23834,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4769; + this.state = 4780; this.second(); } break; @@ -23799,99 +23858,99 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 802, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 804, HiveSqlParser.RULE_constant); try { - this.state = 4785; + this.state = 4796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4772; + this.state = 4783; this.intervalLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4773; + this.state = 4784; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4774; + this.state = 4785; this.dateLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4775; + this.state = 4786; this.timestampLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4776; + this.state = 4787; this.timestampLocalTZLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4777; + this.state = 4788; this.match(HiveSqlParser.StringLiteral); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4778; + this.state = 4789; this.stringLiteralSequence(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4779; + this.state = 4790; this.match(HiveSqlParser.IntegralLiteral); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4780; + this.state = 4791; this.match(HiveSqlParser.NumberLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4781; + this.state = 4792; this.charSetStringLiteral(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4782; + this.state = 4793; this.booleanValue(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4783; + this.state = 4794; this.match(HiveSqlParser.KW_NULL); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4784; + this.state = 4795; this.prepareStmtParam(); } break; @@ -23913,11 +23972,11 @@ export class HiveSqlParser extends SQLParserBase { } public prepareStmtParam(): PrepareStmtParamContext { let localContext = new PrepareStmtParamContext(this.context, this.state); - this.enterRule(localContext, 804, HiveSqlParser.RULE_prepareStmtParam); + this.enterRule(localContext, 806, HiveSqlParser.RULE_prepareStmtParam); try { this.enterOuterAlt(localContext, 1); { - this.state = 4787; + this.state = 4798; localContext._p = this.parameterIdx(); } } @@ -23937,11 +23996,11 @@ export class HiveSqlParser extends SQLParserBase { } public parameterIdx(): ParameterIdxContext { let localContext = new ParameterIdxContext(this.context, this.state); - this.enterRule(localContext, 806, HiveSqlParser.RULE_parameterIdx); + this.enterRule(localContext, 808, HiveSqlParser.RULE_parameterIdx); try { this.enterOuterAlt(localContext, 1); { - this.state = 4789; + this.state = 4800; this.match(HiveSqlParser.QUESTION); } } @@ -23961,27 +24020,27 @@ export class HiveSqlParser extends SQLParserBase { } public stringLiteralSequence(): StringLiteralSequenceContext { let localContext = new StringLiteralSequenceContext(this.context, this.state); - this.enterRule(localContext, 808, HiveSqlParser.RULE_stringLiteralSequence); + this.enterRule(localContext, 810, HiveSqlParser.RULE_stringLiteralSequence); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4791; + this.state = 4802; this.match(HiveSqlParser.StringLiteral); - this.state = 4793; + this.state = 4804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4792; + this.state = 4803; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4795; + this.state = 4806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 425); + } while (_la === 426); } } catch (re) { @@ -24000,13 +24059,13 @@ export class HiveSqlParser extends SQLParserBase { } public charSetStringLiteral(): CharSetStringLiteralContext { let localContext = new CharSetStringLiteralContext(this.context, this.state); - this.enterRule(localContext, 810, HiveSqlParser.RULE_charSetStringLiteral); + this.enterRule(localContext, 812, HiveSqlParser.RULE_charSetStringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 4797; + this.state = 4808; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4798; + this.state = 4809; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } } @@ -24026,24 +24085,24 @@ export class HiveSqlParser extends SQLParserBase { } public dateLiteral(): DateLiteralContext { let localContext = new DateLiteralContext(this.context, this.state); - this.enterRule(localContext, 812, HiveSqlParser.RULE_dateLiteral); + this.enterRule(localContext, 814, HiveSqlParser.RULE_dateLiteral); try { - this.state = 4803; + this.state = 4814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATE: this.enterOuterAlt(localContext, 1); { - this.state = 4800; + this.state = 4811; this.match(HiveSqlParser.KW_DATE); - this.state = 4801; + this.state = 4812; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 4802; + this.state = 4813; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; @@ -24067,24 +24126,24 @@ export class HiveSqlParser extends SQLParserBase { } public timestampLiteral(): TimestampLiteralContext { let localContext = new TimestampLiteralContext(this.context, this.state); - this.enterRule(localContext, 814, HiveSqlParser.RULE_timestampLiteral); + this.enterRule(localContext, 816, HiveSqlParser.RULE_timestampLiteral); try { - this.state = 4808; + this.state = 4819; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 4805; + this.state = 4816; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4806; + this.state = 4817; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 4807; + this.state = 4818; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; @@ -24108,13 +24167,13 @@ export class HiveSqlParser extends SQLParserBase { } public timestampLocalTZLiteral(): TimestampLocalTZLiteralContext { let localContext = new TimestampLocalTZLiteralContext(this.context, this.state); - this.enterRule(localContext, 816, HiveSqlParser.RULE_timestampLocalTZLiteral); + this.enterRule(localContext, 818, HiveSqlParser.RULE_timestampLocalTZLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 4810; + this.state = 4821; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4811; + this.state = 4822; this.match(HiveSqlParser.StringLiteral); } } @@ -24134,14 +24193,14 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 818, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 820, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4813; + this.state = 4824; _la = this.tokenStream.LA(1); - if(!(_la === 425 || _la === 430)) { + if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); } else { @@ -24166,13 +24225,13 @@ export class HiveSqlParser extends SQLParserBase { } public intervalLiteral(): IntervalLiteralContext { let localContext = new IntervalLiteralContext(this.context, this.state); - this.enterRule(localContext, 820, HiveSqlParser.RULE_intervalLiteral); + this.enterRule(localContext, 822, HiveSqlParser.RULE_intervalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 4815; + this.state = 4826; localContext._value = this.intervalValue(); - this.state = 4816; + this.state = 4827; localContext._qualifiers = this.intervalQualifiers(); } } @@ -24192,53 +24251,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 822, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 824, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4833; + this.state = 4844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4818; + this.state = 4829; this.match(HiveSqlParser.LPAREN); - this.state = 4819; + this.state = 4830; localContext._value = this.intervalValue(); - this.state = 4820; + this.state = 4831; this.match(HiveSqlParser.RPAREN); - this.state = 4821; + this.state = 4832; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4823; + this.state = 4834; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4829; + this.state = 4840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4824; + this.state = 4835; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4825; + this.state = 4836; this.match(HiveSqlParser.LPAREN); - this.state = 4826; + this.state = 4837; localContext._expr = this.expression(); - this.state = 4827; + this.state = 4838; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4831; + this.state = 4842; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -24262,72 +24321,72 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 824, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 826, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4849; + this.state = 4860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4835; + this.state = 4846; this.year(); - this.state = 4836; + this.state = 4847; this.match(HiveSqlParser.KW_TO); - this.state = 4837; + this.state = 4848; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4839; + this.state = 4850; this.day(); - this.state = 4840; + this.state = 4851; this.match(HiveSqlParser.KW_TO); - this.state = 4841; + this.state = 4852; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4843; + this.state = 4854; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4844; + this.state = 4855; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4845; + this.state = 4856; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4846; + this.state = 4857; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4847; + this.state = 4858; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4848; + this.state = 4859; this.second(); } break; @@ -24349,11 +24408,11 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 826, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 828, HiveSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4851; + this.state = 4862; this.precedenceOrExpression(); } } @@ -24373,85 +24432,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 828, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 830, HiveSqlParser.RULE_atomExpression); try { - this.state = 4864; + this.state = 4875; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4853; + this.state = 4864; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4854; + this.state = 4865; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4855; + this.state = 4866; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4856; + this.state = 4867; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4857; + this.state = 4868; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4858; + this.state = 4869; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4859; + this.state = 4870; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4860; + this.state = 4871; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4861; + this.state = 4872; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4862; + this.state = 4873; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4863; + this.state = 4874; this.id_(); } break; @@ -24473,36 +24532,36 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceFieldExpression(): PrecedenceFieldExpressionContext { let localContext = new PrecedenceFieldExpressionContext(this.context, this.state); - this.enterRule(localContext, 830, HiveSqlParser.RULE_precedenceFieldExpression); + this.enterRule(localContext, 832, HiveSqlParser.RULE_precedenceFieldExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4866; + this.state = 4877; this.atomExpression(); - this.state = 4875; + this.state = 4886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 394 || _la === 400) { + while (_la === 395 || _la === 401) { { - this.state = 4873; + this.state = 4884; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4867; + this.state = 4878; this.match(HiveSqlParser.LSQUARE); - this.state = 4868; + this.state = 4879; this.expression(); - this.state = 4869; + this.state = 4880; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4871; + this.state = 4882; this.match(HiveSqlParser.DOT); - this.state = 4872; + this.state = 4883; this.id_(); } break; @@ -24510,7 +24569,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4877; + this.state = 4888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24532,14 +24591,14 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryOperator(): PrecedenceUnaryOperatorContext { let localContext = new PrecedenceUnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 832, HiveSqlParser.RULE_precedenceUnaryOperator); + this.enterRule(localContext, 834, HiveSqlParser.RULE_precedenceUnaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4878; + this.state = 4889; _la = this.tokenStream.LA(1); - if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 163) !== 0))) { + if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -24564,28 +24623,28 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 834, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 836, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4883; + this.state = 4894; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4880; + this.state = 4891; this.precedenceUnaryOperator(); } } } - this.state = 4885; + this.state = 4896; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); } - this.state = 4886; + this.state = 4897; this.precedenceFieldExpression(); } } @@ -24605,11 +24664,11 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorOperator(): PrecedenceBitwiseXorOperatorContext { let localContext = new PrecedenceBitwiseXorOperatorContext(this.context, this.state); - this.enterRule(localContext, 836, HiveSqlParser.RULE_precedenceBitwiseXorOperator); + this.enterRule(localContext, 838, HiveSqlParser.RULE_precedenceBitwiseXorOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4888; + this.state = 4899; this.match(HiveSqlParser.BITWISEXOR); } } @@ -24629,26 +24688,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 838, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 840, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4890; + this.state = 4901; this.precedenceUnaryPrefixExpression(); - this.state = 4896; + this.state = 4907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 422) { + while (_la === 423) { { { - this.state = 4891; + this.state = 4902; this.precedenceBitwiseXorOperator(); - this.state = 4892; + this.state = 4903; this.precedenceUnaryPrefixExpression(); } } - this.state = 4898; + this.state = 4909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24670,14 +24729,14 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarOperator(): PrecedenceStarOperatorContext { let localContext = new PrecedenceStarOperatorContext(this.context, this.state); - this.enterRule(localContext, 840, HiveSqlParser.RULE_precedenceStarOperator); + this.enterRule(localContext, 842, HiveSqlParser.RULE_precedenceStarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4899; + this.state = 4910; _la = this.tokenStream.LA(1); - if(!(((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 57) !== 0))) { + if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -24702,26 +24761,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 842, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 844, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4901; + this.state = 4912; this.precedenceBitwiseXorExpression(); - this.state = 4907; + this.state = 4918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 57) !== 0)) { + while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4902; + this.state = 4913; this.precedenceStarOperator(); - this.state = 4903; + this.state = 4914; this.precedenceBitwiseXorExpression(); } } - this.state = 4909; + this.state = 4920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24743,14 +24802,14 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusOperator(): PrecedencePlusOperatorContext { let localContext = new PrecedencePlusOperatorContext(this.context, this.state); - this.enterRule(localContext, 844, HiveSqlParser.RULE_precedencePlusOperator); + this.enterRule(localContext, 846, HiveSqlParser.RULE_precedencePlusOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4910; + this.state = 4921; _la = this.tokenStream.LA(1); - if(!(_la === 412 || _la === 413)) { + if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); } else { @@ -24775,88 +24834,23 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 846, HiveSqlParser.RULE_precedencePlusExpression); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4912; - this.precedenceStarExpression(); - this.state = 4918; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 412 || _la === 413) { - { - { - this.state = 4913; - this.precedencePlusOperator(); - this.state = 4914; - this.precedenceStarExpression(); - } - } - this.state = 4920; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceConcatenateOperator(): PrecedenceConcatenateOperatorContext { - let localContext = new PrecedenceConcatenateOperatorContext(this.context, this.state); - this.enterRule(localContext, 848, HiveSqlParser.RULE_precedenceConcatenateOperator); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4921; - this.match(HiveSqlParser.CONCATENATE); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { - let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 850, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 848, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 4923; - this.precedencePlusExpression(); + this.precedenceStarExpression(); this.state = 4929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 421) { + while (_la === 413 || _la === 414) { { { this.state = 4924; - this.precedenceConcatenateOperator(); + this.precedencePlusOperator(); this.state = 4925; - localContext._plus = this.precedencePlusExpression(); + this.precedenceStarExpression(); } } this.state = 4931; @@ -24879,14 +24873,14 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceAmpersandOperator(): PrecedenceAmpersandOperatorContext { - let localContext = new PrecedenceAmpersandOperatorContext(this.context, this.state); - this.enterRule(localContext, 852, HiveSqlParser.RULE_precedenceAmpersandOperator); + public precedenceConcatenateOperator(): PrecedenceConcatenateOperatorContext { + let localContext = new PrecedenceConcatenateOperatorContext(this.context, this.state); + this.enterRule(localContext, 850, HiveSqlParser.RULE_precedenceConcatenateOperator); try { this.enterOuterAlt(localContext, 1); { this.state = 4932; - this.match(HiveSqlParser.AMPERSAND); + this.match(HiveSqlParser.CONCATENATE); } } catch (re) { @@ -24903,25 +24897,25 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { - let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 854, HiveSqlParser.RULE_precedenceAmpersandExpression); + public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { + let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); + this.enterRule(localContext, 852, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 4934; - this.precedenceConcatenateExpression(); + this.precedencePlusExpression(); this.state = 4940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 418) { + while (_la === 422) { { { this.state = 4935; - this.precedenceAmpersandOperator(); + this.precedenceConcatenateOperator(); this.state = 4936; - this.precedenceConcatenateExpression(); + localContext._plus = this.precedencePlusExpression(); } } this.state = 4942; @@ -24944,14 +24938,14 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceBitwiseOrOperator(): PrecedenceBitwiseOrOperatorContext { - let localContext = new PrecedenceBitwiseOrOperatorContext(this.context, this.state); - this.enterRule(localContext, 856, HiveSqlParser.RULE_precedenceBitwiseOrOperator); + public precedenceAmpersandOperator(): PrecedenceAmpersandOperatorContext { + let localContext = new PrecedenceAmpersandOperatorContext(this.context, this.state); + this.enterRule(localContext, 854, HiveSqlParser.RULE_precedenceAmpersandOperator); try { this.enterOuterAlt(localContext, 1); { this.state = 4943; - this.match(HiveSqlParser.BITWISEOR); + this.match(HiveSqlParser.AMPERSAND); } } catch (re) { @@ -24968,25 +24962,25 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { - let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 858, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { + let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); + this.enterRule(localContext, 856, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 4945; - this.precedenceAmpersandExpression(); + this.precedenceConcatenateExpression(); this.state = 4951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 420) { + while (_la === 419) { { { this.state = 4946; - this.precedenceBitwiseOrOperator(); + this.precedenceAmpersandOperator(); this.state = 4947; - this.precedenceAmpersandExpression(); + this.precedenceConcatenateExpression(); } } this.state = 4953; @@ -25009,16 +25003,81 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceRegexpOperator(): PrecedenceRegexpOperatorContext { - let localContext = new PrecedenceRegexpOperatorContext(this.context, this.state); - this.enterRule(localContext, 860, HiveSqlParser.RULE_precedenceRegexpOperator); - let _la: number; + public precedenceBitwiseOrOperator(): PrecedenceBitwiseOrOperatorContext { + let localContext = new PrecedenceBitwiseOrOperatorContext(this.context, this.state); + this.enterRule(localContext, 858, HiveSqlParser.RULE_precedenceBitwiseOrOperator); try { this.enterOuterAlt(localContext, 1); { this.state = 4954; + this.match(HiveSqlParser.BITWISEOR); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { + let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); + this.enterRule(localContext, 860, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4956; + this.precedenceAmpersandExpression(); + this.state = 4962; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 183 || _la === 269 || _la === 285)) { + while (_la === 421) { + { + { + this.state = 4957; + this.precedenceBitwiseOrOperator(); + this.state = 4958; + this.precedenceAmpersandExpression(); + } + } + this.state = 4964; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public precedenceRegexpOperator(): PrecedenceRegexpOperatorContext { + let localContext = new PrecedenceRegexpOperatorContext(this.context, this.state); + this.enterRule(localContext, 862, HiveSqlParser.RULE_precedenceRegexpOperator); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4965; + _la = this.tokenStream.LA(1); + if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); } else { @@ -25043,9 +25102,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 862, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 864, HiveSqlParser.RULE_precedenceSimilarOperator); try { - this.state = 4961; + this.state = 4972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: @@ -25053,35 +25112,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 1); { - this.state = 4956; + this.state = 4967; this.precedenceRegexpOperator(); } break; case HiveSqlParser.LESSTHANOREQUALTO: this.enterOuterAlt(localContext, 2); { - this.state = 4957; + this.state = 4968; this.match(HiveSqlParser.LESSTHANOREQUALTO); } break; case HiveSqlParser.LESSTHAN: this.enterOuterAlt(localContext, 3); { - this.state = 4958; + this.state = 4969; this.match(HiveSqlParser.LESSTHAN); } break; case HiveSqlParser.GREATERTHANOREQUALTO: this.enterOuterAlt(localContext, 4); { - this.state = 4959; + this.state = 4970; this.match(HiveSqlParser.GREATERTHANOREQUALTO); } break; case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 5); { - this.state = 4960; + this.state = 4971; this.match(HiveSqlParser.GREATERTHAN); } break; @@ -25105,15 +25164,15 @@ export class HiveSqlParser extends SQLParserBase { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 864, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 866, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4963; + this.state = 4974; this.match(HiveSqlParser.LPAREN); - this.state = 4964; + this.state = 4975; this.selectStatement(); - this.state = 4965; + this.state = 4976; this.match(HiveSqlParser.RPAREN); } } @@ -25133,9 +25192,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 866, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 868, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4970; + this.state = 4981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -25259,6 +25318,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIKE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: @@ -25439,16 +25499,16 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4967; + this.state = 4978; this.precedenceSimilarExpressionMain(); } break; case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4968; + this.state = 4979; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4969; + this.state = 4980; this.subQueryExpression(); } break; @@ -25472,18 +25532,18 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionMain(): PrecedenceSimilarExpressionMainContext { let localContext = new PrecedenceSimilarExpressionMainContext(this.context, this.state); - this.enterRule(localContext, 868, HiveSqlParser.RULE_precedenceSimilarExpressionMain); + this.enterRule(localContext, 870, HiveSqlParser.RULE_precedenceSimilarExpressionMain); try { this.enterOuterAlt(localContext, 1); { - this.state = 4972; + this.state = 4983; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4974; + this.state = 4985; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 596, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4973; + this.state = 4984; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -25506,33 +25566,33 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 870, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 872, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4982; + this.state = 4993; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4976; + this.state = 4987; this.precedenceSimilarOperator(); - this.state = 4977; + this.state = 4988; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4979; + this.state = 4990; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4980; + this.state = 4991; this.match(HiveSqlParser.KW_NOT); - this.state = 4981; + this.state = 4992; this.precedenceSimilarExpressionPartNot(); } break; @@ -25554,40 +25614,40 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 872, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 874, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4995; + this.state = 5006; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4984; + this.state = 4995; this.match(HiveSqlParser.KW_IN); - this.state = 4985; + this.state = 4996; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4986; + this.state = 4997; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4987; + this.state = 4998; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4988; + this.state = 4999; this.match(HiveSqlParser.KW_AND); - this.state = 4989; + this.state = 5000; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4991; + this.state = 5002; this.match(HiveSqlParser.KW_LIKE); - this.state = 4992; + this.state = 5003; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -25596,7 +25656,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4993; + this.state = 5004; localContext._expr = this.expressionsInParenthesis(); } break; @@ -25608,7 +25668,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4994; + this.state = 5005; this.precedenceSimilarExpressionQuantifierPredicate(); } break; @@ -25632,15 +25692,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionQuantifierPredicate(): PrecedenceSimilarExpressionQuantifierPredicateContext { let localContext = new PrecedenceSimilarExpressionQuantifierPredicateContext(this.context, this.state); - this.enterRule(localContext, 874, HiveSqlParser.RULE_precedenceSimilarExpressionQuantifierPredicate); + this.enterRule(localContext, 876, HiveSqlParser.RULE_precedenceSimilarExpressionQuantifierPredicate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4997; + this.state = 5008; this.subQuerySelectorOperator(); - this.state = 4998; + this.state = 5009; this.quantifierType(); - this.state = 4999; + this.state = 5010; this.subQueryExpression(); } } @@ -25660,14 +25720,14 @@ export class HiveSqlParser extends SQLParserBase { } public quantifierType(): QuantifierTypeContext { let localContext = new QuantifierTypeContext(this.context, this.state); - this.enterRule(localContext, 876, HiveSqlParser.RULE_quantifierType); + this.enterRule(localContext, 878, HiveSqlParser.RULE_quantifierType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5001; + this.state = 5012; _la = this.tokenStream.LA(1); - if(!(_la === 7 || _la === 13 || _la === 312)) { + if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); } else { @@ -25692,22 +25752,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 878, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 880, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 5005; + this.state = 5016; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 601, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5003; + this.state = 5014; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5004; + this.state = 5015; localContext._expr = this.expressionsInParenthesis(); } break; @@ -25729,24 +25789,24 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 880, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 882, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); try { - this.state = 5011; + this.state = 5022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5007; + this.state = 5018; this.precedenceRegexpOperator(); - this.state = 5008; + this.state = 5019; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5010; + this.state = 5021; this.precedenceSimilarExpressionAtom(); } break; @@ -25768,15 +25828,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 882, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 884, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 5013; + this.state = 5024; this.match(HiveSqlParser.KW_IS); - this.state = 5014; + this.state = 5025; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 5015; + this.state = 5026; this.match(HiveSqlParser.KW_FROM); } } @@ -25796,42 +25856,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 884, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 886, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 5024; + this.state = 5035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 5017; + this.state = 5028; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 5018; + this.state = 5029; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 5019; + this.state = 5030; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 5020; + this.state = 5031; this.match(HiveSqlParser.KW_IS); - this.state = 5021; + this.state = 5032; this.match(HiveSqlParser.KW_NOT); - this.state = 5022; + this.state = 5033; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 5023; + this.state = 5034; this.match(HiveSqlParser.KW_FROM); } break; @@ -25855,38 +25915,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 886, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 888, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5026; + this.state = 5037; this.precedenceSimilarExpression(); - this.state = 5035; + this.state = 5046; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5033; + this.state = 5044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { case 1: { - this.state = 5027; + this.state = 5038; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 5028; + this.state = 5039; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 5030; + this.state = 5041; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 5031; + this.state = 5042; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -25894,9 +25954,9 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 5037; + this.state = 5048; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); } } } @@ -25916,72 +25976,72 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 888, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 890, HiveSqlParser.RULE_isCondition); try { - this.state = 5050; + this.state = 5061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5038; + this.state = 5049; this.match(HiveSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5039; + this.state = 5050; this.match(HiveSqlParser.KW_TRUE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5040; + this.state = 5051; this.match(HiveSqlParser.KW_FALSE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5041; + this.state = 5052; this.match(HiveSqlParser.KW_UNKNOWN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5042; + this.state = 5053; this.match(HiveSqlParser.KW_NOT); - this.state = 5043; + this.state = 5054; this.match(HiveSqlParser.KW_NULL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5044; + this.state = 5055; this.match(HiveSqlParser.KW_NOT); - this.state = 5045; + this.state = 5056; this.match(HiveSqlParser.KW_TRUE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5046; + this.state = 5057; this.match(HiveSqlParser.KW_NOT); - this.state = 5047; + this.state = 5058; this.match(HiveSqlParser.KW_FALSE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5048; + this.state = 5059; this.match(HiveSqlParser.KW_NOT); - this.state = 5049; + this.state = 5060; this.match(HiveSqlParser.KW_UNKNOWN); } break; @@ -26003,21 +26063,21 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnarySuffixExpression(): PrecedenceUnarySuffixExpressionContext { let localContext = new PrecedenceUnarySuffixExpressionContext(this.context, this.state); - this.enterRule(localContext, 890, HiveSqlParser.RULE_precedenceUnarySuffixExpression); + this.enterRule(localContext, 892, HiveSqlParser.RULE_precedenceUnarySuffixExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5052; + this.state = 5063; this.precedenceEqualExpression(); - this.state = 5055; + this.state = 5066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 5053; + this.state = 5064; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 5054; + this.state = 5065; this.isCondition(); } } @@ -26040,11 +26100,11 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotOperator(): PrecedenceNotOperatorContext { let localContext = new PrecedenceNotOperatorContext(this.context, this.state); - this.enterRule(localContext, 892, HiveSqlParser.RULE_precedenceNotOperator); + this.enterRule(localContext, 894, HiveSqlParser.RULE_precedenceNotOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 5057; + this.state = 5068; this.match(HiveSqlParser.KW_NOT); } } @@ -26064,28 +26124,28 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 894, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 896, HiveSqlParser.RULE_precedenceNotExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5062; + this.state = 5073; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 606, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 608, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5059; + this.state = 5070; this.precedenceNotOperator(); } } } - this.state = 5064; + this.state = 5075; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 606, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 608, this.context); } - this.state = 5065; + this.state = 5076; this.precedenceUnarySuffixExpression(); } } @@ -26105,11 +26165,11 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndOperator(): PrecedenceAndOperatorContext { let localContext = new PrecedenceAndOperatorContext(this.context, this.state); - this.enterRule(localContext, 896, HiveSqlParser.RULE_precedenceAndOperator); + this.enterRule(localContext, 898, HiveSqlParser.RULE_precedenceAndOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 5067; + this.state = 5078; this.match(HiveSqlParser.KW_AND); } } @@ -26129,88 +26189,23 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 898, HiveSqlParser.RULE_precedenceAndExpression); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5069; - this.precedenceNotExpression(); - this.state = 5075; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 11) { - { - { - this.state = 5070; - this.precedenceAndOperator(); - this.state = 5071; - this.precedenceNotExpression(); - } - } - this.state = 5077; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceOrOperator(): PrecedenceOrOperatorContext { - let localContext = new PrecedenceOrOperatorContext(this.context, this.state); - this.enterRule(localContext, 900, HiveSqlParser.RULE_precedenceOrOperator); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5078; - this.match(HiveSqlParser.KW_OR); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceOrExpression(): PrecedenceOrExpressionContext { - let localContext = new PrecedenceOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 902, HiveSqlParser.RULE_precedenceOrExpression); + this.enterRule(localContext, 900, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 5080; - this.precedenceAndExpression(); + this.precedenceNotExpression(); this.state = 5086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 227) { + while (_la === 11) { { { this.state = 5081; - this.precedenceOrOperator(); + this.precedenceAndOperator(); this.state = 5082; - this.precedenceAndExpression(); + this.precedenceNotExpression(); } } this.state = 5088; @@ -26233,16 +26228,81 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public booleanValue(): BooleanValueContext { - let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 904, HiveSqlParser.RULE_booleanValue); - let _la: number; + public precedenceOrOperator(): PrecedenceOrOperatorContext { + let localContext = new PrecedenceOrOperatorContext(this.context, this.state); + this.enterRule(localContext, 902, HiveSqlParser.RULE_precedenceOrOperator); try { this.enterOuterAlt(localContext, 1); { this.state = 5089; + this.match(HiveSqlParser.KW_OR); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public precedenceOrExpression(): PrecedenceOrExpressionContext { + let localContext = new PrecedenceOrExpressionContext(this.context, this.state); + this.enterRule(localContext, 904, HiveSqlParser.RULE_precedenceOrExpression); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 5091; + this.precedenceAndExpression(); + this.state = 5097; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 125 || _la === 349)) { + while (_la === 228) { + { + { + this.state = 5092; + this.precedenceOrOperator(); + this.state = 5093; + this.precedenceAndExpression(); + } + } + this.state = 5099; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public booleanValue(): BooleanValueContext { + let localContext = new BooleanValueContext(this.context, this.state); + this.enterRule(localContext, 906, HiveSqlParser.RULE_booleanValue); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 5100; + _la = this.tokenStream.LA(1); + if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); } else { @@ -26267,14 +26327,14 @@ export class HiveSqlParser extends SQLParserBase { } public booleanValueTok(): BooleanValueTokContext { let localContext = new BooleanValueTokContext(this.context, this.state); - this.enterRule(localContext, 906, HiveSqlParser.RULE_booleanValueTok); + this.enterRule(localContext, 908, HiveSqlParser.RULE_booleanValueTok); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5091; + this.state = 5102; _la = this.tokenStream.LA(1); - if(!(_la === 125 || _la === 349)) { + if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); } else { @@ -26299,19 +26359,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 908, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 910, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5093; + this.state = 5104; this.tableName(); - this.state = 5095; + this.state = 5106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 236) { + if (_la === 237) { { - this.state = 5094; + this.state = 5105; this.partitionSpec(); } } @@ -26334,34 +26394,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 910, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 912, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5097; + this.state = 5108; this.match(HiveSqlParser.KW_PARTITION); - this.state = 5098; + this.state = 5109; this.match(HiveSqlParser.LPAREN); - this.state = 5099; + this.state = 5110; this.partitionVal(); - this.state = 5104; + this.state = 5115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5100; + this.state = 5111; this.match(HiveSqlParser.COMMA); - this.state = 5101; + this.state = 5112; this.partitionVal(); } } - this.state = 5106; + this.state = 5117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5107; + this.state = 5118; this.match(HiveSqlParser.RPAREN); } } @@ -26381,21 +26441,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 912, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 914, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5109; + this.state = 5120; this.id_(); - this.state = 5112; + this.state = 5123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 404) { + if (_la === 405) { { - this.state = 5110; + this.state = 5121; this.match(HiveSqlParser.EQUAL); - this.state = 5111; + this.state = 5122; this.constant(); } } @@ -26418,32 +26478,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 914, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 916, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5114; + this.state = 5125; this.match(HiveSqlParser.LPAREN); - this.state = 5115; + this.state = 5126; this.partitionSelectorVal(); - this.state = 5120; + this.state = 5131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5116; + this.state = 5127; this.match(HiveSqlParser.COMMA); - this.state = 5117; + this.state = 5128; this.partitionSelectorVal(); } } - this.state = 5122; + this.state = 5133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5123; + this.state = 5134; this.match(HiveSqlParser.RPAREN); } } @@ -26463,15 +26523,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 916, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 918, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 5125; + this.state = 5136; this.id_(); - this.state = 5126; + this.state = 5137; this.partitionSelectorOperator(); - this.state = 5127; + this.state = 5138; this.constant(); } } @@ -26491,15 +26551,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorOperator(): PartitionSelectorOperatorContext { let localContext = new PartitionSelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 918, HiveSqlParser.RULE_partitionSelectorOperator); + this.enterRule(localContext, 920, HiveSqlParser.RULE_partitionSelectorOperator); try { - this.state = 5131; + this.state = 5142; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 5129; + this.state = 5140; this.match(HiveSqlParser.KW_LIKE); } break; @@ -26511,7 +26571,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 2); { - this.state = 5130; + this.state = 5141; this.subQuerySelectorOperator(); } break; @@ -26535,14 +26595,14 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 920, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 922, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5133; + this.state = 5144; _la = this.tokenStream.LA(1); - if(!(((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 125) !== 0))) { + if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -26567,14 +26627,14 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 922, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 924, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5135; + this.state = 5146; _la = this.tokenStream.LA(1); - if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 183 || _la === 197 || _la === 215 || _la === 227 || ((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 4194369) !== 0) || ((((_la - 310)) & ~0x1F) === 0 && ((1 << (_la - 310)) & 536883201) !== 0) || _la === 356 || _la === 382 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 385023) !== 0))) { + if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -26599,15 +26659,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 924, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 926, HiveSqlParser.RULE_id_); try { - this.state = 5139; + this.state = 5150; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 5137; + this.state = 5148; this.match(HiveSqlParser.Identifier); } break; @@ -26710,6 +26770,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_KILL: case HiveSqlParser.KW_LAST: case HiveSqlParser.KW_LEVEL: + case HiveSqlParser.KW_LIFECYCLE: case HiveSqlParser.KW_LIMIT: case HiveSqlParser.KW_LINES: case HiveSqlParser.KW_LOAD: @@ -26851,7 +26912,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 5138; + this.state = 5149; this.nonReserved(); } break; @@ -26875,21 +26936,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 926, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 928, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5141; + this.state = 5152; this.id_(); - this.state = 5144; + this.state = 5155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 394) { + if (_la === 395) { { - this.state = 5142; + this.state = 5153; this.match(HiveSqlParser.DOT); - this.state = 5143; + this.state = 5154; localContext._fn = this.id_(); } } @@ -26912,11 +26973,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 928, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 930, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 5146; + this.state = 5157; this.id_(); } } @@ -26936,14 +26997,14 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 930, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 932, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5148; + this.state = 5159; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3723969527) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 2255187435) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 929578221) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4039901127) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3755917179) !== 0) || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 3402225181) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 4238323319) !== 0) || _la === 393)) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); } else { @@ -26968,14 +27029,14 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 932, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 934, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5150; + this.state = 5161; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 197 || _la === 263 || _la === 310 || _la === 336)) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); } else { @@ -27000,13 +27061,13 @@ export class HiveSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 934, HiveSqlParser.RULE_hint); + this.enterRule(localContext, 936, HiveSqlParser.RULE_hint); try { this.enterOuterAlt(localContext, 1); { - this.state = 5152; + this.state = 5163; this.hintList(); - this.state = 5153; + this.state = 5164; this.match(HiveSqlParser.EOF); } } @@ -27026,26 +27087,26 @@ export class HiveSqlParser extends SQLParserBase { } public hintList(): HintListContext { let localContext = new HintListContext(this.context, this.state); - this.enterRule(localContext, 936, HiveSqlParser.RULE_hintList); + this.enterRule(localContext, 938, HiveSqlParser.RULE_hintList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5155; + this.state = 5166; this.hintItem(); - this.state = 5160; + this.state = 5171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5156; + this.state = 5167; this.match(HiveSqlParser.COMMA); - this.state = 5157; + this.state = 5168; this.hintItem(); } } - this.state = 5162; + this.state = 5173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27067,23 +27128,23 @@ export class HiveSqlParser extends SQLParserBase { } public hintItem(): HintItemContext { let localContext = new HintItemContext(this.context, this.state); - this.enterRule(localContext, 938, HiveSqlParser.RULE_hintItem); + this.enterRule(localContext, 940, HiveSqlParser.RULE_hintItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5163; + this.state = 5174; this.hintName(); - this.state = 5168; + this.state = 5179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 398) { + if (_la === 399) { { - this.state = 5164; + this.state = 5175; this.match(HiveSqlParser.LPAREN); - this.state = 5165; + this.state = 5176; this.hintArgs(); - this.state = 5166; + this.state = 5177; this.match(HiveSqlParser.RPAREN); } } @@ -27106,14 +27167,14 @@ export class HiveSqlParser extends SQLParserBase { } public hintName(): HintNameContext { let localContext = new HintNameContext(this.context, this.state); - this.enterRule(localContext, 940, HiveSqlParser.RULE_hintName); + this.enterRule(localContext, 942, HiveSqlParser.RULE_hintName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5170; + this.state = 5181; _la = this.tokenStream.LA(1); - if(!(_la === 198 || _la === 241 || _la === 299 || _la === 321)) { + if(!(_la === 199 || _la === 242 || _la === 300 || _la === 322)) { this.errorHandler.recoverInline(this); } else { @@ -27138,26 +27199,26 @@ export class HiveSqlParser extends SQLParserBase { } public hintArgs(): HintArgsContext { let localContext = new HintArgsContext(this.context, this.state); - this.enterRule(localContext, 942, HiveSqlParser.RULE_hintArgs); + this.enterRule(localContext, 944, HiveSqlParser.RULE_hintArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5172; + this.state = 5183; this.hintArgName(); - this.state = 5177; + this.state = 5188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5173; + this.state = 5184; this.match(HiveSqlParser.COMMA); - this.state = 5174; + this.state = 5185; this.hintArgName(); } } - this.state = 5179; + this.state = 5190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27179,14 +27240,14 @@ export class HiveSqlParser extends SQLParserBase { } public hintArgName(): HintArgNameContext { let localContext = new HintArgNameContext(this.context, this.state); - this.enterRule(localContext, 944, HiveSqlParser.RULE_hintArgName); + this.enterRule(localContext, 946, HiveSqlParser.RULE_hintArgName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5180; + this.state = 5191; _la = this.tokenStream.LA(1); - if(!(_la === 212 || _la === 430 || _la === 431)) { + if(!(_la === 213 || _la === 431 || _la === 432)) { this.errorHandler.recoverInline(this); } else { @@ -27211,17 +27272,17 @@ export class HiveSqlParser extends SQLParserBase { } public prepareStatement(): PrepareStatementContext { let localContext = new PrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 946, HiveSqlParser.RULE_prepareStatement); + this.enterRule(localContext, 948, HiveSqlParser.RULE_prepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5182; + this.state = 5193; this.match(HiveSqlParser.KW_PREPARE); - this.state = 5183; + this.state = 5194; this.id_(); - this.state = 5184; + this.state = 5195; this.match(HiveSqlParser.KW_FROM); - this.state = 5185; + this.state = 5196; this.queryStatementExpression(); } } @@ -27241,17 +27302,17 @@ export class HiveSqlParser extends SQLParserBase { } public executeStatement(): ExecuteStatementContext { let localContext = new ExecuteStatementContext(this.context, this.state); - this.enterRule(localContext, 948, HiveSqlParser.RULE_executeStatement); + this.enterRule(localContext, 950, HiveSqlParser.RULE_executeStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5187; + this.state = 5198; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 5188; + this.state = 5199; this.id_(); - this.state = 5189; + this.state = 5200; this.match(HiveSqlParser.KW_USING); - this.state = 5190; + this.state = 5201; this.executeParamList(); } } @@ -27271,26 +27332,26 @@ export class HiveSqlParser extends SQLParserBase { } public executeParamList(): ExecuteParamListContext { let localContext = new ExecuteParamListContext(this.context, this.state); - this.enterRule(localContext, 950, HiveSqlParser.RULE_executeParamList); + this.enterRule(localContext, 952, HiveSqlParser.RULE_executeParamList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5192; + this.state = 5203; this.constant(); - this.state = 5197; + this.state = 5208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5193; + this.state = 5204; this.match(HiveSqlParser.COMMA); - this.state = 5194; + this.state = 5205; this.constant(); } } - this.state = 5199; + this.state = 5210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27312,106 +27373,106 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 952, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 954, HiveSqlParser.RULE_resourcePlanDdlStatements); try { - this.state = 5214; + this.state = 5225; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5200; + this.state = 5211; this.createResourcePlanStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5201; + this.state = 5212; this.alterResourcePlanStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5202; + this.state = 5213; this.dropResourcePlanStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5203; + this.state = 5214; this.globalWmStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5204; + this.state = 5215; this.replaceResourcePlanStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5205; + this.state = 5216; this.createTriggerStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5206; + this.state = 5217; this.alterTriggerStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5207; + this.state = 5218; this.dropTriggerStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5208; + this.state = 5219; this.createPoolStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5209; + this.state = 5220; this.alterPoolStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5210; + this.state = 5221; this.dropPoolStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5211; + this.state = 5222; this.createMappingStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5212; + this.state = 5223; this.alterMappingStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5213; + this.state = 5224; this.dropMappingStatement(); } break; @@ -27433,32 +27494,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 954, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 956, HiveSqlParser.RULE_rpAssign); try { - this.state = 5223; + this.state = 5234; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 5216; + this.state = 5227; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 5217; + this.state = 5228; this.match(HiveSqlParser.EQUAL); - this.state = 5218; + this.state = 5229; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 5219; + this.state = 5230; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 5220; + this.state = 5231; this.match(HiveSqlParser.KW_POOL); - this.state = 5221; + this.state = 5232; this.match(HiveSqlParser.EQUAL); - this.state = 5222; + this.state = 5233; this.poolPath(); } break; @@ -27482,26 +27543,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 956, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 958, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5225; + this.state = 5236; this.rpAssign(); - this.state = 5230; + this.state = 5241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5226; + this.state = 5237; this.match(HiveSqlParser.COMMA); - this.state = 5227; + this.state = 5238; this.rpAssign(); } } - this.state = 5232; + this.state = 5243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27523,24 +27584,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 958, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 960, HiveSqlParser.RULE_rpUnassign); try { - this.state = 5236; + this.state = 5247; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 5233; + this.state = 5244; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 5234; + this.state = 5245; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 5235; + this.state = 5246; this.match(HiveSqlParser.KW_POOL); } break; @@ -27564,26 +27625,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassignList(): RpUnassignListContext { let localContext = new RpUnassignListContext(this.context, this.state); - this.enterRule(localContext, 960, HiveSqlParser.RULE_rpUnassignList); + this.enterRule(localContext, 962, HiveSqlParser.RULE_rpUnassignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5238; + this.state = 5249; this.rpUnassign(); - this.state = 5243; + this.state = 5254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5239; + this.state = 5250; this.match(HiveSqlParser.COMMA); - this.state = 5240; + this.state = 5251; this.rpUnassign(); } } - this.state = 5245; + this.state = 5256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -27605,52 +27666,52 @@ export class HiveSqlParser extends SQLParserBase { } public createResourcePlanStatement(): CreateResourcePlanStatementContext { let localContext = new CreateResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 962, HiveSqlParser.RULE_createResourcePlanStatement); + this.enterRule(localContext, 964, HiveSqlParser.RULE_createResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5246; + this.state = 5257; this.match(HiveSqlParser.KW_CREATE); - this.state = 5247; + this.state = 5258; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 5248; + this.state = 5259; this.match(HiveSqlParser.KW_PLAN); - this.state = 5250; + this.state = 5261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 5249; + this.state = 5260; this.ifNotExists(); } } - this.state = 5261; + this.state = 5272; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { case 1: { - this.state = 5252; + this.state = 5263; localContext._name = this.id_(); - this.state = 5253; + this.state = 5264; this.match(HiveSqlParser.KW_LIKE); - this.state = 5254; + this.state = 5265; localContext._likeName = this.id_(); } break; case 2: { - this.state = 5256; + this.state = 5267; localContext._name = this.id_(); - this.state = 5259; + this.state = 5270; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 5257; + this.state = 5268; this.match(HiveSqlParser.KW_WITH); - this.state = 5258; + this.state = 5269; this.rpAssignList(); } break; @@ -27676,13 +27737,13 @@ export class HiveSqlParser extends SQLParserBase { } public withReplace(): WithReplaceContext { let localContext = new WithReplaceContext(this.context, this.state); - this.enterRule(localContext, 964, HiveSqlParser.RULE_withReplace); + this.enterRule(localContext, 966, HiveSqlParser.RULE_withReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 5263; + this.state = 5274; this.match(HiveSqlParser.KW_WITH); - this.state = 5264; + this.state = 5275; this.match(HiveSqlParser.KW_REPLACE); } } @@ -27702,18 +27763,18 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 966, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 968, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 5266; + this.state = 5277; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 5268; + this.state = 5279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5267; + this.state = 5278; this.withReplace(); } break; @@ -27736,12 +27797,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 968, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 970, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5270; + this.state = 5281; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -27768,12 +27829,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 970, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 972, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5272; + this.state = 5283; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -27800,11 +27861,11 @@ export class HiveSqlParser extends SQLParserBase { } public unmanaged(): UnmanagedContext { let localContext = new UnmanagedContext(this.context, this.state); - this.enterRule(localContext, 972, HiveSqlParser.RULE_unmanaged); + this.enterRule(localContext, 974, HiveSqlParser.RULE_unmanaged); try { this.enterOuterAlt(localContext, 1); { - this.state = 5274; + this.state = 5285; this.match(HiveSqlParser.KW_UNMANAGED); } } @@ -27824,14 +27885,14 @@ export class HiveSqlParser extends SQLParserBase { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 974, HiveSqlParser.RULE_year); + this.enterRule(localContext, 976, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5276; + this.state = 5287; _la = this.tokenStream.LA(1); - if(!(_la === 391 || _la === 392)) { + if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); } else { @@ -27856,14 +27917,14 @@ export class HiveSqlParser extends SQLParserBase { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 976, HiveSqlParser.RULE_month); + this.enterRule(localContext, 978, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5278; + this.state = 5289; _la = this.tokenStream.LA(1); - if(!(_la === 207 || _la === 208)) { + if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); } else { @@ -27888,14 +27949,14 @@ export class HiveSqlParser extends SQLParserBase { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 978, HiveSqlParser.RULE_week); + this.enterRule(localContext, 980, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5280; + this.state = 5291; _la = this.tokenStream.LA(1); - if(!(_la === 380 || _la === 381)) { + if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); } else { @@ -27920,12 +27981,12 @@ export class HiveSqlParser extends SQLParserBase { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 980, HiveSqlParser.RULE_day); + this.enterRule(localContext, 982, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5282; + this.state = 5293; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -27952,12 +28013,12 @@ export class HiveSqlParser extends SQLParserBase { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 982, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 984, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5284; + this.state = 5295; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -27984,14 +28045,14 @@ export class HiveSqlParser extends SQLParserBase { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 984, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 986, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5286; + this.state = 5297; _la = this.tokenStream.LA(1); - if(!(_la === 205 || _la === 206)) { + if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); } else { @@ -28016,14 +28077,14 @@ export class HiveSqlParser extends SQLParserBase { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 986, HiveSqlParser.RULE_second); + this.enterRule(localContext, 988, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5288; + this.state = 5299; _la = this.tokenStream.LA(1); - if(!(_la === 296 || _la === 297)) { + if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); } else { @@ -28048,12 +28109,12 @@ export class HiveSqlParser extends SQLParserBase { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 988, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 990, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5290; + this.state = 5301; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -28080,71 +28141,71 @@ export class HiveSqlParser extends SQLParserBase { } public alterResourcePlanStatement(): AlterResourcePlanStatementContext { let localContext = new AlterResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 990, HiveSqlParser.RULE_alterResourcePlanStatement); + this.enterRule(localContext, 992, HiveSqlParser.RULE_alterResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5292; + this.state = 5303; this.match(HiveSqlParser.KW_ALTER); - this.state = 5293; + this.state = 5304; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 5294; + this.state = 5305; this.match(HiveSqlParser.KW_PLAN); - this.state = 5295; + this.state = 5306; localContext._name = this.id_(); - this.state = 5313; + this.state = 5324; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 5296; + this.state = 5307; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 5297; + this.state = 5308; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 5298; + this.state = 5309; this.match(HiveSqlParser.KW_SET); - this.state = 5299; + this.state = 5310; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 5300; + this.state = 5311; this.match(HiveSqlParser.KW_UNSET); - this.state = 5301; + this.state = 5312; this.rpUnassignList(); } break; case HiveSqlParser.KW_RENAME: { - this.state = 5302; + this.state = 5313; this.match(HiveSqlParser.KW_RENAME); - this.state = 5303; + this.state = 5314; this.match(HiveSqlParser.KW_TO); - this.state = 5304; + this.state = 5315; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 5305; + this.state = 5316; this.activate(); - this.state = 5307; + this.state = 5318; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 5306; + this.state = 5317; this.enable(); } break; @@ -28154,14 +28215,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 5309; + this.state = 5320; this.enable(); - this.state = 5311; + this.state = 5322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5310; + this.state = 5321; this.activate(); } } @@ -28189,33 +28250,33 @@ export class HiveSqlParser extends SQLParserBase { } public globalWmStatement(): GlobalWmStatementContext { let localContext = new GlobalWmStatementContext(this.context, this.state); - this.enterRule(localContext, 992, HiveSqlParser.RULE_globalWmStatement); + this.enterRule(localContext, 994, HiveSqlParser.RULE_globalWmStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5317; + this.state = 5328; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 5315; + this.state = 5326; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 5316; + this.state = 5327; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5319; + this.state = 5330; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 5320; + this.state = 5331; this.match(HiveSqlParser.KW_MANAGEMENT); } } @@ -28235,40 +28296,40 @@ export class HiveSqlParser extends SQLParserBase { } public replaceResourcePlanStatement(): ReplaceResourcePlanStatementContext { let localContext = new ReplaceResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 994, HiveSqlParser.RULE_replaceResourcePlanStatement); + this.enterRule(localContext, 996, HiveSqlParser.RULE_replaceResourcePlanStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5322; + this.state = 5333; this.match(HiveSqlParser.KW_REPLACE); - this.state = 5334; + this.state = 5345; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 5323; + this.state = 5334; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 5324; + this.state = 5335; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 5325; + this.state = 5336; this.match(HiveSqlParser.KW_PLAN); - this.state = 5326; + this.state = 5337; this.match(HiveSqlParser.KW_WITH); - this.state = 5327; + this.state = 5338; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 5328; + this.state = 5339; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 5329; + this.state = 5340; this.match(HiveSqlParser.KW_PLAN); - this.state = 5330; + this.state = 5341; localContext._dest = this.id_(); - this.state = 5331; + this.state = 5342; this.match(HiveSqlParser.KW_WITH); - this.state = 5332; + this.state = 5343; localContext._src = this.id_(); } break; @@ -28293,28 +28354,28 @@ export class HiveSqlParser extends SQLParserBase { } public dropResourcePlanStatement(): DropResourcePlanStatementContext { let localContext = new DropResourcePlanStatementContext(this.context, this.state); - this.enterRule(localContext, 996, HiveSqlParser.RULE_dropResourcePlanStatement); + this.enterRule(localContext, 998, HiveSqlParser.RULE_dropResourcePlanStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5336; + this.state = 5347; this.match(HiveSqlParser.KW_DROP); - this.state = 5337; + this.state = 5348; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 5338; + this.state = 5349; this.match(HiveSqlParser.KW_PLAN); - this.state = 5340; + this.state = 5351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 5339; + this.state = 5350; this.ifExists(); } } - this.state = 5342; + this.state = 5353; localContext._name = this.id_(); } } @@ -28334,26 +28395,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 998, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 1000, HiveSqlParser.RULE_poolPath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5344; + this.state = 5355; this.id_(); - this.state = 5349; + this.state = 5360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 394) { + while (_la === 395) { { { - this.state = 5345; + this.state = 5356; this.match(HiveSqlParser.DOT); - this.state = 5346; + this.state = 5357; this.id_(); } } - this.state = 5351; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28375,11 +28436,11 @@ export class HiveSqlParser extends SQLParserBase { } public triggerExpression(): TriggerExpressionContext { let localContext = new TriggerExpressionContext(this.context, this.state); - this.enterRule(localContext, 1000, HiveSqlParser.RULE_triggerExpression); + this.enterRule(localContext, 1002, HiveSqlParser.RULE_triggerExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 5352; + this.state = 5363; this.triggerAtomExpression(); } } @@ -28399,13 +28460,13 @@ export class HiveSqlParser extends SQLParserBase { } public triggerExpressionStandalone(): TriggerExpressionStandaloneContext { let localContext = new TriggerExpressionStandaloneContext(this.context, this.state); - this.enterRule(localContext, 1002, HiveSqlParser.RULE_triggerExpressionStandalone); + this.enterRule(localContext, 1004, HiveSqlParser.RULE_triggerExpressionStandalone); try { this.enterOuterAlt(localContext, 1); { - this.state = 5354; + this.state = 5365; this.triggerExpression(); - this.state = 5355; + this.state = 5366; this.match(HiveSqlParser.EOF); } } @@ -28425,26 +28486,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerOrExpression(): TriggerOrExpressionContext { let localContext = new TriggerOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 1004, HiveSqlParser.RULE_triggerOrExpression); + this.enterRule(localContext, 1006, HiveSqlParser.RULE_triggerOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5357; + this.state = 5368; this.triggerAndExpression(); - this.state = 5362; + this.state = 5373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 227) { + while (_la === 228) { { { - this.state = 5358; + this.state = 5369; this.match(HiveSqlParser.KW_OR); - this.state = 5359; + this.state = 5370; this.triggerAndExpression(); } } - this.state = 5364; + this.state = 5375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28466,26 +28527,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAndExpression(): TriggerAndExpressionContext { let localContext = new TriggerAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 1006, HiveSqlParser.RULE_triggerAndExpression); + this.enterRule(localContext, 1008, HiveSqlParser.RULE_triggerAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5365; + this.state = 5376; this.triggerAtomExpression(); - this.state = 5370; + this.state = 5381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 5366; + this.state = 5377; this.match(HiveSqlParser.KW_AND); - this.state = 5367; + this.state = 5378; this.triggerAtomExpression(); } } - this.state = 5372; + this.state = 5383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28507,15 +28568,15 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 1008, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 1010, HiveSqlParser.RULE_triggerAtomExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 5373; + this.state = 5384; this.id_(); - this.state = 5374; + this.state = 5385; this.comparisionOperator(); - this.state = 5375; + this.state = 5386; this.triggerLiteral(); } } @@ -28535,14 +28596,14 @@ export class HiveSqlParser extends SQLParserBase { } public triggerLiteral(): TriggerLiteralContext { let localContext = new TriggerLiteralContext(this.context, this.state); - this.enterRule(localContext, 1010, HiveSqlParser.RULE_triggerLiteral); + this.enterRule(localContext, 1012, HiveSqlParser.RULE_triggerLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5377; + this.state = 5388; _la = this.tokenStream.LA(1); - if(!(_la === 425 || _la === 430)) { + if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); } else { @@ -28567,11 +28628,11 @@ export class HiveSqlParser extends SQLParserBase { } public comparisionOperator(): ComparisionOperatorContext { let localContext = new ComparisionOperatorContext(this.context, this.state); - this.enterRule(localContext, 1012, HiveSqlParser.RULE_comparisionOperator); + this.enterRule(localContext, 1014, HiveSqlParser.RULE_comparisionOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 5379; + this.state = 5390; this.match(HiveSqlParser.GREATERTHAN); } } @@ -28591,26 +28652,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 1014, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 1016, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 5385; + this.state = 5396; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 5381; + this.state = 5392; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 5382; + this.state = 5393; this.match(HiveSqlParser.KW_MOVE); - this.state = 5383; + this.state = 5394; this.match(HiveSqlParser.KW_TO); - this.state = 5384; + this.state = 5395; this.poolPath(); } break; @@ -28634,13 +28695,13 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpressionStandalone(): TriggerActionExpressionStandaloneContext { let localContext = new TriggerActionExpressionStandaloneContext(this.context, this.state); - this.enterRule(localContext, 1016, HiveSqlParser.RULE_triggerActionExpressionStandalone); + this.enterRule(localContext, 1018, HiveSqlParser.RULE_triggerActionExpressionStandalone); try { this.enterOuterAlt(localContext, 1); { - this.state = 5387; + this.state = 5398; this.triggerActionExpression(); - this.state = 5388; + this.state = 5399; this.match(HiveSqlParser.EOF); } } @@ -28660,27 +28721,27 @@ export class HiveSqlParser extends SQLParserBase { } public createTriggerStatement(): CreateTriggerStatementContext { let localContext = new CreateTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1018, HiveSqlParser.RULE_createTriggerStatement); + this.enterRule(localContext, 1020, HiveSqlParser.RULE_createTriggerStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5390; + this.state = 5401; this.match(HiveSqlParser.KW_CREATE); - this.state = 5391; + this.state = 5402; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 5392; + this.state = 5403; localContext._rpName = this.id_(); - this.state = 5393; + this.state = 5404; this.match(HiveSqlParser.DOT); - this.state = 5394; + this.state = 5405; localContext._triggerName = this.id_(); - this.state = 5395; + this.state = 5406; this.match(HiveSqlParser.KW_WHEN); - this.state = 5396; + this.state = 5407; this.triggerExpression(); - this.state = 5397; + this.state = 5408; this.match(HiveSqlParser.KW_DO); - this.state = 5398; + this.state = 5409; this.triggerActionExpression(); } } @@ -28700,74 +28761,74 @@ export class HiveSqlParser extends SQLParserBase { } public alterTriggerStatement(): AlterTriggerStatementContext { let localContext = new AlterTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1020, HiveSqlParser.RULE_alterTriggerStatement); + this.enterRule(localContext, 1022, HiveSqlParser.RULE_alterTriggerStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5400; + this.state = 5411; this.match(HiveSqlParser.KW_ALTER); - this.state = 5401; + this.state = 5412; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 5402; + this.state = 5413; localContext._rpName = this.id_(); - this.state = 5403; + this.state = 5414; this.match(HiveSqlParser.DOT); - this.state = 5404; + this.state = 5415; localContext._triggerName = this.id_(); - this.state = 5421; + this.state = 5432; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 5405; + this.state = 5416; this.match(HiveSqlParser.KW_WHEN); - this.state = 5406; + this.state = 5417; this.triggerExpression(); - this.state = 5407; + this.state = 5418; this.match(HiveSqlParser.KW_DO); - this.state = 5408; + this.state = 5419; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 5414; + this.state = 5425; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 5410; + this.state = 5421; this.match(HiveSqlParser.KW_ADD); - this.state = 5411; + this.state = 5422; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 5412; + this.state = 5423; this.match(HiveSqlParser.KW_DROP); - this.state = 5413; + this.state = 5424; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5419; + this.state = 5430; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 5416; + this.state = 5427; this.match(HiveSqlParser.KW_POOL); - this.state = 5417; + this.state = 5428; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 5418; + this.state = 5429; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -28797,19 +28858,19 @@ export class HiveSqlParser extends SQLParserBase { } public dropTriggerStatement(): DropTriggerStatementContext { let localContext = new DropTriggerStatementContext(this.context, this.state); - this.enterRule(localContext, 1022, HiveSqlParser.RULE_dropTriggerStatement); + this.enterRule(localContext, 1024, HiveSqlParser.RULE_dropTriggerStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5423; + this.state = 5434; this.match(HiveSqlParser.KW_DROP); - this.state = 5424; + this.state = 5435; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 5425; + this.state = 5436; localContext._rpName = this.id_(); - this.state = 5426; + this.state = 5437; this.match(HiveSqlParser.DOT); - this.state = 5427; + this.state = 5438; localContext._triggerName = this.id_(); } } @@ -28829,50 +28890,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 1024, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 1026, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 5441; + this.state = 5452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 5429; + this.state = 5440; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 5430; + this.state = 5441; this.match(HiveSqlParser.EQUAL); - this.state = 5431; + this.state = 5442; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 5432; + this.state = 5443; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 5433; + this.state = 5444; this.match(HiveSqlParser.EQUAL); - this.state = 5434; + this.state = 5445; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 5435; + this.state = 5446; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 5436; + this.state = 5447; this.match(HiveSqlParser.EQUAL); - this.state = 5437; + this.state = 5448; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 5438; + this.state = 5449; this.match(HiveSqlParser.KW_PATH); - this.state = 5439; + this.state = 5450; this.match(HiveSqlParser.EQUAL); - this.state = 5440; + this.state = 5451; localContext._path = this.poolPath(); } break; @@ -28897,26 +28958,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 1026, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 1028, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5443; + this.state = 5454; this.poolAssign(); - this.state = 5448; + this.state = 5459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 396) { + while (_la === 397) { { { - this.state = 5444; + this.state = 5455; this.match(HiveSqlParser.COMMA); - this.state = 5445; + this.state = 5456; this.poolAssign(); } } - this.state = 5450; + this.state = 5461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28938,23 +28999,23 @@ export class HiveSqlParser extends SQLParserBase { } public createPoolStatement(): CreatePoolStatementContext { let localContext = new CreatePoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1028, HiveSqlParser.RULE_createPoolStatement); + this.enterRule(localContext, 1030, HiveSqlParser.RULE_createPoolStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5451; + this.state = 5462; this.match(HiveSqlParser.KW_CREATE); - this.state = 5452; + this.state = 5463; this.match(HiveSqlParser.KW_POOL); - this.state = 5453; + this.state = 5464; localContext._rpName = this.id_(); - this.state = 5454; + this.state = 5465; this.match(HiveSqlParser.DOT); - this.state = 5455; + this.state = 5466; this.poolPath(); - this.state = 5456; + this.state = 5467; this.match(HiveSqlParser.KW_WITH); - this.state = 5457; + this.state = 5468; this.poolAssignList(); } } @@ -28974,44 +29035,44 @@ export class HiveSqlParser extends SQLParserBase { } public alterPoolStatement(): AlterPoolStatementContext { let localContext = new AlterPoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1030, HiveSqlParser.RULE_alterPoolStatement); + this.enterRule(localContext, 1032, HiveSqlParser.RULE_alterPoolStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5459; + this.state = 5470; this.match(HiveSqlParser.KW_ALTER); - this.state = 5460; - this.match(HiveSqlParser.KW_POOL); - this.state = 5461; - localContext._rpName = this.id_(); - this.state = 5462; - this.match(HiveSqlParser.DOT); - this.state = 5463; - this.poolPath(); this.state = 5471; + this.match(HiveSqlParser.KW_POOL); + this.state = 5472; + localContext._rpName = this.id_(); + this.state = 5473; + this.match(HiveSqlParser.DOT); + this.state = 5474; + this.poolPath(); + this.state = 5482; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 5464; + this.state = 5475; this.match(HiveSqlParser.KW_SET); - this.state = 5465; + this.state = 5476; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 5466; + this.state = 5477; this.match(HiveSqlParser.KW_UNSET); - this.state = 5467; + this.state = 5478; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 5468; + this.state = 5479; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -29020,9 +29081,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5469; + this.state = 5480; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 5470; + this.state = 5481; localContext._triggerName = this.id_(); } break; @@ -29047,19 +29108,19 @@ export class HiveSqlParser extends SQLParserBase { } public dropPoolStatement(): DropPoolStatementContext { let localContext = new DropPoolStatementContext(this.context, this.state); - this.enterRule(localContext, 1032, HiveSqlParser.RULE_dropPoolStatement); + this.enterRule(localContext, 1034, HiveSqlParser.RULE_dropPoolStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5473; + this.state = 5484; this.match(HiveSqlParser.KW_DROP); - this.state = 5474; + this.state = 5485; this.match(HiveSqlParser.KW_POOL); - this.state = 5475; + this.state = 5486; localContext._rpName = this.id_(); - this.state = 5476; + this.state = 5487; this.match(HiveSqlParser.DOT); - this.state = 5477; + this.state = 5488; this.poolPath(); } } @@ -29079,61 +29140,61 @@ export class HiveSqlParser extends SQLParserBase { } public createMappingStatement(): CreateMappingStatementContext { let localContext = new CreateMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1034, HiveSqlParser.RULE_createMappingStatement); + this.enterRule(localContext, 1036, HiveSqlParser.RULE_createMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5479; + this.state = 5490; this.match(HiveSqlParser.KW_CREATE); - this.state = 5480; + this.state = 5491; localContext._mappingType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 14 || _la === 144 || _la === 368)) { + if(!(_la === 14 || _la === 144 || _la === 369)) { localContext._mappingType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5481; + this.state = 5492; this.match(HiveSqlParser.KW_MAPPING); - this.state = 5482; + this.state = 5493; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 5483; + this.state = 5494; this.match(HiveSqlParser.KW_IN); - this.state = 5484; + this.state = 5495; localContext._rpName = this.id_(); - this.state = 5488; + this.state = 5499; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 5485; + this.state = 5496; this.match(HiveSqlParser.KW_TO); - this.state = 5486; + this.state = 5497; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 5487; + this.state = 5498; this.unmanaged(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5493; + this.state = 5504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { - this.state = 5490; + this.state = 5501; this.match(HiveSqlParser.KW_WITH); - this.state = 5491; + this.state = 5502; this.match(HiveSqlParser.KW_ORDER); - this.state = 5492; + this.state = 5503; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -29156,61 +29217,61 @@ export class HiveSqlParser extends SQLParserBase { } public alterMappingStatement(): AlterMappingStatementContext { let localContext = new AlterMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1036, HiveSqlParser.RULE_alterMappingStatement); + this.enterRule(localContext, 1038, HiveSqlParser.RULE_alterMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5495; + this.state = 5506; this.match(HiveSqlParser.KW_ALTER); - this.state = 5496; + this.state = 5507; localContext._mappingType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 14 || _la === 144 || _la === 368)) { + if(!(_la === 14 || _la === 144 || _la === 369)) { localContext._mappingType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5497; + this.state = 5508; this.match(HiveSqlParser.KW_MAPPING); - this.state = 5498; + this.state = 5509; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 5499; + this.state = 5510; this.match(HiveSqlParser.KW_IN); - this.state = 5500; + this.state = 5511; localContext._rpName = this.id_(); - this.state = 5504; + this.state = 5515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 5501; + this.state = 5512; this.match(HiveSqlParser.KW_TO); - this.state = 5502; + this.state = 5513; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 5503; + this.state = 5514; this.unmanaged(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5509; + this.state = 5520; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 5506; + this.state = 5517; this.match(HiveSqlParser.KW_WITH); - this.state = 5507; + this.state = 5518; this.match(HiveSqlParser.KW_ORDER); - this.state = 5508; + this.state = 5519; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -29233,30 +29294,30 @@ export class HiveSqlParser extends SQLParserBase { } public dropMappingStatement(): DropMappingStatementContext { let localContext = new DropMappingStatementContext(this.context, this.state); - this.enterRule(localContext, 1038, HiveSqlParser.RULE_dropMappingStatement); + this.enterRule(localContext, 1040, HiveSqlParser.RULE_dropMappingStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5511; + this.state = 5522; this.match(HiveSqlParser.KW_DROP); - this.state = 5512; + this.state = 5523; localContext._mappingType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 14 || _la === 144 || _la === 368)) { + if(!(_la === 14 || _la === 144 || _la === 369)) { localContext._mappingType = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5513; + this.state = 5524; this.match(HiveSqlParser.KW_MAPPING); - this.state = 5514; + this.state = 5525; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 5515; + this.state = 5526; this.match(HiveSqlParser.KW_IN); - this.state = 5516; + this.state = 5527; localContext._rpName = this.id_(); } } @@ -29277,7 +29338,7 @@ export class HiveSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 141: + case 142: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); } return true; @@ -29291,7 +29352,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,437,5519,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,438,5530,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, @@ -29382,462 +29443,463 @@ export class HiveSqlParser extends SQLParserBase { 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,1,0,5,0,1042,8,0,10,0, - 12,0,1045,9,0,1,0,1,0,1,1,1,1,3,1,1051,8,1,1,1,3,1,1054,8,1,1,2, - 1,2,5,2,1058,8,2,10,2,12,2,1061,9,2,1,2,1,2,1,2,3,2,1066,8,2,1,3, - 1,3,1,3,1,3,1,3,3,3,1073,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3, - 1083,8,3,1,3,3,3,1086,8,3,1,3,1,3,3,3,1090,8,3,1,4,1,4,1,5,1,5,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1110,8, - 6,1,7,1,7,1,7,3,7,1115,8,7,1,7,1,7,1,7,3,7,1120,8,7,1,7,1,7,1,7, - 1,7,3,7,1126,8,7,1,8,1,8,1,8,1,9,1,9,3,9,1133,8,9,1,9,1,9,1,9,1, - 9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1146,8,10,1,11,1,11,3,11, - 1150,8,11,1,11,1,11,3,11,1154,8,11,1,11,1,11,1,11,3,11,1159,8,11, - 1,12,1,12,1,12,1,12,1,12,3,12,1166,8,12,1,12,1,12,3,12,1170,8,12, - 1,13,1,13,1,13,3,13,1175,8,13,1,14,1,14,1,14,1,14,1,14,3,14,1182, - 8,14,1,14,1,14,3,14,1186,8,14,1,15,1,15,1,15,1,15,1,16,1,16,1,16, - 5,16,1195,8,16,10,16,12,16,1198,9,16,1,17,1,17,1,17,3,17,1203,8, - 17,1,18,1,18,1,18,1,18,1,18,3,18,1210,8,18,1,19,1,19,1,19,1,19,1, + 7,516,2,517,7,517,2,518,7,518,2,519,7,519,2,520,7,520,1,0,5,0,1044, + 8,0,10,0,12,0,1047,9,0,1,0,1,0,1,1,1,1,3,1,1053,8,1,1,1,3,1,1056, + 8,1,1,2,1,2,5,2,1060,8,2,10,2,12,2,1063,9,2,1,2,1,2,1,2,3,2,1068, + 8,2,1,3,1,3,1,3,1,3,1,3,3,3,1075,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,3,3,1085,8,3,1,3,3,3,1088,8,3,1,3,1,3,3,3,1092,8,3,1,4,1,4,1, + 5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3, + 6,1112,8,6,1,7,1,7,1,7,3,7,1117,8,7,1,7,1,7,1,7,3,7,1122,8,7,1,7, + 1,7,1,7,1,7,3,7,1128,8,7,1,8,1,8,1,8,1,9,1,9,3,9,1135,8,9,1,9,1, + 9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1148,8,10,1,11, + 1,11,3,11,1152,8,11,1,11,1,11,3,11,1156,8,11,1,11,1,11,1,11,3,11, + 1161,8,11,1,12,1,12,1,12,1,12,1,12,3,12,1168,8,12,1,12,1,12,3,12, + 1172,8,12,1,13,1,13,1,13,3,13,1177,8,13,1,14,1,14,1,14,1,14,1,14, + 3,14,1184,8,14,1,14,1,14,3,14,1188,8,14,1,15,1,15,1,15,1,15,1,16, + 1,16,1,16,5,16,1197,8,16,10,16,12,16,1200,9,16,1,17,1,17,1,17,3, + 17,1205,8,17,1,18,1,18,1,18,1,18,1,18,3,18,1212,8,18,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, - 19,1,19,1,19,1,19,3,19,1259,8,19,1,20,1,20,1,20,1,21,1,21,1,22,1, - 22,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,1,26,1,26,1, - 26,1,26,1,27,1,27,1,27,1,28,1,28,3,28,1287,8,28,1,28,1,28,3,28,1291, - 8,28,1,28,1,28,3,28,1295,8,28,1,28,3,28,1298,8,28,1,28,3,28,1301, - 8,28,1,28,1,28,1,28,3,28,1306,8,28,1,28,1,28,1,28,1,28,3,28,1312, - 8,28,1,28,1,28,3,28,1316,8,28,1,28,1,28,1,28,1,28,3,28,1322,8,28, - 3,28,1324,8,28,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31, - 1,32,1,32,1,32,5,32,1339,8,32,10,32,12,32,1342,9,32,1,33,1,33,1, - 33,1,34,1,34,1,34,1,35,1,35,1,35,3,35,1353,8,35,1,35,1,35,3,35,1357, - 8,35,1,36,1,36,1,36,1,37,1,37,3,37,1364,8,37,1,37,1,37,1,37,1,37, - 1,37,1,37,3,37,1372,8,37,1,37,3,37,1375,8,37,1,38,1,38,1,38,3,38, - 1380,8,38,1,38,1,38,3,38,1384,8,38,1,38,3,38,1387,8,38,1,39,1,39, - 1,39,1,39,1,39,1,40,1,40,1,40,3,40,1397,8,40,1,40,1,40,1,40,1,40, - 1,40,1,40,3,40,1405,8,40,5,40,1407,8,40,10,40,12,40,1410,9,40,3, - 40,1412,8,40,1,41,1,41,3,41,1416,8,41,1,42,1,42,3,42,1420,8,42,1, - 42,3,42,1423,8,42,1,43,1,43,1,43,3,43,1428,8,43,1,43,1,43,1,43,1, - 43,3,43,1434,8,43,1,43,1,43,1,43,3,43,1439,8,43,1,43,1,43,1,43,3, - 43,1444,8,43,1,43,1,43,3,43,1448,8,43,1,44,1,44,1,44,1,44,1,44,1, - 44,1,44,1,44,1,44,3,44,1459,8,44,3,44,1461,8,44,1,44,1,44,3,44,1465, - 8,44,1,45,1,45,1,46,1,46,1,47,1,47,1,47,1,47,3,47,1475,8,47,1,47, - 1,47,3,47,1479,8,47,1,47,1,47,1,47,1,47,3,47,1485,8,47,1,47,3,47, - 1488,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1495,8,47,1,47,1,47,1,47, - 3,47,1500,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1508,8,47,1,47, - 1,47,1,47,3,47,1513,8,47,1,47,1,47,3,47,1517,8,47,1,47,1,47,1,47, - 1,47,1,47,1,47,3,47,1525,8,47,1,47,1,47,1,47,3,47,1530,8,47,1,47, - 1,47,1,47,1,47,3,47,1536,8,47,1,47,1,47,1,47,1,47,3,47,1542,8,47, - 1,47,3,47,1545,8,47,1,47,3,47,1548,8,47,1,47,3,47,1551,8,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1560,8,47,1,47,1,47,1,47,1,47, - 1,47,1,47,3,47,1568,8,47,1,47,1,47,1,47,3,47,1573,8,47,1,47,1,47, - 1,47,1,47,1,47,1,47,3,47,1581,8,47,1,47,1,47,1,47,1,47,1,47,3,47, - 1588,8,47,1,47,3,47,1591,8,47,1,47,3,47,1594,8,47,3,47,1596,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1604,8,47,1,47,3,47,1607,8,47, - 1,47,3,47,1610,8,47,1,47,3,47,1613,8,47,1,47,3,47,1616,8,47,1,47, - 3,47,1619,8,47,1,47,3,47,1622,8,47,1,47,3,47,1625,8,47,1,47,3,47, - 1628,8,47,1,47,3,47,1631,8,47,1,47,3,47,1634,8,47,3,47,1636,8,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1648,8,47, - 1,47,1,47,1,47,1,47,3,47,1654,8,47,1,47,1,47,1,47,1,47,1,47,1,47, - 3,47,1662,8,47,3,47,1664,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,3,48,1674,8,48,1,49,1,49,1,49,1,49,3,49,1680,8,49,1,49,1,49, - 1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,52,1,52,1,52,1,52,3,52,1695, - 8,52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55, - 1,56,1,56,1,56,3,56,1712,8,56,1,56,1,56,1,56,3,56,1717,8,56,1,57, - 1,57,3,57,1721,8,57,1,57,1,57,3,57,1725,8,57,1,57,1,57,1,57,1,58, - 1,58,3,58,1732,8,58,1,58,1,58,1,58,5,58,1737,8,58,10,58,12,58,1740, - 9,58,1,58,1,58,1,58,3,58,1745,8,58,1,59,1,59,3,59,1749,8,59,1,59, - 3,59,1752,8,59,1,59,1,59,1,59,5,59,1757,8,59,10,59,12,59,1760,9, - 59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,62,1, - 62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,3,63,1782,8,63,1,64,1,64,1, - 64,3,64,1787,8,64,1,64,1,64,3,64,1791,8,64,1,65,1,65,1,65,1,65,1, - 66,1,66,3,66,1799,8,66,1,67,1,67,1,67,1,68,1,68,1,68,1,68,3,68,1808, - 8,68,1,68,1,68,3,68,1812,8,68,1,68,1,68,1,68,1,68,3,68,1818,8,68, - 1,69,1,69,1,69,1,69,3,69,1824,8,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1831,8,69,1,69,3,69,1834,8,69,1,69,1,69,1,69,1,69,3,69,1840,8,69, - 1,70,1,70,1,70,5,70,1845,8,70,10,70,12,70,1848,9,70,1,71,1,71,1, - 71,1,71,1,71,3,71,1855,8,71,1,72,1,72,1,73,1,73,1,73,5,73,1862,8, - 73,10,73,12,73,1865,9,73,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1873, - 8,74,1,75,1,75,1,75,1,75,1,75,3,75,1880,8,75,1,76,1,76,1,76,1,76, - 1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80, - 1,80,3,80,1900,8,80,1,80,1,80,1,80,1,80,1,80,3,80,1907,8,80,3,80, - 1909,8,80,1,81,1,81,1,81,5,81,1914,8,81,10,81,12,81,1917,9,81,1, - 82,1,82,1,82,1,83,1,83,1,84,1,84,3,84,1926,8,84,1,84,1,84,1,84,1, - 84,1,84,1,84,3,84,1934,8,84,1,85,1,85,3,85,1938,8,85,1,85,1,85,3, - 85,1942,8,85,1,85,1,85,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1, - 87,3,87,1955,8,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1964,8, - 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, - 89,1,89,3,89,1980,8,89,1,89,1,89,3,89,1984,8,89,1,89,1,89,1,89,3, - 89,1989,8,89,1,89,1,89,1,89,3,89,1994,8,89,1,89,3,89,1997,8,89,1, - 89,3,89,2000,8,89,1,89,1,89,3,89,2004,8,89,1,89,3,89,2007,8,89,1, - 89,3,89,2010,8,89,1,90,1,90,1,90,3,90,2015,8,90,1,90,1,90,1,90,1, - 90,1,91,1,91,3,91,2023,8,91,1,91,1,91,3,91,2027,8,91,1,91,1,91,1, - 91,1,91,1,91,3,91,2034,8,91,1,91,3,91,2037,8,91,1,91,3,91,2040,8, - 91,1,91,3,91,2043,8,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1, - 92,1,92,3,92,2055,8,92,1,92,1,92,1,93,1,93,3,93,2061,8,93,1,94,1, - 94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1, - 96,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,3,98,2087,8,98,1, - 98,1,98,1,99,1,99,1,99,1,99,3,99,2095,8,99,1,99,1,99,3,99,2099,8, - 99,1,99,3,99,2102,8,99,1,99,3,99,2105,8,99,1,99,3,99,2108,8,99,1, - 99,3,99,2111,8,99,1,99,3,99,2114,8,99,1,99,3,99,2117,8,99,1,99,3, - 99,2120,8,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,3,100,2129,8, - 100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,3,101,2139,8, - 101,1,101,3,101,2142,8,101,1,101,1,101,1,102,1,102,1,102,1,102,1, - 102,1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104, - 1,104,3,104,2162,8,104,1,105,1,105,1,105,1,105,3,105,2168,8,105, - 1,105,1,105,1,105,1,105,3,105,2174,8,105,1,105,3,105,2177,8,105, - 3,105,2179,8,105,1,106,1,106,1,106,1,106,1,107,3,107,2186,8,107, - 1,107,1,107,1,107,1,108,1,108,3,108,2193,8,108,1,109,1,109,1,109, - 1,110,1,110,1,110,1,110,1,110,3,110,2203,8,110,1,110,1,110,1,110, - 3,110,2208,8,110,1,110,1,110,1,111,1,111,1,111,5,111,2215,8,111, - 10,111,12,111,2218,9,111,1,112,1,112,1,112,5,112,2223,8,112,10,112, - 12,112,2226,9,112,1,113,1,113,1,113,5,113,2231,8,113,10,113,12,113, - 2234,9,113,1,114,1,114,1,115,1,115,1,115,1,115,1,115,3,115,2243, - 8,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, - 1,115,3,115,2256,8,115,1,116,1,116,1,116,1,116,1,116,1,116,1,116, - 1,116,1,116,1,116,1,116,3,116,2269,8,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,118,1,118,3,118,2290,8,118,1,119,1,119,3,119,2294, - 8,119,1,120,1,120,1,120,1,121,1,121,1,121,1,122,1,122,1,122,1,122, - 1,122,1,122,1,122,3,122,2309,8,122,1,123,1,123,1,123,1,123,3,123, - 2315,8,123,1,123,3,123,2318,8,123,1,123,3,123,2321,8,123,1,123,3, - 123,2324,8,123,1,123,3,123,2327,8,123,1,124,1,124,3,124,2331,8,124, - 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,127,1,127,1,127,5,127, - 2343,8,127,10,127,12,127,2346,9,127,1,127,1,127,1,127,5,127,2351, - 8,127,10,127,12,127,2354,9,127,3,127,2356,8,127,1,128,1,128,1,128, - 1,128,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130, - 2371,8,130,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,133,1,133,1,133,1,133,1,133,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,135,1,135, - 1,135,3,135,2405,8,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135, - 2413,8,135,1,135,1,135,1,135,3,135,2418,8,135,1,135,1,135,1,135, - 1,135,1,135,1,135,3,135,2426,8,135,1,135,1,135,1,135,3,135,2431, - 8,135,1,135,1,135,1,135,3,135,2436,8,135,1,136,1,136,1,136,1,137, - 1,137,1,137,5,137,2444,8,137,10,137,12,137,2447,9,137,1,138,1,138, - 1,138,5,138,2452,8,138,10,138,12,138,2455,9,138,1,139,1,139,1,139, - 5,139,2460,8,139,10,139,12,139,2463,9,139,1,140,1,140,1,140,5,140, - 2468,8,140,10,140,12,140,2471,9,140,1,141,1,141,1,141,5,141,2476, - 8,141,10,141,12,141,2479,9,141,1,141,3,141,2482,8,141,1,142,1,142, - 1,143,1,143,1,143,1,143,1,143,1,143,3,143,2492,8,143,5,143,2494, - 8,143,10,143,12,143,2497,9,143,1,144,1,144,1,144,5,144,2502,8,144, - 10,144,12,144,2505,9,144,1,145,1,145,1,145,1,145,1,146,1,146,3,146, - 2513,8,146,1,146,3,146,2516,8,146,1,147,1,147,3,147,2520,8,147,1, - 148,1,148,1,149,1,149,1,149,3,149,2527,8,149,1,150,1,150,1,151,1, - 151,3,151,2533,8,151,1,151,1,151,3,151,2537,8,151,1,152,1,152,1, - 152,1,152,3,152,2543,8,152,1,153,1,153,3,153,2547,8,153,1,154,1, - 154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,3,156,2559,8, - 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2568,8,156,1, - 157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,2579,8, - 157,1,158,1,158,3,158,2583,8,158,1,159,1,159,1,159,5,159,2588,8, - 159,10,159,12,159,2591,9,159,1,160,1,160,1,160,1,160,1,161,1,161, - 1,161,5,161,2600,8,161,10,161,12,161,2603,9,161,1,162,1,162,1,163, - 1,163,3,163,2609,8,163,1,164,1,164,1,165,1,165,1,165,1,166,1,166, - 3,166,2618,8,166,1,166,3,166,2621,8,166,1,167,1,167,1,167,5,167, - 2626,8,167,10,167,12,167,2629,9,167,1,168,1,168,1,168,3,168,2634, - 8,168,1,169,1,169,1,170,1,170,3,170,2640,8,170,1,170,3,170,2643, - 8,170,1,170,3,170,2646,8,170,1,171,1,171,1,171,1,171,3,171,2652, - 8,171,1,172,1,172,3,172,2656,8,172,1,173,1,173,3,173,2660,8,173, - 1,174,1,174,1,174,3,174,2665,8,174,1,174,1,174,3,174,2669,8,174, - 1,175,1,175,3,175,2673,8,175,1,176,1,176,3,176,2677,8,176,1,176, - 1,176,1,176,1,176,1,176,1,176,3,176,2685,8,176,1,177,1,177,3,177, - 2689,8,177,1,177,1,177,3,177,2693,8,177,1,178,1,178,3,178,2697,8, - 178,1,179,1,179,3,179,2701,8,179,1,179,1,179,1,179,1,179,1,179,1, - 179,3,179,2709,8,179,1,180,1,180,3,180,2713,8,180,1,180,1,180,3, - 180,2717,8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2725,8, - 181,1,182,1,182,1,182,3,182,2730,8,182,1,183,1,183,1,183,3,183,2735, - 8,183,1,184,1,184,3,184,2739,8,184,1,185,1,185,3,185,2743,8,185, - 1,186,1,186,1,186,1,186,1,186,3,186,2750,8,186,1,187,1,187,1,188, - 1,188,1,188,5,188,2757,8,188,10,188,12,188,2760,9,188,1,189,1,189, - 1,189,1,189,1,189,3,189,2767,8,189,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,3,190,2779,8,190,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 1,190,1,190,3,190,2797,8,190,1,190,3,190,2800,8,190,1,190,1,190, - 1,190,1,190,3,190,2806,8,190,1,191,1,191,1,191,1,191,1,191,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,194,1,194,1,194,1,194,1,194,1,195,1,195,3,195,2832,8,195,1,196, - 3,196,2835,8,196,1,196,1,196,1,197,1,197,3,197,2841,8,197,1,198, - 1,198,1,198,1,198,5,198,2847,8,198,10,198,12,198,2850,9,198,1,199, - 1,199,1,199,1,199,1,199,3,199,2857,8,199,1,199,1,199,1,199,1,199, - 1,199,1,200,1,200,1,200,1,200,5,200,2868,8,200,10,200,12,200,2871, - 9,200,1,201,1,201,1,201,1,201,3,201,2877,8,201,1,201,3,201,2880, - 8,201,1,201,3,201,2883,8,201,1,201,3,201,2886,8,201,1,201,3,201, - 2889,8,201,1,201,3,201,2892,8,201,1,201,3,201,2895,8,201,1,201,3, - 201,2898,8,201,1,201,3,201,2901,8,201,1,201,3,201,2904,8,201,1,201, - 3,201,2907,8,201,1,201,1,201,1,201,3,201,2912,8,201,1,201,3,201, - 2915,8,201,1,201,3,201,2918,8,201,1,201,3,201,2921,8,201,1,201,3, - 201,2924,8,201,1,201,3,201,2927,8,201,1,201,3,201,2930,8,201,1,201, - 3,201,2933,8,201,1,201,3,201,2936,8,201,1,201,3,201,2939,8,201,1, - 201,3,201,2942,8,201,3,201,2944,8,201,1,202,1,202,1,202,1,202,3, - 202,2950,8,202,1,203,1,203,3,203,2954,8,203,1,203,3,203,2957,8,203, - 1,203,3,203,2960,8,203,1,203,3,203,2963,8,203,1,203,3,203,2966,8, - 203,1,203,3,203,2969,8,203,1,203,1,203,1,203,1,203,1,203,3,203,2976, - 8,203,1,204,1,204,3,204,2980,8,204,1,204,3,204,2983,8,204,1,204, - 3,204,2986,8,204,1,204,3,204,2989,8,204,1,204,3,204,2992,8,204,1, - 204,3,204,2995,8,204,1,205,1,205,1,205,4,205,3000,8,205,11,205,12, - 205,3001,1,206,3,206,3005,8,206,1,206,1,206,1,207,1,207,1,207,1, - 207,3,207,3013,8,207,1,207,1,207,3,207,3017,8,207,1,207,1,207,1, - 207,1,207,1,207,3,207,3024,8,207,3,207,3026,8,207,1,208,3,208,3029, - 8,208,1,208,1,208,1,208,3,208,3034,8,208,1,208,3,208,3037,8,208, - 1,208,1,208,3,208,3041,8,208,1,209,1,209,1,209,3,209,3046,8,209, - 1,209,1,209,1,209,1,209,3,209,3052,8,209,1,210,1,210,1,210,1,210, - 3,210,3058,8,210,1,211,1,211,1,211,1,211,1,212,1,212,3,212,3066, - 8,212,1,213,1,213,1,213,1,213,5,213,3072,8,213,10,213,12,213,3075, - 9,213,1,214,1,214,1,214,1,214,3,214,3081,8,214,1,215,1,215,1,215, - 1,215,3,215,3087,8,215,1,216,1,216,1,216,1,216,1,216,5,216,3094, - 8,216,10,216,12,216,3097,9,216,3,216,3099,8,216,1,217,1,217,3,217, - 3103,8,217,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,220,1,220, - 1,221,1,221,3,221,3116,8,221,1,222,1,222,3,222,3120,8,222,1,223, - 1,223,1,223,1,223,1,224,1,224,1,224,4,224,3129,8,224,11,224,12,224, - 3130,1,225,1,225,1,225,4,225,3136,8,225,11,225,12,225,3137,1,226, - 1,226,3,226,3142,8,226,1,226,1,226,1,226,3,226,3147,8,226,1,226, - 3,226,3150,8,226,1,226,1,226,1,226,1,226,1,226,1,226,1,227,1,227, - 5,227,3160,8,227,10,227,12,227,3163,9,227,1,227,3,227,3166,8,227, - 1,228,1,228,1,228,1,228,1,228,3,228,3173,8,228,1,228,1,228,1,228, - 3,228,3178,8,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,231,1,231,1,231,3,231, - 3198,8,231,1,232,1,232,1,232,4,232,3203,8,232,11,232,12,232,3204, - 1,233,1,233,1,233,1,233,1,234,1,234,1,234,1,235,1,235,1,235,1,236, - 1,236,1,236,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, - 3228,8,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237, - 1,237,1,237,1,237,1,237,1,237,3,237,3244,8,237,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238, - 1,238,3,238,3261,8,238,1,238,1,238,1,238,1,238,3,238,3267,8,238, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, - 1,239,1,239,1,239,1,239,3,239,3284,8,239,1,240,1,240,1,240,1,240, - 1,240,1,240,1,241,1,241,1,241,1,241,1,241,3,241,3297,8,241,1,242, - 1,242,3,242,3301,8,242,1,243,1,243,3,243,3305,8,243,1,244,1,244, - 1,245,1,245,1,245,3,245,3312,8,245,1,246,1,246,1,246,1,246,1,246, + 19,1,19,1,19,1,19,1,19,1,19,3,19,1261,8,19,1,20,1,20,1,20,1,21,1, + 21,1,22,1,22,1,22,1,22,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1,25,1, + 26,1,26,1,26,1,26,1,27,1,27,1,27,1,28,1,28,3,28,1289,8,28,1,28,1, + 28,3,28,1293,8,28,1,28,1,28,3,28,1297,8,28,1,28,3,28,1300,8,28,1, + 28,3,28,1303,8,28,1,28,1,28,1,28,3,28,1308,8,28,1,28,1,28,1,28,1, + 28,3,28,1314,8,28,1,28,1,28,3,28,1318,8,28,1,28,1,28,1,28,1,28,3, + 28,1324,8,28,3,28,1326,8,28,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1, + 31,1,31,1,31,1,32,1,32,1,32,5,32,1341,8,32,10,32,12,32,1344,9,32, + 1,33,1,33,1,33,1,34,1,34,1,34,1,35,1,35,1,35,3,35,1355,8,35,1,35, + 1,35,3,35,1359,8,35,1,36,1,36,1,36,1,37,1,37,3,37,1366,8,37,1,37, + 1,37,1,37,1,37,1,37,1,37,3,37,1374,8,37,1,37,3,37,1377,8,37,1,38, + 1,38,1,38,3,38,1382,8,38,1,38,1,38,3,38,1386,8,38,1,38,3,38,1389, + 8,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,3,40,1399,8,40,1,40, + 1,40,1,40,1,40,1,40,1,40,3,40,1407,8,40,5,40,1409,8,40,10,40,12, + 40,1412,9,40,3,40,1414,8,40,1,41,1,41,3,41,1418,8,41,1,42,1,42,3, + 42,1422,8,42,1,42,3,42,1425,8,42,1,43,1,43,1,43,3,43,1430,8,43,1, + 43,1,43,1,43,1,43,3,43,1436,8,43,1,43,1,43,1,43,3,43,1441,8,43,1, + 43,1,43,1,43,3,43,1446,8,43,1,43,1,43,3,43,1450,8,43,1,44,1,44,1, + 44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1461,8,44,3,44,1463,8,44,1, + 44,1,44,3,44,1467,8,44,1,45,1,45,1,46,1,46,1,47,1,47,1,47,1,47,3, + 47,1477,8,47,1,47,1,47,3,47,1481,8,47,1,47,1,47,1,47,1,47,3,47,1487, + 8,47,1,47,3,47,1490,8,47,1,47,1,47,1,47,1,47,1,47,3,47,1497,8,47, + 1,47,1,47,1,47,3,47,1502,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47, + 1510,8,47,1,47,1,47,1,47,3,47,1515,8,47,1,47,1,47,3,47,1519,8,47, + 1,47,1,47,1,47,1,47,1,47,1,47,3,47,1527,8,47,1,47,1,47,1,47,3,47, + 1532,8,47,1,47,1,47,1,47,1,47,3,47,1538,8,47,1,47,1,47,1,47,1,47, + 3,47,1544,8,47,1,47,3,47,1547,8,47,1,47,3,47,1550,8,47,1,47,3,47, + 1553,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1562,8,47,1,47, + 1,47,1,47,1,47,1,47,1,47,3,47,1570,8,47,1,47,1,47,1,47,3,47,1575, + 8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1583,8,47,1,47,1,47,1,47, + 1,47,1,47,3,47,1590,8,47,1,47,3,47,1593,8,47,1,47,3,47,1596,8,47, + 3,47,1598,8,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1606,8,47,1,47, + 3,47,1609,8,47,1,47,3,47,1612,8,47,1,47,3,47,1615,8,47,1,47,3,47, + 1618,8,47,1,47,3,47,1621,8,47,1,47,3,47,1624,8,47,1,47,3,47,1627, + 8,47,1,47,3,47,1630,8,47,1,47,3,47,1633,8,47,1,47,3,47,1636,8,47, + 3,47,1638,8,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, + 3,47,1650,8,47,1,47,1,47,1,47,1,47,3,47,1656,8,47,1,47,1,47,1,47, + 1,47,1,47,1,47,3,47,1664,8,47,3,47,1666,8,47,1,48,1,48,1,48,1,48, + 1,48,1,48,1,48,1,48,3,48,1676,8,48,1,49,1,49,1,49,1,49,3,49,1682, + 8,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,52,1,52,1,52, + 1,52,3,52,1697,8,52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,55, + 1,55,1,55,1,55,1,56,1,56,1,56,3,56,1714,8,56,1,56,1,56,1,56,3,56, + 1719,8,56,1,57,1,57,3,57,1723,8,57,1,57,1,57,3,57,1727,8,57,1,57, + 1,57,1,57,1,58,1,58,3,58,1734,8,58,1,58,1,58,1,58,5,58,1739,8,58, + 10,58,12,58,1742,9,58,1,58,1,58,1,58,3,58,1747,8,58,1,59,1,59,3, + 59,1751,8,59,1,59,3,59,1754,8,59,1,59,1,59,1,59,5,59,1759,8,59,10, + 59,12,59,1762,9,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,61, + 1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,3,63,1784, + 8,63,1,64,1,64,1,64,3,64,1789,8,64,1,64,1,64,3,64,1793,8,64,1,65, + 1,65,1,65,1,65,1,66,1,66,3,66,1801,8,66,1,67,1,67,1,67,1,68,1,68, + 1,68,1,68,3,68,1810,8,68,1,68,1,68,3,68,1814,8,68,1,68,1,68,1,68, + 1,68,3,68,1820,8,68,1,69,1,69,1,69,1,69,3,69,1826,8,69,1,69,1,69, + 1,69,1,69,1,69,3,69,1833,8,69,1,69,3,69,1836,8,69,1,69,1,69,1,69, + 1,69,3,69,1842,8,69,1,70,1,70,1,70,5,70,1847,8,70,10,70,12,70,1850, + 9,70,1,71,1,71,1,71,1,71,1,71,3,71,1857,8,71,1,72,1,72,1,73,1,73, + 1,73,5,73,1864,8,73,10,73,12,73,1867,9,73,1,74,1,74,1,74,1,74,1, + 74,1,74,3,74,1875,8,74,1,75,1,75,1,75,1,75,1,75,3,75,1882,8,75,1, + 76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,79,1, + 79,1,79,1,79,1,80,1,80,3,80,1902,8,80,1,80,1,80,1,80,1,80,1,80,3, + 80,1909,8,80,3,80,1911,8,80,1,81,1,81,1,81,5,81,1916,8,81,10,81, + 12,81,1919,9,81,1,82,1,82,1,82,1,83,1,83,1,84,1,84,3,84,1928,8,84, + 1,84,1,84,1,84,1,84,1,84,1,84,3,84,1936,8,84,1,85,1,85,3,85,1940, + 8,85,1,85,1,85,3,85,1944,8,85,1,85,1,85,1,86,1,86,1,86,1,87,1,87, + 1,87,1,87,1,87,1,87,3,87,1957,8,87,1,87,1,87,1,87,1,88,1,88,1,88, + 1,88,3,88,1966,8,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,89,1,89,3,89,1982,8,89,1,89,1,89,3,89,1986,8,89, + 1,89,1,89,1,89,3,89,1991,8,89,1,89,1,89,1,89,3,89,1996,8,89,1,89, + 3,89,1999,8,89,1,89,3,89,2002,8,89,1,89,1,89,3,89,2006,8,89,1,89, + 3,89,2009,8,89,1,89,3,89,2012,8,89,1,90,1,90,1,90,3,90,2017,8,90, + 1,90,1,90,1,90,1,90,1,91,1,91,3,91,2025,8,91,1,91,1,91,3,91,2029, + 8,91,1,91,1,91,1,91,1,91,1,91,3,91,2036,8,91,1,91,3,91,2039,8,91, + 1,91,3,91,2042,8,91,1,91,3,91,2045,8,91,1,91,1,91,1,91,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,3,92,2057,8,92,1,92,1,92,1,93,1,93,3,93, + 2063,8,93,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,96,1,96, + 1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98, + 3,98,2089,8,98,1,98,1,98,1,99,1,99,1,99,1,99,3,99,2097,8,99,1,99, + 1,99,3,99,2101,8,99,1,99,3,99,2104,8,99,1,99,3,99,2107,8,99,1,99, + 3,99,2110,8,99,1,99,3,99,2113,8,99,1,99,3,99,2116,8,99,1,99,3,99, + 2119,8,99,1,99,3,99,2122,8,99,1,99,1,99,1,99,1,100,1,100,1,100,1, + 100,3,100,2131,8,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1, + 101,3,101,2141,8,101,1,101,3,101,2144,8,101,1,101,1,101,1,102,1, + 102,1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,104, + 1,104,1,104,1,104,1,104,3,104,2164,8,104,1,105,1,105,1,105,1,105, + 3,105,2170,8,105,1,105,1,105,1,105,1,105,3,105,2176,8,105,1,105, + 3,105,2179,8,105,3,105,2181,8,105,1,106,1,106,1,106,1,106,1,107, + 3,107,2188,8,107,1,107,1,107,1,107,1,108,1,108,3,108,2195,8,108, + 1,109,1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111, + 3,111,2208,8,111,1,111,1,111,1,111,3,111,2213,8,111,1,111,1,111, + 1,112,1,112,1,112,5,112,2220,8,112,10,112,12,112,2223,9,112,1,113, + 1,113,1,113,5,113,2228,8,113,10,113,12,113,2231,9,113,1,114,1,114, + 1,114,5,114,2236,8,114,10,114,12,114,2239,9,114,1,115,1,115,1,116, + 1,116,1,116,1,116,1,116,3,116,2248,8,116,1,116,1,116,1,116,1,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,3,116,2261,8,116,1,117, + 1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,3,117, + 2274,8,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119, + 2295,8,119,1,120,1,120,3,120,2299,8,120,1,121,1,121,1,121,1,122, + 1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,2314, + 8,123,1,124,1,124,1,124,1,124,3,124,2320,8,124,1,124,3,124,2323, + 8,124,1,124,3,124,2326,8,124,1,124,3,124,2329,8,124,1,124,3,124, + 2332,8,124,1,125,1,125,3,125,2336,8,125,1,126,1,126,1,126,1,127, + 1,127,1,127,1,127,1,128,1,128,1,128,5,128,2348,8,128,10,128,12,128, + 2351,9,128,1,128,1,128,1,128,5,128,2356,8,128,10,128,12,128,2359, + 9,128,3,128,2361,8,128,1,129,1,129,1,129,1,129,1,130,1,130,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,3,131,2376,8,131,1,132,1,132, + 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,134, + 1,134,1,134,1,134,1,134,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,136,3,136,2410,8,136, + 1,136,1,136,1,136,1,136,1,136,1,136,3,136,2418,8,136,1,136,1,136, + 1,136,3,136,2423,8,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136, + 2431,8,136,1,136,1,136,1,136,3,136,2436,8,136,1,136,1,136,1,136, + 3,136,2441,8,136,1,137,1,137,1,137,1,138,1,138,1,138,5,138,2449, + 8,138,10,138,12,138,2452,9,138,1,139,1,139,1,139,5,139,2457,8,139, + 10,139,12,139,2460,9,139,1,140,1,140,1,140,5,140,2465,8,140,10,140, + 12,140,2468,9,140,1,141,1,141,1,141,5,141,2473,8,141,10,141,12,141, + 2476,9,141,1,142,1,142,1,142,5,142,2481,8,142,10,142,12,142,2484, + 9,142,1,142,3,142,2487,8,142,1,143,1,143,1,144,1,144,1,144,1,144, + 1,144,1,144,3,144,2497,8,144,5,144,2499,8,144,10,144,12,144,2502, + 9,144,1,145,1,145,1,145,5,145,2507,8,145,10,145,12,145,2510,9,145, + 1,146,1,146,1,146,1,146,1,147,1,147,3,147,2518,8,147,1,147,3,147, + 2521,8,147,1,148,1,148,3,148,2525,8,148,1,149,1,149,1,150,1,150, + 1,150,3,150,2532,8,150,1,151,1,151,1,152,1,152,3,152,2538,8,152, + 1,152,1,152,3,152,2542,8,152,1,153,1,153,1,153,1,153,3,153,2548, + 8,153,1,154,1,154,3,154,2552,8,154,1,155,1,155,1,155,1,156,1,156, + 1,156,1,156,1,156,1,157,1,157,3,157,2564,8,157,1,157,1,157,1,157, + 1,157,1,157,1,157,1,157,3,157,2573,8,157,1,158,1,158,1,158,1,158, + 1,158,1,158,1,158,1,158,1,158,3,158,2584,8,158,1,159,1,159,3,159, + 2588,8,159,1,160,1,160,1,160,5,160,2593,8,160,10,160,12,160,2596, + 9,160,1,161,1,161,1,161,1,161,1,162,1,162,1,162,5,162,2605,8,162, + 10,162,12,162,2608,9,162,1,163,1,163,1,164,1,164,3,164,2614,8,164, + 1,165,1,165,1,166,1,166,1,166,1,167,1,167,3,167,2623,8,167,1,167, + 3,167,2626,8,167,1,168,1,168,1,168,5,168,2631,8,168,10,168,12,168, + 2634,9,168,1,169,1,169,1,169,3,169,2639,8,169,1,170,1,170,1,171, + 1,171,3,171,2645,8,171,1,171,3,171,2648,8,171,1,171,3,171,2651,8, + 171,1,172,1,172,1,172,1,172,3,172,2657,8,172,1,173,1,173,3,173,2661, + 8,173,1,174,1,174,3,174,2665,8,174,1,175,1,175,1,175,3,175,2670, + 8,175,1,175,1,175,3,175,2674,8,175,1,176,1,176,3,176,2678,8,176, + 1,177,1,177,3,177,2682,8,177,1,177,1,177,1,177,1,177,1,177,1,177, + 3,177,2690,8,177,1,178,1,178,3,178,2694,8,178,1,178,1,178,3,178, + 2698,8,178,1,179,1,179,3,179,2702,8,179,1,180,1,180,3,180,2706,8, + 180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,2714,8,180,1,181,1, + 181,3,181,2718,8,181,1,181,1,181,3,181,2722,8,181,1,182,1,182,1, + 182,1,182,1,182,1,182,3,182,2730,8,182,1,183,1,183,1,183,3,183,2735, + 8,183,1,184,1,184,1,184,3,184,2740,8,184,1,185,1,185,3,185,2744, + 8,185,1,186,1,186,3,186,2748,8,186,1,187,1,187,1,187,1,187,1,187, + 3,187,2755,8,187,1,188,1,188,1,189,1,189,1,189,5,189,2762,8,189, + 10,189,12,189,2765,9,189,1,190,1,190,1,190,1,190,1,190,3,190,2772, + 8,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, + 3,191,2784,8,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,191,1,191,3,191,2802,8,191, + 1,191,3,191,2805,8,191,1,191,1,191,1,191,1,191,3,191,2811,8,191, + 1,192,1,192,1,192,1,192,1,192,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,195,1,195,1,195,1,195,1,195, + 1,196,1,196,3,196,2837,8,196,1,197,3,197,2840,8,197,1,197,1,197, + 1,198,1,198,3,198,2846,8,198,1,199,1,199,1,199,1,199,5,199,2852, + 8,199,10,199,12,199,2855,9,199,1,200,1,200,1,200,1,200,1,200,3,200, + 2862,8,200,1,200,1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201, + 5,201,2873,8,201,10,201,12,201,2876,9,201,1,202,1,202,1,202,1,202, + 3,202,2882,8,202,1,202,3,202,2885,8,202,1,202,3,202,2888,8,202,1, + 202,3,202,2891,8,202,1,202,3,202,2894,8,202,1,202,3,202,2897,8,202, + 1,202,3,202,2900,8,202,1,202,3,202,2903,8,202,1,202,3,202,2906,8, + 202,1,202,3,202,2909,8,202,1,202,3,202,2912,8,202,1,202,1,202,1, + 202,3,202,2917,8,202,1,202,3,202,2920,8,202,1,202,3,202,2923,8,202, + 1,202,3,202,2926,8,202,1,202,3,202,2929,8,202,1,202,3,202,2932,8, + 202,1,202,3,202,2935,8,202,1,202,3,202,2938,8,202,1,202,3,202,2941, + 8,202,1,202,3,202,2944,8,202,1,202,3,202,2947,8,202,3,202,2949,8, + 202,1,203,1,203,1,203,1,203,3,203,2955,8,203,1,204,1,204,3,204,2959, + 8,204,1,204,3,204,2962,8,204,1,204,3,204,2965,8,204,1,204,3,204, + 2968,8,204,1,204,3,204,2971,8,204,1,204,3,204,2974,8,204,1,204,1, + 204,1,204,1,204,1,204,3,204,2981,8,204,1,205,1,205,3,205,2985,8, + 205,1,205,3,205,2988,8,205,1,205,3,205,2991,8,205,1,205,3,205,2994, + 8,205,1,205,3,205,2997,8,205,1,205,3,205,3000,8,205,1,206,1,206, + 1,206,4,206,3005,8,206,11,206,12,206,3006,1,207,3,207,3010,8,207, + 1,207,1,207,1,208,1,208,1,208,1,208,3,208,3018,8,208,1,208,1,208, + 3,208,3022,8,208,1,208,1,208,1,208,1,208,1,208,3,208,3029,8,208, + 3,208,3031,8,208,1,209,3,209,3034,8,209,1,209,1,209,1,209,3,209, + 3039,8,209,1,209,3,209,3042,8,209,1,209,1,209,3,209,3046,8,209,1, + 210,1,210,1,210,3,210,3051,8,210,1,210,1,210,1,210,1,210,3,210,3057, + 8,210,1,211,1,211,1,211,1,211,3,211,3063,8,211,1,212,1,212,1,212, + 1,212,1,213,1,213,3,213,3071,8,213,1,214,1,214,1,214,1,214,5,214, + 3077,8,214,10,214,12,214,3080,9,214,1,215,1,215,1,215,1,215,3,215, + 3086,8,215,1,216,1,216,1,216,1,216,3,216,3092,8,216,1,217,1,217, + 1,217,1,217,1,217,5,217,3099,8,217,10,217,12,217,3102,9,217,3,217, + 3104,8,217,1,218,1,218,3,218,3108,8,218,1,219,1,219,1,219,1,220, + 1,220,1,220,1,220,1,221,1,221,1,222,1,222,3,222,3121,8,222,1,223, + 1,223,3,223,3125,8,223,1,224,1,224,1,224,1,224,1,225,1,225,1,225, + 4,225,3134,8,225,11,225,12,225,3135,1,226,1,226,1,226,4,226,3141, + 8,226,11,226,12,226,3142,1,227,1,227,3,227,3147,8,227,1,227,1,227, + 1,227,3,227,3152,8,227,1,227,3,227,3155,8,227,1,227,1,227,1,227, + 1,227,1,227,1,227,1,228,1,228,5,228,3165,8,228,10,228,12,228,3168, + 9,228,1,228,3,228,3171,8,228,1,229,1,229,1,229,1,229,1,229,3,229, + 3178,8,229,1,229,1,229,1,229,3,229,3183,8,229,1,229,1,229,1,229, + 1,230,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,3,232,3203,8,232,1,233,1,233,1,233,4,233, + 3208,8,233,11,233,12,233,3209,1,234,1,234,1,234,1,234,1,235,1,235, + 1,235,1,236,1,236,1,236,1,237,1,237,1,237,1,238,1,238,1,238,1,238, + 1,238,1,238,1,238,1,238,3,238,3233,8,238,1,238,1,238,1,238,1,238, + 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, + 3249,8,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239,1,239, + 1,239,1,239,1,239,1,239,1,239,1,239,3,239,3266,8,239,1,239,1,239, + 1,239,1,239,3,239,3272,8,239,1,240,1,240,1,240,1,240,1,240,1,240, + 1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,3,240,3289, + 8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242, + 1,242,3,242,3302,8,242,1,243,1,243,3,243,3306,8,243,1,244,1,244, + 3,244,3310,8,244,1,245,1,245,1,246,1,246,1,246,3,246,3317,8,246, 1,247,1,247,1,247,1,247,1,247,1,248,1,248,1,248,1,248,1,248,1,249, - 1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,251,1,251,3,251, - 3340,8,251,1,251,1,251,1,251,1,251,1,251,3,251,3347,8,251,1,252, - 1,252,1,252,3,252,3352,8,252,1,253,1,253,1,253,3,253,3357,8,253, - 1,254,1,254,1,254,3,254,3362,8,254,1,254,1,254,1,254,3,254,3367, - 8,254,1,255,1,255,1,255,1,255,1,256,1,256,3,256,3375,8,256,1,256, - 1,256,1,256,1,256,3,256,3381,8,256,1,256,1,256,3,256,3385,8,256, - 1,256,3,256,3388,8,256,1,256,3,256,3391,8,256,1,257,1,257,1,257, - 1,257,3,257,3397,8,257,1,257,1,257,1,257,1,257,1,257,3,257,3404, - 8,257,1,258,1,258,1,258,1,258,1,258,1,259,1,259,1,259,3,259,3414, - 8,259,1,260,1,260,3,260,3418,8,260,1,260,4,260,3421,8,260,11,260, - 12,260,3422,1,261,1,261,3,261,3427,8,261,1,262,1,262,5,262,3431, - 8,262,10,262,12,262,3434,9,262,1,263,1,263,5,263,3438,8,263,10,263, - 12,263,3441,9,263,1,264,1,264,5,264,3445,8,264,10,264,12,264,3448, - 9,264,1,265,1,265,1,265,1,266,1,266,1,266,1,267,1,267,3,267,3458, - 8,267,1,267,1,267,1,267,1,267,1,267,5,267,3465,8,267,10,267,12,267, - 3468,9,267,1,267,3,267,3471,8,267,1,267,3,267,3474,8,267,1,267,3, - 267,3477,8,267,1,268,1,268,1,268,1,268,1,268,1,268,3,268,3485,8, - 268,1,268,3,268,3488,8,268,1,269,1,269,1,269,1,269,1,269,1,269,3, - 269,3496,8,269,1,269,3,269,3499,8,269,1,270,1,270,1,270,1,270,1, - 270,1,270,3,270,3507,8,270,1,270,1,270,3,270,3511,8,270,1,270,1, - 270,1,270,3,270,3516,8,270,1,271,1,271,3,271,3520,8,271,1,272,1, - 272,1,272,1,272,1,273,1,273,1,273,3,273,3529,8,273,1,274,1,274,1, - 274,1,274,1,274,1,275,1,275,1,275,1,275,1,276,1,276,1,276,5,276, - 3543,8,276,10,276,12,276,3546,9,276,1,277,1,277,1,277,1,277,1,278, - 1,278,1,278,1,278,1,279,1,279,1,279,1,279,3,279,3560,8,279,3,279, - 3562,8,279,1,280,1,280,1,280,1,280,1,280,1,280,1,281,1,281,1,281, - 1,281,1,282,1,282,1,282,1,282,3,282,3578,8,282,1,282,1,282,1,282, - 1,282,1,282,3,282,3585,8,282,1,283,1,283,1,284,1,284,1,284,1,284, - 1,285,1,285,1,285,1,286,1,286,1,286,1,287,1,287,1,287,3,287,3602, - 8,287,1,287,3,287,3605,8,287,1,287,3,287,3608,8,287,1,287,3,287, - 3611,8,287,1,287,1,287,1,287,1,287,3,287,3617,8,287,1,288,1,288, - 1,288,1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290, - 1,290,1,290,1,290,1,290,1,290,1,290,1,290,1,290,3,290,3640,8,290, - 1,290,1,290,1,291,1,291,1,291,1,291,3,291,3648,8,291,1,291,1,291, - 1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,3,292, - 3662,8,292,1,292,3,292,3665,8,292,1,293,1,293,1,293,3,293,3670,8, - 293,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,296,1,297,1,297,1,297,1,297,1,297,1,297, - 1,297,1,297,1,297,3,297,3696,8,297,1,298,1,298,3,298,3700,8,298, - 1,298,3,298,3703,8,298,1,298,3,298,3706,8,298,1,298,1,298,3,298, - 3710,8,298,1,298,1,298,1,298,3,298,3715,8,298,1,298,3,298,3718,8, - 298,1,298,3,298,3721,8,298,1,298,3,298,3724,8,298,1,298,3,298,3727, - 8,298,1,298,1,298,1,298,1,298,3,298,3733,8,298,1,298,3,298,3736, - 8,298,1,298,3,298,3739,8,298,1,298,3,298,3742,8,298,1,298,3,298, - 3745,8,298,1,298,3,298,3748,8,298,1,298,3,298,3751,8,298,1,298,3, - 298,3754,8,298,1,298,3,298,3757,8,298,1,298,1,298,3,298,3761,8,298, - 3,298,3763,8,298,1,298,1,298,1,298,1,298,3,298,3769,8,298,1,298, - 1,298,1,298,3,298,3774,8,298,1,298,3,298,3777,8,298,1,298,3,298, - 3780,8,298,1,298,3,298,3783,8,298,1,298,1,298,1,298,1,298,3,298, - 3789,8,298,1,298,3,298,3792,8,298,1,298,3,298,3795,8,298,1,298,3, - 298,3798,8,298,1,298,3,298,3801,8,298,1,298,3,298,3804,8,298,1,298, - 3,298,3807,8,298,1,298,3,298,3810,8,298,1,298,3,298,3813,8,298,1, - 298,1,298,3,298,3817,8,298,3,298,3819,8,298,3,298,3821,8,298,1,299, - 1,299,1,299,3,299,3826,8,299,1,299,1,299,3,299,3830,8,299,1,299, - 3,299,3833,8,299,1,299,3,299,3836,8,299,1,299,1,299,1,299,3,299, - 3841,8,299,1,300,1,300,1,300,1,301,1,301,1,301,1,302,1,302,1,302, - 1,303,1,303,1,303,1,303,1,304,1,304,1,304,3,304,3859,8,304,1,304, - 1,304,1,305,1,305,1,305,5,305,3866,8,305,10,305,12,305,3869,9,305, - 1,305,1,305,1,306,1,306,1,307,1,307,1,307,5,307,3878,8,307,10,307, - 12,307,3881,9,307,1,308,1,308,1,308,5,308,3886,8,308,10,308,12,308, - 3889,9,308,1,309,1,309,1,309,1,310,1,310,1,310,1,310,4,310,3898, - 8,310,11,310,12,310,3899,1,310,3,310,3903,8,310,1,311,1,311,5,311, - 3907,8,311,10,311,12,311,3910,9,311,1,311,1,311,5,311,3914,8,311, - 10,311,12,311,3917,9,311,1,311,1,311,5,311,3921,8,311,10,311,12, - 311,3924,9,311,1,311,1,311,5,311,3928,8,311,10,311,12,311,3931,9, - 311,1,311,1,311,1,311,1,311,3,311,3937,8,311,1,312,1,312,1,312,1, - 312,1,312,1,312,1,312,3,312,3946,8,312,5,312,3948,8,312,10,312,12, - 312,3951,9,312,1,313,1,313,1,313,1,313,3,313,3957,8,313,1,313,5, - 313,3960,8,313,10,313,12,313,3963,9,313,1,314,3,314,3966,8,314,1, - 314,1,314,1,314,1,315,1,315,1,315,1,315,1,316,1,316,1,317,1,317, - 1,317,1,317,1,317,3,317,3982,8,317,1,317,1,317,3,317,3986,8,317, - 3,317,3988,8,317,1,317,3,317,3991,8,317,1,318,1,318,1,318,1,318, - 1,318,1,318,1,318,1,318,1,318,5,318,4002,8,318,10,318,12,318,4005, - 9,318,3,318,4007,8,318,1,318,3,318,4010,8,318,1,318,1,318,1,318, - 1,318,1,318,1,318,1,318,1,318,5,318,4020,8,318,10,318,12,318,4023, - 9,318,3,318,4025,8,318,1,318,1,318,1,318,1,318,1,318,3,318,4032, - 8,318,1,318,1,318,1,318,1,318,1,318,5,318,4039,8,318,10,318,12,318, - 4042,9,318,1,318,1,318,3,318,4046,8,318,3,318,4048,8,318,3,318,4050, - 8,318,1,319,1,319,1,320,1,320,1,320,1,320,1,320,1,320,1,320,1,320, - 1,320,1,320,1,320,5,320,4065,8,320,10,320,12,320,4068,9,320,3,320, - 4070,8,320,1,320,1,320,1,321,1,321,1,321,1,321,1,321,3,321,4079, - 8,321,1,321,1,321,1,322,1,322,3,322,4085,8,322,1,323,1,323,3,323, - 4089,8,323,1,323,3,323,4092,8,323,1,323,3,323,4095,8,323,1,323,3, - 323,4098,8,323,1,323,3,323,4101,8,323,1,324,1,324,1,324,1,324,1, - 324,1,324,1,324,1,324,1,324,1,324,3,324,4113,8,324,1,325,1,325,3, - 325,4117,8,325,1,325,3,325,4120,8,325,1,325,3,325,4123,8,325,1,326, - 1,326,1,327,1,327,1,328,1,328,3,328,4131,8,328,1,329,1,329,1,329, - 1,329,1,329,3,329,4138,8,329,1,329,3,329,4141,8,329,1,330,1,330, - 1,330,1,330,1,330,3,330,4148,8,330,1,330,3,330,4151,8,330,1,331, - 1,331,1,331,3,331,4156,8,331,1,331,1,331,1,332,1,332,1,332,3,332, - 4163,8,332,1,332,1,332,1,333,1,333,1,333,1,333,3,333,4171,8,333, - 1,333,1,333,1,334,1,334,3,334,4177,8,334,1,334,1,334,1,334,3,334, - 4182,8,334,1,334,1,334,3,334,4186,8,334,1,335,1,335,1,335,3,335, - 4191,8,335,1,336,1,336,1,336,1,336,1,336,3,336,4198,8,336,1,336, - 1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,1,336,5,336,4210, - 8,336,10,336,12,336,4213,9,336,3,336,4215,8,336,1,336,1,336,3,336, - 4219,8,336,1,337,1,337,1,337,1,338,1,338,1,339,1,339,1,340,1,340, - 1,340,1,341,1,341,1,341,5,341,4234,8,341,10,341,12,341,4237,9,341, - 1,341,1,341,1,341,5,341,4242,8,341,10,341,12,341,4245,9,341,3,341, - 4247,8,341,1,342,1,342,1,343,1,343,1,343,1,343,1,344,1,344,1,344, - 1,344,1,344,3,344,4260,8,344,1,344,1,344,1,344,1,344,1,344,5,344, - 4267,8,344,10,344,12,344,4270,9,344,3,344,4272,8,344,1,344,1,344, - 1,345,1,345,3,345,4278,8,345,1,345,3,345,4281,8,345,1,345,1,345, - 1,345,3,345,4286,8,345,1,345,3,345,4289,8,345,1,346,1,346,1,347, - 1,347,1,347,5,347,4296,8,347,10,347,12,347,4299,9,347,1,348,1,348, - 1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,1,348,3,348,4312, - 8,348,1,348,1,348,1,348,1,348,3,348,4318,8,348,3,348,4320,8,348, - 1,348,1,348,1,348,1,349,1,349,1,349,3,349,4328,8,349,1,349,3,349, - 4331,8,349,1,349,1,349,1,349,1,349,1,349,1,349,5,349,4339,8,349, - 10,349,12,349,4342,9,349,1,349,1,349,3,349,4346,8,349,3,349,4348, - 8,349,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350,1,350, - 3,350,4360,8,350,1,350,1,350,1,350,1,350,3,350,4366,8,350,3,350, - 4368,8,350,1,350,1,350,1,350,1,351,1,351,3,351,4375,8,351,1,352, - 1,352,1,352,5,352,4380,8,352,10,352,12,352,4383,9,352,1,353,1,353, - 1,353,1,353,5,353,4389,8,353,10,353,12,353,4392,9,353,1,354,1,354, - 1,354,1,354,1,355,1,355,1,355,3,355,4401,8,355,1,355,3,355,4404, - 8,355,1,355,3,355,4407,8,355,1,355,3,355,4410,8,355,1,356,1,356, - 3,356,4414,8,356,1,357,1,357,1,357,1,357,1,357,1,357,1,357,3,357, - 4423,8,357,1,358,1,358,1,358,1,358,1,358,1,358,1,358,3,358,4432, - 8,358,1,359,1,359,1,359,1,359,1,359,1,359,3,359,4440,8,359,1,360, - 1,360,1,360,1,360,3,360,4446,8,360,1,361,1,361,1,361,1,361,1,362, - 1,362,1,362,1,362,3,362,4456,8,362,1,363,1,363,1,363,1,364,1,364, - 3,364,4463,8,364,1,364,1,364,1,364,1,364,5,364,4469,8,364,10,364, - 12,364,4472,9,364,1,364,1,364,1,365,1,365,1,365,1,365,1,365,3,365, - 4481,8,365,1,365,1,365,1,365,1,365,1,365,1,365,5,365,4489,8,365, - 10,365,12,365,4492,9,365,1,365,1,365,3,365,4496,8,365,1,366,1,366, - 3,366,4500,8,366,1,367,1,367,3,367,4504,8,367,1,367,1,367,5,367, - 4508,8,367,10,367,12,367,4511,9,367,1,367,1,367,1,368,1,368,1,369, - 1,369,1,369,1,370,1,370,1,370,1,371,1,371,1,372,1,372,1,372,1,372, - 1,373,1,373,3,373,4531,8,373,1,374,1,374,4,374,4535,8,374,11,374, - 12,374,4536,1,375,1,375,3,375,4541,8,375,1,376,1,376,3,376,4545, - 8,376,1,376,3,376,4548,8,376,1,376,1,376,5,376,4552,8,376,10,376, - 12,376,4555,9,376,1,377,1,377,3,377,4559,8,377,1,377,3,377,4562, - 8,377,1,378,1,378,3,378,4566,8,378,1,379,1,379,1,379,1,379,5,379, - 4572,8,379,10,379,12,379,4575,9,379,1,379,1,379,1,380,1,380,1,380, - 5,380,4582,8,380,10,380,12,380,4585,9,380,1,381,1,381,1,381,1,381, - 1,381,5,381,4592,8,381,10,381,12,381,4595,9,381,1,382,1,382,1,382, - 1,382,1,383,1,383,1,383,1,383,1,384,1,384,1,384,1,384,1,385,1,385, - 1,385,1,385,3,385,4613,8,385,1,386,1,386,1,386,1,386,1,386,3,386, - 4620,8,386,1,386,3,386,4623,8,386,1,386,1,386,1,386,1,386,1,387, - 1,387,1,387,1,387,1,387,3,387,4634,8,387,1,387,1,387,1,387,5,387, - 4639,8,387,10,387,12,387,4642,9,387,3,387,4644,8,387,3,387,4646, - 8,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387, - 4657,8,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,1,387,3,387, - 4667,8,387,3,387,4669,8,387,1,388,1,388,1,388,1,388,3,388,4675,8, - 388,1,389,1,389,1,390,1,390,3,390,4681,8,390,1,391,1,391,3,391,4685, - 8,391,1,392,1,392,1,393,1,393,3,393,4691,8,393,1,394,1,394,1,394, - 1,394,1,394,1,394,1,394,3,394,4700,8,394,1,394,1,394,1,395,1,395, - 1,395,1,395,1,395,1,395,1,395,4,395,4711,8,395,11,395,12,395,4712, - 1,395,1,395,3,395,4717,8,395,1,395,1,395,1,396,1,396,1,396,1,396, - 1,396,1,396,4,396,4727,8,396,11,396,12,396,4728,1,396,1,396,3,396, - 4733,8,396,1,396,1,396,1,397,1,397,1,397,1,397,1,397,3,397,4742, - 8,397,1,397,1,397,1,398,1,398,1,398,1,398,1,398,1,398,1,398,1,398, - 3,398,4754,8,398,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,3,400,4771,8,400,1,401, - 1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401,1,401, - 1,401,3,401,4786,8,401,1,402,1,402,1,403,1,403,1,404,1,404,4,404, - 4794,8,404,11,404,12,404,4795,1,405,1,405,1,405,1,406,1,406,1,406, - 3,406,4804,8,406,1,407,1,407,1,407,3,407,4809,8,407,1,408,1,408, - 1,408,1,409,1,409,1,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411, - 1,411,1,411,1,411,1,411,1,411,1,411,3,411,4830,8,411,1,411,1,411, - 3,411,4834,8,411,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, - 1,412,1,412,1,412,1,412,1,412,1,412,3,412,4850,8,412,1,413,1,413, - 1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414,1,414, - 3,414,4865,8,414,1,415,1,415,1,415,1,415,1,415,1,415,1,415,5,415, - 4874,8,415,10,415,12,415,4877,9,415,1,416,1,416,1,417,5,417,4882, - 8,417,10,417,12,417,4885,9,417,1,417,1,417,1,418,1,418,1,419,1,419, - 1,419,1,419,5,419,4895,8,419,10,419,12,419,4898,9,419,1,420,1,420, - 1,421,1,421,1,421,1,421,5,421,4906,8,421,10,421,12,421,4909,9,421, - 1,422,1,422,1,423,1,423,1,423,1,423,5,423,4917,8,423,10,423,12,423, - 4920,9,423,1,424,1,424,1,425,1,425,1,425,1,425,5,425,4928,8,425, - 10,425,12,425,4931,9,425,1,426,1,426,1,427,1,427,1,427,1,427,5,427, - 4939,8,427,10,427,12,427,4942,9,427,1,428,1,428,1,429,1,429,1,429, - 1,429,5,429,4950,8,429,10,429,12,429,4953,9,429,1,430,1,430,1,431, - 1,431,1,431,1,431,1,431,3,431,4962,8,431,1,432,1,432,1,432,1,432, - 1,433,1,433,1,433,3,433,4971,8,433,1,434,1,434,3,434,4975,8,434, - 1,435,1,435,1,435,1,435,1,435,1,435,3,435,4983,8,435,1,436,1,436, - 1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,4996, - 8,436,1,437,1,437,1,437,1,437,1,438,1,438,1,439,1,439,3,439,5006, - 8,439,1,440,1,440,1,440,1,440,3,440,5012,8,440,1,441,1,441,1,441, - 1,441,1,442,1,442,1,442,1,442,1,442,1,442,1,442,3,442,5025,8,442, - 1,443,1,443,1,443,1,443,1,443,1,443,1,443,5,443,5034,8,443,10,443, - 12,443,5037,9,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,3,444,5051,8,444,1,445,1,445,1,445,3,445, - 5056,8,445,1,446,1,446,1,447,5,447,5061,8,447,10,447,12,447,5064, - 9,447,1,447,1,447,1,448,1,448,1,449,1,449,1,449,1,449,5,449,5074, - 8,449,10,449,12,449,5077,9,449,1,450,1,450,1,451,1,451,1,451,1,451, - 5,451,5085,8,451,10,451,12,451,5088,9,451,1,452,1,452,1,453,1,453, - 1,454,1,454,3,454,5096,8,454,1,455,1,455,1,455,1,455,1,455,5,455, - 5103,8,455,10,455,12,455,5106,9,455,1,455,1,455,1,456,1,456,1,456, - 3,456,5113,8,456,1,457,1,457,1,457,1,457,5,457,5119,8,457,10,457, - 12,457,5122,9,457,1,457,1,457,1,458,1,458,1,458,1,458,1,459,1,459, - 3,459,5132,8,459,1,460,1,460,1,461,1,461,1,462,1,462,3,462,5140, - 8,462,1,463,1,463,1,463,3,463,5145,8,463,1,464,1,464,1,465,1,465, - 1,466,1,466,1,467,1,467,1,467,1,468,1,468,1,468,5,468,5159,8,468, - 10,468,12,468,5162,9,468,1,469,1,469,1,469,1,469,1,469,3,469,5169, - 8,469,1,470,1,470,1,471,1,471,1,471,5,471,5176,8,471,10,471,12,471, - 5179,9,471,1,472,1,472,1,473,1,473,1,473,1,473,1,473,1,474,1,474, - 1,474,1,474,1,474,1,475,1,475,1,475,5,475,5196,8,475,10,475,12,475, - 5199,9,475,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476,1,476, - 1,476,1,476,1,476,1,476,1,476,3,476,5215,8,476,1,477,1,477,1,477, - 1,477,1,477,1,477,1,477,3,477,5224,8,477,1,478,1,478,1,478,5,478, - 5229,8,478,10,478,12,478,5232,9,478,1,479,1,479,1,479,3,479,5237, - 8,479,1,480,1,480,1,480,5,480,5242,8,480,10,480,12,480,5245,9,480, - 1,481,1,481,1,481,1,481,3,481,5251,8,481,1,481,1,481,1,481,1,481, - 1,481,1,481,1,481,3,481,5260,8,481,3,481,5262,8,481,1,482,1,482, - 1,482,1,483,1,483,3,483,5269,8,483,1,484,1,484,1,485,1,485,1,486, - 1,486,1,487,1,487,1,488,1,488,1,489,1,489,1,490,1,490,1,491,1,491, - 1,492,1,492,1,493,1,493,1,494,1,494,1,495,1,495,1,495,1,495,1,495, - 1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,1,495,3,495, - 5308,8,495,1,495,1,495,3,495,5312,8,495,3,495,5314,8,495,1,496,1, - 496,3,496,5318,8,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,497,1,497,3,497,5335,8,497,1, - 498,1,498,1,498,1,498,3,498,5341,8,498,1,498,1,498,1,499,1,499,1, - 499,5,499,5348,8,499,10,499,12,499,5351,9,499,1,500,1,500,1,501, - 1,501,1,501,1,502,1,502,1,502,5,502,5361,8,502,10,502,12,502,5364, - 9,502,1,503,1,503,1,503,5,503,5369,8,503,10,503,12,503,5372,9,503, - 1,504,1,504,1,504,1,504,1,505,1,505,1,506,1,506,1,507,1,507,1,507, - 1,507,3,507,5386,8,507,1,508,1,508,1,508,1,509,1,509,1,509,1,509, - 1,509,1,509,1,509,1,509,1,509,1,509,1,510,1,510,1,510,1,510,1,510, - 1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,1,510,3,510,5415, - 8,510,1,510,1,510,1,510,3,510,5420,8,510,3,510,5422,8,510,1,511, - 1,511,1,511,1,511,1,511,1,511,1,512,1,512,1,512,1,512,1,512,1,512, - 1,512,1,512,1,512,1,512,1,512,1,512,3,512,5442,8,512,1,513,1,513, - 1,513,5,513,5447,8,513,10,513,12,513,5450,9,513,1,514,1,514,1,514, - 1,514,1,514,1,514,1,514,1,514,1,515,1,515,1,515,1,515,1,515,1,515, - 1,515,1,515,1,515,1,515,1,515,1,515,3,515,5472,8,515,1,516,1,516, - 1,516,1,516,1,516,1,516,1,517,1,517,1,517,1,517,1,517,1,517,1,517, - 1,517,1,517,3,517,5489,8,517,1,517,1,517,1,517,3,517,5494,8,517, - 1,518,1,518,1,518,1,518,1,518,1,518,1,518,1,518,1,518,3,518,5505, - 8,518,1,518,1,518,1,518,3,518,5510,8,518,1,519,1,519,1,519,1,519, - 1,519,1,519,1,519,1,519,0,0,520,0,2,4,6,8,10,12,14,16,18,20,22,24, + 1,249,1,249,1,249,1,249,1,250,1,250,1,250,1,250,1,250,1,251,1,251, + 1,251,1,251,1,252,1,252,3,252,3345,8,252,1,252,1,252,1,252,1,252, + 1,252,3,252,3352,8,252,1,253,1,253,1,253,3,253,3357,8,253,1,254, + 1,254,1,254,3,254,3362,8,254,1,255,1,255,1,255,3,255,3367,8,255, + 1,255,1,255,1,255,3,255,3372,8,255,1,256,1,256,1,256,1,256,1,257, + 1,257,3,257,3380,8,257,1,257,1,257,1,257,1,257,3,257,3386,8,257, + 1,257,1,257,3,257,3390,8,257,1,257,3,257,3393,8,257,1,257,3,257, + 3396,8,257,1,258,1,258,1,258,1,258,3,258,3402,8,258,1,258,1,258, + 1,258,1,258,1,258,3,258,3409,8,258,1,259,1,259,1,259,1,259,1,259, + 1,260,1,260,1,260,3,260,3419,8,260,1,261,1,261,3,261,3423,8,261, + 1,261,4,261,3426,8,261,11,261,12,261,3427,1,262,1,262,3,262,3432, + 8,262,1,263,1,263,5,263,3436,8,263,10,263,12,263,3439,9,263,1,264, + 1,264,5,264,3443,8,264,10,264,12,264,3446,9,264,1,265,1,265,5,265, + 3450,8,265,10,265,12,265,3453,9,265,1,266,1,266,1,266,1,267,1,267, + 1,267,1,268,1,268,3,268,3463,8,268,1,268,1,268,1,268,1,268,1,268, + 5,268,3470,8,268,10,268,12,268,3473,9,268,1,268,3,268,3476,8,268, + 1,268,3,268,3479,8,268,1,268,3,268,3482,8,268,1,269,1,269,1,269, + 1,269,1,269,1,269,3,269,3490,8,269,1,269,3,269,3493,8,269,1,270, + 1,270,1,270,1,270,1,270,1,270,3,270,3501,8,270,1,270,3,270,3504, + 8,270,1,271,1,271,1,271,1,271,1,271,1,271,3,271,3512,8,271,1,271, + 1,271,3,271,3516,8,271,1,271,1,271,1,271,3,271,3521,8,271,1,272, + 1,272,3,272,3525,8,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274, + 3,274,3534,8,274,1,275,1,275,1,275,1,275,1,275,1,276,1,276,1,276, + 1,276,1,277,1,277,1,277,5,277,3548,8,277,10,277,12,277,3551,9,277, + 1,278,1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,280,1,280,1,280, + 1,280,3,280,3565,8,280,3,280,3567,8,280,1,281,1,281,1,281,1,281, + 1,281,1,281,1,282,1,282,1,282,1,282,1,283,1,283,1,283,1,283,3,283, + 3583,8,283,1,283,1,283,1,283,1,283,1,283,3,283,3590,8,283,1,284, + 1,284,1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,287,1,287,1,287, + 1,288,1,288,1,288,3,288,3607,8,288,1,288,3,288,3610,8,288,1,288, + 3,288,3613,8,288,1,288,3,288,3616,8,288,1,288,1,288,1,288,1,288, + 3,288,3622,8,288,1,289,1,289,1,289,1,289,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,3,291,3645,8,291,1,291,1,291,1,292,1,292,1,292,1,292, + 3,292,3653,8,292,1,292,1,292,1,293,1,293,1,293,1,293,1,293,1,293, + 1,293,1,293,1,293,1,293,3,293,3667,8,293,1,293,3,293,3670,8,293, + 1,294,1,294,1,294,3,294,3675,8,294,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,298, + 1,298,1,298,1,298,1,298,1,298,1,298,1,298,1,298,3,298,3701,8,298, + 1,299,1,299,3,299,3705,8,299,1,299,3,299,3708,8,299,1,299,3,299, + 3711,8,299,1,299,1,299,3,299,3715,8,299,1,299,1,299,1,299,3,299, + 3720,8,299,1,299,3,299,3723,8,299,1,299,3,299,3726,8,299,1,299,3, + 299,3729,8,299,1,299,3,299,3732,8,299,1,299,1,299,1,299,1,299,3, + 299,3738,8,299,1,299,3,299,3741,8,299,1,299,3,299,3744,8,299,1,299, + 3,299,3747,8,299,1,299,3,299,3750,8,299,1,299,3,299,3753,8,299,1, + 299,3,299,3756,8,299,1,299,3,299,3759,8,299,1,299,3,299,3762,8,299, + 1,299,3,299,3765,8,299,1,299,1,299,3,299,3769,8,299,3,299,3771,8, + 299,1,299,1,299,1,299,1,299,3,299,3777,8,299,1,299,1,299,1,299,3, + 299,3782,8,299,1,299,3,299,3785,8,299,1,299,3,299,3788,8,299,1,299, + 3,299,3791,8,299,1,299,1,299,1,299,1,299,3,299,3797,8,299,1,299, + 3,299,3800,8,299,1,299,3,299,3803,8,299,1,299,3,299,3806,8,299,1, + 299,3,299,3809,8,299,1,299,3,299,3812,8,299,1,299,3,299,3815,8,299, + 1,299,3,299,3818,8,299,1,299,3,299,3821,8,299,1,299,3,299,3824,8, + 299,1,299,1,299,3,299,3828,8,299,3,299,3830,8,299,3,299,3832,8,299, + 1,300,1,300,1,300,3,300,3837,8,300,1,300,1,300,3,300,3841,8,300, + 1,300,3,300,3844,8,300,1,300,3,300,3847,8,300,1,300,1,300,1,300, + 3,300,3852,8,300,1,301,1,301,1,301,1,302,1,302,1,302,1,303,1,303, + 1,303,1,304,1,304,1,304,1,304,1,305,1,305,1,305,3,305,3870,8,305, + 1,305,1,305,1,306,1,306,1,306,5,306,3877,8,306,10,306,12,306,3880, + 9,306,1,306,1,306,1,307,1,307,1,308,1,308,1,308,5,308,3889,8,308, + 10,308,12,308,3892,9,308,1,309,1,309,1,309,5,309,3897,8,309,10,309, + 12,309,3900,9,309,1,310,1,310,1,310,1,311,1,311,1,311,1,311,4,311, + 3909,8,311,11,311,12,311,3910,1,311,3,311,3914,8,311,1,312,1,312, + 5,312,3918,8,312,10,312,12,312,3921,9,312,1,312,1,312,5,312,3925, + 8,312,10,312,12,312,3928,9,312,1,312,1,312,5,312,3932,8,312,10,312, + 12,312,3935,9,312,1,312,1,312,5,312,3939,8,312,10,312,12,312,3942, + 9,312,1,312,1,312,1,312,1,312,3,312,3948,8,312,1,313,1,313,1,313, + 1,313,1,313,1,313,1,313,3,313,3957,8,313,5,313,3959,8,313,10,313, + 12,313,3962,9,313,1,314,1,314,1,314,1,314,3,314,3968,8,314,1,314, + 5,314,3971,8,314,10,314,12,314,3974,9,314,1,315,3,315,3977,8,315, + 1,315,1,315,1,315,1,316,1,316,1,316,1,316,1,317,1,317,1,318,1,318, + 1,318,1,318,1,318,3,318,3993,8,318,1,318,1,318,3,318,3997,8,318, + 3,318,3999,8,318,1,318,3,318,4002,8,318,1,319,1,319,1,319,1,319, + 1,319,1,319,1,319,1,319,1,319,5,319,4013,8,319,10,319,12,319,4016, + 9,319,3,319,4018,8,319,1,319,3,319,4021,8,319,1,319,1,319,1,319, + 1,319,1,319,1,319,1,319,1,319,5,319,4031,8,319,10,319,12,319,4034, + 9,319,3,319,4036,8,319,1,319,1,319,1,319,1,319,1,319,3,319,4043, + 8,319,1,319,1,319,1,319,1,319,1,319,5,319,4050,8,319,10,319,12,319, + 4053,9,319,1,319,1,319,3,319,4057,8,319,3,319,4059,8,319,3,319,4061, + 8,319,1,320,1,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,1,321, + 1,321,1,321,1,321,5,321,4076,8,321,10,321,12,321,4079,9,321,3,321, + 4081,8,321,1,321,1,321,1,322,1,322,1,322,1,322,1,322,3,322,4090, + 8,322,1,322,1,322,1,323,1,323,3,323,4096,8,323,1,324,1,324,3,324, + 4100,8,324,1,324,3,324,4103,8,324,1,324,3,324,4106,8,324,1,324,3, + 324,4109,8,324,1,324,3,324,4112,8,324,1,325,1,325,1,325,1,325,1, + 325,1,325,1,325,1,325,1,325,1,325,3,325,4124,8,325,1,326,1,326,3, + 326,4128,8,326,1,326,3,326,4131,8,326,1,326,3,326,4134,8,326,1,327, + 1,327,1,328,1,328,1,329,1,329,3,329,4142,8,329,1,330,1,330,1,330, + 1,330,1,330,3,330,4149,8,330,1,330,3,330,4152,8,330,1,331,1,331, + 1,331,1,331,1,331,3,331,4159,8,331,1,331,3,331,4162,8,331,1,332, + 1,332,1,332,3,332,4167,8,332,1,332,1,332,1,333,1,333,1,333,3,333, + 4174,8,333,1,333,1,333,1,334,1,334,1,334,1,334,3,334,4182,8,334, + 1,334,1,334,1,335,1,335,3,335,4188,8,335,1,335,1,335,1,335,3,335, + 4193,8,335,1,335,1,335,3,335,4197,8,335,1,336,1,336,1,336,3,336, + 4202,8,336,1,337,1,337,1,337,1,337,1,337,3,337,4209,8,337,1,337, + 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,5,337,4221, + 8,337,10,337,12,337,4224,9,337,3,337,4226,8,337,1,337,1,337,3,337, + 4230,8,337,1,338,1,338,1,338,1,339,1,339,1,340,1,340,1,341,1,341, + 1,341,1,342,1,342,1,342,5,342,4245,8,342,10,342,12,342,4248,9,342, + 1,342,1,342,1,342,5,342,4253,8,342,10,342,12,342,4256,9,342,3,342, + 4258,8,342,1,343,1,343,1,344,1,344,1,344,1,344,1,345,1,345,1,345, + 1,345,1,345,3,345,4271,8,345,1,345,1,345,1,345,1,345,1,345,5,345, + 4278,8,345,10,345,12,345,4281,9,345,3,345,4283,8,345,1,345,1,345, + 1,346,1,346,3,346,4289,8,346,1,346,3,346,4292,8,346,1,346,1,346, + 1,346,3,346,4297,8,346,1,346,3,346,4300,8,346,1,347,1,347,1,348, + 1,348,1,348,5,348,4307,8,348,10,348,12,348,4310,9,348,1,349,1,349, + 1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,1,349,3,349,4323, + 8,349,1,349,1,349,1,349,1,349,3,349,4329,8,349,3,349,4331,8,349, + 1,349,1,349,1,349,1,350,1,350,1,350,3,350,4339,8,350,1,350,3,350, + 4342,8,350,1,350,1,350,1,350,1,350,1,350,1,350,5,350,4350,8,350, + 10,350,12,350,4353,9,350,1,350,1,350,3,350,4357,8,350,3,350,4359, + 8,350,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351,1,351, + 3,351,4371,8,351,1,351,1,351,1,351,1,351,3,351,4377,8,351,3,351, + 4379,8,351,1,351,1,351,1,351,1,352,1,352,3,352,4386,8,352,1,353, + 1,353,1,353,5,353,4391,8,353,10,353,12,353,4394,9,353,1,354,1,354, + 1,354,1,354,5,354,4400,8,354,10,354,12,354,4403,9,354,1,355,1,355, + 1,355,1,355,1,356,1,356,1,356,3,356,4412,8,356,1,356,3,356,4415, + 8,356,1,356,3,356,4418,8,356,1,356,3,356,4421,8,356,1,357,1,357, + 3,357,4425,8,357,1,358,1,358,1,358,1,358,1,358,1,358,1,358,3,358, + 4434,8,358,1,359,1,359,1,359,1,359,1,359,1,359,1,359,3,359,4443, + 8,359,1,360,1,360,1,360,1,360,1,360,1,360,3,360,4451,8,360,1,361, + 1,361,1,361,1,361,3,361,4457,8,361,1,362,1,362,1,362,1,362,1,363, + 1,363,1,363,1,363,3,363,4467,8,363,1,364,1,364,1,364,1,365,1,365, + 3,365,4474,8,365,1,365,1,365,1,365,1,365,5,365,4480,8,365,10,365, + 12,365,4483,9,365,1,365,1,365,1,366,1,366,1,366,1,366,1,366,3,366, + 4492,8,366,1,366,1,366,1,366,1,366,1,366,1,366,5,366,4500,8,366, + 10,366,12,366,4503,9,366,1,366,1,366,3,366,4507,8,366,1,367,1,367, + 3,367,4511,8,367,1,368,1,368,3,368,4515,8,368,1,368,1,368,5,368, + 4519,8,368,10,368,12,368,4522,9,368,1,368,1,368,1,369,1,369,1,370, + 1,370,1,370,1,371,1,371,1,371,1,372,1,372,1,373,1,373,1,373,1,373, + 1,374,1,374,3,374,4542,8,374,1,375,1,375,4,375,4546,8,375,11,375, + 12,375,4547,1,376,1,376,3,376,4552,8,376,1,377,1,377,3,377,4556, + 8,377,1,377,3,377,4559,8,377,1,377,1,377,5,377,4563,8,377,10,377, + 12,377,4566,9,377,1,378,1,378,3,378,4570,8,378,1,378,3,378,4573, + 8,378,1,379,1,379,3,379,4577,8,379,1,380,1,380,1,380,1,380,5,380, + 4583,8,380,10,380,12,380,4586,9,380,1,380,1,380,1,381,1,381,1,381, + 5,381,4593,8,381,10,381,12,381,4596,9,381,1,382,1,382,1,382,1,382, + 1,382,5,382,4603,8,382,10,382,12,382,4606,9,382,1,383,1,383,1,383, + 1,383,1,384,1,384,1,384,1,384,1,385,1,385,1,385,1,385,1,386,1,386, + 1,386,1,386,3,386,4624,8,386,1,387,1,387,1,387,1,387,1,387,3,387, + 4631,8,387,1,387,3,387,4634,8,387,1,387,1,387,1,387,1,387,1,388, + 1,388,1,388,1,388,1,388,3,388,4645,8,388,1,388,1,388,1,388,5,388, + 4650,8,388,10,388,12,388,4653,9,388,3,388,4655,8,388,3,388,4657, + 8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 4668,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 4678,8,388,3,388,4680,8,388,1,389,1,389,1,389,1,389,3,389,4686,8, + 389,1,390,1,390,1,391,1,391,3,391,4692,8,391,1,392,1,392,3,392,4696, + 8,392,1,393,1,393,1,394,1,394,3,394,4702,8,394,1,395,1,395,1,395, + 1,395,1,395,1,395,1,395,3,395,4711,8,395,1,395,1,395,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,4,396,4722,8,396,11,396,12,396,4723, + 1,396,1,396,3,396,4728,8,396,1,396,1,396,1,397,1,397,1,397,1,397, + 1,397,1,397,4,397,4738,8,397,11,397,12,397,4739,1,397,1,397,3,397, + 4744,8,397,1,397,1,397,1,398,1,398,1,398,1,398,1,398,3,398,4753, + 8,398,1,398,1,398,1,399,1,399,1,399,1,399,1,399,1,399,1,399,1,399, + 3,399,4765,8,399,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,3,401,4782,8,401,1,402, + 1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402,1,402, + 1,402,3,402,4797,8,402,1,403,1,403,1,404,1,404,1,405,1,405,4,405, + 4805,8,405,11,405,12,405,4806,1,406,1,406,1,406,1,407,1,407,1,407, + 3,407,4815,8,407,1,408,1,408,1,408,3,408,4820,8,408,1,409,1,409, + 1,409,1,410,1,410,1,411,1,411,1,411,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,3,412,4841,8,412,1,412,1,412, + 3,412,4845,8,412,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,1,413,1,413,1,413,3,413,4861,8,413,1,414,1,414, + 1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415,1,415, + 3,415,4876,8,415,1,416,1,416,1,416,1,416,1,416,1,416,1,416,5,416, + 4885,8,416,10,416,12,416,4888,9,416,1,417,1,417,1,418,5,418,4893, + 8,418,10,418,12,418,4896,9,418,1,418,1,418,1,419,1,419,1,420,1,420, + 1,420,1,420,5,420,4906,8,420,10,420,12,420,4909,9,420,1,421,1,421, + 1,422,1,422,1,422,1,422,5,422,4917,8,422,10,422,12,422,4920,9,422, + 1,423,1,423,1,424,1,424,1,424,1,424,5,424,4928,8,424,10,424,12,424, + 4931,9,424,1,425,1,425,1,426,1,426,1,426,1,426,5,426,4939,8,426, + 10,426,12,426,4942,9,426,1,427,1,427,1,428,1,428,1,428,1,428,5,428, + 4950,8,428,10,428,12,428,4953,9,428,1,429,1,429,1,430,1,430,1,430, + 1,430,5,430,4961,8,430,10,430,12,430,4964,9,430,1,431,1,431,1,432, + 1,432,1,432,1,432,1,432,3,432,4973,8,432,1,433,1,433,1,433,1,433, + 1,434,1,434,1,434,3,434,4982,8,434,1,435,1,435,3,435,4986,8,435, + 1,436,1,436,1,436,1,436,1,436,1,436,3,436,4994,8,436,1,437,1,437, + 1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,3,437,5007, + 8,437,1,438,1,438,1,438,1,438,1,439,1,439,1,440,1,440,3,440,5017, + 8,440,1,441,1,441,1,441,1,441,3,441,5023,8,441,1,442,1,442,1,442, + 1,442,1,443,1,443,1,443,1,443,1,443,1,443,1,443,3,443,5036,8,443, + 1,444,1,444,1,444,1,444,1,444,1,444,1,444,5,444,5045,8,444,10,444, + 12,444,5048,9,444,1,445,1,445,1,445,1,445,1,445,1,445,1,445,1,445, + 1,445,1,445,1,445,1,445,3,445,5062,8,445,1,446,1,446,1,446,3,446, + 5067,8,446,1,447,1,447,1,448,5,448,5072,8,448,10,448,12,448,5075, + 9,448,1,448,1,448,1,449,1,449,1,450,1,450,1,450,1,450,5,450,5085, + 8,450,10,450,12,450,5088,9,450,1,451,1,451,1,452,1,452,1,452,1,452, + 5,452,5096,8,452,10,452,12,452,5099,9,452,1,453,1,453,1,454,1,454, + 1,455,1,455,3,455,5107,8,455,1,456,1,456,1,456,1,456,1,456,5,456, + 5114,8,456,10,456,12,456,5117,9,456,1,456,1,456,1,457,1,457,1,457, + 3,457,5124,8,457,1,458,1,458,1,458,1,458,5,458,5130,8,458,10,458, + 12,458,5133,9,458,1,458,1,458,1,459,1,459,1,459,1,459,1,460,1,460, + 3,460,5143,8,460,1,461,1,461,1,462,1,462,1,463,1,463,3,463,5151, + 8,463,1,464,1,464,1,464,3,464,5156,8,464,1,465,1,465,1,466,1,466, + 1,467,1,467,1,468,1,468,1,468,1,469,1,469,1,469,5,469,5170,8,469, + 10,469,12,469,5173,9,469,1,470,1,470,1,470,1,470,1,470,3,470,5180, + 8,470,1,471,1,471,1,472,1,472,1,472,5,472,5187,8,472,10,472,12,472, + 5190,9,472,1,473,1,473,1,474,1,474,1,474,1,474,1,474,1,475,1,475, + 1,475,1,475,1,475,1,476,1,476,1,476,5,476,5207,8,476,10,476,12,476, + 5210,9,476,1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,477,1,477, + 1,477,1,477,1,477,1,477,1,477,3,477,5226,8,477,1,478,1,478,1,478, + 1,478,1,478,1,478,1,478,3,478,5235,8,478,1,479,1,479,1,479,5,479, + 5240,8,479,10,479,12,479,5243,9,479,1,480,1,480,1,480,3,480,5248, + 8,480,1,481,1,481,1,481,5,481,5253,8,481,10,481,12,481,5256,9,481, + 1,482,1,482,1,482,1,482,3,482,5262,8,482,1,482,1,482,1,482,1,482, + 1,482,1,482,1,482,3,482,5271,8,482,3,482,5273,8,482,1,483,1,483, + 1,483,1,484,1,484,3,484,5280,8,484,1,485,1,485,1,486,1,486,1,487, + 1,487,1,488,1,488,1,489,1,489,1,490,1,490,1,491,1,491,1,492,1,492, + 1,493,1,493,1,494,1,494,1,495,1,495,1,496,1,496,1,496,1,496,1,496, + 1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,1,496,3,496, + 5319,8,496,1,496,1,496,3,496,5323,8,496,3,496,5325,8,496,1,497,1, + 497,3,497,5329,8,497,1,497,1,497,1,497,1,498,1,498,1,498,1,498,1, + 498,1,498,1,498,1,498,1,498,1,498,1,498,1,498,3,498,5346,8,498,1, + 499,1,499,1,499,1,499,3,499,5352,8,499,1,499,1,499,1,500,1,500,1, + 500,5,500,5359,8,500,10,500,12,500,5362,9,500,1,501,1,501,1,502, + 1,502,1,502,1,503,1,503,1,503,5,503,5372,8,503,10,503,12,503,5375, + 9,503,1,504,1,504,1,504,5,504,5380,8,504,10,504,12,504,5383,9,504, + 1,505,1,505,1,505,1,505,1,506,1,506,1,507,1,507,1,508,1,508,1,508, + 1,508,3,508,5397,8,508,1,509,1,509,1,509,1,510,1,510,1,510,1,510, + 1,510,1,510,1,510,1,510,1,510,1,510,1,511,1,511,1,511,1,511,1,511, + 1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,1,511,3,511,5426, + 8,511,1,511,1,511,1,511,3,511,5431,8,511,3,511,5433,8,511,1,512, + 1,512,1,512,1,512,1,512,1,512,1,513,1,513,1,513,1,513,1,513,1,513, + 1,513,1,513,1,513,1,513,1,513,1,513,3,513,5453,8,513,1,514,1,514, + 1,514,5,514,5458,8,514,10,514,12,514,5461,9,514,1,515,1,515,1,515, + 1,515,1,515,1,515,1,515,1,515,1,516,1,516,1,516,1,516,1,516,1,516, + 1,516,1,516,1,516,1,516,1,516,1,516,3,516,5483,8,516,1,517,1,517, + 1,517,1,517,1,517,1,517,1,518,1,518,1,518,1,518,1,518,1,518,1,518, + 1,518,1,518,3,518,5500,8,518,1,518,1,518,1,518,3,518,5505,8,518, + 1,519,1,519,1,519,1,519,1,519,1,519,1,519,1,519,1,519,3,519,5516, + 8,519,1,519,1,519,1,519,3,519,5521,8,519,1,520,1,520,1,520,1,520, + 1,520,1,520,1,520,1,520,0,0,521,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, @@ -29869,1804 +29931,1807 @@ export class HiveSqlParser extends SQLParserBase { 942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972, 974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004, 1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030, - 1032,1034,1036,1038,0,56,2,0,57,57,172,172,4,0,91,91,121,121,225, - 225,324,324,2,0,34,34,281,281,1,0,89,90,2,0,139,139,154,154,2,0, - 67,67,294,294,2,0,68,68,295,295,1,0,155,156,2,0,114,114,306,306, - 11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,189,189,298,298, - 308,308,364,364,3,0,4,4,101,101,325,325,3,0,15,15,128,128,170,170, - 1,0,141,142,2,0,30,30,350,350,2,0,216,216,372,372,2,0,213,213,271, - 271,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39,375,375,4,0,112, - 112,164,164,204,204,355,355,2,0,7,7,96,96,2,0,224,224,390,390,2, - 0,188,188,195,195,2,0,42,42,314,314,2,0,425,425,430,430,2,0,140, - 140,284,284,3,0,12,12,230,230,299,299,2,0,240,240,291,291,2,0,197, - 197,267,267,2,0,353,353,430,430,2,0,133,133,246,246,3,0,412,413, - 417,417,419,419,2,0,411,411,414,416,1,0,412,413,3,0,183,183,269, - 269,285,285,2,0,7,7,13,13,3,0,7,7,13,13,312,312,2,0,125,125,349, - 349,2,0,404,404,406,410,24,0,11,11,16,16,25,28,35,35,100,100,131, - 132,151,151,154,154,162,163,183,183,197,197,215,215,227,227,263, - 263,269,269,285,285,310,310,322,323,339,339,356,356,382,382,404, - 416,418,420,422,422,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33, - 34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79, - 79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116,118,121, - 127,130,137,138,142,142,147,150,152,152,155,156,158,160,168,170, - 172,177,182,182,184,186,188,192,194,196,198,201,203,203,205,208, - 210,211,213,214,216,217,219,219,221,222,225,226,231,232,234,235, - 237,239,242,245,251,251,253,254,256,258,260,261,264,266,270,281, - 283,283,286,287,292,297,299,302,304,309,311,311,313,316,318,324, - 326,327,329,329,331,333,338,339,341,341,343,345,348,348,351,352, - 354,354,356,356,359,363,365,367,370,372,374,374,376,381,384,384, - 387,393,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, - 151,162,163,197,197,263,263,310,310,336,336,4,0,198,198,241,241, - 299,299,321,321,2,0,212,212,430,431,1,0,106,107,1,0,94,95,1,0,391, - 392,1,0,207,208,1,0,380,381,1,0,73,74,1,0,148,149,1,0,205,206,1, - 0,296,297,1,0,80,82,2,0,4,4,101,101,3,0,14,14,144,144,368,368,5919, - 0,1043,1,0,0,0,2,1050,1,0,0,0,4,1055,1,0,0,0,6,1089,1,0,0,0,8,1091, - 1,0,0,0,10,1093,1,0,0,0,12,1109,1,0,0,0,14,1111,1,0,0,0,16,1127, - 1,0,0,0,18,1130,1,0,0,0,20,1139,1,0,0,0,22,1147,1,0,0,0,24,1160, - 1,0,0,0,26,1171,1,0,0,0,28,1176,1,0,0,0,30,1187,1,0,0,0,32,1191, - 1,0,0,0,34,1199,1,0,0,0,36,1204,1,0,0,0,38,1258,1,0,0,0,40,1260, - 1,0,0,0,42,1263,1,0,0,0,44,1265,1,0,0,0,46,1269,1,0,0,0,48,1271, - 1,0,0,0,50,1274,1,0,0,0,52,1277,1,0,0,0,54,1281,1,0,0,0,56,1323, - 1,0,0,0,58,1325,1,0,0,0,60,1328,1,0,0,0,62,1331,1,0,0,0,64,1335, - 1,0,0,0,66,1343,1,0,0,0,68,1346,1,0,0,0,70,1349,1,0,0,0,72,1358, - 1,0,0,0,74,1361,1,0,0,0,76,1376,1,0,0,0,78,1388,1,0,0,0,80,1393, - 1,0,0,0,82,1413,1,0,0,0,84,1417,1,0,0,0,86,1424,1,0,0,0,88,1449, - 1,0,0,0,90,1466,1,0,0,0,92,1468,1,0,0,0,94,1663,1,0,0,0,96,1673, - 1,0,0,0,98,1675,1,0,0,0,100,1683,1,0,0,0,102,1688,1,0,0,0,104,1690, - 1,0,0,0,106,1696,1,0,0,0,108,1700,1,0,0,0,110,1704,1,0,0,0,112,1708, - 1,0,0,0,114,1718,1,0,0,0,116,1729,1,0,0,0,118,1746,1,0,0,0,120,1764, - 1,0,0,0,122,1769,1,0,0,0,124,1772,1,0,0,0,126,1776,1,0,0,0,128,1783, - 1,0,0,0,130,1792,1,0,0,0,132,1798,1,0,0,0,134,1800,1,0,0,0,136,1817, - 1,0,0,0,138,1839,1,0,0,0,140,1841,1,0,0,0,142,1849,1,0,0,0,144,1856, - 1,0,0,0,146,1858,1,0,0,0,148,1872,1,0,0,0,150,1879,1,0,0,0,152,1881, - 1,0,0,0,154,1885,1,0,0,0,156,1889,1,0,0,0,158,1893,1,0,0,0,160,1897, - 1,0,0,0,162,1910,1,0,0,0,164,1918,1,0,0,0,166,1921,1,0,0,0,168,1923, - 1,0,0,0,170,1935,1,0,0,0,172,1945,1,0,0,0,174,1948,1,0,0,0,176,1959, - 1,0,0,0,178,1967,1,0,0,0,180,2011,1,0,0,0,182,2020,1,0,0,0,184,2047, - 1,0,0,0,186,2060,1,0,0,0,188,2062,1,0,0,0,190,2068,1,0,0,0,192,2071, - 1,0,0,0,194,2077,1,0,0,0,196,2083,1,0,0,0,198,2090,1,0,0,0,200,2124, - 1,0,0,0,202,2132,1,0,0,0,204,2145,1,0,0,0,206,2150,1,0,0,0,208,2161, - 1,0,0,0,210,2178,1,0,0,0,212,2180,1,0,0,0,214,2185,1,0,0,0,216,2192, - 1,0,0,0,218,2194,1,0,0,0,220,2197,1,0,0,0,222,2211,1,0,0,0,224,2219, - 1,0,0,0,226,2227,1,0,0,0,228,2235,1,0,0,0,230,2255,1,0,0,0,232,2257, - 1,0,0,0,234,2274,1,0,0,0,236,2279,1,0,0,0,238,2293,1,0,0,0,240,2295, - 1,0,0,0,242,2298,1,0,0,0,244,2301,1,0,0,0,246,2310,1,0,0,0,248,2330, - 1,0,0,0,250,2332,1,0,0,0,252,2335,1,0,0,0,254,2355,1,0,0,0,256,2357, - 1,0,0,0,258,2361,1,0,0,0,260,2363,1,0,0,0,262,2372,1,0,0,0,264,2378, - 1,0,0,0,266,2384,1,0,0,0,268,2389,1,0,0,0,270,2435,1,0,0,0,272,2437, - 1,0,0,0,274,2440,1,0,0,0,276,2448,1,0,0,0,278,2456,1,0,0,0,280,2464, - 1,0,0,0,282,2481,1,0,0,0,284,2483,1,0,0,0,286,2485,1,0,0,0,288,2498, - 1,0,0,0,290,2506,1,0,0,0,292,2515,1,0,0,0,294,2519,1,0,0,0,296,2521, - 1,0,0,0,298,2526,1,0,0,0,300,2528,1,0,0,0,302,2532,1,0,0,0,304,2538, - 1,0,0,0,306,2546,1,0,0,0,308,2548,1,0,0,0,310,2551,1,0,0,0,312,2558, - 1,0,0,0,314,2569,1,0,0,0,316,2582,1,0,0,0,318,2584,1,0,0,0,320,2592, - 1,0,0,0,322,2596,1,0,0,0,324,2604,1,0,0,0,326,2608,1,0,0,0,328,2610, - 1,0,0,0,330,2612,1,0,0,0,332,2615,1,0,0,0,334,2622,1,0,0,0,336,2630, - 1,0,0,0,338,2635,1,0,0,0,340,2639,1,0,0,0,342,2647,1,0,0,0,344,2655, - 1,0,0,0,346,2659,1,0,0,0,348,2661,1,0,0,0,350,2672,1,0,0,0,352,2676, - 1,0,0,0,354,2688,1,0,0,0,356,2696,1,0,0,0,358,2700,1,0,0,0,360,2712, - 1,0,0,0,362,2724,1,0,0,0,364,2729,1,0,0,0,366,2734,1,0,0,0,368,2736, - 1,0,0,0,370,2740,1,0,0,0,372,2744,1,0,0,0,374,2751,1,0,0,0,376,2753, - 1,0,0,0,378,2766,1,0,0,0,380,2805,1,0,0,0,382,2807,1,0,0,0,384,2812, - 1,0,0,0,386,2817,1,0,0,0,388,2824,1,0,0,0,390,2829,1,0,0,0,392,2834, - 1,0,0,0,394,2840,1,0,0,0,396,2842,1,0,0,0,398,2851,1,0,0,0,400,2863, - 1,0,0,0,402,2943,1,0,0,0,404,2949,1,0,0,0,406,2975,1,0,0,0,408,2977, - 1,0,0,0,410,2999,1,0,0,0,412,3004,1,0,0,0,414,3008,1,0,0,0,416,3040, - 1,0,0,0,418,3042,1,0,0,0,420,3053,1,0,0,0,422,3059,1,0,0,0,424,3065, - 1,0,0,0,426,3067,1,0,0,0,428,3076,1,0,0,0,430,3086,1,0,0,0,432,3088, - 1,0,0,0,434,3102,1,0,0,0,436,3104,1,0,0,0,438,3107,1,0,0,0,440,3111, - 1,0,0,0,442,3113,1,0,0,0,444,3117,1,0,0,0,446,3121,1,0,0,0,448,3125, - 1,0,0,0,450,3132,1,0,0,0,452,3139,1,0,0,0,454,3161,1,0,0,0,456,3167, - 1,0,0,0,458,3182,1,0,0,0,460,3189,1,0,0,0,462,3197,1,0,0,0,464,3199, - 1,0,0,0,466,3206,1,0,0,0,468,3210,1,0,0,0,470,3213,1,0,0,0,472,3216, - 1,0,0,0,474,3219,1,0,0,0,476,3266,1,0,0,0,478,3283,1,0,0,0,480,3285, - 1,0,0,0,482,3296,1,0,0,0,484,3300,1,0,0,0,486,3304,1,0,0,0,488,3306, - 1,0,0,0,490,3311,1,0,0,0,492,3313,1,0,0,0,494,3318,1,0,0,0,496,3323, - 1,0,0,0,498,3328,1,0,0,0,500,3333,1,0,0,0,502,3339,1,0,0,0,504,3348, - 1,0,0,0,506,3353,1,0,0,0,508,3366,1,0,0,0,510,3368,1,0,0,0,512,3372, - 1,0,0,0,514,3392,1,0,0,0,516,3405,1,0,0,0,518,3413,1,0,0,0,520,3415, - 1,0,0,0,522,3424,1,0,0,0,524,3428,1,0,0,0,526,3435,1,0,0,0,528,3442, - 1,0,0,0,530,3449,1,0,0,0,532,3452,1,0,0,0,534,3455,1,0,0,0,536,3487, - 1,0,0,0,538,3498,1,0,0,0,540,3515,1,0,0,0,542,3517,1,0,0,0,544,3521, - 1,0,0,0,546,3528,1,0,0,0,548,3530,1,0,0,0,550,3535,1,0,0,0,552,3539, - 1,0,0,0,554,3547,1,0,0,0,556,3551,1,0,0,0,558,3561,1,0,0,0,560,3563, - 1,0,0,0,562,3569,1,0,0,0,564,3573,1,0,0,0,566,3586,1,0,0,0,568,3588, - 1,0,0,0,570,3592,1,0,0,0,572,3595,1,0,0,0,574,3598,1,0,0,0,576,3618, - 1,0,0,0,578,3622,1,0,0,0,580,3629,1,0,0,0,582,3643,1,0,0,0,584,3664, - 1,0,0,0,586,3669,1,0,0,0,588,3671,1,0,0,0,590,3676,1,0,0,0,592,3681, - 1,0,0,0,594,3695,1,0,0,0,596,3820,1,0,0,0,598,3822,1,0,0,0,600,3842, - 1,0,0,0,602,3845,1,0,0,0,604,3848,1,0,0,0,606,3851,1,0,0,0,608,3855, - 1,0,0,0,610,3867,1,0,0,0,612,3872,1,0,0,0,614,3874,1,0,0,0,616,3882, - 1,0,0,0,618,3890,1,0,0,0,620,3902,1,0,0,0,622,3936,1,0,0,0,624,3938, - 1,0,0,0,626,3956,1,0,0,0,628,3965,1,0,0,0,630,3970,1,0,0,0,632,3974, - 1,0,0,0,634,3990,1,0,0,0,636,4049,1,0,0,0,638,4051,1,0,0,0,640,4053, - 1,0,0,0,642,4073,1,0,0,0,644,4084,1,0,0,0,646,4086,1,0,0,0,648,4102, - 1,0,0,0,650,4114,1,0,0,0,652,4124,1,0,0,0,654,4126,1,0,0,0,656,4130, - 1,0,0,0,658,4140,1,0,0,0,660,4150,1,0,0,0,662,4155,1,0,0,0,664,4162, - 1,0,0,0,666,4166,1,0,0,0,668,4185,1,0,0,0,670,4190,1,0,0,0,672,4192, - 1,0,0,0,674,4220,1,0,0,0,676,4223,1,0,0,0,678,4225,1,0,0,0,680,4227, - 1,0,0,0,682,4246,1,0,0,0,684,4248,1,0,0,0,686,4250,1,0,0,0,688,4254, - 1,0,0,0,690,4288,1,0,0,0,692,4290,1,0,0,0,694,4292,1,0,0,0,696,4300, - 1,0,0,0,698,4347,1,0,0,0,700,4349,1,0,0,0,702,4374,1,0,0,0,704,4376, - 1,0,0,0,706,4384,1,0,0,0,708,4393,1,0,0,0,710,4409,1,0,0,0,712,4413, - 1,0,0,0,714,4415,1,0,0,0,716,4424,1,0,0,0,718,4439,1,0,0,0,720,4445, - 1,0,0,0,722,4447,1,0,0,0,724,4455,1,0,0,0,726,4457,1,0,0,0,728,4462, - 1,0,0,0,730,4475,1,0,0,0,732,4499,1,0,0,0,734,4501,1,0,0,0,736,4514, - 1,0,0,0,738,4516,1,0,0,0,740,4519,1,0,0,0,742,4522,1,0,0,0,744,4524, - 1,0,0,0,746,4528,1,0,0,0,748,4534,1,0,0,0,750,4540,1,0,0,0,752,4542, - 1,0,0,0,754,4556,1,0,0,0,756,4565,1,0,0,0,758,4567,1,0,0,0,760,4578, - 1,0,0,0,762,4586,1,0,0,0,764,4596,1,0,0,0,766,4600,1,0,0,0,768,4604, - 1,0,0,0,770,4608,1,0,0,0,772,4614,1,0,0,0,774,4668,1,0,0,0,776,4674, - 1,0,0,0,778,4676,1,0,0,0,780,4680,1,0,0,0,782,4684,1,0,0,0,784,4686, - 1,0,0,0,786,4690,1,0,0,0,788,4692,1,0,0,0,790,4703,1,0,0,0,792,4720, - 1,0,0,0,794,4736,1,0,0,0,796,4753,1,0,0,0,798,4755,1,0,0,0,800,4770, - 1,0,0,0,802,4785,1,0,0,0,804,4787,1,0,0,0,806,4789,1,0,0,0,808,4791, - 1,0,0,0,810,4797,1,0,0,0,812,4803,1,0,0,0,814,4808,1,0,0,0,816,4810, - 1,0,0,0,818,4813,1,0,0,0,820,4815,1,0,0,0,822,4833,1,0,0,0,824,4849, - 1,0,0,0,826,4851,1,0,0,0,828,4864,1,0,0,0,830,4866,1,0,0,0,832,4878, - 1,0,0,0,834,4883,1,0,0,0,836,4888,1,0,0,0,838,4890,1,0,0,0,840,4899, - 1,0,0,0,842,4901,1,0,0,0,844,4910,1,0,0,0,846,4912,1,0,0,0,848,4921, - 1,0,0,0,850,4923,1,0,0,0,852,4932,1,0,0,0,854,4934,1,0,0,0,856,4943, - 1,0,0,0,858,4945,1,0,0,0,860,4954,1,0,0,0,862,4961,1,0,0,0,864,4963, - 1,0,0,0,866,4970,1,0,0,0,868,4972,1,0,0,0,870,4982,1,0,0,0,872,4995, - 1,0,0,0,874,4997,1,0,0,0,876,5001,1,0,0,0,878,5005,1,0,0,0,880,5011, - 1,0,0,0,882,5013,1,0,0,0,884,5024,1,0,0,0,886,5026,1,0,0,0,888,5050, - 1,0,0,0,890,5052,1,0,0,0,892,5057,1,0,0,0,894,5062,1,0,0,0,896,5067, - 1,0,0,0,898,5069,1,0,0,0,900,5078,1,0,0,0,902,5080,1,0,0,0,904,5089, - 1,0,0,0,906,5091,1,0,0,0,908,5093,1,0,0,0,910,5097,1,0,0,0,912,5109, - 1,0,0,0,914,5114,1,0,0,0,916,5125,1,0,0,0,918,5131,1,0,0,0,920,5133, - 1,0,0,0,922,5135,1,0,0,0,924,5139,1,0,0,0,926,5141,1,0,0,0,928,5146, - 1,0,0,0,930,5148,1,0,0,0,932,5150,1,0,0,0,934,5152,1,0,0,0,936,5155, - 1,0,0,0,938,5163,1,0,0,0,940,5170,1,0,0,0,942,5172,1,0,0,0,944,5180, - 1,0,0,0,946,5182,1,0,0,0,948,5187,1,0,0,0,950,5192,1,0,0,0,952,5214, - 1,0,0,0,954,5223,1,0,0,0,956,5225,1,0,0,0,958,5236,1,0,0,0,960,5238, - 1,0,0,0,962,5246,1,0,0,0,964,5263,1,0,0,0,966,5266,1,0,0,0,968,5270, - 1,0,0,0,970,5272,1,0,0,0,972,5274,1,0,0,0,974,5276,1,0,0,0,976,5278, - 1,0,0,0,978,5280,1,0,0,0,980,5282,1,0,0,0,982,5284,1,0,0,0,984,5286, - 1,0,0,0,986,5288,1,0,0,0,988,5290,1,0,0,0,990,5292,1,0,0,0,992,5317, - 1,0,0,0,994,5322,1,0,0,0,996,5336,1,0,0,0,998,5344,1,0,0,0,1000, - 5352,1,0,0,0,1002,5354,1,0,0,0,1004,5357,1,0,0,0,1006,5365,1,0,0, - 0,1008,5373,1,0,0,0,1010,5377,1,0,0,0,1012,5379,1,0,0,0,1014,5385, - 1,0,0,0,1016,5387,1,0,0,0,1018,5390,1,0,0,0,1020,5400,1,0,0,0,1022, - 5423,1,0,0,0,1024,5441,1,0,0,0,1026,5443,1,0,0,0,1028,5451,1,0,0, - 0,1030,5459,1,0,0,0,1032,5473,1,0,0,0,1034,5479,1,0,0,0,1036,5495, - 1,0,0,0,1038,5511,1,0,0,0,1040,1042,3,2,1,0,1041,1040,1,0,0,0,1042, - 1045,1,0,0,0,1043,1041,1,0,0,0,1043,1044,1,0,0,0,1044,1046,1,0,0, - 0,1045,1043,1,0,0,0,1046,1047,5,0,0,1,1047,1,1,0,0,0,1048,1051,3, - 4,2,0,1049,1051,3,12,6,0,1050,1048,1,0,0,0,1050,1049,1,0,0,0,1051, - 1053,1,0,0,0,1052,1054,5,397,0,0,1053,1052,1,0,0,0,1053,1054,1,0, - 0,0,1054,3,1,0,0,0,1055,1065,5,119,0,0,1056,1058,3,6,3,0,1057,1056, - 1,0,0,0,1058,1061,1,0,0,0,1059,1057,1,0,0,0,1059,1060,1,0,0,0,1060, - 1062,1,0,0,0,1061,1059,1,0,0,0,1062,1066,3,12,6,0,1063,1064,5,283, - 0,0,1064,1066,3,392,196,0,1065,1059,1,0,0,0,1065,1063,1,0,0,0,1066, - 5,1,0,0,0,1067,1090,5,122,0,0,1068,1090,5,138,0,0,1069,1090,5,88, - 0,0,1070,1072,5,37,0,0,1071,1073,7,0,0,0,1072,1071,1,0,0,0,1072, - 1073,1,0,0,0,1073,1090,1,0,0,0,1074,1090,5,191,0,0,1075,1090,5,21, - 0,0,1076,1090,5,10,0,0,1077,1090,5,274,0,0,1078,1090,5,190,0,0,1079, - 1090,5,19,0,0,1080,1082,5,376,0,0,1081,1083,3,8,4,0,1082,1081,1, - 0,0,0,1082,1083,1,0,0,0,1083,1085,1,0,0,0,1084,1086,3,10,5,0,1085, - 1084,1,0,0,0,1085,1086,1,0,0,0,1086,1090,1,0,0,0,1087,1090,5,79, - 0,0,1088,1090,5,78,0,0,1089,1067,1,0,0,0,1089,1068,1,0,0,0,1089, - 1069,1,0,0,0,1089,1070,1,0,0,0,1089,1074,1,0,0,0,1089,1075,1,0,0, - 0,1089,1076,1,0,0,0,1089,1077,1,0,0,0,1089,1078,1,0,0,0,1089,1079, - 1,0,0,0,1089,1080,1,0,0,0,1089,1087,1,0,0,0,1089,1088,1,0,0,0,1090, - 7,1,0,0,0,1091,1092,5,224,0,0,1092,9,1,0,0,0,1093,1094,7,1,0,0,1094, - 11,1,0,0,0,1095,1110,3,392,196,0,1096,1110,3,14,7,0,1097,1110,3, - 20,10,0,1098,1110,3,22,11,0,1099,1110,3,24,12,0,1100,1110,3,28,14, - 0,1101,1110,3,36,18,0,1102,1110,3,38,19,0,1103,1110,3,420,210,0, - 1104,1110,3,428,214,0,1105,1110,3,430,215,0,1106,1110,3,452,226, - 0,1107,1110,3,946,473,0,1108,1110,3,948,474,0,1109,1095,1,0,0,0, - 1109,1096,1,0,0,0,1109,1097,1,0,0,0,1109,1098,1,0,0,0,1109,1099, - 1,0,0,0,1109,1100,1,0,0,0,1109,1101,1,0,0,0,1109,1102,1,0,0,0,1109, - 1103,1,0,0,0,1109,1104,1,0,0,0,1109,1105,1,0,0,0,1109,1106,1,0,0, - 0,1109,1107,1,0,0,0,1109,1108,1,0,0,0,1110,13,1,0,0,0,1111,1112, - 5,186,0,0,1112,1114,5,66,0,0,1113,1115,5,187,0,0,1114,1113,1,0,0, - 0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,5,158,0,0,1117,1119, - 5,425,0,0,1118,1120,5,234,0,0,1119,1118,1,0,0,0,1119,1120,1,0,0, - 0,1120,1121,1,0,0,0,1121,1122,5,166,0,0,1122,1123,5,328,0,0,1123, - 1125,3,908,454,0,1124,1126,3,78,39,0,1125,1124,1,0,0,0,1125,1126, - 1,0,0,0,1126,15,1,0,0,0,1127,1128,5,152,0,0,1128,1129,5,253,0,0, - 1129,17,1,0,0,0,1130,1132,5,134,0,0,1131,1133,5,203,0,0,1132,1131, - 1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1135,5,278,0,0, - 1135,1136,5,398,0,0,1136,1137,5,425,0,0,1137,1138,5,399,0,0,1138, - 19,1,0,0,0,1139,1140,5,120,0,0,1140,1141,5,328,0,0,1141,1142,3,908, - 454,0,1142,1143,5,340,0,0,1143,1145,5,425,0,0,1144,1146,3,18,9,0, - 1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,21,1,0,0,0,1147,1153,5, - 153,0,0,1148,1150,5,123,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0, - 1150,1151,1,0,0,0,1151,1152,5,328,0,0,1152,1154,3,908,454,0,1153, - 1149,1,0,0,0,1153,1154,1,0,0,0,1154,1155,1,0,0,0,1155,1156,5,139, - 0,0,1156,1158,5,425,0,0,1157,1159,3,272,136,0,1158,1157,1,0,0,0, - 1158,1159,1,0,0,0,1159,23,1,0,0,0,1160,1161,5,276,0,0,1161,1162, - 5,103,0,0,1162,1165,3,26,13,0,1163,1164,5,277,0,0,1164,1166,3,26, - 13,0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166,1169,1,0,0,0,1167, - 1168,5,386,0,0,1168,1170,3,30,15,0,1169,1167,1,0,0,0,1169,1170,1, - 0,0,0,1170,25,1,0,0,0,1171,1174,3,652,326,0,1172,1173,5,394,0,0, - 1173,1175,3,34,17,0,1174,1172,1,0,0,0,1174,1175,1,0,0,0,1175,27, - 1,0,0,0,1176,1177,5,276,0,0,1177,1178,5,186,0,0,1178,1181,3,26,13, - 0,1179,1180,5,166,0,0,1180,1182,3,652,326,0,1181,1179,1,0,0,0,1181, - 1182,1,0,0,0,1182,1185,1,0,0,0,1183,1184,5,386,0,0,1184,1186,3,30, - 15,0,1185,1183,1,0,0,0,1185,1186,1,0,0,0,1186,29,1,0,0,0,1187,1188, - 5,398,0,0,1188,1189,3,32,16,0,1189,1190,5,399,0,0,1190,31,1,0,0, - 0,1191,1196,3,256,128,0,1192,1193,5,396,0,0,1193,1195,3,256,128, - 0,1194,1192,1,0,0,0,1195,1198,1,0,0,0,1196,1194,1,0,0,0,1196,1197, - 1,0,0,0,1197,33,1,0,0,0,1198,1196,1,0,0,0,1199,1202,5,425,0,0,1200, - 1201,5,394,0,0,1201,1203,5,425,0,0,1202,1200,1,0,0,0,1202,1203,1, - 0,0,0,1203,35,1,0,0,0,1204,1205,5,276,0,0,1205,1206,5,319,0,0,1206, - 1209,3,652,326,0,1207,1208,5,386,0,0,1208,1210,3,30,15,0,1209,1207, - 1,0,0,0,1209,1210,1,0,0,0,1210,37,1,0,0,0,1211,1259,3,56,28,0,1212, - 1259,3,68,34,0,1213,1259,3,70,35,0,1214,1259,3,596,298,0,1215,1259, - 3,76,38,0,1216,1259,3,74,37,0,1217,1259,3,474,237,0,1218,1259,3, - 86,43,0,1219,1259,3,94,47,0,1220,1259,3,160,80,0,1221,1259,3,182, - 91,0,1222,1259,3,198,99,0,1223,1259,3,202,101,0,1224,1259,3,206, - 103,0,1225,1259,3,204,102,0,1226,1259,3,196,98,0,1227,1259,3,200, - 100,0,1228,1259,3,168,84,0,1229,1259,3,174,87,0,1230,1259,3,170, - 85,0,1231,1259,3,172,86,0,1232,1259,3,176,88,0,1233,1259,3,178,89, - 0,1234,1259,3,180,90,0,1235,1259,3,88,44,0,1236,1259,3,98,49,0,1237, - 1259,3,104,52,0,1238,1259,3,100,50,0,1239,1259,3,106,53,0,1240,1259, - 3,108,54,0,1241,1259,3,110,55,0,1242,1259,3,112,56,0,1243,1259,3, - 114,57,0,1244,1259,3,128,64,0,1245,1259,3,120,60,0,1246,1259,3,130, - 65,0,1247,1259,3,122,61,0,1248,1259,3,116,58,0,1249,1259,3,118,59, - 0,1250,1259,3,126,63,0,1251,1259,3,124,62,0,1252,1259,3,448,224, - 0,1253,1259,3,450,225,0,1254,1259,3,464,232,0,1255,1259,3,952,476, - 0,1256,1259,3,598,299,0,1257,1259,3,608,304,0,1258,1211,1,0,0,0, - 1258,1212,1,0,0,0,1258,1213,1,0,0,0,1258,1214,1,0,0,0,1258,1215, - 1,0,0,0,1258,1216,1,0,0,0,1258,1217,1,0,0,0,1258,1218,1,0,0,0,1258, - 1219,1,0,0,0,1258,1220,1,0,0,0,1258,1221,1,0,0,0,1258,1222,1,0,0, - 0,1258,1223,1,0,0,0,1258,1224,1,0,0,0,1258,1225,1,0,0,0,1258,1226, - 1,0,0,0,1258,1227,1,0,0,0,1258,1228,1,0,0,0,1258,1229,1,0,0,0,1258, - 1230,1,0,0,0,1258,1231,1,0,0,0,1258,1232,1,0,0,0,1258,1233,1,0,0, - 0,1258,1234,1,0,0,0,1258,1235,1,0,0,0,1258,1236,1,0,0,0,1258,1237, - 1,0,0,0,1258,1238,1,0,0,0,1258,1239,1,0,0,0,1258,1240,1,0,0,0,1258, - 1241,1,0,0,0,1258,1242,1,0,0,0,1258,1243,1,0,0,0,1258,1244,1,0,0, - 0,1258,1245,1,0,0,0,1258,1246,1,0,0,0,1258,1247,1,0,0,0,1258,1248, - 1,0,0,0,1258,1249,1,0,0,0,1258,1250,1,0,0,0,1258,1251,1,0,0,0,1258, - 1252,1,0,0,0,1258,1253,1,0,0,0,1258,1254,1,0,0,0,1258,1255,1,0,0, - 0,1258,1256,1,0,0,0,1258,1257,1,0,0,0,1259,39,1,0,0,0,1260,1261, - 5,151,0,0,1261,1262,5,117,0,0,1262,41,1,0,0,0,1263,1264,7,2,0,0, - 1264,43,1,0,0,0,1265,1266,5,151,0,0,1266,1267,5,215,0,0,1267,1268, - 5,117,0,0,1268,45,1,0,0,0,1269,1270,5,135,0,0,1270,47,1,0,0,0,1271, - 1272,3,968,484,0,1272,1273,5,283,0,0,1273,49,1,0,0,0,1274,1275,3, - 970,485,0,1275,1276,5,283,0,0,1276,51,1,0,0,0,1277,1278,5,320,0, - 0,1278,1279,5,17,0,0,1279,1280,5,92,0,0,1280,53,1,0,0,0,1281,1282, - 5,227,0,0,1282,1283,5,277,0,0,1283,55,1,0,0,0,1284,1286,5,58,0,0, - 1285,1287,5,272,0,0,1286,1285,1,0,0,0,1286,1287,1,0,0,0,1287,1288, - 1,0,0,0,1288,1290,3,92,46,0,1289,1291,3,44,22,0,1290,1289,1,0,0, - 0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1294,3,654,327,0,1293, - 1295,3,72,36,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1297,1,0, - 0,0,1296,1298,3,58,29,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298, - 1300,1,0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301,1,0, - 0,0,1301,1305,1,0,0,0,1302,1303,5,386,0,0,1303,1304,5,76,0,0,1304, - 1306,3,62,31,0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1324,1,0, - 0,0,1307,1308,5,58,0,0,1308,1309,5,272,0,0,1309,1311,3,92,46,0,1310, - 1312,3,44,22,0,1311,1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1,0, - 0,0,1313,1315,3,654,327,0,1314,1316,3,72,36,0,1315,1314,1,0,0,0, - 1315,1316,1,0,0,0,1316,1317,1,0,0,0,1317,1321,3,66,33,0,1318,1319, - 5,386,0,0,1319,1320,5,76,0,0,1320,1322,3,62,31,0,1321,1318,1,0,0, - 0,1321,1322,1,0,0,0,1322,1324,1,0,0,0,1323,1284,1,0,0,0,1323,1307, - 1,0,0,0,1324,57,1,0,0,0,1325,1326,5,188,0,0,1326,1327,5,425,0,0, - 1327,59,1,0,0,0,1328,1329,5,195,0,0,1329,1330,5,425,0,0,1330,61, - 1,0,0,0,1331,1332,5,398,0,0,1332,1333,3,64,32,0,1333,1334,5,399, - 0,0,1334,63,1,0,0,0,1335,1340,3,256,128,0,1336,1337,5,396,0,0,1337, - 1339,3,256,128,0,1338,1336,1,0,0,0,1339,1342,1,0,0,0,1340,1338,1, - 0,0,0,1340,1341,1,0,0,0,1341,65,1,0,0,0,1342,1340,1,0,0,0,1343,1344, - 5,369,0,0,1344,1345,3,652,326,0,1345,67,1,0,0,0,1346,1347,5,367, - 0,0,1347,1348,3,652,326,0,1348,69,1,0,0,0,1349,1350,5,101,0,0,1350, - 1352,3,92,46,0,1351,1353,3,40,20,0,1352,1351,1,0,0,0,1352,1353,1, - 0,0,0,1353,1354,1,0,0,0,1354,1356,3,652,326,0,1355,1357,3,42,21, - 0,1356,1355,1,0,0,0,1356,1357,1,0,0,0,1357,71,1,0,0,0,1358,1359, - 5,47,0,0,1359,1360,5,425,0,0,1360,73,1,0,0,0,1361,1363,5,350,0,0, - 1362,1364,5,328,0,0,1363,1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365, - 1,0,0,0,1365,1371,3,542,271,0,1366,1367,5,46,0,0,1367,1368,5,398, - 0,0,1368,1369,3,280,140,0,1369,1370,5,399,0,0,1370,1372,1,0,0,0, - 1371,1366,1,0,0,0,1371,1372,1,0,0,0,1372,1374,1,0,0,0,1373,1375, - 3,46,23,0,1374,1373,1,0,0,0,1374,1375,1,0,0,0,1375,75,1,0,0,0,1376, - 1377,5,101,0,0,1377,1379,5,328,0,0,1378,1380,3,40,20,0,1379,1378, - 1,0,0,0,1379,1380,1,0,0,0,1380,1381,1,0,0,0,1381,1383,3,658,329, - 0,1382,1384,5,254,0,0,1383,1382,1,0,0,0,1383,1384,1,0,0,0,1384,1386, - 1,0,0,0,1385,1387,3,18,9,0,1386,1385,1,0,0,0,1386,1387,1,0,0,0,1387, - 77,1,0,0,0,1388,1389,5,160,0,0,1389,1390,5,425,0,0,1390,1391,5,300, - 0,0,1391,1392,5,425,0,0,1392,79,1,0,0,0,1393,1396,3,924,462,0,1394, - 1395,5,394,0,0,1395,1397,3,924,462,0,1396,1394,1,0,0,0,1396,1397, - 1,0,0,0,1397,1411,1,0,0,0,1398,1408,3,924,462,0,1399,1404,5,394, - 0,0,1400,1405,5,104,0,0,1401,1405,5,175,0,0,1402,1405,5,374,0,0, - 1403,1405,3,924,462,0,1404,1400,1,0,0,0,1404,1401,1,0,0,0,1404,1402, - 1,0,0,0,1404,1403,1,0,0,0,1405,1407,1,0,0,0,1406,1399,1,0,0,0,1407, - 1410,1,0,0,0,1408,1406,1,0,0,0,1408,1409,1,0,0,0,1409,1412,1,0,0, - 0,1410,1408,1,0,0,0,1411,1398,1,0,0,0,1411,1412,1,0,0,0,1412,81, - 1,0,0,0,1413,1415,3,80,40,0,1414,1416,3,910,455,0,1415,1414,1,0, - 0,0,1415,1416,1,0,0,0,1416,83,1,0,0,0,1417,1419,3,656,328,0,1418, - 1420,3,910,455,0,1419,1418,1,0,0,0,1419,1420,1,0,0,0,1420,1422,1, - 0,0,0,1421,1423,3,286,143,0,1422,1421,1,0,0,0,1422,1423,1,0,0,0, - 1423,85,1,0,0,0,1424,1447,7,3,0,0,1425,1427,3,92,46,0,1426,1428, - 5,122,0,0,1427,1426,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1,0,0,0, - 1429,1430,3,652,326,0,1430,1448,1,0,0,0,1431,1433,5,69,0,0,1432, - 1434,5,122,0,0,1433,1432,1,0,0,0,1433,1434,1,0,0,0,1434,1435,1,0, - 0,0,1435,1448,3,652,326,0,1436,1438,5,141,0,0,1437,1439,5,122,0, - 0,1438,1437,1,0,0,0,1438,1439,1,0,0,0,1439,1440,1,0,0,0,1440,1448, - 3,780,390,0,1441,1444,5,138,0,0,1442,1444,5,122,0,0,1443,1441,1, - 0,0,0,1443,1442,1,0,0,0,1444,1445,1,0,0,0,1445,1448,3,84,42,0,1446, - 1448,3,84,42,0,1447,1425,1,0,0,0,1447,1431,1,0,0,0,1447,1436,1,0, - 0,0,1447,1443,1,0,0,0,1447,1446,1,0,0,0,1448,87,1,0,0,0,1449,1450, - 5,10,0,0,1450,1451,5,328,0,0,1451,1464,3,908,454,0,1452,1453,5,52, - 0,0,1453,1460,5,318,0,0,1454,1461,5,214,0,0,1455,1456,5,134,0,0, - 1456,1458,5,46,0,0,1457,1459,3,280,140,0,1458,1457,1,0,0,0,1458, - 1459,1,0,0,0,1459,1461,1,0,0,0,1460,1454,1,0,0,0,1460,1455,1,0,0, - 0,1460,1461,1,0,0,0,1461,1465,1,0,0,0,1462,1463,5,33,0,0,1463,1465, - 5,203,0,0,1464,1452,1,0,0,0,1464,1462,1,0,0,0,1465,89,1,0,0,0,1466, - 1467,7,4,0,0,1467,91,1,0,0,0,1468,1469,7,5,0,0,1469,93,1,0,0,0,1470, - 1471,5,307,0,0,1471,1474,7,6,0,0,1472,1473,5,183,0,0,1473,1475,3, - 216,108,0,1474,1472,1,0,0,0,1474,1475,1,0,0,0,1475,1664,1,0,0,0, - 1476,1478,5,307,0,0,1477,1479,5,122,0,0,1478,1477,1,0,0,0,1478,1479, - 1,0,0,0,1479,1480,1,0,0,0,1480,1484,5,329,0,0,1481,1482,3,90,45, - 0,1482,1483,3,652,326,0,1483,1485,1,0,0,0,1484,1481,1,0,0,0,1484, - 1485,1,0,0,0,1485,1487,1,0,0,0,1486,1488,3,96,48,0,1487,1486,1,0, - 0,0,1487,1488,1,0,0,0,1488,1664,1,0,0,0,1489,1490,5,307,0,0,1490, - 1494,5,378,0,0,1491,1492,3,90,45,0,1492,1493,3,652,326,0,1493,1495, - 1,0,0,0,1494,1491,1,0,0,0,1494,1495,1,0,0,0,1495,1499,1,0,0,0,1496, - 1497,5,183,0,0,1497,1500,3,216,108,0,1498,1500,3,216,108,0,1499, - 1496,1,0,0,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1664,1,0,0, - 0,1501,1502,5,307,0,0,1502,1503,5,201,0,0,1503,1507,5,378,0,0,1504, - 1505,3,90,45,0,1505,1506,3,652,326,0,1506,1508,1,0,0,0,1507,1504, - 1,0,0,0,1507,1508,1,0,0,0,1508,1512,1,0,0,0,1509,1510,5,183,0,0, - 1510,1513,3,216,108,0,1511,1513,3,216,108,0,1512,1509,1,0,0,0,1512, - 1511,1,0,0,0,1512,1513,1,0,0,0,1513,1664,1,0,0,0,1514,1516,5,307, - 0,0,1515,1517,5,314,0,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517, - 1518,1,0,0,0,1518,1519,5,46,0,0,1519,1520,3,90,45,0,1520,1524,3, - 656,328,0,1521,1522,3,90,45,0,1522,1523,3,652,326,0,1523,1525,1, - 0,0,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1529,1,0,0,0,1526, - 1527,5,183,0,0,1527,1530,3,216,108,0,1528,1530,3,216,108,0,1529, - 1526,1,0,0,0,1529,1528,1,0,0,0,1529,1530,1,0,0,0,1530,1664,1,0,0, - 0,1531,1532,5,307,0,0,1532,1535,5,142,0,0,1533,1534,5,183,0,0,1534, - 1536,3,780,390,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536,1664,1, - 0,0,0,1537,1538,5,307,0,0,1538,1539,5,238,0,0,1539,1541,3,656,328, - 0,1540,1542,3,910,455,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542, - 1544,1,0,0,0,1543,1545,3,674,337,0,1544,1543,1,0,0,0,1544,1545,1, - 0,0,0,1545,1547,1,0,0,0,1546,1548,3,762,381,0,1547,1546,1,0,0,0, - 1547,1548,1,0,0,0,1548,1550,1,0,0,0,1549,1551,3,418,209,0,1550,1549, - 1,0,0,0,1550,1551,1,0,0,0,1551,1664,1,0,0,0,1552,1553,5,307,0,0, - 1553,1559,5,58,0,0,1554,1555,3,92,46,0,1555,1556,3,652,326,0,1556, - 1560,1,0,0,0,1557,1558,5,328,0,0,1558,1560,3,658,329,0,1559,1554, - 1,0,0,0,1559,1557,1,0,0,0,1560,1664,1,0,0,0,1561,1562,5,307,0,0, - 1562,1563,5,328,0,0,1563,1567,5,122,0,0,1564,1565,3,90,45,0,1565, - 1566,3,652,326,0,1566,1568,1,0,0,0,1567,1564,1,0,0,0,1567,1568,1, - 0,0,0,1568,1569,1,0,0,0,1569,1570,5,183,0,0,1570,1572,3,216,108, - 0,1571,1573,3,910,455,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, - 1664,1,0,0,0,1574,1575,5,307,0,0,1575,1576,5,331,0,0,1576,1580,3, - 658,329,0,1577,1578,5,398,0,0,1578,1579,5,425,0,0,1579,1581,5,399, - 0,0,1580,1577,1,0,0,0,1580,1581,1,0,0,0,1581,1664,1,0,0,0,1582,1583, - 5,307,0,0,1583,1595,5,190,0,0,1584,1585,3,92,46,0,1585,1587,3,652, - 326,0,1586,1588,5,122,0,0,1587,1586,1,0,0,0,1587,1588,1,0,0,0,1588, - 1596,1,0,0,0,1589,1591,3,82,41,0,1590,1589,1,0,0,0,1590,1591,1,0, - 0,0,1591,1593,1,0,0,0,1592,1594,5,122,0,0,1593,1592,1,0,0,0,1593, - 1594,1,0,0,0,1594,1596,1,0,0,0,1595,1584,1,0,0,0,1595,1590,1,0,0, - 0,1596,1664,1,0,0,0,1597,1598,5,307,0,0,1598,1635,5,50,0,0,1599, - 1636,3,466,233,0,1600,1601,3,92,46,0,1601,1603,3,652,326,0,1602, - 1604,3,468,234,0,1603,1602,1,0,0,0,1603,1604,1,0,0,0,1604,1606,1, - 0,0,0,1605,1607,3,470,235,0,1606,1605,1,0,0,0,1606,1607,1,0,0,0, - 1607,1609,1,0,0,0,1608,1610,3,472,236,0,1609,1608,1,0,0,0,1609,1610, - 1,0,0,0,1610,1612,1,0,0,0,1611,1613,3,762,381,0,1612,1611,1,0,0, - 0,1612,1613,1,0,0,0,1613,1615,1,0,0,0,1614,1616,3,418,209,0,1615, - 1614,1,0,0,0,1615,1616,1,0,0,0,1616,1636,1,0,0,0,1617,1619,3,82, - 41,0,1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1621,1,0,0,0,1620, - 1622,3,468,234,0,1621,1620,1,0,0,0,1621,1622,1,0,0,0,1622,1624,1, - 0,0,0,1623,1625,3,470,235,0,1624,1623,1,0,0,0,1624,1625,1,0,0,0, - 1625,1627,1,0,0,0,1626,1628,3,472,236,0,1627,1626,1,0,0,0,1627,1628, - 1,0,0,0,1628,1630,1,0,0,0,1629,1631,3,762,381,0,1630,1629,1,0,0, - 0,1630,1631,1,0,0,0,1631,1633,1,0,0,0,1632,1634,3,418,209,0,1633, - 1632,1,0,0,0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1599,1,0,0, - 0,1635,1600,1,0,0,0,1635,1618,1,0,0,0,1636,1664,1,0,0,0,1637,1638, - 5,307,0,0,1638,1664,5,345,0,0,1639,1640,5,307,0,0,1640,1641,5,54, - 0,0,1641,1664,5,425,0,0,1642,1643,5,307,0,0,1643,1647,5,279,0,0, - 1644,1645,5,242,0,0,1645,1648,3,924,462,0,1646,1648,5,243,0,0,1647, - 1644,1,0,0,0,1647,1646,1,0,0,0,1648,1664,1,0,0,0,1649,1650,5,307, - 0,0,1650,1664,5,70,0,0,1651,1653,5,307,0,0,1652,1654,5,138,0,0,1653, - 1652,1,0,0,0,1653,1654,1,0,0,0,1654,1655,1,0,0,0,1655,1656,7,7,0, - 0,1656,1657,5,223,0,0,1657,1661,3,658,329,0,1658,1659,3,90,45,0, - 1659,1660,3,652,326,0,1660,1662,1,0,0,0,1661,1658,1,0,0,0,1661,1662, - 1,0,0,0,1662,1664,1,0,0,0,1663,1470,1,0,0,0,1663,1476,1,0,0,0,1663, - 1489,1,0,0,0,1663,1501,1,0,0,0,1663,1514,1,0,0,0,1663,1531,1,0,0, - 0,1663,1537,1,0,0,0,1663,1552,1,0,0,0,1663,1561,1,0,0,0,1663,1574, - 1,0,0,0,1663,1582,1,0,0,0,1663,1597,1,0,0,0,1663,1637,1,0,0,0,1663, - 1639,1,0,0,0,1663,1642,1,0,0,0,1663,1649,1,0,0,0,1663,1651,1,0,0, - 0,1664,95,1,0,0,0,1665,1666,5,383,0,0,1666,1667,3,924,462,0,1667, - 1668,5,404,0,0,1668,1669,5,425,0,0,1669,1674,1,0,0,0,1670,1671,5, - 183,0,0,1671,1674,3,216,108,0,1672,1674,3,216,108,0,1673,1665,1, - 0,0,0,1673,1670,1,0,0,0,1673,1672,1,0,0,0,1674,97,1,0,0,0,1675,1676, - 5,189,0,0,1676,1677,5,328,0,0,1677,1679,3,658,329,0,1678,1680,3, - 910,455,0,1679,1678,1,0,0,0,1679,1680,1,0,0,0,1680,1681,1,0,0,0, - 1681,1682,3,102,51,0,1682,99,1,0,0,0,1683,1684,5,189,0,0,1684,1685, - 3,92,46,0,1685,1686,3,652,326,0,1686,1687,3,102,51,0,1687,101,1, - 0,0,0,1688,1689,7,8,0,0,1689,103,1,0,0,0,1690,1691,5,360,0,0,1691, - 1692,5,328,0,0,1692,1694,3,658,329,0,1693,1695,3,910,455,0,1694, - 1693,1,0,0,0,1694,1695,1,0,0,0,1695,105,1,0,0,0,1696,1697,5,360, - 0,0,1697,1698,3,92,46,0,1698,1699,3,652,326,0,1699,107,1,0,0,0,1700, - 1701,5,58,0,0,1701,1702,5,286,0,0,1702,1703,3,924,462,0,1703,109, - 1,0,0,0,1704,1705,5,101,0,0,1705,1706,5,286,0,0,1706,1707,3,924, - 462,0,1707,111,1,0,0,0,1708,1709,5,143,0,0,1709,1711,3,140,70,0, - 1710,1712,3,134,67,0,1711,1710,1,0,0,0,1711,1712,1,0,0,0,1712,1713, - 1,0,0,0,1713,1714,5,340,0,0,1714,1716,3,146,73,0,1715,1717,3,152, - 76,0,1716,1715,1,0,0,0,1716,1717,1,0,0,0,1717,113,1,0,0,0,1718,1720, - 5,282,0,0,1719,1721,3,154,77,0,1720,1719,1,0,0,0,1720,1721,1,0,0, - 0,1721,1722,1,0,0,0,1722,1724,3,140,70,0,1723,1725,3,134,67,0,1724, - 1723,1,0,0,0,1724,1725,1,0,0,0,1725,1726,1,0,0,0,1726,1727,5,139, - 0,0,1727,1728,3,146,73,0,1728,115,1,0,0,0,1729,1731,5,143,0,0,1730, - 1732,5,286,0,0,1731,1730,1,0,0,0,1731,1732,1,0,0,0,1732,1733,1,0, - 0,0,1733,1738,3,924,462,0,1734,1735,5,396,0,0,1735,1737,3,924,462, - 0,1736,1734,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, - 1,0,0,0,1739,1741,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,340,0,0, - 1742,1744,3,146,73,0,1743,1745,3,158,79,0,1744,1743,1,0,0,0,1744, - 1745,1,0,0,0,1745,117,1,0,0,0,1746,1748,5,282,0,0,1747,1749,3,156, - 78,0,1748,1747,1,0,0,0,1748,1749,1,0,0,0,1749,1751,1,0,0,0,1750, - 1752,5,286,0,0,1751,1750,1,0,0,0,1751,1752,1,0,0,0,1752,1753,1,0, - 0,0,1753,1758,3,924,462,0,1754,1755,5,396,0,0,1755,1757,3,924,462, - 0,1756,1754,1,0,0,0,1757,1760,1,0,0,0,1758,1756,1,0,0,0,1758,1759, - 1,0,0,0,1759,1761,1,0,0,0,1760,1758,1,0,0,0,1761,1762,5,139,0,0, - 1762,1763,3,146,73,0,1763,119,1,0,0,0,1764,1765,5,307,0,0,1765,1766, - 5,286,0,0,1766,1767,5,143,0,0,1767,1768,3,148,74,0,1768,121,1,0, - 0,0,1769,1770,5,307,0,0,1770,1771,5,287,0,0,1771,123,1,0,0,0,1772, - 1773,5,307,0,0,1773,1774,5,62,0,0,1774,1775,5,287,0,0,1775,125,1, - 0,0,0,1776,1777,5,303,0,0,1777,1781,5,286,0,0,1778,1782,5,7,0,0, - 1779,1782,5,212,0,0,1780,1782,3,924,462,0,1781,1778,1,0,0,0,1781, - 1779,1,0,0,0,1781,1780,1,0,0,0,1782,127,1,0,0,0,1783,1784,5,307, - 0,0,1784,1786,5,143,0,0,1785,1787,3,148,74,0,1786,1785,1,0,0,0,1786, - 1787,1,0,0,0,1787,1790,1,0,0,0,1788,1789,5,223,0,0,1789,1791,3,132, - 66,0,1790,1788,1,0,0,0,1790,1791,1,0,0,0,1791,129,1,0,0,0,1792,1793, - 5,307,0,0,1793,1794,5,251,0,0,1794,1795,3,924,462,0,1795,131,1,0, - 0,0,1796,1799,5,7,0,0,1797,1799,3,138,69,0,1798,1796,1,0,0,0,1798, - 1797,1,0,0,0,1799,133,1,0,0,0,1800,1801,5,223,0,0,1801,1802,3,136, - 68,0,1802,135,1,0,0,0,1803,1804,3,92,46,0,1804,1805,3,652,326,0, - 1805,1818,1,0,0,0,1806,1808,5,328,0,0,1807,1806,1,0,0,0,1807,1808, - 1,0,0,0,1808,1809,1,0,0,0,1809,1811,3,658,329,0,1810,1812,3,910, - 455,0,1811,1810,1,0,0,0,1811,1812,1,0,0,0,1812,1818,1,0,0,0,1813, - 1814,5,365,0,0,1814,1818,5,425,0,0,1815,1816,5,302,0,0,1816,1818, - 3,924,462,0,1817,1803,1,0,0,0,1817,1807,1,0,0,0,1817,1813,1,0,0, - 0,1817,1815,1,0,0,0,1818,137,1,0,0,0,1819,1820,3,92,46,0,1820,1821, - 3,652,326,0,1821,1840,1,0,0,0,1822,1824,5,328,0,0,1823,1822,1,0, - 0,0,1823,1824,1,0,0,0,1824,1825,1,0,0,0,1825,1830,3,658,329,0,1826, - 1827,5,398,0,0,1827,1828,3,280,140,0,1828,1829,5,399,0,0,1829,1831, - 1,0,0,0,1830,1826,1,0,0,0,1830,1831,1,0,0,0,1831,1833,1,0,0,0,1832, - 1834,3,910,455,0,1833,1832,1,0,0,0,1833,1834,1,0,0,0,1834,1840,1, - 0,0,0,1835,1836,5,365,0,0,1836,1840,5,425,0,0,1837,1838,5,302,0, - 0,1838,1840,3,924,462,0,1839,1819,1,0,0,0,1839,1823,1,0,0,0,1839, - 1835,1,0,0,0,1839,1837,1,0,0,0,1840,139,1,0,0,0,1841,1846,3,142, - 71,0,1842,1843,5,396,0,0,1843,1845,3,142,71,0,1844,1842,1,0,0,0, - 1845,1848,1,0,0,0,1846,1844,1,0,0,0,1846,1847,1,0,0,0,1847,141,1, - 0,0,0,1848,1846,1,0,0,0,1849,1854,3,144,72,0,1850,1851,5,398,0,0, - 1851,1852,3,280,140,0,1852,1853,5,399,0,0,1853,1855,1,0,0,0,1854, - 1850,1,0,0,0,1854,1855,1,0,0,0,1855,143,1,0,0,0,1856,1857,7,9,0, - 0,1857,145,1,0,0,0,1858,1863,3,148,74,0,1859,1860,5,396,0,0,1860, - 1862,3,148,74,0,1861,1859,1,0,0,0,1862,1865,1,0,0,0,1863,1861,1, - 0,0,0,1863,1864,1,0,0,0,1864,147,1,0,0,0,1865,1863,1,0,0,0,1866, - 1867,5,368,0,0,1867,1873,3,928,464,0,1868,1869,5,144,0,0,1869,1873, - 3,928,464,0,1870,1871,5,286,0,0,1871,1873,3,924,462,0,1872,1866, - 1,0,0,0,1872,1868,1,0,0,0,1872,1870,1,0,0,0,1873,149,1,0,0,0,1874, - 1875,5,368,0,0,1875,1880,3,928,464,0,1876,1877,5,286,0,0,1877,1880, - 3,924,462,0,1878,1880,3,924,462,0,1879,1874,1,0,0,0,1879,1876,1, - 0,0,0,1879,1878,1,0,0,0,1880,151,1,0,0,0,1881,1882,5,386,0,0,1882, - 1883,5,143,0,0,1883,1884,5,226,0,0,1884,153,1,0,0,0,1885,1886,5, - 143,0,0,1886,1887,5,226,0,0,1887,1888,5,134,0,0,1888,155,1,0,0,0, - 1889,1890,5,5,0,0,1890,1891,5,226,0,0,1891,1892,5,134,0,0,1892,157, - 1,0,0,0,1893,1894,5,386,0,0,1894,1895,5,5,0,0,1895,1896,5,226,0, - 0,1896,159,1,0,0,0,1897,1899,5,211,0,0,1898,1900,5,275,0,0,1899, - 1898,1,0,0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0,1901,1902,5,328, - 0,0,1902,1908,3,658,329,0,1903,1904,7,10,0,0,1904,1906,5,238,0,0, - 1905,1907,3,914,457,0,1906,1905,1,0,0,0,1906,1907,1,0,0,0,1907,1909, - 1,0,0,0,1908,1903,1,0,0,0,1908,1909,1,0,0,0,1909,161,1,0,0,0,1910, - 1915,3,164,82,0,1911,1912,5,396,0,0,1912,1914,3,164,82,0,1913,1911, - 1,0,0,0,1914,1917,1,0,0,0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916, - 163,1,0,0,0,1917,1915,1,0,0,0,1918,1919,3,166,83,0,1919,1920,5,425, - 0,0,1920,165,1,0,0,0,1921,1922,7,11,0,0,1922,167,1,0,0,0,1923,1925, - 5,58,0,0,1924,1926,5,332,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0, - 1926,1927,1,0,0,0,1927,1928,5,141,0,0,1928,1929,3,778,389,0,1929, - 1930,5,17,0,0,1930,1933,5,425,0,0,1931,1932,5,369,0,0,1932,1934, - 3,162,81,0,1933,1931,1,0,0,0,1933,1934,1,0,0,0,1934,169,1,0,0,0, - 1935,1937,5,101,0,0,1936,1938,5,332,0,0,1937,1936,1,0,0,0,1937,1938, - 1,0,0,0,1938,1939,1,0,0,0,1939,1941,5,141,0,0,1940,1942,3,40,20, - 0,1941,1940,1,0,0,0,1941,1942,1,0,0,0,1942,1943,1,0,0,0,1943,1944, - 3,780,390,0,1944,171,1,0,0,0,1945,1946,5,270,0,0,1946,1947,7,12, - 0,0,1947,173,1,0,0,0,1948,1949,5,58,0,0,1949,1950,5,332,0,0,1950, - 1951,5,193,0,0,1951,1952,5,431,0,0,1952,1954,5,398,0,0,1953,1955, - 3,274,137,0,1954,1953,1,0,0,0,1954,1955,1,0,0,0,1955,1956,1,0,0, - 0,1956,1957,5,399,0,0,1957,1958,3,826,413,0,1958,175,1,0,0,0,1959, - 1960,5,101,0,0,1960,1961,5,332,0,0,1961,1963,5,193,0,0,1962,1964, - 3,40,20,0,1963,1962,1,0,0,0,1963,1964,1,0,0,0,1964,1965,1,0,0,0, - 1965,1966,5,431,0,0,1966,177,1,0,0,0,1967,1968,5,58,0,0,1968,1969, - 5,155,0,0,1969,1970,3,924,462,0,1970,1971,5,223,0,0,1971,1972,5, - 328,0,0,1972,1973,3,658,329,0,1973,1974,3,290,145,0,1974,1975,5, - 17,0,0,1975,1979,5,425,0,0,1976,1977,5,386,0,0,1977,1978,5,84,0, - 0,1978,1980,5,264,0,0,1979,1976,1,0,0,0,1979,1980,1,0,0,0,1980,1983, - 1,0,0,0,1981,1982,5,150,0,0,1982,1984,3,252,126,0,1983,1981,1,0, - 0,0,1983,1984,1,0,0,0,1984,1988,1,0,0,0,1985,1986,5,154,0,0,1986, - 1987,5,328,0,0,1987,1989,3,658,329,0,1988,1985,1,0,0,0,1988,1989, - 1,0,0,0,1989,1993,1,0,0,0,1990,1991,5,237,0,0,1991,1992,5,32,0,0, - 1992,1994,3,290,145,0,1993,1990,1,0,0,0,1993,1994,1,0,0,0,1994,1999, - 1,0,0,0,1995,1997,3,248,124,0,1996,1995,1,0,0,0,1996,1997,1,0,0, - 0,1997,1998,1,0,0,0,1998,2000,3,270,135,0,1999,1996,1,0,0,0,1999, - 2000,1,0,0,0,2000,2003,1,0,0,0,2001,2002,5,188,0,0,2002,2004,5,425, - 0,0,2003,2001,1,0,0,0,2003,2004,1,0,0,0,2004,2006,1,0,0,0,2005,2007, - 3,250,125,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2009,1,0,0, - 0,2008,2010,3,218,109,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010, - 179,1,0,0,0,2011,2012,5,101,0,0,2012,2014,5,155,0,0,2013,2015,3, - 40,20,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0,2015,2016,1,0,0,0,2016, - 2017,3,924,462,0,2017,2018,5,223,0,0,2018,2019,3,658,329,0,2019, - 181,1,0,0,0,2020,2022,5,58,0,0,2021,2023,3,54,27,0,2022,2021,1,0, - 0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2026,5,377,0,0,2025, - 2027,3,44,22,0,2026,2025,1,0,0,0,2026,2027,1,0,0,0,2027,2028,1,0, - 0,0,2028,2033,3,664,332,0,2029,2030,5,398,0,0,2030,2031,3,334,167, - 0,2031,2032,5,399,0,0,2032,2034,1,0,0,0,2033,2029,1,0,0,0,2033,2034, - 1,0,0,0,2034,2036,1,0,0,0,2035,2037,3,218,109,0,2036,2035,1,0,0, - 0,2036,2037,1,0,0,0,2037,2039,1,0,0,0,2038,2040,3,184,92,0,2039, - 2038,1,0,0,0,2039,2040,1,0,0,0,2040,2042,1,0,0,0,2041,2043,3,250, - 125,0,2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043,2044,1,0,0,0,2044, - 2045,5,17,0,0,2045,2046,3,412,206,0,2046,183,1,0,0,0,2047,2048,5, - 237,0,0,2048,2054,5,223,0,0,2049,2050,5,398,0,0,2050,2055,3,280, - 140,0,2051,2052,5,315,0,0,2052,2053,5,398,0,0,2053,2055,3,226,113, - 0,2054,2049,1,0,0,0,2054,2051,1,0,0,0,2055,2056,1,0,0,0,2056,2057, - 5,399,0,0,2057,185,1,0,0,0,2058,2061,3,188,94,0,2059,2061,3,190, - 95,0,2060,2058,1,0,0,0,2060,2059,1,0,0,0,2061,187,1,0,0,0,2062,2063, - 5,42,0,0,2063,2064,5,223,0,0,2064,2065,5,398,0,0,2065,2066,3,280, - 140,0,2066,2067,5,399,0,0,2067,189,1,0,0,0,2068,2069,3,192,96,0, - 2069,2070,3,194,97,0,2070,191,1,0,0,0,2071,2072,5,98,0,0,2072,2073, - 5,223,0,0,2073,2074,5,398,0,0,2074,2075,3,280,140,0,2075,2076,5, - 399,0,0,2076,193,1,0,0,0,2077,2078,5,314,0,0,2078,2079,5,223,0,0, - 2079,2080,5,398,0,0,2080,2081,3,280,140,0,2081,2082,5,399,0,0,2082, - 195,1,0,0,0,2083,2084,5,101,0,0,2084,2086,5,377,0,0,2085,2087,3, - 40,20,0,2086,2085,1,0,0,0,2086,2087,1,0,0,0,2087,2088,1,0,0,0,2088, - 2089,3,662,331,0,2089,197,1,0,0,0,2090,2091,5,58,0,0,2091,2092,5, - 201,0,0,2092,2094,5,377,0,0,2093,2095,3,44,22,0,2094,2093,1,0,0, - 0,2094,2095,1,0,0,0,2095,2096,1,0,0,0,2096,2098,3,664,332,0,2097, - 2099,3,50,25,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1,0, - 0,0,2100,2102,3,218,109,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, - 2104,1,0,0,0,2103,2105,3,184,92,0,2104,2103,1,0,0,0,2104,2105,1, - 0,0,0,2105,2107,1,0,0,0,2106,2108,3,186,93,0,2107,2106,1,0,0,0,2107, - 2108,1,0,0,0,2108,2110,1,0,0,0,2109,2111,3,248,124,0,2110,2109,1, - 0,0,0,2110,2111,1,0,0,0,2111,2113,1,0,0,0,2112,2114,3,270,135,0, - 2113,2112,1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2117, - 3,272,136,0,2116,2115,1,0,0,0,2116,2117,1,0,0,0,2117,2119,1,0,0, - 0,2118,2120,3,250,125,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120, - 2121,1,0,0,0,2121,2122,5,17,0,0,2122,2123,3,412,206,0,2123,199,1, - 0,0,0,2124,2125,5,101,0,0,2125,2126,5,201,0,0,2126,2128,5,377,0, - 0,2127,2129,3,40,20,0,2128,2127,1,0,0,0,2128,2129,1,0,0,0,2129,2130, - 1,0,0,0,2130,2131,3,662,331,0,2131,201,1,0,0,0,2132,2133,5,58,0, - 0,2133,2134,5,292,0,0,2134,2135,5,257,0,0,2135,2136,3,924,462,0, - 2136,2138,3,210,105,0,2137,2139,3,212,106,0,2138,2137,1,0,0,0,2138, - 2139,1,0,0,0,2139,2141,1,0,0,0,2140,2142,3,294,147,0,2141,2140,1, - 0,0,0,2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2144,3,214,107,0, - 2144,203,1,0,0,0,2145,2146,5,101,0,0,2146,2147,5,292,0,0,2147,2148, - 5,257,0,0,2148,2149,3,924,462,0,2149,205,1,0,0,0,2150,2151,5,9,0, - 0,2151,2152,5,292,0,0,2152,2153,5,257,0,0,2153,2154,3,924,462,0, - 2154,2155,3,208,104,0,2155,207,1,0,0,0,2156,2162,3,210,105,0,2157, - 2162,3,212,106,0,2158,2162,3,294,147,0,2159,2162,3,214,107,0,2160, - 2162,5,115,0,0,2161,2156,1,0,0,0,2161,2157,1,0,0,0,2161,2158,1,0, - 0,0,2161,2159,1,0,0,0,2161,2160,1,0,0,0,2162,209,1,0,0,0,2163,2164, - 5,59,0,0,2164,2179,5,425,0,0,2165,2167,5,111,0,0,2166,2168,5,430, - 0,0,2167,2166,1,0,0,0,2167,2168,1,0,0,0,2168,2169,1,0,0,0,2169,2176, - 3,824,412,0,2170,2174,5,20,0,0,2171,2172,5,222,0,0,2172,2174,5,32, - 0,0,2173,2170,1,0,0,0,2173,2171,1,0,0,0,2174,2175,1,0,0,0,2175,2177, - 5,425,0,0,2176,2173,1,0,0,0,2176,2177,1,0,0,0,2177,2179,1,0,0,0, - 2178,2163,1,0,0,0,2178,2165,1,0,0,0,2179,211,1,0,0,0,2180,2181,5, - 116,0,0,2181,2182,5,17,0,0,2182,2183,5,425,0,0,2183,213,1,0,0,0, - 2184,2186,5,85,0,0,2185,2184,1,0,0,0,2185,2186,1,0,0,0,2186,2187, - 1,0,0,0,2187,2188,5,17,0,0,2188,2189,3,2,1,0,2189,215,1,0,0,0,2190, - 2193,3,924,462,0,2191,2193,5,425,0,0,2192,2190,1,0,0,0,2192,2191, - 1,0,0,0,2193,217,1,0,0,0,2194,2195,5,47,0,0,2195,2196,5,425,0,0, - 2196,219,1,0,0,0,2197,2198,5,237,0,0,2198,2207,5,32,0,0,2199,2202, - 5,398,0,0,2200,2203,3,222,111,0,2201,2203,3,224,112,0,2202,2200, - 1,0,0,0,2202,2201,1,0,0,0,2203,2208,1,0,0,0,2204,2205,5,315,0,0, - 2205,2206,5,398,0,0,2206,2208,3,226,113,0,2207,2199,1,0,0,0,2207, - 2204,1,0,0,0,2208,2209,1,0,0,0,2209,2210,5,399,0,0,2210,221,1,0, - 0,0,2211,2216,3,348,174,0,2212,2213,5,396,0,0,2213,2215,3,348,174, - 0,2214,2212,1,0,0,0,2215,2218,1,0,0,0,2216,2214,1,0,0,0,2216,2217, - 1,0,0,0,2217,223,1,0,0,0,2218,2216,1,0,0,0,2219,2224,3,282,141,0, - 2220,2221,5,396,0,0,2221,2223,3,282,141,0,2222,2220,1,0,0,0,2223, - 2226,1,0,0,0,2224,2222,1,0,0,0,2224,2225,1,0,0,0,2225,225,1,0,0, - 0,2226,2224,1,0,0,0,2227,2232,3,228,114,0,2228,2229,5,396,0,0,2229, - 2231,3,228,114,0,2230,2228,1,0,0,0,2231,2234,1,0,0,0,2232,2230,1, - 0,0,0,2232,2233,1,0,0,0,2233,227,1,0,0,0,2234,2232,1,0,0,0,2235, - 2236,3,230,115,0,2236,229,1,0,0,0,2237,2256,3,282,141,0,2238,2243, - 3,974,487,0,2239,2243,3,976,488,0,2240,2243,3,980,490,0,2241,2243, - 3,982,491,0,2242,2238,1,0,0,0,2242,2239,1,0,0,0,2242,2240,1,0,0, - 0,2242,2241,1,0,0,0,2243,2244,1,0,0,0,2244,2245,5,398,0,0,2245,2246, - 3,282,141,0,2246,2247,5,399,0,0,2247,2256,1,0,0,0,2248,2249,7,13, - 0,0,2249,2250,5,398,0,0,2250,2251,5,430,0,0,2251,2252,5,396,0,0, - 2252,2253,3,282,141,0,2253,2254,5,399,0,0,2254,2256,1,0,0,0,2255, - 2237,1,0,0,0,2255,2242,1,0,0,0,2255,2248,1,0,0,0,2256,231,1,0,0, - 0,2257,2258,5,42,0,0,2258,2259,5,32,0,0,2259,2260,5,398,0,0,2260, - 2261,3,280,140,0,2261,2268,5,399,0,0,2262,2263,5,314,0,0,2263,2264, - 5,32,0,0,2264,2265,5,398,0,0,2265,2266,3,288,144,0,2266,2267,5,399, - 0,0,2267,2269,1,0,0,0,2268,2262,1,0,0,0,2268,2269,1,0,0,0,2269,2270, - 1,0,0,0,2270,2271,5,166,0,0,2271,2272,5,430,0,0,2272,2273,5,31,0, - 0,2273,233,1,0,0,0,2274,2275,5,42,0,0,2275,2276,5,166,0,0,2276,2277, - 5,430,0,0,2277,2278,5,31,0,0,2278,235,1,0,0,0,2279,2280,5,309,0, - 0,2280,2281,5,32,0,0,2281,2282,5,398,0,0,2282,2283,3,280,140,0,2283, - 2284,5,399,0,0,2284,2285,5,223,0,0,2285,2286,5,398,0,0,2286,2287, - 3,316,158,0,2287,2289,5,399,0,0,2288,2290,3,52,26,0,2289,2288,1, - 0,0,0,2289,2290,1,0,0,0,2290,237,1,0,0,0,2291,2294,3,244,122,0,2292, - 2294,3,246,123,0,2293,2291,1,0,0,0,2293,2292,1,0,0,0,2294,239,1, - 0,0,0,2295,2296,5,265,0,0,2296,2297,5,425,0,0,2297,241,1,0,0,0,2298, - 2299,5,266,0,0,2299,2300,5,425,0,0,2300,243,1,0,0,0,2301,2302,5, - 290,0,0,2302,2303,5,137,0,0,2303,2304,5,300,0,0,2304,2308,5,425, - 0,0,2305,2306,5,386,0,0,2306,2307,5,301,0,0,2307,2309,3,252,126, - 0,2308,2305,1,0,0,0,2308,2309,1,0,0,0,2309,245,1,0,0,0,2310,2311, - 5,290,0,0,2311,2312,5,137,0,0,2312,2314,5,87,0,0,2313,2315,3,260, - 130,0,2314,2313,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0,0,2316, - 2318,3,262,131,0,2317,2316,1,0,0,0,2317,2318,1,0,0,0,2318,2320,1, - 0,0,0,2319,2321,3,264,132,0,2320,2319,1,0,0,0,2320,2321,1,0,0,0, - 2321,2323,1,0,0,0,2322,2324,3,266,133,0,2323,2322,1,0,0,0,2323,2324, - 1,0,0,0,2324,2326,1,0,0,0,2325,2327,3,268,134,0,2326,2325,1,0,0, - 0,2326,2327,1,0,0,0,2327,247,1,0,0,0,2328,2331,3,246,123,0,2329, - 2331,3,244,122,0,2330,2328,1,0,0,0,2330,2329,1,0,0,0,2331,249,1, - 0,0,0,2332,2333,5,331,0,0,2333,2334,3,252,126,0,2334,251,1,0,0,0, - 2335,2336,5,398,0,0,2336,2337,3,254,127,0,2337,2338,5,399,0,0,2338, - 253,1,0,0,0,2339,2344,3,256,128,0,2340,2341,5,396,0,0,2341,2343, - 3,256,128,0,2342,2340,1,0,0,0,2343,2346,1,0,0,0,2344,2342,1,0,0, - 0,2344,2345,1,0,0,0,2345,2356,1,0,0,0,2346,2344,1,0,0,0,2347,2352, - 3,258,129,0,2348,2349,5,396,0,0,2349,2351,3,258,129,0,2350,2348, - 1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0,0,2353, - 2356,1,0,0,0,2354,2352,1,0,0,0,2355,2339,1,0,0,0,2355,2347,1,0,0, - 0,2356,255,1,0,0,0,2357,2358,5,425,0,0,2358,2359,5,404,0,0,2359, - 2360,5,425,0,0,2360,257,1,0,0,0,2361,2362,5,425,0,0,2362,259,1,0, - 0,0,2363,2364,5,127,0,0,2364,2365,5,333,0,0,2365,2366,5,32,0,0,2366, - 2370,5,425,0,0,2367,2368,5,110,0,0,2368,2369,5,32,0,0,2369,2371, - 5,425,0,0,2370,2367,1,0,0,0,2370,2371,1,0,0,0,2371,261,1,0,0,0,2372, - 2373,5,44,0,0,2373,2374,5,169,0,0,2374,2375,5,333,0,0,2375,2376, - 5,32,0,0,2376,2377,5,425,0,0,2377,263,1,0,0,0,2378,2379,5,197,0, - 0,2379,2380,5,174,0,0,2380,2381,5,333,0,0,2381,2382,5,32,0,0,2382, - 2383,5,425,0,0,2383,265,1,0,0,0,2384,2385,5,185,0,0,2385,2386,5, - 333,0,0,2386,2387,5,32,0,0,2387,2388,5,425,0,0,2388,267,1,0,0,0, - 2389,2390,5,218,0,0,2390,2391,5,85,0,0,2391,2392,5,17,0,0,2392,2393, - 5,425,0,0,2393,269,1,0,0,0,2394,2395,5,320,0,0,2395,2396,5,17,0, - 0,2396,2397,5,160,0,0,2397,2398,5,425,0,0,2398,2399,5,232,0,0,2399, - 2404,5,425,0,0,2400,2401,5,159,0,0,2401,2402,5,425,0,0,2402,2403, - 5,231,0,0,2403,2405,5,425,0,0,2404,2400,1,0,0,0,2404,2405,1,0,0, - 0,2405,2436,1,0,0,0,2406,2407,5,320,0,0,2407,2408,5,32,0,0,2408, - 2412,5,425,0,0,2409,2410,5,386,0,0,2410,2411,5,301,0,0,2411,2413, - 3,252,126,0,2412,2409,1,0,0,0,2412,2413,1,0,0,0,2413,2417,1,0,0, - 0,2414,2415,5,320,0,0,2415,2416,5,17,0,0,2416,2418,3,924,462,0,2417, - 2414,1,0,0,0,2417,2418,1,0,0,0,2418,2436,1,0,0,0,2419,2420,5,320, - 0,0,2420,2421,5,32,0,0,2421,2425,3,924,462,0,2422,2423,5,386,0,0, - 2423,2424,5,301,0,0,2424,2426,3,252,126,0,2425,2422,1,0,0,0,2425, - 2426,1,0,0,0,2426,2430,1,0,0,0,2427,2428,5,320,0,0,2428,2429,5,17, - 0,0,2429,2431,3,924,462,0,2430,2427,1,0,0,0,2430,2431,1,0,0,0,2431, - 2436,1,0,0,0,2432,2433,5,320,0,0,2433,2434,5,17,0,0,2434,2436,3, - 924,462,0,2435,2394,1,0,0,0,2435,2406,1,0,0,0,2435,2419,1,0,0,0, - 2435,2432,1,0,0,0,2436,271,1,0,0,0,2437,2438,5,188,0,0,2438,2439, - 5,425,0,0,2439,273,1,0,0,0,2440,2445,3,342,171,0,2441,2442,5,396, - 0,0,2442,2444,3,342,171,0,2443,2441,1,0,0,0,2444,2447,1,0,0,0,2445, - 2443,1,0,0,0,2445,2446,1,0,0,0,2446,275,1,0,0,0,2447,2445,1,0,0, - 0,2448,2453,3,344,172,0,2449,2450,5,396,0,0,2450,2452,3,344,172, - 0,2451,2449,1,0,0,0,2452,2455,1,0,0,0,2453,2451,1,0,0,0,2453,2454, - 1,0,0,0,2454,277,1,0,0,0,2455,2453,1,0,0,0,2456,2461,3,372,186,0, - 2457,2458,5,396,0,0,2458,2460,3,372,186,0,2459,2457,1,0,0,0,2460, - 2463,1,0,0,0,2461,2459,1,0,0,0,2461,2462,1,0,0,0,2462,279,1,0,0, - 0,2463,2461,1,0,0,0,2464,2469,3,282,141,0,2465,2466,5,396,0,0,2466, - 2468,3,282,141,0,2467,2465,1,0,0,0,2468,2471,1,0,0,0,2469,2467,1, - 0,0,0,2469,2470,1,0,0,0,2470,281,1,0,0,0,2471,2469,1,0,0,0,2472, - 2477,3,924,462,0,2473,2474,5,394,0,0,2474,2476,3,924,462,0,2475, - 2473,1,0,0,0,2476,2479,1,0,0,0,2477,2475,1,0,0,0,2477,2478,1,0,0, - 0,2478,2482,1,0,0,0,2479,2477,1,0,0,0,2480,2482,4,141,0,0,2481,2472, - 1,0,0,0,2481,2480,1,0,0,0,2482,283,1,0,0,0,2483,2484,3,924,462,0, - 2484,285,1,0,0,0,2485,2495,3,282,141,0,2486,2491,5,394,0,0,2487, - 2492,5,104,0,0,2488,2492,5,175,0,0,2489,2492,5,374,0,0,2490,2492, - 3,924,462,0,2491,2487,1,0,0,0,2491,2488,1,0,0,0,2491,2489,1,0,0, - 0,2491,2490,1,0,0,0,2492,2494,1,0,0,0,2493,2486,1,0,0,0,2494,2497, - 1,0,0,0,2495,2493,1,0,0,0,2495,2496,1,0,0,0,2496,287,1,0,0,0,2497, - 2495,1,0,0,0,2498,2503,3,332,166,0,2499,2500,5,396,0,0,2500,2502, - 3,332,166,0,2501,2499,1,0,0,0,2502,2505,1,0,0,0,2503,2501,1,0,0, - 0,2503,2504,1,0,0,0,2504,289,1,0,0,0,2505,2503,1,0,0,0,2506,2507, - 5,398,0,0,2507,2508,3,280,140,0,2508,2509,5,399,0,0,2509,291,1,0, - 0,0,2510,2512,3,294,147,0,2511,2513,3,296,148,0,2512,2511,1,0,0, - 0,2512,2513,1,0,0,0,2513,2516,1,0,0,0,2514,2516,3,298,149,0,2515, - 2510,1,0,0,0,2515,2514,1,0,0,0,2516,293,1,0,0,0,2517,2520,3,968, - 484,0,2518,2520,3,970,485,0,2519,2517,1,0,0,0,2519,2518,1,0,0,0, - 2520,295,1,0,0,0,2521,2522,7,14,0,0,2522,297,1,0,0,0,2523,2527,5, - 109,0,0,2524,2525,5,215,0,0,2525,2527,5,109,0,0,2526,2523,1,0,0, - 0,2526,2524,1,0,0,0,2527,299,1,0,0,0,2528,2529,7,15,0,0,2529,301, - 1,0,0,0,2530,2531,5,55,0,0,2531,2533,3,924,462,0,2532,2530,1,0,0, - 0,2532,2533,1,0,0,0,2533,2534,1,0,0,0,2534,2536,3,306,153,0,2535, - 2537,3,368,184,0,2536,2535,1,0,0,0,2536,2537,1,0,0,0,2537,303,1, - 0,0,0,2538,2539,5,55,0,0,2539,2540,3,924,462,0,2540,2542,3,306,153, - 0,2541,2543,3,370,185,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543, - 305,1,0,0,0,2544,2547,3,308,154,0,2545,2547,3,310,155,0,2546,2544, - 1,0,0,0,2546,2545,1,0,0,0,2547,307,1,0,0,0,2548,2549,3,366,183,0, - 2549,2550,3,290,145,0,2550,309,1,0,0,0,2551,2552,5,40,0,0,2552,2553, - 5,398,0,0,2553,2554,3,826,413,0,2554,2555,5,399,0,0,2555,311,1,0, - 0,0,2556,2557,5,55,0,0,2557,2559,3,924,462,0,2558,2556,1,0,0,0,2558, - 2559,1,0,0,0,2559,2560,1,0,0,0,2560,2561,5,136,0,0,2561,2562,5,173, - 0,0,2562,2563,3,290,145,0,2563,2564,5,268,0,0,2564,2565,3,658,329, - 0,2565,2567,3,290,145,0,2566,2568,3,368,184,0,2567,2566,1,0,0,0, - 2567,2568,1,0,0,0,2568,313,1,0,0,0,2569,2570,5,55,0,0,2570,2571, - 3,924,462,0,2571,2572,5,136,0,0,2572,2573,5,173,0,0,2573,2574,3, - 290,145,0,2574,2575,5,268,0,0,2575,2576,3,658,329,0,2576,2578,3, - 290,145,0,2577,2579,3,370,185,0,2578,2577,1,0,0,0,2578,2579,1,0, - 0,0,2579,315,1,0,0,0,2580,2583,3,322,161,0,2581,2583,3,318,159,0, - 2582,2580,1,0,0,0,2582,2581,1,0,0,0,2583,317,1,0,0,0,2584,2589,3, - 320,160,0,2585,2586,5,396,0,0,2586,2588,3,320,160,0,2587,2585,1, - 0,0,0,2588,2591,1,0,0,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590, - 319,1,0,0,0,2591,2589,1,0,0,0,2592,2593,5,398,0,0,2593,2594,3,322, - 161,0,2594,2595,5,399,0,0,2595,321,1,0,0,0,2596,2601,3,324,162,0, - 2597,2598,5,396,0,0,2598,2600,3,324,162,0,2599,2597,1,0,0,0,2600, - 2603,1,0,0,0,2601,2599,1,0,0,0,2601,2602,1,0,0,0,2602,323,1,0,0, - 0,2603,2601,1,0,0,0,2604,2605,3,802,401,0,2605,325,1,0,0,0,2606, - 2609,3,324,162,0,2607,2609,3,320,160,0,2608,2606,1,0,0,0,2608,2607, - 1,0,0,0,2609,327,1,0,0,0,2610,2611,7,16,0,0,2611,329,1,0,0,0,2612, - 2613,5,219,0,0,2613,2614,7,17,0,0,2614,331,1,0,0,0,2615,2617,3,282, - 141,0,2616,2618,3,328,164,0,2617,2616,1,0,0,0,2617,2618,1,0,0,0, - 2618,2620,1,0,0,0,2619,2621,3,330,165,0,2620,2619,1,0,0,0,2620,2621, - 1,0,0,0,2621,333,1,0,0,0,2622,2627,3,336,168,0,2623,2624,5,396,0, - 0,2624,2626,3,336,168,0,2625,2623,1,0,0,0,2626,2629,1,0,0,0,2627, - 2625,1,0,0,0,2627,2628,1,0,0,0,2628,335,1,0,0,0,2629,2627,1,0,0, - 0,2630,2633,3,284,142,0,2631,2632,5,47,0,0,2632,2634,5,425,0,0,2633, - 2631,1,0,0,0,2633,2634,1,0,0,0,2634,337,1,0,0,0,2635,2636,7,16,0, - 0,2636,339,1,0,0,0,2637,2640,3,282,141,0,2638,2640,3,826,413,0,2639, - 2637,1,0,0,0,2639,2638,1,0,0,0,2640,2642,1,0,0,0,2641,2643,3,338, - 169,0,2642,2641,1,0,0,0,2642,2643,1,0,0,0,2643,2645,1,0,0,0,2644, - 2646,3,330,165,0,2645,2644,1,0,0,0,2645,2646,1,0,0,0,2646,341,1, - 0,0,0,2647,2648,3,284,142,0,2648,2651,3,374,187,0,2649,2650,5,47, - 0,0,2650,2652,5,425,0,0,2651,2649,1,0,0,0,2651,2652,1,0,0,0,2652, - 343,1,0,0,0,2653,2656,3,346,173,0,2654,2656,3,348,174,0,2655,2653, - 1,0,0,0,2655,2654,1,0,0,0,2656,345,1,0,0,0,2657,2660,3,312,156,0, - 2658,2660,3,302,151,0,2659,2657,1,0,0,0,2659,2658,1,0,0,0,2660,347, - 1,0,0,0,2661,2662,3,284,142,0,2662,2664,3,374,187,0,2663,2665,3, - 350,175,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665,2668,1,0,0,0, - 2666,2667,5,47,0,0,2667,2669,5,425,0,0,2668,2666,1,0,0,0,2668,2669, - 1,0,0,0,2669,349,1,0,0,0,2670,2673,3,352,176,0,2671,2673,3,354,177, - 0,2672,2670,1,0,0,0,2672,2671,1,0,0,0,2673,351,1,0,0,0,2674,2675, - 5,55,0,0,2675,2677,3,924,462,0,2676,2674,1,0,0,0,2676,2677,1,0,0, - 0,2677,2678,1,0,0,0,2678,2679,5,268,0,0,2679,2680,3,658,329,0,2680, - 2681,5,398,0,0,2681,2682,3,282,141,0,2682,2684,5,399,0,0,2683,2685, - 3,368,184,0,2684,2683,1,0,0,0,2684,2685,1,0,0,0,2685,353,1,0,0,0, - 2686,2687,5,55,0,0,2687,2689,3,924,462,0,2688,2686,1,0,0,0,2688, - 2689,1,0,0,0,2689,2690,1,0,0,0,2690,2692,3,362,181,0,2691,2693,3, - 368,184,0,2692,2691,1,0,0,0,2692,2693,1,0,0,0,2693,355,1,0,0,0,2694, - 2697,3,358,179,0,2695,2697,3,360,180,0,2696,2694,1,0,0,0,2696,2695, - 1,0,0,0,2697,357,1,0,0,0,2698,2699,5,55,0,0,2699,2701,3,924,462, - 0,2700,2698,1,0,0,0,2700,2701,1,0,0,0,2701,2702,1,0,0,0,2702,2703, - 5,268,0,0,2703,2704,3,658,329,0,2704,2705,5,398,0,0,2705,2706,3, - 282,141,0,2706,2708,5,399,0,0,2707,2709,3,370,185,0,2708,2707,1, - 0,0,0,2708,2709,1,0,0,0,2709,359,1,0,0,0,2710,2711,5,55,0,0,2711, - 2713,3,924,462,0,2712,2710,1,0,0,0,2712,2713,1,0,0,0,2713,2714,1, - 0,0,0,2714,2716,3,362,181,0,2715,2717,3,370,185,0,2716,2715,1,0, - 0,0,2716,2717,1,0,0,0,2717,361,1,0,0,0,2718,2719,5,215,0,0,2719, - 2725,5,218,0,0,2720,2721,5,83,0,0,2721,2725,3,364,182,0,2722,2725, - 3,310,155,0,2723,2725,3,366,183,0,2724,2718,1,0,0,0,2724,2720,1, - 0,0,0,2724,2722,1,0,0,0,2724,2723,1,0,0,0,2725,363,1,0,0,0,2726, - 2730,3,802,401,0,2727,2730,3,774,387,0,2728,2730,3,788,394,0,2729, - 2726,1,0,0,0,2729,2727,1,0,0,0,2729,2728,1,0,0,0,2730,365,1,0,0, - 0,2731,2732,5,250,0,0,2732,2735,5,173,0,0,2733,2735,5,357,0,0,2734, - 2731,1,0,0,0,2734,2733,1,0,0,0,2735,367,1,0,0,0,2736,2738,3,292, - 146,0,2737,2739,3,300,150,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0, - 2739,369,1,0,0,0,2740,2742,3,292,146,0,2741,2743,3,300,150,0,2742, - 2741,1,0,0,0,2742,2743,1,0,0,0,2743,371,1,0,0,0,2744,2745,3,284, - 142,0,2745,2746,5,395,0,0,2746,2749,3,374,187,0,2747,2748,5,47,0, - 0,2748,2750,5,425,0,0,2749,2747,1,0,0,0,2749,2750,1,0,0,0,2750,373, - 1,0,0,0,2751,2752,3,378,189,0,2752,375,1,0,0,0,2753,2758,3,374,187, - 0,2754,2755,5,396,0,0,2755,2757,3,374,187,0,2756,2754,1,0,0,0,2757, - 2760,1,0,0,0,2758,2756,1,0,0,0,2758,2759,1,0,0,0,2759,377,1,0,0, - 0,2760,2758,1,0,0,0,2761,2767,3,380,190,0,2762,2767,3,382,191,0, - 2763,2767,3,384,192,0,2764,2767,3,386,193,0,2765,2767,3,388,194, - 0,2766,2761,1,0,0,0,2766,2762,1,0,0,0,2766,2763,1,0,0,0,2766,2764, - 1,0,0,0,2766,2765,1,0,0,0,2767,379,1,0,0,0,2768,2806,5,339,0,0,2769, - 2806,5,310,0,0,2770,2806,5,162,0,0,2771,2806,5,163,0,0,2772,2806, - 5,26,0,0,2773,2806,5,28,0,0,2774,2806,5,131,0,0,2775,2806,5,263, - 0,0,2776,2778,5,100,0,0,2777,2779,5,247,0,0,2778,2777,1,0,0,0,2778, - 2779,1,0,0,0,2779,2806,1,0,0,0,2780,2806,5,71,0,0,2781,2806,5,72, - 0,0,2782,2806,5,336,0,0,2783,2806,5,337,0,0,2784,2785,5,336,0,0, - 2785,2786,5,386,0,0,2786,2787,5,187,0,0,2787,2788,5,335,0,0,2788, - 2806,5,393,0,0,2789,2806,5,322,0,0,2790,2806,5,27,0,0,2791,2799, - 3,988,494,0,2792,2793,5,398,0,0,2793,2796,5,430,0,0,2794,2795,5, - 396,0,0,2795,2797,5,430,0,0,2796,2794,1,0,0,0,2796,2797,1,0,0,0, - 2797,2798,1,0,0,0,2798,2800,5,399,0,0,2799,2792,1,0,0,0,2799,2800, - 1,0,0,0,2800,2806,1,0,0,0,2801,2802,7,18,0,0,2802,2803,5,398,0,0, - 2803,2804,5,430,0,0,2804,2806,5,399,0,0,2805,2768,1,0,0,0,2805,2769, - 1,0,0,0,2805,2770,1,0,0,0,2805,2771,1,0,0,0,2805,2772,1,0,0,0,2805, - 2773,1,0,0,0,2805,2774,1,0,0,0,2805,2775,1,0,0,0,2805,2776,1,0,0, - 0,2805,2780,1,0,0,0,2805,2781,1,0,0,0,2805,2782,1,0,0,0,2805,2783, - 1,0,0,0,2805,2784,1,0,0,0,2805,2789,1,0,0,0,2805,2790,1,0,0,0,2805, - 2791,1,0,0,0,2805,2801,1,0,0,0,2806,381,1,0,0,0,2807,2808,5,16,0, - 0,2808,2809,5,408,0,0,2809,2810,3,378,189,0,2810,2811,5,410,0,0, - 2811,383,1,0,0,0,2812,2813,5,323,0,0,2813,2814,5,408,0,0,2814,2815, - 3,278,139,0,2815,2816,5,410,0,0,2816,385,1,0,0,0,2817,2818,5,197, - 0,0,2818,2819,5,408,0,0,2819,2820,3,380,190,0,2820,2821,5,396,0, - 0,2821,2822,3,378,189,0,2822,2823,5,410,0,0,2823,387,1,0,0,0,2824, - 2825,5,356,0,0,2825,2826,5,408,0,0,2826,2827,3,376,188,0,2827,2828, - 5,410,0,0,2828,389,1,0,0,0,2829,2831,7,19,0,0,2830,2832,7,20,0,0, - 2831,2830,1,0,0,0,2831,2832,1,0,0,0,2832,391,1,0,0,0,2833,2835,3, - 396,198,0,2834,2833,1,0,0,0,2834,2835,1,0,0,0,2835,2836,1,0,0,0, - 2836,2837,3,394,197,0,2837,393,1,0,0,0,2838,2841,3,400,200,0,2839, - 2841,3,404,202,0,2840,2838,1,0,0,0,2840,2839,1,0,0,0,2841,395,1, - 0,0,0,2842,2843,5,386,0,0,2843,2848,3,398,199,0,2844,2845,5,396, - 0,0,2845,2847,3,398,199,0,2846,2844,1,0,0,0,2847,2850,1,0,0,0,2848, - 2846,1,0,0,0,2848,2849,1,0,0,0,2849,397,1,0,0,0,2850,2848,1,0,0, - 0,2851,2856,3,924,462,0,2852,2853,5,398,0,0,2853,2854,3,280,140, - 0,2854,2855,5,399,0,0,2855,2857,1,0,0,0,2856,2852,1,0,0,0,2856,2857, - 1,0,0,0,2857,2858,1,0,0,0,2858,2859,5,17,0,0,2859,2860,5,398,0,0, - 2860,2861,3,392,196,0,2861,2862,5,399,0,0,2862,399,1,0,0,0,2863, - 2869,3,402,201,0,2864,2865,3,390,195,0,2865,2866,3,402,201,0,2866, - 2868,1,0,0,0,2867,2864,1,0,0,0,2868,2871,1,0,0,0,2869,2867,1,0,0, - 0,2869,2870,1,0,0,0,2870,401,1,0,0,0,2871,2869,1,0,0,0,2872,2873, - 3,618,309,0,2873,2874,3,414,207,0,2874,2876,3,690,345,0,2875,2877, - 3,636,318,0,2876,2875,1,0,0,0,2876,2877,1,0,0,0,2877,2879,1,0,0, - 0,2878,2880,3,674,337,0,2879,2878,1,0,0,0,2879,2880,1,0,0,0,2880, - 2882,1,0,0,0,2881,2883,3,722,361,0,2882,2881,1,0,0,0,2882,2883,1, - 0,0,0,2883,2885,1,0,0,0,2884,2886,3,738,369,0,2885,2884,1,0,0,0, - 2885,2886,1,0,0,0,2886,2888,1,0,0,0,2887,2889,3,706,353,0,2888,2887, - 1,0,0,0,2888,2889,1,0,0,0,2889,2891,1,0,0,0,2890,2892,3,740,370, - 0,2891,2890,1,0,0,0,2891,2892,1,0,0,0,2892,2894,1,0,0,0,2893,2895, - 3,762,381,0,2894,2893,1,0,0,0,2894,2895,1,0,0,0,2895,2897,1,0,0, - 0,2896,2898,3,764,382,0,2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898, - 2900,1,0,0,0,2899,2901,3,768,384,0,2900,2899,1,0,0,0,2900,2901,1, - 0,0,0,2901,2903,1,0,0,0,2902,2904,3,770,385,0,2903,2902,1,0,0,0, - 2903,2904,1,0,0,0,2904,2906,1,0,0,0,2905,2907,3,418,209,0,2906,2905, - 1,0,0,0,2906,2907,1,0,0,0,2907,2944,1,0,0,0,2908,2909,3,618,309, - 0,2909,2911,3,690,345,0,2910,2912,3,636,318,0,2911,2910,1,0,0,0, - 2911,2912,1,0,0,0,2912,2914,1,0,0,0,2913,2915,3,674,337,0,2914,2913, - 1,0,0,0,2914,2915,1,0,0,0,2915,2917,1,0,0,0,2916,2918,3,722,361, - 0,2917,2916,1,0,0,0,2917,2918,1,0,0,0,2918,2920,1,0,0,0,2919,2921, - 3,738,369,0,2920,2919,1,0,0,0,2920,2921,1,0,0,0,2921,2923,1,0,0, - 0,2922,2924,3,706,353,0,2923,2922,1,0,0,0,2923,2924,1,0,0,0,2924, - 2926,1,0,0,0,2925,2927,3,740,370,0,2926,2925,1,0,0,0,2926,2927,1, - 0,0,0,2927,2929,1,0,0,0,2928,2930,3,762,381,0,2929,2928,1,0,0,0, - 2929,2930,1,0,0,0,2930,2932,1,0,0,0,2931,2933,3,764,382,0,2932,2931, - 1,0,0,0,2932,2933,1,0,0,0,2933,2935,1,0,0,0,2934,2936,3,768,384, - 0,2935,2934,1,0,0,0,2935,2936,1,0,0,0,2936,2938,1,0,0,0,2937,2939, - 3,770,385,0,2938,2937,1,0,0,0,2938,2939,1,0,0,0,2939,2941,1,0,0, - 0,2940,2942,3,418,209,0,2941,2940,1,0,0,0,2941,2942,1,0,0,0,2942, - 2944,1,0,0,0,2943,2872,1,0,0,0,2943,2908,1,0,0,0,2944,403,1,0,0, - 0,2945,2946,3,414,207,0,2946,2947,3,408,204,0,2947,2950,1,0,0,0, - 2948,2950,3,408,204,0,2949,2945,1,0,0,0,2949,2948,1,0,0,0,2950,405, - 1,0,0,0,2951,2953,3,690,345,0,2952,2954,3,618,309,0,2953,2952,1, - 0,0,0,2953,2954,1,0,0,0,2954,2956,1,0,0,0,2955,2957,3,674,337,0, - 2956,2955,1,0,0,0,2956,2957,1,0,0,0,2957,2959,1,0,0,0,2958,2960, - 3,722,361,0,2959,2958,1,0,0,0,2959,2960,1,0,0,0,2960,2962,1,0,0, - 0,2961,2963,3,738,369,0,2962,2961,1,0,0,0,2962,2963,1,0,0,0,2963, - 2965,1,0,0,0,2964,2966,3,706,353,0,2965,2964,1,0,0,0,2965,2966,1, - 0,0,0,2966,2968,1,0,0,0,2967,2969,3,740,370,0,2968,2967,1,0,0,0, - 2968,2969,1,0,0,0,2969,2976,1,0,0,0,2970,2971,5,398,0,0,2971,2972, - 3,408,204,0,2972,2973,5,399,0,0,2973,2976,1,0,0,0,2974,2976,3,678, - 339,0,2975,2951,1,0,0,0,2975,2970,1,0,0,0,2975,2974,1,0,0,0,2976, - 407,1,0,0,0,2977,2979,3,406,203,0,2978,2980,3,410,205,0,2979,2978, - 1,0,0,0,2979,2980,1,0,0,0,2980,2982,1,0,0,0,2981,2983,3,762,381, - 0,2982,2981,1,0,0,0,2982,2983,1,0,0,0,2983,2985,1,0,0,0,2984,2986, - 3,764,382,0,2985,2984,1,0,0,0,2985,2986,1,0,0,0,2986,2988,1,0,0, - 0,2987,2989,3,768,384,0,2988,2987,1,0,0,0,2988,2989,1,0,0,0,2989, - 2991,1,0,0,0,2990,2992,3,770,385,0,2991,2990,1,0,0,0,2991,2992,1, - 0,0,0,2992,2994,1,0,0,0,2993,2995,3,418,209,0,2994,2993,1,0,0,0, - 2994,2995,1,0,0,0,2995,409,1,0,0,0,2996,2997,3,390,195,0,2997,2998, - 3,406,203,0,2998,3000,1,0,0,0,2999,2996,1,0,0,0,3000,3001,1,0,0, - 0,3001,2999,1,0,0,0,3001,3002,1,0,0,0,3002,411,1,0,0,0,3003,3005, - 3,396,198,0,3004,3003,1,0,0,0,3004,3005,1,0,0,0,3005,3006,1,0,0, - 0,3006,3007,3,408,204,0,3007,413,1,0,0,0,3008,3025,5,161,0,0,3009, - 3010,5,234,0,0,3010,3012,3,416,208,0,3011,3013,3,44,22,0,3012,3011, - 1,0,0,0,3012,3013,1,0,0,0,3013,3026,1,0,0,0,3014,3016,5,166,0,0, - 3015,3017,5,328,0,0,3016,3015,1,0,0,0,3016,3017,1,0,0,0,3017,3018, - 1,0,0,0,3018,3023,3,908,454,0,3019,3020,5,398,0,0,3020,3021,3,280, - 140,0,3021,3022,5,399,0,0,3022,3024,1,0,0,0,3023,3019,1,0,0,0,3023, - 3024,1,0,0,0,3024,3026,1,0,0,0,3025,3009,1,0,0,0,3025,3014,1,0,0, - 0,3026,415,1,0,0,0,3027,3029,5,187,0,0,3028,3027,1,0,0,0,3028,3029, - 1,0,0,0,3029,3030,1,0,0,0,3030,3031,5,93,0,0,3031,3033,5,425,0,0, - 3032,3034,3,248,124,0,3033,3032,1,0,0,0,3033,3034,1,0,0,0,3034,3036, - 1,0,0,0,3035,3037,3,270,135,0,3036,3035,1,0,0,0,3036,3037,1,0,0, - 0,3037,3041,1,0,0,0,3038,3039,5,328,0,0,3039,3041,3,908,454,0,3040, - 3028,1,0,0,0,3040,3038,1,0,0,0,3041,417,1,0,0,0,3042,3051,5,184, - 0,0,3043,3044,5,430,0,0,3044,3046,5,396,0,0,3045,3043,1,0,0,0,3045, - 3046,1,0,0,0,3046,3047,1,0,0,0,3047,3052,5,430,0,0,3048,3049,5,430, - 0,0,3049,3050,5,222,0,0,3050,3052,5,430,0,0,3051,3045,1,0,0,0,3051, - 3048,1,0,0,0,3052,419,1,0,0,0,3053,3054,5,86,0,0,3054,3055,5,139, - 0,0,3055,3057,3,658,329,0,3056,3058,3,674,337,0,3057,3056,1,0,0, - 0,3057,3058,1,0,0,0,3058,421,1,0,0,0,3059,3060,3,282,141,0,3060, - 3061,5,404,0,0,3061,3062,3,424,212,0,3062,423,1,0,0,0,3063,3066, - 3,612,306,0,3064,3066,3,846,423,0,3065,3063,1,0,0,0,3065,3064,1, - 0,0,0,3066,425,1,0,0,0,3067,3068,5,303,0,0,3068,3073,3,422,211,0, - 3069,3070,5,396,0,0,3070,3072,3,422,211,0,3071,3069,1,0,0,0,3072, - 3075,1,0,0,0,3073,3071,1,0,0,0,3073,3074,1,0,0,0,3074,427,1,0,0, - 0,3075,3073,1,0,0,0,3076,3077,5,364,0,0,3077,3078,3,658,329,0,3078, - 3080,3,426,213,0,3079,3081,3,674,337,0,3080,3079,1,0,0,0,3080,3081, - 1,0,0,0,3081,429,1,0,0,0,3082,3087,3,432,216,0,3083,3087,3,442,221, - 0,3084,3087,3,444,222,0,3085,3087,3,446,223,0,3086,3082,1,0,0,0, - 3086,3083,1,0,0,0,3086,3084,1,0,0,0,3086,3085,1,0,0,0,3087,431,1, - 0,0,0,3088,3089,5,317,0,0,3089,3098,5,343,0,0,3090,3095,3,434,217, - 0,3091,3092,5,396,0,0,3092,3094,3,434,217,0,3093,3091,1,0,0,0,3094, - 3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096,1,0,0,0,3096,3099,1,0,0, - 0,3097,3095,1,0,0,0,3098,3090,1,0,0,0,3098,3099,1,0,0,0,3099,433, - 1,0,0,0,3100,3103,3,438,219,0,3101,3103,3,436,218,0,3102,3100,1, - 0,0,0,3102,3101,1,0,0,0,3103,435,1,0,0,0,3104,3105,5,260,0,0,3105, - 3106,7,21,0,0,3106,437,1,0,0,0,3107,3108,5,168,0,0,3108,3109,5,182, - 0,0,3109,3110,3,440,220,0,3110,439,1,0,0,0,3111,3112,5,311,0,0,3112, - 441,1,0,0,0,3113,3115,5,48,0,0,3114,3116,5,388,0,0,3115,3114,1,0, - 0,0,3115,3116,1,0,0,0,3116,443,1,0,0,0,3117,3119,5,288,0,0,3118, - 3120,5,388,0,0,3119,3118,1,0,0,0,3119,3120,1,0,0,0,3120,445,1,0, - 0,0,3121,3122,5,303,0,0,3122,3123,5,22,0,0,3123,3124,3,906,453,0, - 3124,447,1,0,0,0,3125,3126,5,1,0,0,3126,3128,5,345,0,0,3127,3129, - 5,430,0,0,3128,3127,1,0,0,0,3129,3130,1,0,0,0,3130,3128,1,0,0,0, - 3130,3131,1,0,0,0,3131,449,1,0,0,0,3132,3133,5,1,0,0,3133,3135,5, - 50,0,0,3134,3136,5,430,0,0,3135,3134,1,0,0,0,3136,3137,1,0,0,0,3137, - 3135,1,0,0,0,3137,3138,1,0,0,0,3138,451,1,0,0,0,3139,3141,5,202, - 0,0,3140,3142,5,435,0,0,3141,3140,1,0,0,0,3141,3142,1,0,0,0,3142, - 3143,1,0,0,0,3143,3144,5,166,0,0,3144,3149,3,658,329,0,3145,3147, - 5,17,0,0,3146,3145,1,0,0,0,3146,3147,1,0,0,0,3147,3148,1,0,0,0,3148, - 3150,3,924,462,0,3149,3146,1,0,0,0,3149,3150,1,0,0,0,3150,3151,1, - 0,0,0,3151,3152,5,369,0,0,3152,3153,3,626,313,0,3153,3154,5,223, - 0,0,3154,3155,3,826,413,0,3155,3156,3,454,227,0,3156,453,1,0,0,0, - 3157,3160,3,458,229,0,3158,3160,3,460,230,0,3159,3157,1,0,0,0,3159, - 3158,1,0,0,0,3160,3163,1,0,0,0,3161,3159,1,0,0,0,3161,3162,1,0,0, - 0,3162,3165,1,0,0,0,3163,3161,1,0,0,0,3164,3166,3,456,228,0,3165, - 3164,1,0,0,0,3165,3166,1,0,0,0,3166,455,1,0,0,0,3167,3168,5,382, - 0,0,3168,3169,5,215,0,0,3169,3172,5,200,0,0,3170,3171,5,11,0,0,3171, - 3173,3,826,413,0,3172,3170,1,0,0,0,3172,3173,1,0,0,0,3173,3174,1, - 0,0,0,3174,3175,5,334,0,0,3175,3177,5,161,0,0,3176,3178,3,290,145, - 0,3177,3176,1,0,0,0,3177,3178,1,0,0,0,3178,3179,1,0,0,0,3179,3180, - 5,373,0,0,3180,3181,3,684,342,0,3181,457,1,0,0,0,3182,3183,5,382, - 0,0,3183,3184,5,200,0,0,3184,3185,5,11,0,0,3185,3186,3,826,413,0, - 3186,3187,5,334,0,0,3187,3188,3,462,231,0,3188,459,1,0,0,0,3189, - 3190,5,382,0,0,3190,3191,5,200,0,0,3191,3192,5,334,0,0,3192,3193, - 3,462,231,0,3193,461,1,0,0,0,3194,3195,5,364,0,0,3195,3198,3,426, - 213,0,3196,3198,5,86,0,0,3197,3194,1,0,0,0,3197,3196,1,0,0,0,3198, - 463,1,0,0,0,3199,3200,5,176,0,0,3200,3202,5,257,0,0,3201,3203,5, - 425,0,0,3202,3201,1,0,0,0,3203,3204,1,0,0,0,3204,3202,1,0,0,0,3204, - 3205,1,0,0,0,3205,465,1,0,0,0,3206,3207,5,51,0,0,3207,3208,5,404, - 0,0,3208,3209,5,430,0,0,3209,467,1,0,0,0,3210,3211,5,245,0,0,3211, - 3212,5,425,0,0,3212,469,1,0,0,0,3213,3214,5,351,0,0,3214,3215,5, - 425,0,0,3215,471,1,0,0,0,3216,3217,5,319,0,0,3217,3218,5,425,0,0, - 3218,473,1,0,0,0,3219,3243,5,9,0,0,3220,3221,5,328,0,0,3221,3222, - 3,658,329,0,3222,3223,3,476,238,0,3223,3244,1,0,0,0,3224,3225,5, - 377,0,0,3225,3227,3,662,331,0,3226,3228,5,17,0,0,3227,3226,1,0,0, - 0,3227,3228,1,0,0,0,3228,3229,1,0,0,0,3229,3230,3,482,241,0,3230, - 3244,1,0,0,0,3231,3232,5,201,0,0,3232,3233,5,377,0,0,3233,3234,3, - 662,331,0,3234,3235,3,484,242,0,3235,3244,1,0,0,0,3236,3237,3,92, - 46,0,3237,3238,3,490,245,0,3238,3244,1,0,0,0,3239,3240,5,69,0,0, - 3240,3244,3,586,293,0,3241,3242,5,155,0,0,3242,3244,3,582,291,0, - 3243,3220,1,0,0,0,3243,3224,1,0,0,0,3243,3231,1,0,0,0,3243,3236, - 1,0,0,0,3243,3239,1,0,0,0,3243,3241,1,0,0,0,3244,475,1,0,0,0,3245, - 3267,3,500,250,0,3246,3267,3,532,266,0,3247,3267,3,534,267,0,3248, - 3267,3,520,260,0,3249,3267,3,524,262,0,3250,3267,3,526,263,0,3251, - 3267,3,528,264,0,3252,3267,3,536,268,0,3253,3267,3,558,279,0,3254, - 3267,3,560,280,0,3255,3267,3,480,240,0,3256,3267,3,510,255,0,3257, - 3267,3,504,252,0,3258,3267,3,478,239,0,3259,3261,3,910,455,0,3260, - 3259,1,0,0,0,3260,3261,1,0,0,0,3261,3262,1,0,0,0,3262,3267,3,478, - 239,0,3263,3267,3,576,288,0,3264,3267,3,578,289,0,3265,3267,3,580, - 290,0,3266,3245,1,0,0,0,3266,3246,1,0,0,0,3266,3247,1,0,0,0,3266, - 3248,1,0,0,0,3266,3249,1,0,0,0,3266,3250,1,0,0,0,3266,3251,1,0,0, - 0,3266,3252,1,0,0,0,3266,3253,1,0,0,0,3266,3254,1,0,0,0,3266,3255, - 1,0,0,0,3266,3256,1,0,0,0,3266,3257,1,0,0,0,3266,3258,1,0,0,0,3266, - 3260,1,0,0,0,3266,3263,1,0,0,0,3266,3264,1,0,0,0,3266,3265,1,0,0, - 0,3267,477,1,0,0,0,3268,3284,3,544,272,0,3269,3284,3,556,278,0,3270, - 3284,3,566,283,0,3271,3284,3,540,270,0,3272,3284,3,562,281,0,3273, - 3284,3,568,284,0,3274,3284,3,548,274,0,3275,3284,3,546,273,0,3276, - 3284,3,574,287,0,3277,3284,3,514,257,0,3278,3284,3,516,258,0,3279, - 3284,3,512,256,0,3280,3284,3,502,251,0,3281,3284,3,506,253,0,3282, - 3284,3,508,254,0,3283,3268,1,0,0,0,3283,3269,1,0,0,0,3283,3270,1, - 0,0,0,3283,3271,1,0,0,0,3283,3272,1,0,0,0,3283,3273,1,0,0,0,3283, - 3274,1,0,0,0,3283,3275,1,0,0,0,3283,3276,1,0,0,0,3283,3277,1,0,0, - 0,3283,3278,1,0,0,0,3283,3279,1,0,0,0,3283,3280,1,0,0,0,3283,3281, - 1,0,0,0,3283,3282,1,0,0,0,3284,479,1,0,0,0,3285,3286,5,236,0,0,3286, - 3287,5,45,0,0,3287,3288,5,398,0,0,3288,3289,3,342,171,0,3289,3290, - 5,399,0,0,3290,481,1,0,0,0,3291,3297,3,538,269,0,3292,3297,3,500, - 250,0,3293,3297,3,520,260,0,3294,3297,3,534,267,0,3295,3297,3,412, - 206,0,3296,3291,1,0,0,0,3296,3292,1,0,0,0,3296,3293,1,0,0,0,3296, - 3294,1,0,0,0,3296,3295,1,0,0,0,3297,483,1,0,0,0,3298,3301,3,486, - 243,0,3299,3301,3,488,244,0,3300,3298,1,0,0,0,3300,3299,1,0,0,0, - 3301,485,1,0,0,0,3302,3305,3,48,24,0,3303,3305,3,50,25,0,3304,3302, - 1,0,0,0,3304,3303,1,0,0,0,3305,487,1,0,0,0,3306,3307,5,264,0,0,3307, - 489,1,0,0,0,3308,3312,3,492,246,0,3309,3312,3,494,247,0,3310,3312, - 3,496,248,0,3311,3308,1,0,0,0,3311,3309,1,0,0,0,3311,3310,1,0,0, - 0,3312,491,1,0,0,0,3313,3314,3,652,326,0,3314,3315,5,303,0,0,3315, - 3316,5,76,0,0,3316,3317,3,62,31,0,3317,493,1,0,0,0,3318,3319,3,652, - 326,0,3319,3320,5,303,0,0,3320,3321,5,235,0,0,3321,3322,3,150,75, - 0,3322,495,1,0,0,0,3323,3324,3,652,326,0,3324,3325,5,303,0,0,3325, - 3326,7,22,0,0,3326,3327,5,425,0,0,3327,497,1,0,0,0,3328,3329,3,652, - 326,0,3329,3330,5,303,0,0,3330,3331,5,195,0,0,3331,3332,5,425,0, - 0,3332,499,1,0,0,0,3333,3334,5,273,0,0,3334,3335,5,340,0,0,3335, - 3336,3,660,330,0,3336,501,1,0,0,0,3337,3340,5,4,0,0,3338,3340,5, - 277,0,0,3339,3337,1,0,0,0,3339,3338,1,0,0,0,3340,3341,1,0,0,0,3341, - 3342,5,46,0,0,3342,3343,5,398,0,0,3343,3344,3,274,137,0,3344,3346, - 5,399,0,0,3345,3347,3,42,21,0,3346,3345,1,0,0,0,3346,3347,1,0,0, - 0,3347,503,1,0,0,0,3348,3351,5,4,0,0,3349,3352,3,314,157,0,3350, - 3352,3,304,152,0,3351,3349,1,0,0,0,3351,3350,1,0,0,0,3352,505,1, - 0,0,0,3353,3354,5,364,0,0,3354,3356,5,46,0,0,3355,3357,3,42,21,0, - 3356,3355,1,0,0,0,3356,3357,1,0,0,0,3357,507,1,0,0,0,3358,3359,3, - 294,147,0,3359,3361,5,217,0,0,3360,3362,5,34,0,0,3361,3360,1,0,0, - 0,3361,3362,1,0,0,0,3362,3367,1,0,0,0,3363,3364,3,294,147,0,3364, - 3365,5,221,0,0,3365,3367,1,0,0,0,3366,3358,1,0,0,0,3366,3363,1,0, - 0,0,3367,509,1,0,0,0,3368,3369,5,101,0,0,3369,3370,5,55,0,0,3370, - 3371,3,924,462,0,3371,511,1,0,0,0,3372,3374,5,38,0,0,3373,3375,5, - 45,0,0,3374,3373,1,0,0,0,3374,3375,1,0,0,0,3375,3376,1,0,0,0,3376, - 3377,3,282,141,0,3377,3378,3,284,142,0,3378,3380,3,374,187,0,3379, - 3381,3,356,178,0,3380,3379,1,0,0,0,3380,3381,1,0,0,0,3381,3384,1, - 0,0,0,3382,3383,5,47,0,0,3383,3385,5,425,0,0,3384,3382,1,0,0,0,3384, - 3385,1,0,0,0,3385,3387,1,0,0,0,3386,3388,3,518,259,0,3387,3386,1, - 0,0,0,3387,3388,1,0,0,0,3388,3390,1,0,0,0,3389,3391,3,42,21,0,3390, - 3389,1,0,0,0,3390,3391,1,0,0,0,3391,513,1,0,0,0,3392,3393,5,364, - 0,0,3393,3394,5,318,0,0,3394,3396,5,134,0,0,3395,3397,5,45,0,0,3396, - 3395,1,0,0,0,3396,3397,1,0,0,0,3397,3398,1,0,0,0,3398,3399,3,282, - 141,0,3399,3400,5,303,0,0,3400,3403,3,252,126,0,3401,3402,5,47,0, - 0,3402,3404,5,425,0,0,3403,3401,1,0,0,0,3403,3404,1,0,0,0,3404,515, - 1,0,0,0,3405,3406,5,364,0,0,3406,3407,5,318,0,0,3407,3408,5,303, - 0,0,3408,3409,3,252,126,0,3409,517,1,0,0,0,3410,3414,5,130,0,0,3411, - 3412,5,6,0,0,3412,3414,3,924,462,0,3413,3410,1,0,0,0,3413,3411,1, - 0,0,0,3414,519,1,0,0,0,3415,3417,5,4,0,0,3416,3418,3,44,22,0,3417, - 3416,1,0,0,0,3417,3418,1,0,0,0,3418,3420,1,0,0,0,3419,3421,3,522, - 261,0,3420,3419,1,0,0,0,3421,3422,1,0,0,0,3422,3420,1,0,0,0,3422, - 3423,1,0,0,0,3423,521,1,0,0,0,3424,3426,3,910,455,0,3425,3427,3, - 530,265,0,3426,3425,1,0,0,0,3426,3427,1,0,0,0,3427,523,1,0,0,0,3428, - 3432,5,341,0,0,3429,3431,3,910,455,0,3430,3429,1,0,0,0,3431,3434, - 1,0,0,0,3432,3430,1,0,0,0,3432,3433,1,0,0,0,3433,525,1,0,0,0,3434, - 3432,1,0,0,0,3435,3439,5,15,0,0,3436,3438,3,910,455,0,3437,3436, - 1,0,0,0,3438,3441,1,0,0,0,3439,3437,1,0,0,0,3439,3440,1,0,0,0,3440, - 527,1,0,0,0,3441,3439,1,0,0,0,3442,3446,5,352,0,0,3443,3445,3,910, - 455,0,3444,3443,1,0,0,0,3445,3448,1,0,0,0,3446,3444,1,0,0,0,3446, - 3447,1,0,0,0,3447,529,1,0,0,0,3448,3446,1,0,0,0,3449,3450,5,188, - 0,0,3450,3451,5,425,0,0,3451,531,1,0,0,0,3452,3453,5,102,0,0,3453, - 3454,5,238,0,0,3454,533,1,0,0,0,3455,3457,5,101,0,0,3456,3458,3, - 40,20,0,3457,3456,1,0,0,0,3457,3458,1,0,0,0,3458,3459,1,0,0,0,3459, - 3460,5,236,0,0,3460,3466,3,914,457,0,3461,3462,5,396,0,0,3462,3463, - 5,236,0,0,3463,3465,3,914,457,0,3464,3461,1,0,0,0,3465,3468,1,0, - 0,0,3466,3464,1,0,0,0,3466,3467,1,0,0,0,3467,3470,1,0,0,0,3468,3466, - 1,0,0,0,3469,3471,3,16,8,0,3470,3469,1,0,0,0,3470,3471,1,0,0,0,3471, - 3473,1,0,0,0,3472,3474,5,254,0,0,3473,3472,1,0,0,0,3473,3474,1,0, - 0,0,3474,3476,1,0,0,0,3475,3477,3,18,9,0,3476,3475,1,0,0,0,3476, - 3477,1,0,0,0,3477,535,1,0,0,0,3478,3479,5,303,0,0,3479,3480,5,331, - 0,0,3480,3488,3,252,126,0,3481,3482,5,362,0,0,3482,3484,5,331,0, - 0,3483,3485,3,40,20,0,3484,3483,1,0,0,0,3484,3485,1,0,0,0,3485,3486, - 1,0,0,0,3486,3488,3,252,126,0,3487,3478,1,0,0,0,3487,3481,1,0,0, - 0,3488,537,1,0,0,0,3489,3490,5,303,0,0,3490,3491,5,331,0,0,3491, - 3499,3,252,126,0,3492,3493,5,362,0,0,3493,3495,5,331,0,0,3494,3496, - 3,40,20,0,3495,3494,1,0,0,0,3495,3496,1,0,0,0,3496,3497,1,0,0,0, - 3497,3499,3,252,126,0,3498,3489,1,0,0,0,3498,3492,1,0,0,0,3499,539, - 1,0,0,0,3500,3510,5,303,0,0,3501,3502,5,300,0,0,3502,3506,5,425, - 0,0,3503,3504,5,386,0,0,3504,3505,5,301,0,0,3505,3507,3,252,126, - 0,3506,3503,1,0,0,0,3506,3507,1,0,0,0,3507,3511,1,0,0,0,3508,3509, - 5,301,0,0,3509,3511,3,252,126,0,3510,3501,1,0,0,0,3510,3508,1,0, - 0,0,3511,3516,1,0,0,0,3512,3513,5,362,0,0,3513,3514,5,301,0,0,3514, - 3516,3,252,126,0,3515,3500,1,0,0,0,3515,3512,1,0,0,0,3516,541,1, - 0,0,0,3517,3519,3,658,329,0,3518,3520,3,910,455,0,3519,3518,1,0, - 0,0,3519,3520,1,0,0,0,3520,543,1,0,0,0,3521,3522,5,303,0,0,3522, - 3523,5,129,0,0,3523,3524,3,584,292,0,3524,545,1,0,0,0,3525,3526, - 5,215,0,0,3526,3529,7,23,0,0,3527,3529,3,232,116,0,3528,3525,1,0, - 0,0,3528,3527,1,0,0,0,3529,547,1,0,0,0,3530,3531,5,303,0,0,3531, - 3532,5,309,0,0,3532,3533,5,188,0,0,3533,3534,3,550,275,0,3534,549, - 1,0,0,0,3535,3536,5,398,0,0,3536,3537,3,552,276,0,3537,3538,5,399, - 0,0,3538,551,1,0,0,0,3539,3544,3,554,277,0,3540,3541,5,396,0,0,3541, - 3543,3,554,277,0,3542,3540,1,0,0,0,3543,3546,1,0,0,0,3544,3542,1, - 0,0,0,3544,3545,1,0,0,0,3545,553,1,0,0,0,3546,3544,1,0,0,0,3547, - 3548,3,326,163,0,3548,3549,5,404,0,0,3549,3550,5,425,0,0,3550,555, - 1,0,0,0,3551,3552,5,303,0,0,3552,3553,5,188,0,0,3553,3554,5,425, - 0,0,3554,557,1,0,0,0,3555,3562,3,236,118,0,3556,3559,5,215,0,0,3557, - 3560,5,309,0,0,3558,3560,3,52,26,0,3559,3557,1,0,0,0,3559,3558,1, - 0,0,0,3560,3562,1,0,0,0,3561,3555,1,0,0,0,3561,3556,1,0,0,0,3562, - 559,1,0,0,0,3563,3564,5,113,0,0,3564,3565,3,910,455,0,3565,3566, - 5,386,0,0,3566,3567,5,328,0,0,3567,3568,3,658,329,0,3568,561,1,0, - 0,0,3569,3570,5,273,0,0,3570,3571,5,340,0,0,3571,3572,3,910,455, - 0,3572,563,1,0,0,0,3573,3574,5,364,0,0,3574,3575,5,318,0,0,3575, - 3577,5,134,0,0,3576,3578,5,45,0,0,3577,3576,1,0,0,0,3577,3578,1, - 0,0,0,3578,3579,1,0,0,0,3579,3580,3,282,141,0,3580,3581,5,303,0, - 0,3581,3584,3,252,126,0,3582,3583,5,47,0,0,3583,3585,5,425,0,0,3584, - 3582,1,0,0,0,3584,3585,1,0,0,0,3585,565,1,0,0,0,3586,3587,5,53,0, - 0,3587,567,1,0,0,0,3588,3589,5,166,0,0,3589,3590,5,430,0,0,3590, - 3591,5,31,0,0,3591,569,1,0,0,0,3592,3593,5,11,0,0,3593,3594,5,379, - 0,0,3594,571,1,0,0,0,3595,3596,5,245,0,0,3596,3597,5,425,0,0,3597, - 573,1,0,0,0,3598,3599,5,49,0,0,3599,3601,5,425,0,0,3600,3602,3,570, - 285,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3604,1,0,0,0,3603, - 3605,3,234,117,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605,3607,1, - 0,0,0,3606,3608,3,762,381,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0, - 3608,3610,1,0,0,0,3609,3611,3,572,286,0,3610,3609,1,0,0,0,3610,3611, - 1,0,0,0,3611,3616,1,0,0,0,3612,3613,5,386,0,0,3613,3614,5,234,0, - 0,3614,3615,5,331,0,0,3615,3617,3,252,126,0,3616,3612,1,0,0,0,3616, - 3617,1,0,0,0,3617,575,1,0,0,0,3618,3619,5,303,0,0,3619,3620,5,235, - 0,0,3620,3621,3,148,74,0,3621,577,1,0,0,0,3622,3623,5,303,0,0,3623, - 3624,5,236,0,0,3624,3625,5,315,0,0,3625,3626,5,398,0,0,3626,3627, - 3,226,113,0,3627,3628,5,399,0,0,3628,579,1,0,0,0,3629,3639,5,115, - 0,0,3630,3631,5,288,0,0,3631,3632,5,398,0,0,3632,3640,7,24,0,0,3633, - 3634,5,118,0,0,3634,3635,5,398,0,0,3635,3640,5,425,0,0,3636,3637, - 5,305,0,0,3637,3638,5,398,0,0,3638,3640,5,430,0,0,3639,3630,1,0, - 0,0,3639,3633,1,0,0,0,3639,3636,1,0,0,0,3640,3641,1,0,0,0,3641,3642, - 5,399,0,0,3642,581,1,0,0,0,3643,3644,3,924,462,0,3644,3645,5,223, - 0,0,3645,3647,3,658,329,0,3646,3648,3,910,455,0,3647,3646,1,0,0, - 0,3647,3648,1,0,0,0,3648,3649,1,0,0,0,3649,3650,5,264,0,0,3650,583, - 1,0,0,0,3651,3652,5,160,0,0,3652,3653,5,425,0,0,3653,3654,5,232, - 0,0,3654,3655,5,425,0,0,3655,3656,5,300,0,0,3656,3661,5,425,0,0, - 3657,3658,5,159,0,0,3658,3659,5,425,0,0,3659,3660,5,231,0,0,3660, - 3662,5,425,0,0,3661,3657,1,0,0,0,3661,3662,1,0,0,0,3662,3665,1,0, - 0,0,3663,3665,3,924,462,0,3664,3651,1,0,0,0,3664,3663,1,0,0,0,3665, - 585,1,0,0,0,3666,3670,3,588,294,0,3667,3670,3,590,295,0,3668,3670, - 3,592,296,0,3669,3666,1,0,0,0,3669,3667,1,0,0,0,3669,3668,1,0,0, - 0,3670,587,1,0,0,0,3671,3672,3,652,326,0,3672,3673,5,303,0,0,3673, - 3674,5,77,0,0,3674,3675,3,606,303,0,3675,589,1,0,0,0,3676,3677,3, - 652,326,0,3677,3678,5,303,0,0,3678,3679,5,235,0,0,3679,3680,3,150, - 75,0,3680,591,1,0,0,0,3681,3682,3,652,326,0,3682,3683,5,303,0,0, - 3683,3684,5,366,0,0,3684,3685,5,425,0,0,3685,593,1,0,0,0,3686,3687, - 5,183,0,0,3687,3696,5,128,0,0,3688,3689,5,183,0,0,3689,3690,5,128, - 0,0,3690,3691,3,924,462,0,3691,3692,5,425,0,0,3692,3696,1,0,0,0, - 3693,3694,5,183,0,0,3694,3696,3,658,329,0,3695,3686,1,0,0,0,3695, - 3688,1,0,0,0,3695,3693,1,0,0,0,3696,595,1,0,0,0,3697,3699,5,58,0, - 0,3698,3700,5,332,0,0,3699,3698,1,0,0,0,3699,3700,1,0,0,0,3700,3702, - 1,0,0,0,3701,3703,5,344,0,0,3702,3701,1,0,0,0,3702,3703,1,0,0,0, - 3703,3705,1,0,0,0,3704,3706,5,123,0,0,3705,3704,1,0,0,0,3705,3706, - 1,0,0,0,3706,3707,1,0,0,0,3707,3709,5,328,0,0,3708,3710,3,44,22, - 0,3709,3708,1,0,0,0,3709,3710,1,0,0,0,3710,3711,1,0,0,0,3711,3762, - 3,660,330,0,3712,3714,3,594,297,0,3713,3715,3,220,110,0,3714,3713, - 1,0,0,0,3714,3715,1,0,0,0,3715,3717,1,0,0,0,3716,3718,3,248,124, - 0,3717,3716,1,0,0,0,3717,3718,1,0,0,0,3718,3720,1,0,0,0,3719,3721, - 3,270,135,0,3720,3719,1,0,0,0,3720,3721,1,0,0,0,3721,3723,1,0,0, - 0,3722,3724,3,272,136,0,3723,3722,1,0,0,0,3723,3724,1,0,0,0,3724, - 3726,1,0,0,0,3725,3727,3,250,125,0,3726,3725,1,0,0,0,3726,3727,1, - 0,0,0,3727,3763,1,0,0,0,3728,3729,5,398,0,0,3729,3730,3,276,138, - 0,3730,3731,5,399,0,0,3731,3733,1,0,0,0,3732,3728,1,0,0,0,3732,3733, - 1,0,0,0,3733,3735,1,0,0,0,3734,3736,3,218,109,0,3735,3734,1,0,0, - 0,3735,3736,1,0,0,0,3736,3738,1,0,0,0,3737,3739,3,220,110,0,3738, - 3737,1,0,0,0,3738,3739,1,0,0,0,3739,3741,1,0,0,0,3740,3742,3,232, - 116,0,3741,3740,1,0,0,0,3741,3742,1,0,0,0,3742,3744,1,0,0,0,3743, - 3745,3,236,118,0,3744,3743,1,0,0,0,3744,3745,1,0,0,0,3745,3747,1, - 0,0,0,3746,3748,3,248,124,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0, - 3748,3750,1,0,0,0,3749,3751,3,270,135,0,3750,3749,1,0,0,0,3750,3751, - 1,0,0,0,3751,3753,1,0,0,0,3752,3754,3,272,136,0,3753,3752,1,0,0, - 0,3753,3754,1,0,0,0,3754,3756,1,0,0,0,3755,3757,3,250,125,0,3756, - 3755,1,0,0,0,3756,3757,1,0,0,0,3757,3760,1,0,0,0,3758,3759,5,17, - 0,0,3759,3761,3,412,206,0,3760,3758,1,0,0,0,3760,3761,1,0,0,0,3761, - 3763,1,0,0,0,3762,3712,1,0,0,0,3762,3732,1,0,0,0,3763,3821,1,0,0, - 0,3764,3765,5,58,0,0,3765,3766,5,194,0,0,3766,3768,5,328,0,0,3767, - 3769,3,44,22,0,3768,3767,1,0,0,0,3768,3769,1,0,0,0,3769,3770,1,0, - 0,0,3770,3818,3,660,330,0,3771,3773,3,594,297,0,3772,3774,3,248, - 124,0,3773,3772,1,0,0,0,3773,3774,1,0,0,0,3774,3776,1,0,0,0,3775, - 3777,3,270,135,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3779,1, - 0,0,0,3778,3780,3,272,136,0,3779,3778,1,0,0,0,3779,3780,1,0,0,0, - 3780,3782,1,0,0,0,3781,3783,3,250,125,0,3782,3781,1,0,0,0,3782,3783, - 1,0,0,0,3783,3819,1,0,0,0,3784,3785,5,398,0,0,3785,3786,3,276,138, - 0,3786,3787,5,399,0,0,3787,3789,1,0,0,0,3788,3784,1,0,0,0,3788,3789, - 1,0,0,0,3789,3791,1,0,0,0,3790,3792,3,218,109,0,3791,3790,1,0,0, - 0,3791,3792,1,0,0,0,3792,3794,1,0,0,0,3793,3795,3,220,110,0,3794, - 3793,1,0,0,0,3794,3795,1,0,0,0,3795,3797,1,0,0,0,3796,3798,3,232, - 116,0,3797,3796,1,0,0,0,3797,3798,1,0,0,0,3798,3800,1,0,0,0,3799, - 3801,3,236,118,0,3800,3799,1,0,0,0,3800,3801,1,0,0,0,3801,3803,1, - 0,0,0,3802,3804,3,248,124,0,3803,3802,1,0,0,0,3803,3804,1,0,0,0, - 3804,3806,1,0,0,0,3805,3807,3,270,135,0,3806,3805,1,0,0,0,3806,3807, - 1,0,0,0,3807,3809,1,0,0,0,3808,3810,3,272,136,0,3809,3808,1,0,0, - 0,3809,3810,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,250,125,0,3812, - 3811,1,0,0,0,3812,3813,1,0,0,0,3813,3816,1,0,0,0,3814,3815,5,17, - 0,0,3815,3817,3,412,206,0,3816,3814,1,0,0,0,3816,3817,1,0,0,0,3817, - 3819,1,0,0,0,3818,3771,1,0,0,0,3818,3788,1,0,0,0,3819,3821,1,0,0, - 0,3820,3697,1,0,0,0,3820,3764,1,0,0,0,3821,597,1,0,0,0,3822,3823, - 5,58,0,0,3823,3825,5,69,0,0,3824,3826,3,44,22,0,3825,3824,1,0,0, - 0,3825,3826,1,0,0,0,3826,3827,1,0,0,0,3827,3829,3,924,462,0,3828, - 3830,3,604,302,0,3829,3828,1,0,0,0,3829,3830,1,0,0,0,3830,3832,1, - 0,0,0,3831,3833,3,602,301,0,3832,3831,1,0,0,0,3832,3833,1,0,0,0, - 3833,3835,1,0,0,0,3834,3836,3,600,300,0,3835,3834,1,0,0,0,3835,3836, - 1,0,0,0,3836,3840,1,0,0,0,3837,3838,5,386,0,0,3838,3839,5,77,0,0, - 3839,3841,3,606,303,0,3840,3837,1,0,0,0,3840,3841,1,0,0,0,3841,599, - 1,0,0,0,3842,3843,5,47,0,0,3843,3844,5,425,0,0,3844,601,1,0,0,0, - 3845,3846,5,366,0,0,3846,3847,5,425,0,0,3847,603,1,0,0,0,3848,3849, - 5,351,0,0,3849,3850,5,425,0,0,3850,605,1,0,0,0,3851,3852,5,398,0, - 0,3852,3853,3,64,32,0,3853,3854,5,399,0,0,3854,607,1,0,0,0,3855, - 3856,5,101,0,0,3856,3858,5,69,0,0,3857,3859,3,40,20,0,3858,3857, - 1,0,0,0,3858,3859,1,0,0,0,3859,3860,1,0,0,0,3860,3861,3,924,462, - 0,3861,609,1,0,0,0,3862,3863,3,924,462,0,3863,3864,5,394,0,0,3864, - 3866,1,0,0,0,3865,3862,1,0,0,0,3866,3869,1,0,0,0,3867,3865,1,0,0, - 0,3867,3868,1,0,0,0,3868,3870,1,0,0,0,3869,3867,1,0,0,0,3870,3871, - 5,414,0,0,3871,611,1,0,0,0,3872,3873,5,83,0,0,3873,613,1,0,0,0,3874, - 3879,3,826,413,0,3875,3876,5,396,0,0,3876,3878,3,826,413,0,3877, - 3875,1,0,0,0,3878,3881,1,0,0,0,3879,3877,1,0,0,0,3879,3880,1,0,0, - 0,3880,615,1,0,0,0,3881,3879,1,0,0,0,3882,3887,3,924,462,0,3883, - 3884,5,396,0,0,3884,3886,3,924,462,0,3885,3883,1,0,0,0,3886,3889, - 1,0,0,0,3887,3885,1,0,0,0,3887,3888,1,0,0,0,3888,617,1,0,0,0,3889, - 3887,1,0,0,0,3890,3891,5,139,0,0,3891,3892,3,620,310,0,3892,619, - 1,0,0,0,3893,3894,3,632,316,0,3894,3897,3,628,314,0,3895,3896,5, - 396,0,0,3896,3898,3,628,314,0,3897,3895,1,0,0,0,3898,3899,1,0,0, - 0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900,3903,1,0,0,0,3901,3903, - 3,624,312,0,3902,3893,1,0,0,0,3902,3901,1,0,0,0,3903,621,1,0,0,0, - 3904,3908,3,646,323,0,3905,3907,3,636,318,0,3906,3905,1,0,0,0,3907, - 3910,1,0,0,0,3908,3906,1,0,0,0,3908,3909,1,0,0,0,3909,3937,1,0,0, - 0,3910,3908,1,0,0,0,3911,3915,3,688,344,0,3912,3914,3,636,318,0, - 3913,3912,1,0,0,0,3914,3917,1,0,0,0,3915,3913,1,0,0,0,3915,3916, - 1,0,0,0,3916,3937,1,0,0,0,3917,3915,1,0,0,0,3918,3922,3,666,333, - 0,3919,3921,3,636,318,0,3920,3919,1,0,0,0,3921,3924,1,0,0,0,3922, - 3920,1,0,0,0,3922,3923,1,0,0,0,3923,3937,1,0,0,0,3924,3922,1,0,0, - 0,3925,3929,3,672,336,0,3926,3928,3,636,318,0,3927,3926,1,0,0,0, - 3928,3931,1,0,0,0,3929,3927,1,0,0,0,3929,3930,1,0,0,0,3930,3937, - 1,0,0,0,3931,3929,1,0,0,0,3932,3933,5,398,0,0,3933,3934,3,624,312, - 0,3934,3935,5,399,0,0,3935,3937,1,0,0,0,3936,3904,1,0,0,0,3936,3911, - 1,0,0,0,3936,3918,1,0,0,0,3936,3925,1,0,0,0,3936,3932,1,0,0,0,3937, - 623,1,0,0,0,3938,3949,3,622,311,0,3939,3940,3,634,317,0,3940,3945, - 3,626,313,0,3941,3942,5,223,0,0,3942,3946,3,826,413,0,3943,3944, - 5,369,0,0,3944,3946,3,290,145,0,3945,3941,1,0,0,0,3945,3943,1,0, - 0,0,3945,3946,1,0,0,0,3946,3948,1,0,0,0,3947,3939,1,0,0,0,3948,3951, - 1,0,0,0,3949,3947,1,0,0,0,3949,3950,1,0,0,0,3950,625,1,0,0,0,3951, - 3949,1,0,0,0,3952,3957,3,646,323,0,3953,3957,3,688,344,0,3954,3957, - 3,666,333,0,3955,3957,3,672,336,0,3956,3952,1,0,0,0,3956,3953,1, - 0,0,0,3956,3954,1,0,0,0,3956,3955,1,0,0,0,3957,3961,1,0,0,0,3958, - 3960,3,636,318,0,3959,3958,1,0,0,0,3960,3963,1,0,0,0,3961,3959,1, - 0,0,0,3961,3962,1,0,0,0,3962,627,1,0,0,0,3963,3961,1,0,0,0,3964, - 3966,5,249,0,0,3965,3964,1,0,0,0,3965,3966,1,0,0,0,3966,3967,1,0, - 0,0,3967,3968,3,650,325,0,3968,3969,3,630,315,0,3969,629,1,0,0,0, - 3970,3971,5,398,0,0,3971,3972,3,614,307,0,3972,3973,5,399,0,0,3973, - 631,1,0,0,0,3974,3975,5,358,0,0,3975,633,1,0,0,0,3976,3991,5,396, - 0,0,3977,3988,5,157,0,0,3978,3988,5,60,0,0,3979,3981,7,25,0,0,3980, - 3982,5,230,0,0,3981,3980,1,0,0,0,3981,3982,1,0,0,0,3982,3988,1,0, - 0,0,3983,3985,5,180,0,0,3984,3986,7,26,0,0,3985,3984,1,0,0,0,3985, - 3986,1,0,0,0,3986,3988,1,0,0,0,3987,3977,1,0,0,0,3987,3978,1,0,0, - 0,3987,3979,1,0,0,0,3987,3983,1,0,0,0,3987,3988,1,0,0,0,3988,3989, - 1,0,0,0,3989,3991,5,171,0,0,3990,3976,1,0,0,0,3990,3987,1,0,0,0, - 3991,635,1,0,0,0,3992,3993,5,178,0,0,3993,3994,5,377,0,0,3994,3995, - 5,230,0,0,3995,3996,3,774,387,0,3996,4006,3,638,319,0,3997,3998, - 5,17,0,0,3998,4003,3,924,462,0,3999,4000,5,396,0,0,4000,4002,3,924, - 462,0,4001,3999,1,0,0,0,4002,4005,1,0,0,0,4003,4001,1,0,0,0,4003, - 4004,1,0,0,0,4004,4007,1,0,0,0,4005,4003,1,0,0,0,4006,3997,1,0,0, - 0,4006,4007,1,0,0,0,4007,4050,1,0,0,0,4008,4010,5,396,0,0,4009,4008, - 1,0,0,0,4009,4010,1,0,0,0,4010,4011,1,0,0,0,4011,4047,5,178,0,0, - 4012,4013,5,377,0,0,4013,4014,3,774,387,0,4014,4024,3,638,319,0, - 4015,4016,5,17,0,0,4016,4021,3,924,462,0,4017,4018,5,396,0,0,4018, - 4020,3,924,462,0,4019,4017,1,0,0,0,4020,4023,1,0,0,0,4021,4019,1, - 0,0,0,4021,4022,1,0,0,0,4022,4025,1,0,0,0,4023,4021,1,0,0,0,4024, - 4015,1,0,0,0,4024,4025,1,0,0,0,4025,4048,1,0,0,0,4026,4027,5,328, - 0,0,4027,4028,5,398,0,0,4028,4029,3,680,340,0,4029,4031,5,399,0, - 0,4030,4032,5,17,0,0,4031,4030,1,0,0,0,4031,4032,1,0,0,0,4032,4033, - 1,0,0,0,4033,4045,3,638,319,0,4034,4035,5,398,0,0,4035,4040,3,924, - 462,0,4036,4037,5,396,0,0,4037,4039,3,924,462,0,4038,4036,1,0,0, - 0,4039,4042,1,0,0,0,4040,4038,1,0,0,0,4040,4041,1,0,0,0,4041,4043, - 1,0,0,0,4042,4040,1,0,0,0,4043,4044,5,399,0,0,4044,4046,1,0,0,0, - 4045,4034,1,0,0,0,4045,4046,1,0,0,0,4046,4048,1,0,0,0,4047,4012, - 1,0,0,0,4047,4026,1,0,0,0,4048,4050,1,0,0,0,4049,3992,1,0,0,0,4049, - 4009,1,0,0,0,4050,637,1,0,0,0,4051,4052,3,924,462,0,4052,639,1,0, - 0,0,4053,4054,5,330,0,0,4054,4055,5,398,0,0,4055,4056,5,30,0,0,4056, - 4057,5,430,0,0,4057,4058,5,229,0,0,4058,4059,5,220,0,0,4059,4069, - 5,430,0,0,4060,4061,5,223,0,0,4061,4066,3,826,413,0,4062,4063,5, - 396,0,0,4063,4065,3,826,413,0,4064,4062,1,0,0,0,4065,4068,1,0,0, - 0,4066,4064,1,0,0,0,4066,4067,1,0,0,0,4067,4070,1,0,0,0,4068,4066, - 1,0,0,0,4069,4060,1,0,0,0,4069,4070,1,0,0,0,4070,4071,1,0,0,0,4071, - 4072,5,399,0,0,4072,641,1,0,0,0,4073,4074,5,330,0,0,4074,4078,5, - 398,0,0,4075,4076,5,430,0,0,4076,4079,7,27,0,0,4077,4079,5,429,0, - 0,4078,4075,1,0,0,0,4078,4077,1,0,0,0,4079,4080,1,0,0,0,4080,4081, - 5,399,0,0,4081,643,1,0,0,0,4082,4085,3,640,320,0,4083,4085,3,642, - 321,0,4084,4082,1,0,0,0,4084,4083,1,0,0,0,4085,645,1,0,0,0,4086, - 4088,3,656,328,0,4087,4089,3,252,126,0,4088,4087,1,0,0,0,4088,4089, - 1,0,0,0,4089,4091,1,0,0,0,4090,4092,3,644,322,0,4091,4090,1,0,0, - 0,4091,4092,1,0,0,0,4092,4094,1,0,0,0,4093,4095,3,648,324,0,4094, - 4093,1,0,0,0,4094,4095,1,0,0,0,4095,4100,1,0,0,0,4096,4098,5,17, - 0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4099,1,0,0,0,4099,4101, - 3,924,462,0,4100,4097,1,0,0,0,4100,4101,1,0,0,0,4101,647,1,0,0,0, - 4102,4112,5,134,0,0,4103,4104,5,326,0,0,4104,4105,5,17,0,0,4105, - 4106,5,220,0,0,4106,4113,3,826,413,0,4107,4108,5,134,0,0,4108,4109, - 5,327,0,0,4109,4110,5,17,0,0,4110,4111,5,220,0,0,4111,4113,5,430, - 0,0,4112,4103,1,0,0,0,4112,4107,1,0,0,0,4113,649,1,0,0,0,4114,4116, - 3,656,328,0,4115,4117,3,644,322,0,4116,4115,1,0,0,0,4116,4117,1, - 0,0,0,4117,4122,1,0,0,0,4118,4120,5,17,0,0,4119,4118,1,0,0,0,4119, - 4120,1,0,0,0,4120,4121,1,0,0,0,4121,4123,3,924,462,0,4122,4119,1, - 0,0,0,4122,4123,1,0,0,0,4123,651,1,0,0,0,4124,4125,3,924,462,0,4125, - 653,1,0,0,0,4126,4127,3,924,462,0,4127,655,1,0,0,0,4128,4131,3,658, - 329,0,4129,4131,3,662,331,0,4130,4128,1,0,0,0,4130,4129,1,0,0,0, - 4131,657,1,0,0,0,4132,4133,3,924,462,0,4133,4134,5,394,0,0,4134, - 4137,3,924,462,0,4135,4136,5,394,0,0,4136,4138,3,924,462,0,4137, - 4135,1,0,0,0,4137,4138,1,0,0,0,4138,4141,1,0,0,0,4139,4141,3,924, - 462,0,4140,4132,1,0,0,0,4140,4139,1,0,0,0,4141,659,1,0,0,0,4142, - 4143,3,924,462,0,4143,4144,5,394,0,0,4144,4147,3,924,462,0,4145, - 4146,5,394,0,0,4146,4148,3,924,462,0,4147,4145,1,0,0,0,4147,4148, - 1,0,0,0,4148,4151,1,0,0,0,4149,4151,3,924,462,0,4150,4142,1,0,0, - 0,4150,4149,1,0,0,0,4151,661,1,0,0,0,4152,4153,3,924,462,0,4153, - 4154,5,394,0,0,4154,4156,1,0,0,0,4155,4152,1,0,0,0,4155,4156,1,0, - 0,0,4156,4157,1,0,0,0,4157,4158,3,924,462,0,4158,663,1,0,0,0,4159, - 4160,3,924,462,0,4160,4161,5,394,0,0,4161,4163,1,0,0,0,4162,4159, - 1,0,0,0,4162,4163,1,0,0,0,4163,4164,1,0,0,0,4164,4165,3,924,462, - 0,4165,665,1,0,0,0,4166,4167,5,398,0,0,4167,4168,3,392,196,0,4168, - 4170,5,399,0,0,4169,4171,5,17,0,0,4170,4169,1,0,0,0,4170,4171,1, - 0,0,0,4171,4172,1,0,0,0,4172,4173,3,924,462,0,4173,667,1,0,0,0,4174, - 4176,3,766,383,0,4175,4177,3,762,381,0,4176,4175,1,0,0,0,4176,4177, - 1,0,0,0,4177,4186,1,0,0,0,4178,4186,3,762,381,0,4179,4181,3,768, - 384,0,4180,4182,3,770,385,0,4181,4180,1,0,0,0,4181,4182,1,0,0,0, - 4182,4186,1,0,0,0,4183,4186,3,770,385,0,4184,4186,3,764,382,0,4185, - 4174,1,0,0,0,4185,4178,1,0,0,0,4185,4179,1,0,0,0,4185,4183,1,0,0, - 0,4185,4184,1,0,0,0,4186,669,1,0,0,0,4187,4191,3,666,333,0,4188, - 4191,3,646,323,0,4189,4191,3,672,336,0,4190,4187,1,0,0,0,4190,4188, - 1,0,0,0,4190,4189,1,0,0,0,4191,671,1,0,0,0,4192,4193,3,924,462,0, - 4193,4194,5,398,0,0,4194,4195,5,223,0,0,4195,4197,3,670,335,0,4196, - 4198,3,668,334,0,4197,4196,1,0,0,0,4197,4198,1,0,0,0,4198,4214,1, - 0,0,0,4199,4200,5,431,0,0,4200,4201,5,398,0,0,4201,4202,3,826,413, - 0,4202,4211,5,399,0,0,4203,4204,5,396,0,0,4204,4205,5,431,0,0,4205, - 4206,5,398,0,0,4206,4207,3,826,413,0,4207,4208,5,399,0,0,4208,4210, - 1,0,0,0,4209,4203,1,0,0,0,4210,4213,1,0,0,0,4211,4209,1,0,0,0,4211, - 4212,1,0,0,0,4212,4215,1,0,0,0,4213,4211,1,0,0,0,4214,4199,1,0,0, - 0,4214,4215,1,0,0,0,4215,4216,1,0,0,0,4216,4218,5,399,0,0,4217,4219, - 3,924,462,0,4218,4217,1,0,0,0,4218,4219,1,0,0,0,4219,673,1,0,0,0, - 4220,4221,5,383,0,0,4221,4222,3,676,338,0,4222,675,1,0,0,0,4223, - 4224,3,826,413,0,4224,677,1,0,0,0,4225,4226,3,680,340,0,4226,679, - 1,0,0,0,4227,4228,5,373,0,0,4228,4229,3,682,341,0,4229,681,1,0,0, - 0,4230,4235,3,684,342,0,4231,4232,5,396,0,0,4232,4234,3,684,342, - 0,4233,4231,1,0,0,0,4234,4237,1,0,0,0,4235,4233,1,0,0,0,4235,4236, - 1,0,0,0,4236,4247,1,0,0,0,4237,4235,1,0,0,0,4238,4243,3,686,343, - 0,4239,4240,5,396,0,0,4240,4242,3,684,342,0,4241,4239,1,0,0,0,4242, - 4245,1,0,0,0,4243,4241,1,0,0,0,4243,4244,1,0,0,0,4244,4247,1,0,0, - 0,4245,4243,1,0,0,0,4246,4230,1,0,0,0,4246,4238,1,0,0,0,4247,683, - 1,0,0,0,4248,4249,3,744,372,0,4249,685,1,0,0,0,4250,4251,5,398,0, - 0,4251,4252,3,752,376,0,4252,4253,5,399,0,0,4253,687,1,0,0,0,4254, - 4255,5,328,0,0,4255,4256,5,398,0,0,4256,4257,3,680,340,0,4257,4259, - 5,399,0,0,4258,4260,5,17,0,0,4259,4258,1,0,0,0,4259,4260,1,0,0,0, - 4260,4261,1,0,0,0,4261,4271,3,638,319,0,4262,4263,5,398,0,0,4263, - 4268,3,924,462,0,4264,4265,5,396,0,0,4265,4267,3,924,462,0,4266, - 4264,1,0,0,0,4267,4270,1,0,0,0,4268,4266,1,0,0,0,4268,4269,1,0,0, - 0,4269,4272,1,0,0,0,4270,4268,1,0,0,0,4271,4262,1,0,0,0,4271,4272, - 1,0,0,0,4272,4273,1,0,0,0,4273,4274,5,399,0,0,4274,689,1,0,0,0,4275, - 4277,5,298,0,0,4276,4278,5,435,0,0,4277,4276,1,0,0,0,4277,4278,1, - 0,0,0,4278,4285,1,0,0,0,4279,4281,3,692,346,0,4280,4279,1,0,0,0, - 4280,4281,1,0,0,0,4281,4282,1,0,0,0,4282,4286,3,694,347,0,4283,4284, - 5,346,0,0,4284,4286,3,696,348,0,4285,4280,1,0,0,0,4285,4283,1,0, - 0,0,4286,4289,1,0,0,0,4287,4289,3,700,350,0,4288,4275,1,0,0,0,4288, - 4287,1,0,0,0,4289,691,1,0,0,0,4290,4291,7,20,0,0,4291,693,1,0,0, - 0,4292,4297,3,698,349,0,4293,4294,5,396,0,0,4294,4296,3,698,349, - 0,4295,4293,1,0,0,0,4296,4299,1,0,0,0,4297,4295,1,0,0,0,4297,4298, - 1,0,0,0,4298,695,1,0,0,0,4299,4297,1,0,0,0,4300,4301,5,398,0,0,4301, - 4302,3,704,352,0,4302,4303,5,399,0,0,4303,4304,3,238,119,0,4304, - 4305,3,242,121,0,4305,4306,5,369,0,0,4306,4319,5,425,0,0,4307,4317, - 5,17,0,0,4308,4311,5,398,0,0,4309,4312,3,616,308,0,4310,4312,3,274, - 137,0,4311,4309,1,0,0,0,4311,4310,1,0,0,0,4312,4313,1,0,0,0,4313, - 4314,5,399,0,0,4314,4318,1,0,0,0,4315,4318,3,616,308,0,4316,4318, - 3,274,137,0,4317,4308,1,0,0,0,4317,4315,1,0,0,0,4317,4316,1,0,0, - 0,4318,4320,1,0,0,0,4319,4307,1,0,0,0,4319,4320,1,0,0,0,4320,4321, - 1,0,0,0,4321,4322,3,238,119,0,4322,4323,3,240,120,0,4323,697,1,0, - 0,0,4324,4348,3,610,305,0,4325,4328,3,282,141,0,4326,4328,3,826, - 413,0,4327,4325,1,0,0,0,4327,4326,1,0,0,0,4328,4345,1,0,0,0,4329, - 4331,5,17,0,0,4330,4329,1,0,0,0,4330,4331,1,0,0,0,4331,4332,1,0, - 0,0,4332,4346,3,924,462,0,4333,4334,5,17,0,0,4334,4335,5,398,0,0, - 4335,4340,3,924,462,0,4336,4337,5,396,0,0,4337,4339,3,924,462,0, - 4338,4336,1,0,0,0,4339,4342,1,0,0,0,4340,4338,1,0,0,0,4340,4341, - 1,0,0,0,4341,4343,1,0,0,0,4342,4340,1,0,0,0,4343,4344,5,399,0,0, - 4344,4346,1,0,0,0,4345,4330,1,0,0,0,4345,4333,1,0,0,0,4345,4346, - 1,0,0,0,4346,4348,1,0,0,0,4347,4324,1,0,0,0,4347,4327,1,0,0,0,4348, - 699,1,0,0,0,4349,4350,7,28,0,0,4350,4351,3,704,352,0,4351,4352,3, - 238,119,0,4352,4353,3,242,121,0,4353,4354,5,369,0,0,4354,4367,5, - 425,0,0,4355,4365,5,17,0,0,4356,4359,5,398,0,0,4357,4360,3,616,308, - 0,4358,4360,3,274,137,0,4359,4357,1,0,0,0,4359,4358,1,0,0,0,4360, - 4361,1,0,0,0,4361,4362,5,399,0,0,4362,4366,1,0,0,0,4363,4366,3,616, - 308,0,4364,4366,3,274,137,0,4365,4356,1,0,0,0,4365,4363,1,0,0,0, - 4365,4364,1,0,0,0,4366,4368,1,0,0,0,4367,4355,1,0,0,0,4367,4368, - 1,0,0,0,4368,4369,1,0,0,0,4369,4370,3,238,119,0,4370,4371,3,240, - 120,0,4371,701,1,0,0,0,4372,4375,3,610,305,0,4373,4375,3,826,413, - 0,4374,4372,1,0,0,0,4374,4373,1,0,0,0,4375,703,1,0,0,0,4376,4381, - 3,702,351,0,4377,4378,5,396,0,0,4378,4380,3,702,351,0,4379,4377, - 1,0,0,0,4380,4383,1,0,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382, - 705,1,0,0,0,4383,4381,1,0,0,0,4384,4385,5,385,0,0,4385,4390,3,708, - 354,0,4386,4387,5,396,0,0,4387,4389,3,708,354,0,4388,4386,1,0,0, - 0,4389,4392,1,0,0,0,4390,4388,1,0,0,0,4390,4391,1,0,0,0,4391,707, - 1,0,0,0,4392,4390,1,0,0,0,4393,4394,3,924,462,0,4394,4395,5,17,0, - 0,4395,4396,3,710,355,0,4396,709,1,0,0,0,4397,4410,3,924,462,0,4398, - 4400,5,398,0,0,4399,4401,3,924,462,0,4400,4399,1,0,0,0,4400,4401, - 1,0,0,0,4401,4403,1,0,0,0,4402,4404,3,668,334,0,4403,4402,1,0,0, - 0,4403,4404,1,0,0,0,4404,4406,1,0,0,0,4405,4407,3,712,356,0,4406, - 4405,1,0,0,0,4406,4407,1,0,0,0,4407,4408,1,0,0,0,4408,4410,5,399, - 0,0,4409,4397,1,0,0,0,4409,4398,1,0,0,0,4410,711,1,0,0,0,4411,4414, - 3,714,357,0,4412,4414,3,716,358,0,4413,4411,1,0,0,0,4413,4412,1, - 0,0,0,4414,713,1,0,0,0,4415,4422,5,291,0,0,4416,4423,3,718,359,0, - 4417,4418,5,25,0,0,4418,4419,3,720,360,0,4419,4420,5,11,0,0,4420, - 4421,3,720,360,0,4421,4423,1,0,0,0,4422,4416,1,0,0,0,4422,4417,1, - 0,0,0,4423,715,1,0,0,0,4424,4431,5,259,0,0,4425,4432,3,718,359,0, - 4426,4427,5,25,0,0,4427,4428,3,720,360,0,4428,4429,5,11,0,0,4429, - 4430,3,720,360,0,4430,4432,1,0,0,0,4431,4425,1,0,0,0,4431,4426,1, - 0,0,0,4432,717,1,0,0,0,4433,4434,5,353,0,0,4434,4440,5,246,0,0,4435, - 4436,5,62,0,0,4436,4440,5,290,0,0,4437,4438,5,430,0,0,4438,4440, - 5,246,0,0,4439,4433,1,0,0,0,4439,4435,1,0,0,0,4439,4437,1,0,0,0, - 4440,719,1,0,0,0,4441,4442,7,29,0,0,4442,4446,7,30,0,0,4443,4444, - 5,62,0,0,4444,4446,5,290,0,0,4445,4441,1,0,0,0,4445,4443,1,0,0,0, - 4446,721,1,0,0,0,4447,4448,5,144,0,0,4448,4449,5,32,0,0,4449,4450, - 3,724,362,0,4450,723,1,0,0,0,4451,4456,3,282,141,0,4452,4456,3,728, - 364,0,4453,4456,3,730,365,0,4454,4456,3,726,363,0,4455,4451,1,0, - 0,0,4455,4452,1,0,0,0,4455,4453,1,0,0,0,4455,4454,1,0,0,0,4456,725, - 1,0,0,0,4457,4458,5,398,0,0,4458,4459,5,399,0,0,4459,727,1,0,0,0, - 4460,4463,5,289,0,0,4461,4463,5,61,0,0,4462,4460,1,0,0,0,4462,4461, - 1,0,0,0,4463,4464,1,0,0,0,4464,4465,5,398,0,0,4465,4470,3,826,413, - 0,4466,4467,5,396,0,0,4467,4469,3,826,413,0,4468,4466,1,0,0,0,4469, - 4472,1,0,0,0,4470,4468,1,0,0,0,4470,4471,1,0,0,0,4471,4473,1,0,0, - 0,4472,4470,1,0,0,0,4473,4474,5,399,0,0,4474,729,1,0,0,0,4475,4480, - 3,746,373,0,4476,4477,5,386,0,0,4477,4481,5,289,0,0,4478,4479,5, - 386,0,0,4479,4481,5,61,0,0,4480,4476,1,0,0,0,4480,4478,1,0,0,0,4480, - 4481,1,0,0,0,4481,4495,1,0,0,0,4482,4483,5,145,0,0,4483,4484,5,304, - 0,0,4484,4485,5,398,0,0,4485,4490,3,732,366,0,4486,4487,5,396,0, - 0,4487,4489,3,732,366,0,4488,4486,1,0,0,0,4489,4492,1,0,0,0,4490, - 4488,1,0,0,0,4490,4491,1,0,0,0,4491,4493,1,0,0,0,4492,4490,1,0,0, - 0,4493,4494,5,399,0,0,4494,4496,1,0,0,0,4495,4482,1,0,0,0,4495,4496, - 1,0,0,0,4496,731,1,0,0,0,4497,4500,3,734,367,0,4498,4500,3,736,368, - 0,4499,4497,1,0,0,0,4499,4498,1,0,0,0,4500,733,1,0,0,0,4501,4503, - 5,398,0,0,4502,4504,3,826,413,0,4503,4502,1,0,0,0,4503,4504,1,0, - 0,0,4504,4509,1,0,0,0,4505,4506,5,396,0,0,4506,4508,3,826,413,0, - 4507,4505,1,0,0,0,4508,4511,1,0,0,0,4509,4507,1,0,0,0,4509,4510, - 1,0,0,0,4510,4512,1,0,0,0,4511,4509,1,0,0,0,4512,4513,5,399,0,0, - 4513,735,1,0,0,0,4514,4515,3,826,413,0,4515,737,1,0,0,0,4516,4517, - 5,146,0,0,4517,4518,3,742,371,0,4518,739,1,0,0,0,4519,4520,5,255, - 0,0,4520,4521,3,826,413,0,4521,741,1,0,0,0,4522,4523,3,826,413,0, - 4523,743,1,0,0,0,4524,4525,5,398,0,0,4525,4526,3,746,373,0,4526, - 4527,5,399,0,0,4527,745,1,0,0,0,4528,4530,3,750,375,0,4529,4531, - 3,748,374,0,4530,4529,1,0,0,0,4530,4531,1,0,0,0,4531,747,1,0,0,0, - 4532,4533,5,396,0,0,4533,4535,3,750,375,0,4534,4532,1,0,0,0,4535, - 4536,1,0,0,0,4536,4534,1,0,0,0,4536,4537,1,0,0,0,4537,749,1,0,0, - 0,4538,4541,3,612,306,0,4539,4541,3,826,413,0,4540,4538,1,0,0,0, - 4540,4539,1,0,0,0,4541,751,1,0,0,0,4542,4544,3,826,413,0,4543,4545, - 5,17,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0,4545,4547,1,0,0,0,4546, - 4548,3,924,462,0,4547,4546,1,0,0,0,4547,4548,1,0,0,0,4548,4553,1, - 0,0,0,4549,4550,5,396,0,0,4550,4552,3,754,377,0,4551,4549,1,0,0, - 0,4552,4555,1,0,0,0,4553,4551,1,0,0,0,4553,4554,1,0,0,0,4554,753, - 1,0,0,0,4555,4553,1,0,0,0,4556,4558,3,826,413,0,4557,4559,5,17,0, - 0,4558,4557,1,0,0,0,4558,4559,1,0,0,0,4559,4561,1,0,0,0,4560,4562, - 3,924,462,0,4561,4560,1,0,0,0,4561,4562,1,0,0,0,4562,755,1,0,0,0, - 4563,4566,3,744,372,0,4564,4566,3,746,373,0,4565,4563,1,0,0,0,4565, - 4564,1,0,0,0,4566,757,1,0,0,0,4567,4568,5,398,0,0,4568,4573,3,340, - 170,0,4569,4570,5,396,0,0,4570,4572,3,340,170,0,4571,4569,1,0,0, - 0,4572,4575,1,0,0,0,4573,4571,1,0,0,0,4573,4574,1,0,0,0,4574,4576, - 1,0,0,0,4575,4573,1,0,0,0,4576,4577,5,399,0,0,4577,759,1,0,0,0,4578, - 4583,3,340,170,0,4579,4580,5,396,0,0,4580,4582,3,340,170,0,4581, - 4579,1,0,0,0,4582,4585,1,0,0,0,4583,4581,1,0,0,0,4583,4584,1,0,0, - 0,4584,761,1,0,0,0,4585,4583,1,0,0,0,4586,4587,5,228,0,0,4587,4588, - 5,32,0,0,4588,4593,3,340,170,0,4589,4590,5,396,0,0,4590,4592,3,340, - 170,0,4591,4589,1,0,0,0,4592,4595,1,0,0,0,4593,4591,1,0,0,0,4593, - 4594,1,0,0,0,4594,763,1,0,0,0,4595,4593,1,0,0,0,4596,4597,5,41,0, - 0,4597,4598,5,32,0,0,4598,4599,3,756,378,0,4599,765,1,0,0,0,4600, - 4601,5,236,0,0,4601,4602,5,32,0,0,4602,4603,3,756,378,0,4603,767, - 1,0,0,0,4604,4605,5,97,0,0,4605,4606,5,32,0,0,4606,4607,3,756,378, - 0,4607,769,1,0,0,0,4608,4609,5,313,0,0,4609,4612,5,32,0,0,4610,4613, - 3,758,379,0,4611,4613,3,760,380,0,4612,4610,1,0,0,0,4612,4611,1, - 0,0,0,4613,771,1,0,0,0,4614,4615,5,348,0,0,4615,4619,5,398,0,0,4616, - 4620,5,179,0,0,4617,4620,5,342,0,0,4618,4620,5,29,0,0,4619,4616, - 1,0,0,0,4619,4617,1,0,0,0,4619,4618,1,0,0,0,4619,4620,1,0,0,0,4620, - 4622,1,0,0,0,4621,4623,3,702,351,0,4622,4621,1,0,0,0,4622,4623,1, - 0,0,0,4623,4624,1,0,0,0,4624,4625,5,139,0,0,4625,4626,3,702,351, - 0,4626,4627,5,399,0,0,4627,773,1,0,0,0,4628,4669,3,772,386,0,4629, - 4630,3,782,391,0,4630,4645,5,398,0,0,4631,4646,5,414,0,0,4632,4634, - 3,692,346,0,4633,4632,1,0,0,0,4633,4634,1,0,0,0,4634,4643,1,0,0, - 0,4635,4640,3,702,351,0,4636,4637,5,396,0,0,4637,4639,3,702,351, - 0,4638,4636,1,0,0,0,4639,4642,1,0,0,0,4640,4638,1,0,0,0,4640,4641, - 1,0,0,0,4641,4644,1,0,0,0,4642,4640,1,0,0,0,4643,4635,1,0,0,0,4643, - 4644,1,0,0,0,4644,4646,1,0,0,0,4645,4631,1,0,0,0,4645,4633,1,0,0, - 0,4646,4666,1,0,0,0,4647,4648,5,399,0,0,4648,4649,5,387,0,0,4649, - 4650,5,144,0,0,4650,4651,5,398,0,0,4651,4652,3,762,381,0,4652,4653, - 5,399,0,0,4653,4667,1,0,0,0,4654,4656,5,399,0,0,4655,4657,3,776, - 388,0,4656,4655,1,0,0,0,4656,4657,1,0,0,0,4657,4658,1,0,0,0,4658, - 4659,5,233,0,0,4659,4667,3,710,355,0,4660,4661,3,776,388,0,4661, - 4662,5,399,0,0,4662,4663,5,233,0,0,4663,4664,3,710,355,0,4664,4667, - 1,0,0,0,4665,4667,5,399,0,0,4666,4647,1,0,0,0,4666,4654,1,0,0,0, - 4666,4660,1,0,0,0,4666,4665,1,0,0,0,4667,4669,1,0,0,0,4668,4628, - 1,0,0,0,4668,4629,1,0,0,0,4669,775,1,0,0,0,4670,4671,5,280,0,0,4671, - 4675,5,219,0,0,4672,4673,5,152,0,0,4673,4675,5,219,0,0,4674,4670, - 1,0,0,0,4674,4672,1,0,0,0,4675,777,1,0,0,0,4676,4677,3,926,463,0, - 4677,779,1,0,0,0,4678,4681,3,784,392,0,4679,4681,5,425,0,0,4680, - 4678,1,0,0,0,4680,4679,1,0,0,0,4681,781,1,0,0,0,4682,4685,3,784, - 392,0,4683,4685,3,786,393,0,4684,4682,1,0,0,0,4684,4683,1,0,0,0, - 4685,783,1,0,0,0,4686,4687,3,926,463,0,4687,785,1,0,0,0,4688,4691, - 3,932,466,0,4689,4691,3,922,461,0,4690,4688,1,0,0,0,4690,4689,1, - 0,0,0,4691,787,1,0,0,0,4692,4693,5,36,0,0,4693,4694,5,398,0,0,4694, - 4695,3,826,413,0,4695,4696,5,17,0,0,4696,4699,3,380,190,0,4697,4698, - 5,137,0,0,4698,4700,5,425,0,0,4699,4697,1,0,0,0,4699,4700,1,0,0, - 0,4700,4701,1,0,0,0,4701,4702,5,399,0,0,4702,789,1,0,0,0,4703,4704, - 5,35,0,0,4704,4710,3,826,413,0,4705,4706,5,382,0,0,4706,4707,3,826, - 413,0,4707,4708,5,334,0,0,4708,4709,3,826,413,0,4709,4711,1,0,0, - 0,4710,4705,1,0,0,0,4711,4712,1,0,0,0,4712,4710,1,0,0,0,4712,4713, - 1,0,0,0,4713,4716,1,0,0,0,4714,4715,5,105,0,0,4715,4717,3,826,413, - 0,4716,4714,1,0,0,0,4716,4717,1,0,0,0,4717,4718,1,0,0,0,4718,4719, - 5,108,0,0,4719,791,1,0,0,0,4720,4726,5,35,0,0,4721,4722,5,382,0, - 0,4722,4723,3,826,413,0,4723,4724,5,334,0,0,4724,4725,3,826,413, - 0,4725,4727,1,0,0,0,4726,4721,1,0,0,0,4727,4728,1,0,0,0,4728,4726, - 1,0,0,0,4728,4729,1,0,0,0,4729,4732,1,0,0,0,4730,4731,5,105,0,0, - 4731,4733,3,826,413,0,4732,4730,1,0,0,0,4732,4733,1,0,0,0,4733,4734, - 1,0,0,0,4734,4735,5,108,0,0,4735,793,1,0,0,0,4736,4737,5,132,0,0, - 4737,4738,5,398,0,0,4738,4741,3,826,413,0,4739,4740,5,340,0,0,4740, - 4742,3,796,398,0,4741,4739,1,0,0,0,4741,4742,1,0,0,0,4742,4743,1, - 0,0,0,4743,4744,5,399,0,0,4744,795,1,0,0,0,4745,4754,3,974,487,0, - 4746,4754,5,256,0,0,4747,4754,3,976,488,0,4748,4754,3,978,489,0, - 4749,4754,3,980,490,0,4750,4754,3,982,491,0,4751,4754,3,984,492, - 0,4752,4754,3,986,493,0,4753,4745,1,0,0,0,4753,4746,1,0,0,0,4753, - 4747,1,0,0,0,4753,4748,1,0,0,0,4753,4749,1,0,0,0,4753,4750,1,0,0, - 0,4753,4751,1,0,0,0,4753,4752,1,0,0,0,4754,797,1,0,0,0,4755,4756, - 5,124,0,0,4756,4757,5,398,0,0,4757,4758,3,800,400,0,4758,4759,5, - 139,0,0,4759,4760,3,826,413,0,4760,4761,5,399,0,0,4761,799,1,0,0, - 0,4762,4771,3,974,487,0,4763,4771,5,256,0,0,4764,4771,3,976,488, - 0,4765,4771,3,978,489,0,4766,4771,3,980,490,0,4767,4771,3,982,491, - 0,4768,4771,3,984,492,0,4769,4771,3,986,493,0,4770,4762,1,0,0,0, - 4770,4763,1,0,0,0,4770,4764,1,0,0,0,4770,4765,1,0,0,0,4770,4766, - 1,0,0,0,4770,4767,1,0,0,0,4770,4768,1,0,0,0,4770,4769,1,0,0,0,4771, - 801,1,0,0,0,4772,4786,3,820,410,0,4773,4786,5,430,0,0,4774,4786, - 3,812,406,0,4775,4786,3,814,407,0,4776,4786,3,816,408,0,4777,4786, - 5,425,0,0,4778,4786,3,808,404,0,4779,4786,5,427,0,0,4780,4786,5, - 428,0,0,4781,4786,3,810,405,0,4782,4786,3,904,452,0,4783,4786,5, - 218,0,0,4784,4786,3,804,402,0,4785,4772,1,0,0,0,4785,4773,1,0,0, - 0,4785,4774,1,0,0,0,4785,4775,1,0,0,0,4785,4776,1,0,0,0,4785,4777, - 1,0,0,0,4785,4778,1,0,0,0,4785,4779,1,0,0,0,4785,4780,1,0,0,0,4785, - 4781,1,0,0,0,4785,4782,1,0,0,0,4785,4783,1,0,0,0,4785,4784,1,0,0, - 0,4786,803,1,0,0,0,4787,4788,3,806,403,0,4788,805,1,0,0,0,4789,4790, - 5,423,0,0,4790,807,1,0,0,0,4791,4793,5,425,0,0,4792,4794,5,425,0, - 0,4793,4792,1,0,0,0,4794,4795,1,0,0,0,4795,4793,1,0,0,0,4795,4796, - 1,0,0,0,4796,809,1,0,0,0,4797,4798,5,432,0,0,4798,4799,5,426,0,0, - 4799,811,1,0,0,0,4800,4801,5,71,0,0,4801,4804,5,425,0,0,4802,4804, - 5,63,0,0,4803,4800,1,0,0,0,4803,4802,1,0,0,0,4804,813,1,0,0,0,4805, - 4806,5,336,0,0,4806,4809,5,425,0,0,4807,4809,5,64,0,0,4808,4805, - 1,0,0,0,4808,4807,1,0,0,0,4809,815,1,0,0,0,4810,4811,5,337,0,0,4811, - 4812,5,425,0,0,4812,817,1,0,0,0,4813,4814,7,24,0,0,4814,819,1,0, - 0,0,4815,4816,3,818,409,0,4816,4817,3,824,412,0,4817,821,1,0,0,0, - 4818,4819,5,398,0,0,4819,4820,3,818,409,0,4820,4821,5,399,0,0,4821, - 4822,3,824,412,0,4822,4834,1,0,0,0,4823,4829,5,165,0,0,4824,4830, - 3,818,409,0,4825,4826,5,398,0,0,4826,4827,3,826,413,0,4827,4828, - 5,399,0,0,4828,4830,1,0,0,0,4829,4824,1,0,0,0,4829,4825,1,0,0,0, - 4830,4831,1,0,0,0,4831,4832,3,824,412,0,4832,4834,1,0,0,0,4833,4818, - 1,0,0,0,4833,4823,1,0,0,0,4834,823,1,0,0,0,4835,4836,3,974,487,0, - 4836,4837,5,340,0,0,4837,4838,3,976,488,0,4838,4850,1,0,0,0,4839, - 4840,3,980,490,0,4840,4841,5,340,0,0,4841,4842,3,986,493,0,4842, - 4850,1,0,0,0,4843,4850,3,974,487,0,4844,4850,3,976,488,0,4845,4850, - 3,980,490,0,4846,4850,3,982,491,0,4847,4850,3,984,492,0,4848,4850, - 3,986,493,0,4849,4835,1,0,0,0,4849,4839,1,0,0,0,4849,4843,1,0,0, - 0,4849,4844,1,0,0,0,4849,4845,1,0,0,0,4849,4846,1,0,0,0,4849,4847, - 1,0,0,0,4849,4848,1,0,0,0,4850,825,1,0,0,0,4851,4852,3,902,451,0, - 4852,827,1,0,0,0,4853,4865,3,802,401,0,4854,4865,3,822,411,0,4855, - 4865,3,788,394,0,4856,4865,3,798,399,0,4857,4865,3,794,397,0,4858, - 4865,3,790,395,0,4859,4865,3,792,396,0,4860,4865,3,864,432,0,4861, - 4865,3,774,387,0,4862,4865,3,744,372,0,4863,4865,3,924,462,0,4864, - 4853,1,0,0,0,4864,4854,1,0,0,0,4864,4855,1,0,0,0,4864,4856,1,0,0, - 0,4864,4857,1,0,0,0,4864,4858,1,0,0,0,4864,4859,1,0,0,0,4864,4860, - 1,0,0,0,4864,4861,1,0,0,0,4864,4862,1,0,0,0,4864,4863,1,0,0,0,4865, - 829,1,0,0,0,4866,4875,3,828,414,0,4867,4868,5,400,0,0,4868,4869, - 3,826,413,0,4869,4870,5,401,0,0,4870,4874,1,0,0,0,4871,4872,5,394, - 0,0,4872,4874,3,924,462,0,4873,4867,1,0,0,0,4873,4871,1,0,0,0,4874, - 4877,1,0,0,0,4875,4873,1,0,0,0,4875,4876,1,0,0,0,4876,831,1,0,0, - 0,4877,4875,1,0,0,0,4878,4879,7,31,0,0,4879,833,1,0,0,0,4880,4882, - 3,832,416,0,4881,4880,1,0,0,0,4882,4885,1,0,0,0,4883,4881,1,0,0, - 0,4883,4884,1,0,0,0,4884,4886,1,0,0,0,4885,4883,1,0,0,0,4886,4887, - 3,830,415,0,4887,835,1,0,0,0,4888,4889,5,422,0,0,4889,837,1,0,0, - 0,4890,4896,3,834,417,0,4891,4892,3,836,418,0,4892,4893,3,834,417, - 0,4893,4895,1,0,0,0,4894,4891,1,0,0,0,4895,4898,1,0,0,0,4896,4894, - 1,0,0,0,4896,4897,1,0,0,0,4897,839,1,0,0,0,4898,4896,1,0,0,0,4899, - 4900,7,32,0,0,4900,841,1,0,0,0,4901,4907,3,838,419,0,4902,4903,3, - 840,420,0,4903,4904,3,838,419,0,4904,4906,1,0,0,0,4905,4902,1,0, - 0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0,0,4908,843, - 1,0,0,0,4909,4907,1,0,0,0,4910,4911,7,33,0,0,4911,845,1,0,0,0,4912, - 4918,3,842,421,0,4913,4914,3,844,422,0,4914,4915,3,842,421,0,4915, - 4917,1,0,0,0,4916,4913,1,0,0,0,4917,4920,1,0,0,0,4918,4916,1,0,0, - 0,4918,4919,1,0,0,0,4919,847,1,0,0,0,4920,4918,1,0,0,0,4921,4922, - 5,421,0,0,4922,849,1,0,0,0,4923,4929,3,846,423,0,4924,4925,3,848, - 424,0,4925,4926,3,846,423,0,4926,4928,1,0,0,0,4927,4924,1,0,0,0, - 4928,4931,1,0,0,0,4929,4927,1,0,0,0,4929,4930,1,0,0,0,4930,851,1, - 0,0,0,4931,4929,1,0,0,0,4932,4933,5,418,0,0,4933,853,1,0,0,0,4934, - 4940,3,850,425,0,4935,4936,3,852,426,0,4936,4937,3,850,425,0,4937, - 4939,1,0,0,0,4938,4935,1,0,0,0,4939,4942,1,0,0,0,4940,4938,1,0,0, - 0,4940,4941,1,0,0,0,4941,855,1,0,0,0,4942,4940,1,0,0,0,4943,4944, - 5,420,0,0,4944,857,1,0,0,0,4945,4951,3,854,427,0,4946,4947,3,856, - 428,0,4947,4948,3,854,427,0,4948,4950,1,0,0,0,4949,4946,1,0,0,0, - 4950,4953,1,0,0,0,4951,4949,1,0,0,0,4951,4952,1,0,0,0,4952,859,1, - 0,0,0,4953,4951,1,0,0,0,4954,4955,7,34,0,0,4955,861,1,0,0,0,4956, - 4962,3,860,430,0,4957,4962,5,407,0,0,4958,4962,5,408,0,0,4959,4962, - 5,409,0,0,4960,4962,5,410,0,0,4961,4956,1,0,0,0,4961,4957,1,0,0, - 0,4961,4958,1,0,0,0,4961,4959,1,0,0,0,4961,4960,1,0,0,0,4962,863, - 1,0,0,0,4963,4964,5,398,0,0,4964,4965,3,408,204,0,4965,4966,5,399, - 0,0,4966,865,1,0,0,0,4967,4971,3,868,434,0,4968,4969,5,117,0,0,4969, - 4971,3,864,432,0,4970,4967,1,0,0,0,4970,4968,1,0,0,0,4971,867,1, - 0,0,0,4972,4974,3,858,429,0,4973,4975,3,870,435,0,4974,4973,1,0, - 0,0,4974,4975,1,0,0,0,4975,869,1,0,0,0,4976,4977,3,862,431,0,4977, - 4978,3,858,429,0,4978,4983,1,0,0,0,4979,4983,3,872,436,0,4980,4981, - 5,215,0,0,4981,4983,3,880,440,0,4982,4976,1,0,0,0,4982,4979,1,0, - 0,0,4982,4980,1,0,0,0,4983,871,1,0,0,0,4984,4985,5,154,0,0,4985, - 4996,3,878,439,0,4986,4987,5,25,0,0,4987,4988,3,858,429,0,4988,4989, - 5,11,0,0,4989,4990,3,858,429,0,4990,4996,1,0,0,0,4991,4992,5,183, - 0,0,4992,4993,7,35,0,0,4993,4996,3,744,372,0,4994,4996,3,874,437, - 0,4995,4984,1,0,0,0,4995,4986,1,0,0,0,4995,4991,1,0,0,0,4995,4994, - 1,0,0,0,4996,873,1,0,0,0,4997,4998,3,920,460,0,4998,4999,3,876,438, - 0,4999,5000,3,864,432,0,5000,875,1,0,0,0,5001,5002,7,36,0,0,5002, - 877,1,0,0,0,5003,5006,3,864,432,0,5004,5006,3,744,372,0,5005,5003, - 1,0,0,0,5005,5004,1,0,0,0,5006,879,1,0,0,0,5007,5008,3,860,430,0, - 5008,5009,3,858,429,0,5009,5012,1,0,0,0,5010,5012,3,872,436,0,5011, - 5007,1,0,0,0,5011,5010,1,0,0,0,5012,881,1,0,0,0,5013,5014,5,167, - 0,0,5014,5015,5,96,0,0,5015,5016,5,139,0,0,5016,883,1,0,0,0,5017, - 5025,5,404,0,0,5018,5025,5,405,0,0,5019,5025,5,406,0,0,5020,5021, - 5,167,0,0,5021,5022,5,215,0,0,5022,5023,5,96,0,0,5023,5025,5,139, - 0,0,5024,5017,1,0,0,0,5024,5018,1,0,0,0,5024,5019,1,0,0,0,5024,5020, - 1,0,0,0,5025,885,1,0,0,0,5026,5035,3,866,433,0,5027,5028,3,884,442, - 0,5028,5029,3,866,433,0,5029,5034,1,0,0,0,5030,5031,3,882,441,0, - 5031,5032,3,866,433,0,5032,5034,1,0,0,0,5033,5027,1,0,0,0,5033,5030, - 1,0,0,0,5034,5037,1,0,0,0,5035,5033,1,0,0,0,5035,5036,1,0,0,0,5036, - 887,1,0,0,0,5037,5035,1,0,0,0,5038,5051,5,218,0,0,5039,5051,5,349, - 0,0,5040,5051,5,125,0,0,5041,5051,5,359,0,0,5042,5043,5,215,0,0, - 5043,5051,5,218,0,0,5044,5045,5,215,0,0,5045,5051,5,349,0,0,5046, - 5047,5,215,0,0,5047,5051,5,125,0,0,5048,5049,5,215,0,0,5049,5051, - 5,359,0,0,5050,5038,1,0,0,0,5050,5039,1,0,0,0,5050,5040,1,0,0,0, - 5050,5041,1,0,0,0,5050,5042,1,0,0,0,5050,5044,1,0,0,0,5050,5046, - 1,0,0,0,5050,5048,1,0,0,0,5051,889,1,0,0,0,5052,5055,3,886,443,0, - 5053,5054,5,167,0,0,5054,5056,3,888,444,0,5055,5053,1,0,0,0,5055, - 5056,1,0,0,0,5056,891,1,0,0,0,5057,5058,5,215,0,0,5058,893,1,0,0, - 0,5059,5061,3,892,446,0,5060,5059,1,0,0,0,5061,5064,1,0,0,0,5062, - 5060,1,0,0,0,5062,5063,1,0,0,0,5063,5065,1,0,0,0,5064,5062,1,0,0, - 0,5065,5066,3,890,445,0,5066,895,1,0,0,0,5067,5068,5,11,0,0,5068, - 897,1,0,0,0,5069,5075,3,894,447,0,5070,5071,3,896,448,0,5071,5072, - 3,894,447,0,5072,5074,1,0,0,0,5073,5070,1,0,0,0,5074,5077,1,0,0, - 0,5075,5073,1,0,0,0,5075,5076,1,0,0,0,5076,899,1,0,0,0,5077,5075, - 1,0,0,0,5078,5079,5,227,0,0,5079,901,1,0,0,0,5080,5086,3,898,449, - 0,5081,5082,3,900,450,0,5082,5083,3,898,449,0,5083,5085,1,0,0,0, - 5084,5081,1,0,0,0,5085,5088,1,0,0,0,5086,5084,1,0,0,0,5086,5087, - 1,0,0,0,5087,903,1,0,0,0,5088,5086,1,0,0,0,5089,5090,7,37,0,0,5090, - 905,1,0,0,0,5091,5092,7,37,0,0,5092,907,1,0,0,0,5093,5095,3,658, - 329,0,5094,5096,3,910,455,0,5095,5094,1,0,0,0,5095,5096,1,0,0,0, - 5096,909,1,0,0,0,5097,5098,5,236,0,0,5098,5099,5,398,0,0,5099,5104, - 3,912,456,0,5100,5101,5,396,0,0,5101,5103,3,912,456,0,5102,5100, - 1,0,0,0,5103,5106,1,0,0,0,5104,5102,1,0,0,0,5104,5105,1,0,0,0,5105, - 5107,1,0,0,0,5106,5104,1,0,0,0,5107,5108,5,399,0,0,5108,911,1,0, - 0,0,5109,5112,3,924,462,0,5110,5111,5,404,0,0,5111,5113,3,802,401, - 0,5112,5110,1,0,0,0,5112,5113,1,0,0,0,5113,913,1,0,0,0,5114,5115, - 5,398,0,0,5115,5120,3,916,458,0,5116,5117,5,396,0,0,5117,5119,3, - 916,458,0,5118,5116,1,0,0,0,5119,5122,1,0,0,0,5120,5118,1,0,0,0, - 5120,5121,1,0,0,0,5121,5123,1,0,0,0,5122,5120,1,0,0,0,5123,5124, - 5,399,0,0,5124,915,1,0,0,0,5125,5126,3,924,462,0,5126,5127,3,918, - 459,0,5127,5128,3,802,401,0,5128,917,1,0,0,0,5129,5132,5,183,0,0, - 5130,5132,3,920,460,0,5131,5129,1,0,0,0,5131,5130,1,0,0,0,5132,919, - 1,0,0,0,5133,5134,7,38,0,0,5134,921,1,0,0,0,5135,5136,7,39,0,0,5136, - 923,1,0,0,0,5137,5140,5,431,0,0,5138,5140,3,930,465,0,5139,5137, - 1,0,0,0,5139,5138,1,0,0,0,5140,925,1,0,0,0,5141,5144,3,924,462,0, - 5142,5143,5,394,0,0,5143,5145,3,924,462,0,5144,5142,1,0,0,0,5144, - 5145,1,0,0,0,5145,927,1,0,0,0,5146,5147,3,924,462,0,5147,929,1,0, - 0,0,5148,5149,7,40,0,0,5149,931,1,0,0,0,5150,5151,7,41,0,0,5151, - 933,1,0,0,0,5152,5153,3,936,468,0,5153,5154,5,0,0,1,5154,935,1,0, - 0,0,5155,5160,3,938,469,0,5156,5157,5,396,0,0,5157,5159,3,938,469, - 0,5158,5156,1,0,0,0,5159,5162,1,0,0,0,5160,5158,1,0,0,0,5160,5161, - 1,0,0,0,5161,937,1,0,0,0,5162,5160,1,0,0,0,5163,5168,3,940,470,0, - 5164,5165,5,398,0,0,5165,5166,3,942,471,0,5166,5167,5,399,0,0,5167, - 5169,1,0,0,0,5168,5164,1,0,0,0,5168,5169,1,0,0,0,5169,939,1,0,0, - 0,5170,5171,7,42,0,0,5171,941,1,0,0,0,5172,5177,3,944,472,0,5173, - 5174,5,396,0,0,5174,5176,3,944,472,0,5175,5173,1,0,0,0,5176,5179, - 1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178,943,1,0,0,0,5179, - 5177,1,0,0,0,5180,5181,7,43,0,0,5181,945,1,0,0,0,5182,5183,5,248, - 0,0,5183,5184,3,924,462,0,5184,5185,5,139,0,0,5185,5186,3,392,196, - 0,5186,947,1,0,0,0,5187,5188,5,115,0,0,5188,5189,3,924,462,0,5189, - 5190,5,369,0,0,5190,5191,3,950,475,0,5191,949,1,0,0,0,5192,5197, - 3,802,401,0,5193,5194,5,396,0,0,5194,5196,3,802,401,0,5195,5193, - 1,0,0,0,5196,5199,1,0,0,0,5197,5195,1,0,0,0,5197,5198,1,0,0,0,5198, - 951,1,0,0,0,5199,5197,1,0,0,0,5200,5215,3,962,481,0,5201,5215,3, - 990,495,0,5202,5215,3,996,498,0,5203,5215,3,992,496,0,5204,5215, - 3,994,497,0,5205,5215,3,1018,509,0,5206,5215,3,1020,510,0,5207,5215, - 3,1022,511,0,5208,5215,3,1028,514,0,5209,5215,3,1030,515,0,5210, - 5215,3,1032,516,0,5211,5215,3,1034,517,0,5212,5215,3,1036,518,0, - 5213,5215,3,1038,519,0,5214,5200,1,0,0,0,5214,5201,1,0,0,0,5214, - 5202,1,0,0,0,5214,5203,1,0,0,0,5214,5204,1,0,0,0,5214,5205,1,0,0, - 0,5214,5206,1,0,0,0,5214,5207,1,0,0,0,5214,5208,1,0,0,0,5214,5209, - 1,0,0,0,5214,5210,1,0,0,0,5214,5211,1,0,0,0,5214,5212,1,0,0,0,5214, - 5213,1,0,0,0,5215,953,1,0,0,0,5216,5217,5,258,0,0,5217,5218,5,404, - 0,0,5218,5224,5,430,0,0,5219,5220,5,83,0,0,5220,5221,5,245,0,0,5221, - 5222,5,404,0,0,5222,5224,3,998,499,0,5223,5216,1,0,0,0,5223,5219, - 1,0,0,0,5224,955,1,0,0,0,5225,5230,3,954,477,0,5226,5227,5,396,0, - 0,5227,5229,3,954,477,0,5228,5226,1,0,0,0,5229,5232,1,0,0,0,5230, - 5228,1,0,0,0,5230,5231,1,0,0,0,5231,957,1,0,0,0,5232,5230,1,0,0, - 0,5233,5237,5,258,0,0,5234,5235,5,83,0,0,5235,5237,5,245,0,0,5236, - 5233,1,0,0,0,5236,5234,1,0,0,0,5237,959,1,0,0,0,5238,5243,3,958, - 479,0,5239,5240,5,396,0,0,5240,5242,3,958,479,0,5241,5239,1,0,0, - 0,5242,5245,1,0,0,0,5243,5241,1,0,0,0,5243,5244,1,0,0,0,5244,961, - 1,0,0,0,5245,5243,1,0,0,0,5246,5247,5,58,0,0,5247,5248,5,279,0,0, - 5248,5250,5,242,0,0,5249,5251,3,44,22,0,5250,5249,1,0,0,0,5250,5251, - 1,0,0,0,5251,5261,1,0,0,0,5252,5253,3,924,462,0,5253,5254,5,183, - 0,0,5254,5255,3,924,462,0,5255,5262,1,0,0,0,5256,5259,3,924,462, - 0,5257,5258,5,386,0,0,5258,5260,3,956,478,0,5259,5257,1,0,0,0,5259, - 5260,1,0,0,0,5260,5262,1,0,0,0,5261,5252,1,0,0,0,5261,5256,1,0,0, - 0,5262,963,1,0,0,0,5263,5264,5,386,0,0,5264,5265,5,277,0,0,5265, - 965,1,0,0,0,5266,5268,5,2,0,0,5267,5269,3,964,482,0,5268,5267,1, - 0,0,0,5268,5269,1,0,0,0,5269,967,1,0,0,0,5270,5271,7,44,0,0,5271, - 969,1,0,0,0,5272,5273,7,45,0,0,5273,971,1,0,0,0,5274,5275,5,361, - 0,0,5275,973,1,0,0,0,5276,5277,7,46,0,0,5277,975,1,0,0,0,5278,5279, - 7,47,0,0,5279,977,1,0,0,0,5280,5281,7,48,0,0,5281,979,1,0,0,0,5282, - 5283,7,49,0,0,5283,981,1,0,0,0,5284,5285,7,50,0,0,5285,983,1,0,0, - 0,5286,5287,7,51,0,0,5287,985,1,0,0,0,5288,5289,7,52,0,0,5289,987, - 1,0,0,0,5290,5291,7,53,0,0,5291,989,1,0,0,0,5292,5293,5,9,0,0,5293, - 5294,5,279,0,0,5294,5295,5,242,0,0,5295,5313,3,924,462,0,5296,5314, - 5,372,0,0,5297,5314,3,970,485,0,5298,5299,5,303,0,0,5299,5314,3, - 956,478,0,5300,5301,5,362,0,0,5301,5314,3,960,480,0,5302,5303,5, - 273,0,0,5303,5304,5,340,0,0,5304,5314,3,924,462,0,5305,5307,3,966, - 483,0,5306,5308,3,968,484,0,5307,5306,1,0,0,0,5307,5308,1,0,0,0, - 5308,5314,1,0,0,0,5309,5311,3,968,484,0,5310,5312,3,966,483,0,5311, - 5310,1,0,0,0,5311,5312,1,0,0,0,5312,5314,1,0,0,0,5313,5296,1,0,0, - 0,5313,5297,1,0,0,0,5313,5298,1,0,0,0,5313,5300,1,0,0,0,5313,5302, - 1,0,0,0,5313,5305,1,0,0,0,5313,5309,1,0,0,0,5314,991,1,0,0,0,5315, - 5318,3,968,484,0,5316,5318,3,970,485,0,5317,5315,1,0,0,0,5317,5316, - 1,0,0,0,5318,5319,1,0,0,0,5319,5320,5,389,0,0,5320,5321,5,196,0, - 0,5321,993,1,0,0,0,5322,5334,5,277,0,0,5323,5324,5,3,0,0,5324,5325, - 5,279,0,0,5325,5326,5,242,0,0,5326,5327,5,386,0,0,5327,5335,3,924, - 462,0,5328,5329,5,279,0,0,5329,5330,5,242,0,0,5330,5331,3,924,462, - 0,5331,5332,5,386,0,0,5332,5333,3,924,462,0,5333,5335,1,0,0,0,5334, - 5323,1,0,0,0,5334,5328,1,0,0,0,5335,995,1,0,0,0,5336,5337,5,101, - 0,0,5337,5338,5,279,0,0,5338,5340,5,242,0,0,5339,5341,3,40,20,0, - 5340,5339,1,0,0,0,5340,5341,1,0,0,0,5341,5342,1,0,0,0,5342,5343, - 3,924,462,0,5343,997,1,0,0,0,5344,5349,3,924,462,0,5345,5346,5,394, - 0,0,5346,5348,3,924,462,0,5347,5345,1,0,0,0,5348,5351,1,0,0,0,5349, - 5347,1,0,0,0,5349,5350,1,0,0,0,5350,999,1,0,0,0,5351,5349,1,0,0, - 0,5352,5353,3,1008,504,0,5353,1001,1,0,0,0,5354,5355,3,1000,500, - 0,5355,5356,5,0,0,1,5356,1003,1,0,0,0,5357,5362,3,1006,503,0,5358, - 5359,5,227,0,0,5359,5361,3,1006,503,0,5360,5358,1,0,0,0,5361,5364, - 1,0,0,0,5362,5360,1,0,0,0,5362,5363,1,0,0,0,5363,1005,1,0,0,0,5364, - 5362,1,0,0,0,5365,5370,3,1008,504,0,5366,5367,5,11,0,0,5367,5369, - 3,1008,504,0,5368,5366,1,0,0,0,5369,5372,1,0,0,0,5370,5368,1,0,0, - 0,5370,5371,1,0,0,0,5371,1007,1,0,0,0,5372,5370,1,0,0,0,5373,5374, - 3,924,462,0,5374,5375,3,1012,506,0,5375,5376,3,1010,505,0,5376,1009, - 1,0,0,0,5377,5378,7,24,0,0,5378,1011,1,0,0,0,5379,5380,5,410,0,0, - 5380,1013,1,0,0,0,5381,5386,5,176,0,0,5382,5383,5,210,0,0,5383,5384, - 5,340,0,0,5384,5386,3,998,499,0,5385,5381,1,0,0,0,5385,5382,1,0, - 0,0,5386,1015,1,0,0,0,5387,5388,3,1014,507,0,5388,5389,5,0,0,1,5389, - 1017,1,0,0,0,5390,5391,5,58,0,0,5391,5392,5,347,0,0,5392,5393,3, - 924,462,0,5393,5394,5,394,0,0,5394,5395,3,924,462,0,5395,5396,5, - 382,0,0,5396,5397,3,1000,500,0,5397,5398,5,99,0,0,5398,5399,3,1014, - 507,0,5399,1019,1,0,0,0,5400,5401,5,9,0,0,5401,5402,5,347,0,0,5402, - 5403,3,924,462,0,5403,5404,5,394,0,0,5404,5421,3,924,462,0,5405, - 5406,5,382,0,0,5406,5407,3,1000,500,0,5407,5408,5,99,0,0,5408,5409, - 3,1014,507,0,5409,5422,1,0,0,0,5410,5411,5,4,0,0,5411,5415,5,340, - 0,0,5412,5413,5,101,0,0,5413,5415,5,139,0,0,5414,5410,1,0,0,0,5414, - 5412,1,0,0,0,5415,5419,1,0,0,0,5416,5417,5,245,0,0,5417,5420,3,998, - 499,0,5418,5420,5,361,0,0,5419,5416,1,0,0,0,5419,5418,1,0,0,0,5420, - 5422,1,0,0,0,5421,5405,1,0,0,0,5421,5414,1,0,0,0,5422,1021,1,0,0, - 0,5423,5424,5,101,0,0,5424,5425,5,347,0,0,5425,5426,3,924,462,0, - 5426,5427,5,394,0,0,5427,5428,3,924,462,0,5428,1023,1,0,0,0,5429, - 5430,5,8,0,0,5430,5431,5,404,0,0,5431,5442,5,430,0,0,5432,5433,5, - 258,0,0,5433,5434,5,404,0,0,5434,5442,5,430,0,0,5435,5436,5,293, - 0,0,5436,5437,5,404,0,0,5437,5442,5,425,0,0,5438,5439,5,239,0,0, - 5439,5440,5,404,0,0,5440,5442,3,998,499,0,5441,5429,1,0,0,0,5441, - 5432,1,0,0,0,5441,5435,1,0,0,0,5441,5438,1,0,0,0,5442,1025,1,0,0, - 0,5443,5448,3,1024,512,0,5444,5445,5,396,0,0,5445,5447,3,1024,512, - 0,5446,5444,1,0,0,0,5447,5450,1,0,0,0,5448,5446,1,0,0,0,5448,5449, - 1,0,0,0,5449,1027,1,0,0,0,5450,5448,1,0,0,0,5451,5452,5,58,0,0,5452, - 5453,5,245,0,0,5453,5454,3,924,462,0,5454,5455,5,394,0,0,5455,5456, - 3,998,499,0,5456,5457,5,386,0,0,5457,5458,3,1026,513,0,5458,1029, - 1,0,0,0,5459,5460,5,9,0,0,5460,5461,5,245,0,0,5461,5462,3,924,462, - 0,5462,5463,5,394,0,0,5463,5471,3,998,499,0,5464,5465,5,303,0,0, - 5465,5472,3,1026,513,0,5466,5467,5,362,0,0,5467,5472,5,293,0,0,5468, - 5469,7,54,0,0,5469,5470,5,347,0,0,5470,5472,3,924,462,0,5471,5464, - 1,0,0,0,5471,5466,1,0,0,0,5471,5468,1,0,0,0,5472,1031,1,0,0,0,5473, - 5474,5,101,0,0,5474,5475,5,245,0,0,5475,5476,3,924,462,0,5476,5477, - 5,394,0,0,5477,5478,3,998,499,0,5478,1033,1,0,0,0,5479,5480,5,58, - 0,0,5480,5481,7,55,0,0,5481,5482,5,199,0,0,5482,5483,5,425,0,0,5483, - 5484,5,154,0,0,5484,5488,3,924,462,0,5485,5486,5,340,0,0,5486,5489, - 3,998,499,0,5487,5489,3,972,486,0,5488,5485,1,0,0,0,5488,5487,1, - 0,0,0,5489,5493,1,0,0,0,5490,5491,5,386,0,0,5491,5492,5,228,0,0, - 5492,5494,5,430,0,0,5493,5490,1,0,0,0,5493,5494,1,0,0,0,5494,1035, - 1,0,0,0,5495,5496,5,9,0,0,5496,5497,7,55,0,0,5497,5498,5,199,0,0, - 5498,5499,5,425,0,0,5499,5500,5,154,0,0,5500,5504,3,924,462,0,5501, - 5502,5,340,0,0,5502,5505,3,998,499,0,5503,5505,3,972,486,0,5504, - 5501,1,0,0,0,5504,5503,1,0,0,0,5505,5509,1,0,0,0,5506,5507,5,386, - 0,0,5507,5508,5,228,0,0,5508,5510,5,430,0,0,5509,5506,1,0,0,0,5509, - 5510,1,0,0,0,5510,1037,1,0,0,0,5511,5512,5,101,0,0,5512,5513,7,55, - 0,0,5513,5514,5,199,0,0,5514,5515,5,425,0,0,5515,5516,5,154,0,0, - 5516,5517,3,924,462,0,5517,1039,1,0,0,0,649,1043,1050,1053,1059, - 1065,1072,1082,1085,1089,1109,1114,1119,1125,1132,1145,1149,1153, - 1158,1165,1169,1174,1181,1185,1196,1202,1209,1258,1286,1290,1294, - 1297,1300,1305,1311,1315,1321,1323,1340,1352,1356,1363,1371,1374, - 1379,1383,1386,1396,1404,1408,1411,1415,1419,1422,1427,1433,1438, - 1443,1447,1458,1460,1464,1474,1478,1484,1487,1494,1499,1507,1512, - 1516,1524,1529,1535,1541,1544,1547,1550,1559,1567,1572,1580,1587, - 1590,1593,1595,1603,1606,1609,1612,1615,1618,1621,1624,1627,1630, - 1633,1635,1647,1653,1661,1663,1673,1679,1694,1711,1716,1720,1724, - 1731,1738,1744,1748,1751,1758,1781,1786,1790,1798,1807,1811,1817, - 1823,1830,1833,1839,1846,1854,1863,1872,1879,1899,1906,1908,1915, - 1925,1933,1937,1941,1954,1963,1979,1983,1988,1993,1996,1999,2003, - 2006,2009,2014,2022,2026,2033,2036,2039,2042,2054,2060,2086,2094, - 2098,2101,2104,2107,2110,2113,2116,2119,2128,2138,2141,2161,2167, - 2173,2176,2178,2185,2192,2202,2207,2216,2224,2232,2242,2255,2268, - 2289,2293,2308,2314,2317,2320,2323,2326,2330,2344,2352,2355,2370, - 2404,2412,2417,2425,2430,2435,2445,2453,2461,2469,2477,2481,2491, - 2495,2503,2512,2515,2519,2526,2532,2536,2542,2546,2558,2567,2578, - 2582,2589,2601,2608,2617,2620,2627,2633,2639,2642,2645,2651,2655, - 2659,2664,2668,2672,2676,2684,2688,2692,2696,2700,2708,2712,2716, - 2724,2729,2734,2738,2742,2749,2758,2766,2778,2796,2799,2805,2831, - 2834,2840,2848,2856,2869,2876,2879,2882,2885,2888,2891,2894,2897, - 2900,2903,2906,2911,2914,2917,2920,2923,2926,2929,2932,2935,2938, - 2941,2943,2949,2953,2956,2959,2962,2965,2968,2975,2979,2982,2985, - 2988,2991,2994,3001,3004,3012,3016,3023,3025,3028,3033,3036,3040, - 3045,3051,3057,3065,3073,3080,3086,3095,3098,3102,3115,3119,3130, - 3137,3141,3146,3149,3159,3161,3165,3172,3177,3197,3204,3227,3243, - 3260,3266,3283,3296,3300,3304,3311,3339,3346,3351,3356,3361,3366, - 3374,3380,3384,3387,3390,3396,3403,3413,3417,3422,3426,3432,3439, - 3446,3457,3466,3470,3473,3476,3484,3487,3495,3498,3506,3510,3515, - 3519,3528,3544,3559,3561,3577,3584,3601,3604,3607,3610,3616,3639, - 3647,3661,3664,3669,3695,3699,3702,3705,3709,3714,3717,3720,3723, - 3726,3732,3735,3738,3741,3744,3747,3750,3753,3756,3760,3762,3768, - 3773,3776,3779,3782,3788,3791,3794,3797,3800,3803,3806,3809,3812, - 3816,3818,3820,3825,3829,3832,3835,3840,3858,3867,3879,3887,3899, - 3902,3908,3915,3922,3929,3936,3945,3949,3956,3961,3965,3981,3985, - 3987,3990,4003,4006,4009,4021,4024,4031,4040,4045,4047,4049,4066, - 4069,4078,4084,4088,4091,4094,4097,4100,4112,4116,4119,4122,4130, - 4137,4140,4147,4150,4155,4162,4170,4176,4181,4185,4190,4197,4211, - 4214,4218,4235,4243,4246,4259,4268,4271,4277,4280,4285,4288,4297, - 4311,4317,4319,4327,4330,4340,4345,4347,4359,4365,4367,4374,4381, - 4390,4400,4403,4406,4409,4413,4422,4431,4439,4445,4455,4462,4470, - 4480,4490,4495,4499,4503,4509,4530,4536,4540,4544,4547,4553,4558, - 4561,4565,4573,4583,4593,4612,4619,4622,4633,4640,4643,4645,4656, - 4666,4668,4674,4680,4684,4690,4699,4712,4716,4728,4732,4741,4753, - 4770,4785,4795,4803,4808,4829,4833,4849,4864,4873,4875,4883,4896, - 4907,4918,4929,4940,4951,4961,4970,4974,4982,4995,5005,5011,5024, - 5033,5035,5050,5055,5062,5075,5086,5095,5104,5112,5120,5131,5139, - 5144,5160,5168,5177,5197,5214,5223,5230,5236,5243,5250,5259,5261, - 5268,5307,5311,5313,5317,5334,5340,5349,5362,5370,5385,5414,5419, - 5421,5441,5448,5471,5488,5493,5504,5509 + 1032,1034,1036,1038,1040,0,56,2,0,57,57,172,172,4,0,91,91,121,121, + 226,226,325,325,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154, + 2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307, + 307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190,190,299, + 299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170, + 170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373,2,0,214,214, + 272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39,376,376,4, + 0,112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,225,225,391, + 391,2,0,189,189,196,196,2,0,42,42,315,315,2,0,426,426,431,431,2, + 0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241,241,292,292, + 2,0,198,198,268,268,2,0,354,354,431,431,2,0,133,133,247,247,3,0, + 413,414,418,418,420,420,2,0,412,412,415,417,1,0,413,414,3,0,184, + 184,270,270,286,286,2,0,7,7,13,13,3,0,7,7,13,13,313,313,2,0,125, + 125,350,350,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100, + 100,131,132,151,151,154,154,162,163,184,184,198,198,216,216,228, + 228,264,264,270,270,286,286,311,311,323,324,340,340,357,357,383, + 383,405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24, + 30,31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68, + 72,77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114, + 116,118,121,127,130,137,138,142,142,147,150,152,152,155,156,158, + 160,168,170,172,177,182,183,185,187,189,193,195,197,199,202,204, + 204,206,209,211,212,214,215,217,218,220,220,222,223,226,227,232, + 233,235,236,238,240,243,246,252,252,254,255,257,259,261,262,265, + 267,271,282,284,284,287,288,293,298,300,303,305,310,312,312,314, + 317,319,325,327,328,330,330,332,334,339,340,342,342,344,346,349, + 349,352,353,355,355,357,357,360,364,366,368,371,373,375,375,377, + 382,385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131, + 145,145,151,151,162,163,198,198,264,264,311,311,337,337,4,0,199, + 199,242,242,300,300,322,322,2,0,213,213,431,432,1,0,106,107,1,0, + 94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149, + 1,0,206,207,1,0,297,298,1,0,80,82,2,0,4,4,101,101,3,0,14,14,144, + 144,369,369,5931,0,1045,1,0,0,0,2,1052,1,0,0,0,4,1057,1,0,0,0,6, + 1091,1,0,0,0,8,1093,1,0,0,0,10,1095,1,0,0,0,12,1111,1,0,0,0,14,1113, + 1,0,0,0,16,1129,1,0,0,0,18,1132,1,0,0,0,20,1141,1,0,0,0,22,1149, + 1,0,0,0,24,1162,1,0,0,0,26,1173,1,0,0,0,28,1178,1,0,0,0,30,1189, + 1,0,0,0,32,1193,1,0,0,0,34,1201,1,0,0,0,36,1206,1,0,0,0,38,1260, + 1,0,0,0,40,1262,1,0,0,0,42,1265,1,0,0,0,44,1267,1,0,0,0,46,1271, + 1,0,0,0,48,1273,1,0,0,0,50,1276,1,0,0,0,52,1279,1,0,0,0,54,1283, + 1,0,0,0,56,1325,1,0,0,0,58,1327,1,0,0,0,60,1330,1,0,0,0,62,1333, + 1,0,0,0,64,1337,1,0,0,0,66,1345,1,0,0,0,68,1348,1,0,0,0,70,1351, + 1,0,0,0,72,1360,1,0,0,0,74,1363,1,0,0,0,76,1378,1,0,0,0,78,1390, + 1,0,0,0,80,1395,1,0,0,0,82,1415,1,0,0,0,84,1419,1,0,0,0,86,1426, + 1,0,0,0,88,1451,1,0,0,0,90,1468,1,0,0,0,92,1470,1,0,0,0,94,1665, + 1,0,0,0,96,1675,1,0,0,0,98,1677,1,0,0,0,100,1685,1,0,0,0,102,1690, + 1,0,0,0,104,1692,1,0,0,0,106,1698,1,0,0,0,108,1702,1,0,0,0,110,1706, + 1,0,0,0,112,1710,1,0,0,0,114,1720,1,0,0,0,116,1731,1,0,0,0,118,1748, + 1,0,0,0,120,1766,1,0,0,0,122,1771,1,0,0,0,124,1774,1,0,0,0,126,1778, + 1,0,0,0,128,1785,1,0,0,0,130,1794,1,0,0,0,132,1800,1,0,0,0,134,1802, + 1,0,0,0,136,1819,1,0,0,0,138,1841,1,0,0,0,140,1843,1,0,0,0,142,1851, + 1,0,0,0,144,1858,1,0,0,0,146,1860,1,0,0,0,148,1874,1,0,0,0,150,1881, + 1,0,0,0,152,1883,1,0,0,0,154,1887,1,0,0,0,156,1891,1,0,0,0,158,1895, + 1,0,0,0,160,1899,1,0,0,0,162,1912,1,0,0,0,164,1920,1,0,0,0,166,1923, + 1,0,0,0,168,1925,1,0,0,0,170,1937,1,0,0,0,172,1947,1,0,0,0,174,1950, + 1,0,0,0,176,1961,1,0,0,0,178,1969,1,0,0,0,180,2013,1,0,0,0,182,2022, + 1,0,0,0,184,2049,1,0,0,0,186,2062,1,0,0,0,188,2064,1,0,0,0,190,2070, + 1,0,0,0,192,2073,1,0,0,0,194,2079,1,0,0,0,196,2085,1,0,0,0,198,2092, + 1,0,0,0,200,2126,1,0,0,0,202,2134,1,0,0,0,204,2147,1,0,0,0,206,2152, + 1,0,0,0,208,2163,1,0,0,0,210,2180,1,0,0,0,212,2182,1,0,0,0,214,2187, + 1,0,0,0,216,2194,1,0,0,0,218,2196,1,0,0,0,220,2199,1,0,0,0,222,2202, + 1,0,0,0,224,2216,1,0,0,0,226,2224,1,0,0,0,228,2232,1,0,0,0,230,2240, + 1,0,0,0,232,2260,1,0,0,0,234,2262,1,0,0,0,236,2279,1,0,0,0,238,2284, + 1,0,0,0,240,2298,1,0,0,0,242,2300,1,0,0,0,244,2303,1,0,0,0,246,2306, + 1,0,0,0,248,2315,1,0,0,0,250,2335,1,0,0,0,252,2337,1,0,0,0,254,2340, + 1,0,0,0,256,2360,1,0,0,0,258,2362,1,0,0,0,260,2366,1,0,0,0,262,2368, + 1,0,0,0,264,2377,1,0,0,0,266,2383,1,0,0,0,268,2389,1,0,0,0,270,2394, + 1,0,0,0,272,2440,1,0,0,0,274,2442,1,0,0,0,276,2445,1,0,0,0,278,2453, + 1,0,0,0,280,2461,1,0,0,0,282,2469,1,0,0,0,284,2486,1,0,0,0,286,2488, + 1,0,0,0,288,2490,1,0,0,0,290,2503,1,0,0,0,292,2511,1,0,0,0,294,2520, + 1,0,0,0,296,2524,1,0,0,0,298,2526,1,0,0,0,300,2531,1,0,0,0,302,2533, + 1,0,0,0,304,2537,1,0,0,0,306,2543,1,0,0,0,308,2551,1,0,0,0,310,2553, + 1,0,0,0,312,2556,1,0,0,0,314,2563,1,0,0,0,316,2574,1,0,0,0,318,2587, + 1,0,0,0,320,2589,1,0,0,0,322,2597,1,0,0,0,324,2601,1,0,0,0,326,2609, + 1,0,0,0,328,2613,1,0,0,0,330,2615,1,0,0,0,332,2617,1,0,0,0,334,2620, + 1,0,0,0,336,2627,1,0,0,0,338,2635,1,0,0,0,340,2640,1,0,0,0,342,2644, + 1,0,0,0,344,2652,1,0,0,0,346,2660,1,0,0,0,348,2664,1,0,0,0,350,2666, + 1,0,0,0,352,2677,1,0,0,0,354,2681,1,0,0,0,356,2693,1,0,0,0,358,2701, + 1,0,0,0,360,2705,1,0,0,0,362,2717,1,0,0,0,364,2729,1,0,0,0,366,2734, + 1,0,0,0,368,2739,1,0,0,0,370,2741,1,0,0,0,372,2745,1,0,0,0,374,2749, + 1,0,0,0,376,2756,1,0,0,0,378,2758,1,0,0,0,380,2771,1,0,0,0,382,2810, + 1,0,0,0,384,2812,1,0,0,0,386,2817,1,0,0,0,388,2822,1,0,0,0,390,2829, + 1,0,0,0,392,2834,1,0,0,0,394,2839,1,0,0,0,396,2845,1,0,0,0,398,2847, + 1,0,0,0,400,2856,1,0,0,0,402,2868,1,0,0,0,404,2948,1,0,0,0,406,2954, + 1,0,0,0,408,2980,1,0,0,0,410,2982,1,0,0,0,412,3004,1,0,0,0,414,3009, + 1,0,0,0,416,3013,1,0,0,0,418,3045,1,0,0,0,420,3047,1,0,0,0,422,3058, + 1,0,0,0,424,3064,1,0,0,0,426,3070,1,0,0,0,428,3072,1,0,0,0,430,3081, + 1,0,0,0,432,3091,1,0,0,0,434,3093,1,0,0,0,436,3107,1,0,0,0,438,3109, + 1,0,0,0,440,3112,1,0,0,0,442,3116,1,0,0,0,444,3118,1,0,0,0,446,3122, + 1,0,0,0,448,3126,1,0,0,0,450,3130,1,0,0,0,452,3137,1,0,0,0,454,3144, + 1,0,0,0,456,3166,1,0,0,0,458,3172,1,0,0,0,460,3187,1,0,0,0,462,3194, + 1,0,0,0,464,3202,1,0,0,0,466,3204,1,0,0,0,468,3211,1,0,0,0,470,3215, + 1,0,0,0,472,3218,1,0,0,0,474,3221,1,0,0,0,476,3224,1,0,0,0,478,3271, + 1,0,0,0,480,3288,1,0,0,0,482,3290,1,0,0,0,484,3301,1,0,0,0,486,3305, + 1,0,0,0,488,3309,1,0,0,0,490,3311,1,0,0,0,492,3316,1,0,0,0,494,3318, + 1,0,0,0,496,3323,1,0,0,0,498,3328,1,0,0,0,500,3333,1,0,0,0,502,3338, + 1,0,0,0,504,3344,1,0,0,0,506,3353,1,0,0,0,508,3358,1,0,0,0,510,3371, + 1,0,0,0,512,3373,1,0,0,0,514,3377,1,0,0,0,516,3397,1,0,0,0,518,3410, + 1,0,0,0,520,3418,1,0,0,0,522,3420,1,0,0,0,524,3429,1,0,0,0,526,3433, + 1,0,0,0,528,3440,1,0,0,0,530,3447,1,0,0,0,532,3454,1,0,0,0,534,3457, + 1,0,0,0,536,3460,1,0,0,0,538,3492,1,0,0,0,540,3503,1,0,0,0,542,3520, + 1,0,0,0,544,3522,1,0,0,0,546,3526,1,0,0,0,548,3533,1,0,0,0,550,3535, + 1,0,0,0,552,3540,1,0,0,0,554,3544,1,0,0,0,556,3552,1,0,0,0,558,3556, + 1,0,0,0,560,3566,1,0,0,0,562,3568,1,0,0,0,564,3574,1,0,0,0,566,3578, + 1,0,0,0,568,3591,1,0,0,0,570,3593,1,0,0,0,572,3597,1,0,0,0,574,3600, + 1,0,0,0,576,3603,1,0,0,0,578,3623,1,0,0,0,580,3627,1,0,0,0,582,3634, + 1,0,0,0,584,3648,1,0,0,0,586,3669,1,0,0,0,588,3674,1,0,0,0,590,3676, + 1,0,0,0,592,3681,1,0,0,0,594,3686,1,0,0,0,596,3700,1,0,0,0,598,3831, + 1,0,0,0,600,3833,1,0,0,0,602,3853,1,0,0,0,604,3856,1,0,0,0,606,3859, + 1,0,0,0,608,3862,1,0,0,0,610,3866,1,0,0,0,612,3878,1,0,0,0,614,3883, + 1,0,0,0,616,3885,1,0,0,0,618,3893,1,0,0,0,620,3901,1,0,0,0,622,3913, + 1,0,0,0,624,3947,1,0,0,0,626,3949,1,0,0,0,628,3967,1,0,0,0,630,3976, + 1,0,0,0,632,3981,1,0,0,0,634,3985,1,0,0,0,636,4001,1,0,0,0,638,4060, + 1,0,0,0,640,4062,1,0,0,0,642,4064,1,0,0,0,644,4084,1,0,0,0,646,4095, + 1,0,0,0,648,4097,1,0,0,0,650,4113,1,0,0,0,652,4125,1,0,0,0,654,4135, + 1,0,0,0,656,4137,1,0,0,0,658,4141,1,0,0,0,660,4151,1,0,0,0,662,4161, + 1,0,0,0,664,4166,1,0,0,0,666,4173,1,0,0,0,668,4177,1,0,0,0,670,4196, + 1,0,0,0,672,4201,1,0,0,0,674,4203,1,0,0,0,676,4231,1,0,0,0,678,4234, + 1,0,0,0,680,4236,1,0,0,0,682,4238,1,0,0,0,684,4257,1,0,0,0,686,4259, + 1,0,0,0,688,4261,1,0,0,0,690,4265,1,0,0,0,692,4299,1,0,0,0,694,4301, + 1,0,0,0,696,4303,1,0,0,0,698,4311,1,0,0,0,700,4358,1,0,0,0,702,4360, + 1,0,0,0,704,4385,1,0,0,0,706,4387,1,0,0,0,708,4395,1,0,0,0,710,4404, + 1,0,0,0,712,4420,1,0,0,0,714,4424,1,0,0,0,716,4426,1,0,0,0,718,4435, + 1,0,0,0,720,4450,1,0,0,0,722,4456,1,0,0,0,724,4458,1,0,0,0,726,4466, + 1,0,0,0,728,4468,1,0,0,0,730,4473,1,0,0,0,732,4486,1,0,0,0,734,4510, + 1,0,0,0,736,4512,1,0,0,0,738,4525,1,0,0,0,740,4527,1,0,0,0,742,4530, + 1,0,0,0,744,4533,1,0,0,0,746,4535,1,0,0,0,748,4539,1,0,0,0,750,4545, + 1,0,0,0,752,4551,1,0,0,0,754,4553,1,0,0,0,756,4567,1,0,0,0,758,4576, + 1,0,0,0,760,4578,1,0,0,0,762,4589,1,0,0,0,764,4597,1,0,0,0,766,4607, + 1,0,0,0,768,4611,1,0,0,0,770,4615,1,0,0,0,772,4619,1,0,0,0,774,4625, + 1,0,0,0,776,4679,1,0,0,0,778,4685,1,0,0,0,780,4687,1,0,0,0,782,4691, + 1,0,0,0,784,4695,1,0,0,0,786,4697,1,0,0,0,788,4701,1,0,0,0,790,4703, + 1,0,0,0,792,4714,1,0,0,0,794,4731,1,0,0,0,796,4747,1,0,0,0,798,4764, + 1,0,0,0,800,4766,1,0,0,0,802,4781,1,0,0,0,804,4796,1,0,0,0,806,4798, + 1,0,0,0,808,4800,1,0,0,0,810,4802,1,0,0,0,812,4808,1,0,0,0,814,4814, + 1,0,0,0,816,4819,1,0,0,0,818,4821,1,0,0,0,820,4824,1,0,0,0,822,4826, + 1,0,0,0,824,4844,1,0,0,0,826,4860,1,0,0,0,828,4862,1,0,0,0,830,4875, + 1,0,0,0,832,4877,1,0,0,0,834,4889,1,0,0,0,836,4894,1,0,0,0,838,4899, + 1,0,0,0,840,4901,1,0,0,0,842,4910,1,0,0,0,844,4912,1,0,0,0,846,4921, + 1,0,0,0,848,4923,1,0,0,0,850,4932,1,0,0,0,852,4934,1,0,0,0,854,4943, + 1,0,0,0,856,4945,1,0,0,0,858,4954,1,0,0,0,860,4956,1,0,0,0,862,4965, + 1,0,0,0,864,4972,1,0,0,0,866,4974,1,0,0,0,868,4981,1,0,0,0,870,4983, + 1,0,0,0,872,4993,1,0,0,0,874,5006,1,0,0,0,876,5008,1,0,0,0,878,5012, + 1,0,0,0,880,5016,1,0,0,0,882,5022,1,0,0,0,884,5024,1,0,0,0,886,5035, + 1,0,0,0,888,5037,1,0,0,0,890,5061,1,0,0,0,892,5063,1,0,0,0,894,5068, + 1,0,0,0,896,5073,1,0,0,0,898,5078,1,0,0,0,900,5080,1,0,0,0,902,5089, + 1,0,0,0,904,5091,1,0,0,0,906,5100,1,0,0,0,908,5102,1,0,0,0,910,5104, + 1,0,0,0,912,5108,1,0,0,0,914,5120,1,0,0,0,916,5125,1,0,0,0,918,5136, + 1,0,0,0,920,5142,1,0,0,0,922,5144,1,0,0,0,924,5146,1,0,0,0,926,5150, + 1,0,0,0,928,5152,1,0,0,0,930,5157,1,0,0,0,932,5159,1,0,0,0,934,5161, + 1,0,0,0,936,5163,1,0,0,0,938,5166,1,0,0,0,940,5174,1,0,0,0,942,5181, + 1,0,0,0,944,5183,1,0,0,0,946,5191,1,0,0,0,948,5193,1,0,0,0,950,5198, + 1,0,0,0,952,5203,1,0,0,0,954,5225,1,0,0,0,956,5234,1,0,0,0,958,5236, + 1,0,0,0,960,5247,1,0,0,0,962,5249,1,0,0,0,964,5257,1,0,0,0,966,5274, + 1,0,0,0,968,5277,1,0,0,0,970,5281,1,0,0,0,972,5283,1,0,0,0,974,5285, + 1,0,0,0,976,5287,1,0,0,0,978,5289,1,0,0,0,980,5291,1,0,0,0,982,5293, + 1,0,0,0,984,5295,1,0,0,0,986,5297,1,0,0,0,988,5299,1,0,0,0,990,5301, + 1,0,0,0,992,5303,1,0,0,0,994,5328,1,0,0,0,996,5333,1,0,0,0,998,5347, + 1,0,0,0,1000,5355,1,0,0,0,1002,5363,1,0,0,0,1004,5365,1,0,0,0,1006, + 5368,1,0,0,0,1008,5376,1,0,0,0,1010,5384,1,0,0,0,1012,5388,1,0,0, + 0,1014,5390,1,0,0,0,1016,5396,1,0,0,0,1018,5398,1,0,0,0,1020,5401, + 1,0,0,0,1022,5411,1,0,0,0,1024,5434,1,0,0,0,1026,5452,1,0,0,0,1028, + 5454,1,0,0,0,1030,5462,1,0,0,0,1032,5470,1,0,0,0,1034,5484,1,0,0, + 0,1036,5490,1,0,0,0,1038,5506,1,0,0,0,1040,5522,1,0,0,0,1042,1044, + 3,2,1,0,1043,1042,1,0,0,0,1044,1047,1,0,0,0,1045,1043,1,0,0,0,1045, + 1046,1,0,0,0,1046,1048,1,0,0,0,1047,1045,1,0,0,0,1048,1049,5,0,0, + 1,1049,1,1,0,0,0,1050,1053,3,4,2,0,1051,1053,3,12,6,0,1052,1050, + 1,0,0,0,1052,1051,1,0,0,0,1053,1055,1,0,0,0,1054,1056,5,398,0,0, + 1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,3,1,0,0,0,1057,1067,5,119, + 0,0,1058,1060,3,6,3,0,1059,1058,1,0,0,0,1060,1063,1,0,0,0,1061,1059, + 1,0,0,0,1061,1062,1,0,0,0,1062,1064,1,0,0,0,1063,1061,1,0,0,0,1064, + 1068,3,12,6,0,1065,1066,5,284,0,0,1066,1068,3,394,197,0,1067,1061, + 1,0,0,0,1067,1065,1,0,0,0,1068,5,1,0,0,0,1069,1092,5,122,0,0,1070, + 1092,5,138,0,0,1071,1092,5,88,0,0,1072,1074,5,37,0,0,1073,1075,7, + 0,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,1092,1,0,0,0,1076, + 1092,5,192,0,0,1077,1092,5,21,0,0,1078,1092,5,10,0,0,1079,1092,5, + 275,0,0,1080,1092,5,191,0,0,1081,1092,5,19,0,0,1082,1084,5,377,0, + 0,1083,1085,3,8,4,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1087, + 1,0,0,0,1086,1088,3,10,5,0,1087,1086,1,0,0,0,1087,1088,1,0,0,0,1088, + 1092,1,0,0,0,1089,1092,5,79,0,0,1090,1092,5,78,0,0,1091,1069,1,0, + 0,0,1091,1070,1,0,0,0,1091,1071,1,0,0,0,1091,1072,1,0,0,0,1091,1076, + 1,0,0,0,1091,1077,1,0,0,0,1091,1078,1,0,0,0,1091,1079,1,0,0,0,1091, + 1080,1,0,0,0,1091,1081,1,0,0,0,1091,1082,1,0,0,0,1091,1089,1,0,0, + 0,1091,1090,1,0,0,0,1092,7,1,0,0,0,1093,1094,5,225,0,0,1094,9,1, + 0,0,0,1095,1096,7,1,0,0,1096,11,1,0,0,0,1097,1112,3,394,197,0,1098, + 1112,3,14,7,0,1099,1112,3,20,10,0,1100,1112,3,22,11,0,1101,1112, + 3,24,12,0,1102,1112,3,28,14,0,1103,1112,3,36,18,0,1104,1112,3,38, + 19,0,1105,1112,3,422,211,0,1106,1112,3,430,215,0,1107,1112,3,432, + 216,0,1108,1112,3,454,227,0,1109,1112,3,948,474,0,1110,1112,3,950, + 475,0,1111,1097,1,0,0,0,1111,1098,1,0,0,0,1111,1099,1,0,0,0,1111, + 1100,1,0,0,0,1111,1101,1,0,0,0,1111,1102,1,0,0,0,1111,1103,1,0,0, + 0,1111,1104,1,0,0,0,1111,1105,1,0,0,0,1111,1106,1,0,0,0,1111,1107, + 1,0,0,0,1111,1108,1,0,0,0,1111,1109,1,0,0,0,1111,1110,1,0,0,0,1112, + 13,1,0,0,0,1113,1114,5,187,0,0,1114,1116,5,66,0,0,1115,1117,5,188, + 0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1119, + 5,158,0,0,1119,1121,5,426,0,0,1120,1122,5,235,0,0,1121,1120,1,0, + 0,0,1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123,1124,5,166,0,0,1124, + 1125,5,329,0,0,1125,1127,3,910,455,0,1126,1128,3,78,39,0,1127,1126, + 1,0,0,0,1127,1128,1,0,0,0,1128,15,1,0,0,0,1129,1130,5,152,0,0,1130, + 1131,5,254,0,0,1131,17,1,0,0,0,1132,1134,5,134,0,0,1133,1135,5,204, + 0,0,1134,1133,1,0,0,0,1134,1135,1,0,0,0,1135,1136,1,0,0,0,1136,1137, + 5,279,0,0,1137,1138,5,399,0,0,1138,1139,5,426,0,0,1139,1140,5,400, + 0,0,1140,19,1,0,0,0,1141,1142,5,120,0,0,1142,1143,5,329,0,0,1143, + 1144,3,910,455,0,1144,1145,5,341,0,0,1145,1147,5,426,0,0,1146,1148, + 3,18,9,0,1147,1146,1,0,0,0,1147,1148,1,0,0,0,1148,21,1,0,0,0,1149, + 1155,5,153,0,0,1150,1152,5,123,0,0,1151,1150,1,0,0,0,1151,1152,1, + 0,0,0,1152,1153,1,0,0,0,1153,1154,5,329,0,0,1154,1156,3,910,455, + 0,1155,1151,1,0,0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1158, + 5,139,0,0,1158,1160,5,426,0,0,1159,1161,3,274,137,0,1160,1159,1, + 0,0,0,1160,1161,1,0,0,0,1161,23,1,0,0,0,1162,1163,5,277,0,0,1163, + 1164,5,103,0,0,1164,1167,3,26,13,0,1165,1166,5,278,0,0,1166,1168, + 3,26,13,0,1167,1165,1,0,0,0,1167,1168,1,0,0,0,1168,1171,1,0,0,0, + 1169,1170,5,387,0,0,1170,1172,3,30,15,0,1171,1169,1,0,0,0,1171,1172, + 1,0,0,0,1172,25,1,0,0,0,1173,1176,3,654,327,0,1174,1175,5,395,0, + 0,1175,1177,3,34,17,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,27, + 1,0,0,0,1178,1179,5,277,0,0,1179,1180,5,187,0,0,1180,1183,3,26,13, + 0,1181,1182,5,166,0,0,1182,1184,3,654,327,0,1183,1181,1,0,0,0,1183, + 1184,1,0,0,0,1184,1187,1,0,0,0,1185,1186,5,387,0,0,1186,1188,3,30, + 15,0,1187,1185,1,0,0,0,1187,1188,1,0,0,0,1188,29,1,0,0,0,1189,1190, + 5,399,0,0,1190,1191,3,32,16,0,1191,1192,5,400,0,0,1192,31,1,0,0, + 0,1193,1198,3,258,129,0,1194,1195,5,397,0,0,1195,1197,3,258,129, + 0,1196,1194,1,0,0,0,1197,1200,1,0,0,0,1198,1196,1,0,0,0,1198,1199, + 1,0,0,0,1199,33,1,0,0,0,1200,1198,1,0,0,0,1201,1204,5,426,0,0,1202, + 1203,5,395,0,0,1203,1205,5,426,0,0,1204,1202,1,0,0,0,1204,1205,1, + 0,0,0,1205,35,1,0,0,0,1206,1207,5,277,0,0,1207,1208,5,320,0,0,1208, + 1211,3,654,327,0,1209,1210,5,387,0,0,1210,1212,3,30,15,0,1211,1209, + 1,0,0,0,1211,1212,1,0,0,0,1212,37,1,0,0,0,1213,1261,3,56,28,0,1214, + 1261,3,68,34,0,1215,1261,3,70,35,0,1216,1261,3,598,299,0,1217,1261, + 3,76,38,0,1218,1261,3,74,37,0,1219,1261,3,476,238,0,1220,1261,3, + 86,43,0,1221,1261,3,94,47,0,1222,1261,3,160,80,0,1223,1261,3,182, + 91,0,1224,1261,3,198,99,0,1225,1261,3,202,101,0,1226,1261,3,206, + 103,0,1227,1261,3,204,102,0,1228,1261,3,196,98,0,1229,1261,3,200, + 100,0,1230,1261,3,168,84,0,1231,1261,3,174,87,0,1232,1261,3,170, + 85,0,1233,1261,3,172,86,0,1234,1261,3,176,88,0,1235,1261,3,178,89, + 0,1236,1261,3,180,90,0,1237,1261,3,88,44,0,1238,1261,3,98,49,0,1239, + 1261,3,104,52,0,1240,1261,3,100,50,0,1241,1261,3,106,53,0,1242,1261, + 3,108,54,0,1243,1261,3,110,55,0,1244,1261,3,112,56,0,1245,1261,3, + 114,57,0,1246,1261,3,128,64,0,1247,1261,3,120,60,0,1248,1261,3,130, + 65,0,1249,1261,3,122,61,0,1250,1261,3,116,58,0,1251,1261,3,118,59, + 0,1252,1261,3,126,63,0,1253,1261,3,124,62,0,1254,1261,3,450,225, + 0,1255,1261,3,452,226,0,1256,1261,3,466,233,0,1257,1261,3,954,477, + 0,1258,1261,3,600,300,0,1259,1261,3,610,305,0,1260,1213,1,0,0,0, + 1260,1214,1,0,0,0,1260,1215,1,0,0,0,1260,1216,1,0,0,0,1260,1217, + 1,0,0,0,1260,1218,1,0,0,0,1260,1219,1,0,0,0,1260,1220,1,0,0,0,1260, + 1221,1,0,0,0,1260,1222,1,0,0,0,1260,1223,1,0,0,0,1260,1224,1,0,0, + 0,1260,1225,1,0,0,0,1260,1226,1,0,0,0,1260,1227,1,0,0,0,1260,1228, + 1,0,0,0,1260,1229,1,0,0,0,1260,1230,1,0,0,0,1260,1231,1,0,0,0,1260, + 1232,1,0,0,0,1260,1233,1,0,0,0,1260,1234,1,0,0,0,1260,1235,1,0,0, + 0,1260,1236,1,0,0,0,1260,1237,1,0,0,0,1260,1238,1,0,0,0,1260,1239, + 1,0,0,0,1260,1240,1,0,0,0,1260,1241,1,0,0,0,1260,1242,1,0,0,0,1260, + 1243,1,0,0,0,1260,1244,1,0,0,0,1260,1245,1,0,0,0,1260,1246,1,0,0, + 0,1260,1247,1,0,0,0,1260,1248,1,0,0,0,1260,1249,1,0,0,0,1260,1250, + 1,0,0,0,1260,1251,1,0,0,0,1260,1252,1,0,0,0,1260,1253,1,0,0,0,1260, + 1254,1,0,0,0,1260,1255,1,0,0,0,1260,1256,1,0,0,0,1260,1257,1,0,0, + 0,1260,1258,1,0,0,0,1260,1259,1,0,0,0,1261,39,1,0,0,0,1262,1263, + 5,151,0,0,1263,1264,5,117,0,0,1264,41,1,0,0,0,1265,1266,7,2,0,0, + 1266,43,1,0,0,0,1267,1268,5,151,0,0,1268,1269,5,216,0,0,1269,1270, + 5,117,0,0,1270,45,1,0,0,0,1271,1272,5,135,0,0,1272,47,1,0,0,0,1273, + 1274,3,970,485,0,1274,1275,5,284,0,0,1275,49,1,0,0,0,1276,1277,3, + 972,486,0,1277,1278,5,284,0,0,1278,51,1,0,0,0,1279,1280,5,321,0, + 0,1280,1281,5,17,0,0,1281,1282,5,92,0,0,1282,53,1,0,0,0,1283,1284, + 5,228,0,0,1284,1285,5,278,0,0,1285,55,1,0,0,0,1286,1288,5,58,0,0, + 1287,1289,5,273,0,0,1288,1287,1,0,0,0,1288,1289,1,0,0,0,1289,1290, + 1,0,0,0,1290,1292,3,92,46,0,1291,1293,3,44,22,0,1292,1291,1,0,0, + 0,1292,1293,1,0,0,0,1293,1294,1,0,0,0,1294,1296,3,656,328,0,1295, + 1297,3,72,36,0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297,1299,1,0, + 0,0,1298,1300,3,58,29,0,1299,1298,1,0,0,0,1299,1300,1,0,0,0,1300, + 1302,1,0,0,0,1301,1303,3,60,30,0,1302,1301,1,0,0,0,1302,1303,1,0, + 0,0,1303,1307,1,0,0,0,1304,1305,5,387,0,0,1305,1306,5,76,0,0,1306, + 1308,3,62,31,0,1307,1304,1,0,0,0,1307,1308,1,0,0,0,1308,1326,1,0, + 0,0,1309,1310,5,58,0,0,1310,1311,5,273,0,0,1311,1313,3,92,46,0,1312, + 1314,3,44,22,0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1315,1,0, + 0,0,1315,1317,3,656,328,0,1316,1318,3,72,36,0,1317,1316,1,0,0,0, + 1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1323,3,66,33,0,1320,1321, + 5,387,0,0,1321,1322,5,76,0,0,1322,1324,3,62,31,0,1323,1320,1,0,0, + 0,1323,1324,1,0,0,0,1324,1326,1,0,0,0,1325,1286,1,0,0,0,1325,1309, + 1,0,0,0,1326,57,1,0,0,0,1327,1328,5,189,0,0,1328,1329,5,426,0,0, + 1329,59,1,0,0,0,1330,1331,5,196,0,0,1331,1332,5,426,0,0,1332,61, + 1,0,0,0,1333,1334,5,399,0,0,1334,1335,3,64,32,0,1335,1336,5,400, + 0,0,1336,63,1,0,0,0,1337,1342,3,258,129,0,1338,1339,5,397,0,0,1339, + 1341,3,258,129,0,1340,1338,1,0,0,0,1341,1344,1,0,0,0,1342,1340,1, + 0,0,0,1342,1343,1,0,0,0,1343,65,1,0,0,0,1344,1342,1,0,0,0,1345,1346, + 5,370,0,0,1346,1347,3,654,327,0,1347,67,1,0,0,0,1348,1349,5,368, + 0,0,1349,1350,3,654,327,0,1350,69,1,0,0,0,1351,1352,5,101,0,0,1352, + 1354,3,92,46,0,1353,1355,3,40,20,0,1354,1353,1,0,0,0,1354,1355,1, + 0,0,0,1355,1356,1,0,0,0,1356,1358,3,654,327,0,1357,1359,3,42,21, + 0,1358,1357,1,0,0,0,1358,1359,1,0,0,0,1359,71,1,0,0,0,1360,1361, + 5,47,0,0,1361,1362,5,426,0,0,1362,73,1,0,0,0,1363,1365,5,351,0,0, + 1364,1366,5,329,0,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,1367, + 1,0,0,0,1367,1373,3,544,272,0,1368,1369,5,46,0,0,1369,1370,5,399, + 0,0,1370,1371,3,282,141,0,1371,1372,5,400,0,0,1372,1374,1,0,0,0, + 1373,1368,1,0,0,0,1373,1374,1,0,0,0,1374,1376,1,0,0,0,1375,1377, + 3,46,23,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377,75,1,0,0,0,1378, + 1379,5,101,0,0,1379,1381,5,329,0,0,1380,1382,3,40,20,0,1381,1380, + 1,0,0,0,1381,1382,1,0,0,0,1382,1383,1,0,0,0,1383,1385,3,660,330, + 0,1384,1386,5,255,0,0,1385,1384,1,0,0,0,1385,1386,1,0,0,0,1386,1388, + 1,0,0,0,1387,1389,3,18,9,0,1388,1387,1,0,0,0,1388,1389,1,0,0,0,1389, + 77,1,0,0,0,1390,1391,5,160,0,0,1391,1392,5,426,0,0,1392,1393,5,301, + 0,0,1393,1394,5,426,0,0,1394,79,1,0,0,0,1395,1398,3,926,463,0,1396, + 1397,5,395,0,0,1397,1399,3,926,463,0,1398,1396,1,0,0,0,1398,1399, + 1,0,0,0,1399,1413,1,0,0,0,1400,1410,3,926,463,0,1401,1406,5,395, + 0,0,1402,1407,5,104,0,0,1403,1407,5,175,0,0,1404,1407,5,375,0,0, + 1405,1407,3,926,463,0,1406,1402,1,0,0,0,1406,1403,1,0,0,0,1406,1404, + 1,0,0,0,1406,1405,1,0,0,0,1407,1409,1,0,0,0,1408,1401,1,0,0,0,1409, + 1412,1,0,0,0,1410,1408,1,0,0,0,1410,1411,1,0,0,0,1411,1414,1,0,0, + 0,1412,1410,1,0,0,0,1413,1400,1,0,0,0,1413,1414,1,0,0,0,1414,81, + 1,0,0,0,1415,1417,3,80,40,0,1416,1418,3,912,456,0,1417,1416,1,0, + 0,0,1417,1418,1,0,0,0,1418,83,1,0,0,0,1419,1421,3,658,329,0,1420, + 1422,3,912,456,0,1421,1420,1,0,0,0,1421,1422,1,0,0,0,1422,1424,1, + 0,0,0,1423,1425,3,288,144,0,1424,1423,1,0,0,0,1424,1425,1,0,0,0, + 1425,85,1,0,0,0,1426,1449,7,3,0,0,1427,1429,3,92,46,0,1428,1430, + 5,122,0,0,1429,1428,1,0,0,0,1429,1430,1,0,0,0,1430,1431,1,0,0,0, + 1431,1432,3,654,327,0,1432,1450,1,0,0,0,1433,1435,5,69,0,0,1434, + 1436,5,122,0,0,1435,1434,1,0,0,0,1435,1436,1,0,0,0,1436,1437,1,0, + 0,0,1437,1450,3,654,327,0,1438,1440,5,141,0,0,1439,1441,5,122,0, + 0,1440,1439,1,0,0,0,1440,1441,1,0,0,0,1441,1442,1,0,0,0,1442,1450, + 3,782,391,0,1443,1446,5,138,0,0,1444,1446,5,122,0,0,1445,1443,1, + 0,0,0,1445,1444,1,0,0,0,1446,1447,1,0,0,0,1447,1450,3,84,42,0,1448, + 1450,3,84,42,0,1449,1427,1,0,0,0,1449,1433,1,0,0,0,1449,1438,1,0, + 0,0,1449,1445,1,0,0,0,1449,1448,1,0,0,0,1450,87,1,0,0,0,1451,1452, + 5,10,0,0,1452,1453,5,329,0,0,1453,1466,3,910,455,0,1454,1455,5,52, + 0,0,1455,1462,5,319,0,0,1456,1463,5,215,0,0,1457,1458,5,134,0,0, + 1458,1460,5,46,0,0,1459,1461,3,282,141,0,1460,1459,1,0,0,0,1460, + 1461,1,0,0,0,1461,1463,1,0,0,0,1462,1456,1,0,0,0,1462,1457,1,0,0, + 0,1462,1463,1,0,0,0,1463,1467,1,0,0,0,1464,1465,5,33,0,0,1465,1467, + 5,204,0,0,1466,1454,1,0,0,0,1466,1464,1,0,0,0,1467,89,1,0,0,0,1468, + 1469,7,4,0,0,1469,91,1,0,0,0,1470,1471,7,5,0,0,1471,93,1,0,0,0,1472, + 1473,5,308,0,0,1473,1476,7,6,0,0,1474,1475,5,184,0,0,1475,1477,3, + 216,108,0,1476,1474,1,0,0,0,1476,1477,1,0,0,0,1477,1666,1,0,0,0, + 1478,1480,5,308,0,0,1479,1481,5,122,0,0,1480,1479,1,0,0,0,1480,1481, + 1,0,0,0,1481,1482,1,0,0,0,1482,1486,5,330,0,0,1483,1484,3,90,45, + 0,1484,1485,3,654,327,0,1485,1487,1,0,0,0,1486,1483,1,0,0,0,1486, + 1487,1,0,0,0,1487,1489,1,0,0,0,1488,1490,3,96,48,0,1489,1488,1,0, + 0,0,1489,1490,1,0,0,0,1490,1666,1,0,0,0,1491,1492,5,308,0,0,1492, + 1496,5,379,0,0,1493,1494,3,90,45,0,1494,1495,3,654,327,0,1495,1497, + 1,0,0,0,1496,1493,1,0,0,0,1496,1497,1,0,0,0,1497,1501,1,0,0,0,1498, + 1499,5,184,0,0,1499,1502,3,216,108,0,1500,1502,3,216,108,0,1501, + 1498,1,0,0,0,1501,1500,1,0,0,0,1501,1502,1,0,0,0,1502,1666,1,0,0, + 0,1503,1504,5,308,0,0,1504,1505,5,202,0,0,1505,1509,5,379,0,0,1506, + 1507,3,90,45,0,1507,1508,3,654,327,0,1508,1510,1,0,0,0,1509,1506, + 1,0,0,0,1509,1510,1,0,0,0,1510,1514,1,0,0,0,1511,1512,5,184,0,0, + 1512,1515,3,216,108,0,1513,1515,3,216,108,0,1514,1511,1,0,0,0,1514, + 1513,1,0,0,0,1514,1515,1,0,0,0,1515,1666,1,0,0,0,1516,1518,5,308, + 0,0,1517,1519,5,315,0,0,1518,1517,1,0,0,0,1518,1519,1,0,0,0,1519, + 1520,1,0,0,0,1520,1521,5,46,0,0,1521,1522,3,90,45,0,1522,1526,3, + 658,329,0,1523,1524,3,90,45,0,1524,1525,3,654,327,0,1525,1527,1, + 0,0,0,1526,1523,1,0,0,0,1526,1527,1,0,0,0,1527,1531,1,0,0,0,1528, + 1529,5,184,0,0,1529,1532,3,216,108,0,1530,1532,3,216,108,0,1531, + 1528,1,0,0,0,1531,1530,1,0,0,0,1531,1532,1,0,0,0,1532,1666,1,0,0, + 0,1533,1534,5,308,0,0,1534,1537,5,142,0,0,1535,1536,5,184,0,0,1536, + 1538,3,782,391,0,1537,1535,1,0,0,0,1537,1538,1,0,0,0,1538,1666,1, + 0,0,0,1539,1540,5,308,0,0,1540,1541,5,239,0,0,1541,1543,3,658,329, + 0,1542,1544,3,912,456,0,1543,1542,1,0,0,0,1543,1544,1,0,0,0,1544, + 1546,1,0,0,0,1545,1547,3,676,338,0,1546,1545,1,0,0,0,1546,1547,1, + 0,0,0,1547,1549,1,0,0,0,1548,1550,3,764,382,0,1549,1548,1,0,0,0, + 1549,1550,1,0,0,0,1550,1552,1,0,0,0,1551,1553,3,420,210,0,1552,1551, + 1,0,0,0,1552,1553,1,0,0,0,1553,1666,1,0,0,0,1554,1555,5,308,0,0, + 1555,1561,5,58,0,0,1556,1557,3,92,46,0,1557,1558,3,654,327,0,1558, + 1562,1,0,0,0,1559,1560,5,329,0,0,1560,1562,3,660,330,0,1561,1556, + 1,0,0,0,1561,1559,1,0,0,0,1562,1666,1,0,0,0,1563,1564,5,308,0,0, + 1564,1565,5,329,0,0,1565,1569,5,122,0,0,1566,1567,3,90,45,0,1567, + 1568,3,654,327,0,1568,1570,1,0,0,0,1569,1566,1,0,0,0,1569,1570,1, + 0,0,0,1570,1571,1,0,0,0,1571,1572,5,184,0,0,1572,1574,3,216,108, + 0,1573,1575,3,912,456,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575, + 1666,1,0,0,0,1576,1577,5,308,0,0,1577,1578,5,332,0,0,1578,1582,3, + 660,330,0,1579,1580,5,399,0,0,1580,1581,5,426,0,0,1581,1583,5,400, + 0,0,1582,1579,1,0,0,0,1582,1583,1,0,0,0,1583,1666,1,0,0,0,1584,1585, + 5,308,0,0,1585,1597,5,191,0,0,1586,1587,3,92,46,0,1587,1589,3,654, + 327,0,1588,1590,5,122,0,0,1589,1588,1,0,0,0,1589,1590,1,0,0,0,1590, + 1598,1,0,0,0,1591,1593,3,82,41,0,1592,1591,1,0,0,0,1592,1593,1,0, + 0,0,1593,1595,1,0,0,0,1594,1596,5,122,0,0,1595,1594,1,0,0,0,1595, + 1596,1,0,0,0,1596,1598,1,0,0,0,1597,1586,1,0,0,0,1597,1592,1,0,0, + 0,1598,1666,1,0,0,0,1599,1600,5,308,0,0,1600,1637,5,50,0,0,1601, + 1638,3,468,234,0,1602,1603,3,92,46,0,1603,1605,3,654,327,0,1604, + 1606,3,470,235,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606,1608,1, + 0,0,0,1607,1609,3,472,236,0,1608,1607,1,0,0,0,1608,1609,1,0,0,0, + 1609,1611,1,0,0,0,1610,1612,3,474,237,0,1611,1610,1,0,0,0,1611,1612, + 1,0,0,0,1612,1614,1,0,0,0,1613,1615,3,764,382,0,1614,1613,1,0,0, + 0,1614,1615,1,0,0,0,1615,1617,1,0,0,0,1616,1618,3,420,210,0,1617, + 1616,1,0,0,0,1617,1618,1,0,0,0,1618,1638,1,0,0,0,1619,1621,3,82, + 41,0,1620,1619,1,0,0,0,1620,1621,1,0,0,0,1621,1623,1,0,0,0,1622, + 1624,3,470,235,0,1623,1622,1,0,0,0,1623,1624,1,0,0,0,1624,1626,1, + 0,0,0,1625,1627,3,472,236,0,1626,1625,1,0,0,0,1626,1627,1,0,0,0, + 1627,1629,1,0,0,0,1628,1630,3,474,237,0,1629,1628,1,0,0,0,1629,1630, + 1,0,0,0,1630,1632,1,0,0,0,1631,1633,3,764,382,0,1632,1631,1,0,0, + 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,420,210,0,1635, + 1634,1,0,0,0,1635,1636,1,0,0,0,1636,1638,1,0,0,0,1637,1601,1,0,0, + 0,1637,1602,1,0,0,0,1637,1620,1,0,0,0,1638,1666,1,0,0,0,1639,1640, + 5,308,0,0,1640,1666,5,346,0,0,1641,1642,5,308,0,0,1642,1643,5,54, + 0,0,1643,1666,5,426,0,0,1644,1645,5,308,0,0,1645,1649,5,280,0,0, + 1646,1647,5,243,0,0,1647,1650,3,926,463,0,1648,1650,5,244,0,0,1649, + 1646,1,0,0,0,1649,1648,1,0,0,0,1650,1666,1,0,0,0,1651,1652,5,308, + 0,0,1652,1666,5,70,0,0,1653,1655,5,308,0,0,1654,1656,5,138,0,0,1655, + 1654,1,0,0,0,1655,1656,1,0,0,0,1656,1657,1,0,0,0,1657,1658,7,7,0, + 0,1658,1659,5,224,0,0,1659,1663,3,660,330,0,1660,1661,3,90,45,0, + 1661,1662,3,654,327,0,1662,1664,1,0,0,0,1663,1660,1,0,0,0,1663,1664, + 1,0,0,0,1664,1666,1,0,0,0,1665,1472,1,0,0,0,1665,1478,1,0,0,0,1665, + 1491,1,0,0,0,1665,1503,1,0,0,0,1665,1516,1,0,0,0,1665,1533,1,0,0, + 0,1665,1539,1,0,0,0,1665,1554,1,0,0,0,1665,1563,1,0,0,0,1665,1576, + 1,0,0,0,1665,1584,1,0,0,0,1665,1599,1,0,0,0,1665,1639,1,0,0,0,1665, + 1641,1,0,0,0,1665,1644,1,0,0,0,1665,1651,1,0,0,0,1665,1653,1,0,0, + 0,1666,95,1,0,0,0,1667,1668,5,384,0,0,1668,1669,3,926,463,0,1669, + 1670,5,405,0,0,1670,1671,5,426,0,0,1671,1676,1,0,0,0,1672,1673,5, + 184,0,0,1673,1676,3,216,108,0,1674,1676,3,216,108,0,1675,1667,1, + 0,0,0,1675,1672,1,0,0,0,1675,1674,1,0,0,0,1676,97,1,0,0,0,1677,1678, + 5,190,0,0,1678,1679,5,329,0,0,1679,1681,3,660,330,0,1680,1682,3, + 912,456,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682,1683,1,0,0,0, + 1683,1684,3,102,51,0,1684,99,1,0,0,0,1685,1686,5,190,0,0,1686,1687, + 3,92,46,0,1687,1688,3,654,327,0,1688,1689,3,102,51,0,1689,101,1, + 0,0,0,1690,1691,7,8,0,0,1691,103,1,0,0,0,1692,1693,5,361,0,0,1693, + 1694,5,329,0,0,1694,1696,3,660,330,0,1695,1697,3,912,456,0,1696, + 1695,1,0,0,0,1696,1697,1,0,0,0,1697,105,1,0,0,0,1698,1699,5,361, + 0,0,1699,1700,3,92,46,0,1700,1701,3,654,327,0,1701,107,1,0,0,0,1702, + 1703,5,58,0,0,1703,1704,5,287,0,0,1704,1705,3,926,463,0,1705,109, + 1,0,0,0,1706,1707,5,101,0,0,1707,1708,5,287,0,0,1708,1709,3,926, + 463,0,1709,111,1,0,0,0,1710,1711,5,143,0,0,1711,1713,3,140,70,0, + 1712,1714,3,134,67,0,1713,1712,1,0,0,0,1713,1714,1,0,0,0,1714,1715, + 1,0,0,0,1715,1716,5,341,0,0,1716,1718,3,146,73,0,1717,1719,3,152, + 76,0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719,113,1,0,0,0,1720,1722, + 5,283,0,0,1721,1723,3,154,77,0,1722,1721,1,0,0,0,1722,1723,1,0,0, + 0,1723,1724,1,0,0,0,1724,1726,3,140,70,0,1725,1727,3,134,67,0,1726, + 1725,1,0,0,0,1726,1727,1,0,0,0,1727,1728,1,0,0,0,1728,1729,5,139, + 0,0,1729,1730,3,146,73,0,1730,115,1,0,0,0,1731,1733,5,143,0,0,1732, + 1734,5,287,0,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0,1734,1735,1,0, + 0,0,1735,1740,3,926,463,0,1736,1737,5,397,0,0,1737,1739,3,926,463, + 0,1738,1736,1,0,0,0,1739,1742,1,0,0,0,1740,1738,1,0,0,0,1740,1741, + 1,0,0,0,1741,1743,1,0,0,0,1742,1740,1,0,0,0,1743,1744,5,341,0,0, + 1744,1746,3,146,73,0,1745,1747,3,158,79,0,1746,1745,1,0,0,0,1746, + 1747,1,0,0,0,1747,117,1,0,0,0,1748,1750,5,283,0,0,1749,1751,3,156, + 78,0,1750,1749,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0,0,1752, + 1754,5,287,0,0,1753,1752,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0, + 0,0,1755,1760,3,926,463,0,1756,1757,5,397,0,0,1757,1759,3,926,463, + 0,1758,1756,1,0,0,0,1759,1762,1,0,0,0,1760,1758,1,0,0,0,1760,1761, + 1,0,0,0,1761,1763,1,0,0,0,1762,1760,1,0,0,0,1763,1764,5,139,0,0, + 1764,1765,3,146,73,0,1765,119,1,0,0,0,1766,1767,5,308,0,0,1767,1768, + 5,287,0,0,1768,1769,5,143,0,0,1769,1770,3,148,74,0,1770,121,1,0, + 0,0,1771,1772,5,308,0,0,1772,1773,5,288,0,0,1773,123,1,0,0,0,1774, + 1775,5,308,0,0,1775,1776,5,62,0,0,1776,1777,5,288,0,0,1777,125,1, + 0,0,0,1778,1779,5,304,0,0,1779,1783,5,287,0,0,1780,1784,5,7,0,0, + 1781,1784,5,213,0,0,1782,1784,3,926,463,0,1783,1780,1,0,0,0,1783, + 1781,1,0,0,0,1783,1782,1,0,0,0,1784,127,1,0,0,0,1785,1786,5,308, + 0,0,1786,1788,5,143,0,0,1787,1789,3,148,74,0,1788,1787,1,0,0,0,1788, + 1789,1,0,0,0,1789,1792,1,0,0,0,1790,1791,5,224,0,0,1791,1793,3,132, + 66,0,1792,1790,1,0,0,0,1792,1793,1,0,0,0,1793,129,1,0,0,0,1794,1795, + 5,308,0,0,1795,1796,5,252,0,0,1796,1797,3,926,463,0,1797,131,1,0, + 0,0,1798,1801,5,7,0,0,1799,1801,3,138,69,0,1800,1798,1,0,0,0,1800, + 1799,1,0,0,0,1801,133,1,0,0,0,1802,1803,5,224,0,0,1803,1804,3,136, + 68,0,1804,135,1,0,0,0,1805,1806,3,92,46,0,1806,1807,3,654,327,0, + 1807,1820,1,0,0,0,1808,1810,5,329,0,0,1809,1808,1,0,0,0,1809,1810, + 1,0,0,0,1810,1811,1,0,0,0,1811,1813,3,660,330,0,1812,1814,3,912, + 456,0,1813,1812,1,0,0,0,1813,1814,1,0,0,0,1814,1820,1,0,0,0,1815, + 1816,5,366,0,0,1816,1820,5,426,0,0,1817,1818,5,303,0,0,1818,1820, + 3,926,463,0,1819,1805,1,0,0,0,1819,1809,1,0,0,0,1819,1815,1,0,0, + 0,1819,1817,1,0,0,0,1820,137,1,0,0,0,1821,1822,3,92,46,0,1822,1823, + 3,654,327,0,1823,1842,1,0,0,0,1824,1826,5,329,0,0,1825,1824,1,0, + 0,0,1825,1826,1,0,0,0,1826,1827,1,0,0,0,1827,1832,3,660,330,0,1828, + 1829,5,399,0,0,1829,1830,3,282,141,0,1830,1831,5,400,0,0,1831,1833, + 1,0,0,0,1832,1828,1,0,0,0,1832,1833,1,0,0,0,1833,1835,1,0,0,0,1834, + 1836,3,912,456,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1842,1, + 0,0,0,1837,1838,5,366,0,0,1838,1842,5,426,0,0,1839,1840,5,303,0, + 0,1840,1842,3,926,463,0,1841,1821,1,0,0,0,1841,1825,1,0,0,0,1841, + 1837,1,0,0,0,1841,1839,1,0,0,0,1842,139,1,0,0,0,1843,1848,3,142, + 71,0,1844,1845,5,397,0,0,1845,1847,3,142,71,0,1846,1844,1,0,0,0, + 1847,1850,1,0,0,0,1848,1846,1,0,0,0,1848,1849,1,0,0,0,1849,141,1, + 0,0,0,1850,1848,1,0,0,0,1851,1856,3,144,72,0,1852,1853,5,399,0,0, + 1853,1854,3,282,141,0,1854,1855,5,400,0,0,1855,1857,1,0,0,0,1856, + 1852,1,0,0,0,1856,1857,1,0,0,0,1857,143,1,0,0,0,1858,1859,7,9,0, + 0,1859,145,1,0,0,0,1860,1865,3,148,74,0,1861,1862,5,397,0,0,1862, + 1864,3,148,74,0,1863,1861,1,0,0,0,1864,1867,1,0,0,0,1865,1863,1, + 0,0,0,1865,1866,1,0,0,0,1866,147,1,0,0,0,1867,1865,1,0,0,0,1868, + 1869,5,369,0,0,1869,1875,3,930,465,0,1870,1871,5,144,0,0,1871,1875, + 3,930,465,0,1872,1873,5,287,0,0,1873,1875,3,926,463,0,1874,1868, + 1,0,0,0,1874,1870,1,0,0,0,1874,1872,1,0,0,0,1875,149,1,0,0,0,1876, + 1877,5,369,0,0,1877,1882,3,930,465,0,1878,1879,5,287,0,0,1879,1882, + 3,926,463,0,1880,1882,3,926,463,0,1881,1876,1,0,0,0,1881,1878,1, + 0,0,0,1881,1880,1,0,0,0,1882,151,1,0,0,0,1883,1884,5,387,0,0,1884, + 1885,5,143,0,0,1885,1886,5,227,0,0,1886,153,1,0,0,0,1887,1888,5, + 143,0,0,1888,1889,5,227,0,0,1889,1890,5,134,0,0,1890,155,1,0,0,0, + 1891,1892,5,5,0,0,1892,1893,5,227,0,0,1893,1894,5,134,0,0,1894,157, + 1,0,0,0,1895,1896,5,387,0,0,1896,1897,5,5,0,0,1897,1898,5,227,0, + 0,1898,159,1,0,0,0,1899,1901,5,212,0,0,1900,1902,5,276,0,0,1901, + 1900,1,0,0,0,1901,1902,1,0,0,0,1902,1903,1,0,0,0,1903,1904,5,329, + 0,0,1904,1910,3,660,330,0,1905,1906,7,10,0,0,1906,1908,5,239,0,0, + 1907,1909,3,916,458,0,1908,1907,1,0,0,0,1908,1909,1,0,0,0,1909,1911, + 1,0,0,0,1910,1905,1,0,0,0,1910,1911,1,0,0,0,1911,161,1,0,0,0,1912, + 1917,3,164,82,0,1913,1914,5,397,0,0,1914,1916,3,164,82,0,1915,1913, + 1,0,0,0,1916,1919,1,0,0,0,1917,1915,1,0,0,0,1917,1918,1,0,0,0,1918, + 163,1,0,0,0,1919,1917,1,0,0,0,1920,1921,3,166,83,0,1921,1922,5,426, + 0,0,1922,165,1,0,0,0,1923,1924,7,11,0,0,1924,167,1,0,0,0,1925,1927, + 5,58,0,0,1926,1928,5,333,0,0,1927,1926,1,0,0,0,1927,1928,1,0,0,0, + 1928,1929,1,0,0,0,1929,1930,5,141,0,0,1930,1931,3,780,390,0,1931, + 1932,5,17,0,0,1932,1935,5,426,0,0,1933,1934,5,370,0,0,1934,1936, + 3,162,81,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936,169,1,0,0,0, + 1937,1939,5,101,0,0,1938,1940,5,333,0,0,1939,1938,1,0,0,0,1939,1940, + 1,0,0,0,1940,1941,1,0,0,0,1941,1943,5,141,0,0,1942,1944,3,40,20, + 0,1943,1942,1,0,0,0,1943,1944,1,0,0,0,1944,1945,1,0,0,0,1945,1946, + 3,782,391,0,1946,171,1,0,0,0,1947,1948,5,271,0,0,1948,1949,7,12, + 0,0,1949,173,1,0,0,0,1950,1951,5,58,0,0,1951,1952,5,333,0,0,1952, + 1953,5,194,0,0,1953,1954,5,432,0,0,1954,1956,5,399,0,0,1955,1957, + 3,276,138,0,1956,1955,1,0,0,0,1956,1957,1,0,0,0,1957,1958,1,0,0, + 0,1958,1959,5,400,0,0,1959,1960,3,828,414,0,1960,175,1,0,0,0,1961, + 1962,5,101,0,0,1962,1963,5,333,0,0,1963,1965,5,194,0,0,1964,1966, + 3,40,20,0,1965,1964,1,0,0,0,1965,1966,1,0,0,0,1966,1967,1,0,0,0, + 1967,1968,5,432,0,0,1968,177,1,0,0,0,1969,1970,5,58,0,0,1970,1971, + 5,155,0,0,1971,1972,3,926,463,0,1972,1973,5,224,0,0,1973,1974,5, + 329,0,0,1974,1975,3,660,330,0,1975,1976,3,292,146,0,1976,1977,5, + 17,0,0,1977,1981,5,426,0,0,1978,1979,5,387,0,0,1979,1980,5,84,0, + 0,1980,1982,5,265,0,0,1981,1978,1,0,0,0,1981,1982,1,0,0,0,1982,1985, + 1,0,0,0,1983,1984,5,150,0,0,1984,1986,3,254,127,0,1985,1983,1,0, + 0,0,1985,1986,1,0,0,0,1986,1990,1,0,0,0,1987,1988,5,154,0,0,1988, + 1989,5,329,0,0,1989,1991,3,660,330,0,1990,1987,1,0,0,0,1990,1991, + 1,0,0,0,1991,1995,1,0,0,0,1992,1993,5,238,0,0,1993,1994,5,32,0,0, + 1994,1996,3,292,146,0,1995,1992,1,0,0,0,1995,1996,1,0,0,0,1996,2001, + 1,0,0,0,1997,1999,3,250,125,0,1998,1997,1,0,0,0,1998,1999,1,0,0, + 0,1999,2000,1,0,0,0,2000,2002,3,272,136,0,2001,1998,1,0,0,0,2001, + 2002,1,0,0,0,2002,2005,1,0,0,0,2003,2004,5,189,0,0,2004,2006,5,426, + 0,0,2005,2003,1,0,0,0,2005,2006,1,0,0,0,2006,2008,1,0,0,0,2007,2009, + 3,252,126,0,2008,2007,1,0,0,0,2008,2009,1,0,0,0,2009,2011,1,0,0, + 0,2010,2012,3,218,109,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012, + 179,1,0,0,0,2013,2014,5,101,0,0,2014,2016,5,155,0,0,2015,2017,3, + 40,20,0,2016,2015,1,0,0,0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018, + 2019,3,926,463,0,2019,2020,5,224,0,0,2020,2021,3,660,330,0,2021, + 181,1,0,0,0,2022,2024,5,58,0,0,2023,2025,3,54,27,0,2024,2023,1,0, + 0,0,2024,2025,1,0,0,0,2025,2026,1,0,0,0,2026,2028,5,378,0,0,2027, + 2029,3,44,22,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,2030,1,0, + 0,0,2030,2035,3,666,333,0,2031,2032,5,399,0,0,2032,2033,3,336,168, + 0,2033,2034,5,400,0,0,2034,2036,1,0,0,0,2035,2031,1,0,0,0,2035,2036, + 1,0,0,0,2036,2038,1,0,0,0,2037,2039,3,218,109,0,2038,2037,1,0,0, + 0,2038,2039,1,0,0,0,2039,2041,1,0,0,0,2040,2042,3,184,92,0,2041, + 2040,1,0,0,0,2041,2042,1,0,0,0,2042,2044,1,0,0,0,2043,2045,3,252, + 126,0,2044,2043,1,0,0,0,2044,2045,1,0,0,0,2045,2046,1,0,0,0,2046, + 2047,5,17,0,0,2047,2048,3,414,207,0,2048,183,1,0,0,0,2049,2050,5, + 238,0,0,2050,2056,5,224,0,0,2051,2052,5,399,0,0,2052,2057,3,282, + 141,0,2053,2054,5,316,0,0,2054,2055,5,399,0,0,2055,2057,3,228,114, + 0,2056,2051,1,0,0,0,2056,2053,1,0,0,0,2057,2058,1,0,0,0,2058,2059, + 5,400,0,0,2059,185,1,0,0,0,2060,2063,3,188,94,0,2061,2063,3,190, + 95,0,2062,2060,1,0,0,0,2062,2061,1,0,0,0,2063,187,1,0,0,0,2064,2065, + 5,42,0,0,2065,2066,5,224,0,0,2066,2067,5,399,0,0,2067,2068,3,282, + 141,0,2068,2069,5,400,0,0,2069,189,1,0,0,0,2070,2071,3,192,96,0, + 2071,2072,3,194,97,0,2072,191,1,0,0,0,2073,2074,5,98,0,0,2074,2075, + 5,224,0,0,2075,2076,5,399,0,0,2076,2077,3,282,141,0,2077,2078,5, + 400,0,0,2078,193,1,0,0,0,2079,2080,5,315,0,0,2080,2081,5,224,0,0, + 2081,2082,5,399,0,0,2082,2083,3,282,141,0,2083,2084,5,400,0,0,2084, + 195,1,0,0,0,2085,2086,5,101,0,0,2086,2088,5,378,0,0,2087,2089,3, + 40,20,0,2088,2087,1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090, + 2091,3,664,332,0,2091,197,1,0,0,0,2092,2093,5,58,0,0,2093,2094,5, + 202,0,0,2094,2096,5,378,0,0,2095,2097,3,44,22,0,2096,2095,1,0,0, + 0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2100,3,666,333,0,2099, + 2101,3,50,25,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101,2103,1,0, + 0,0,2102,2104,3,218,109,0,2103,2102,1,0,0,0,2103,2104,1,0,0,0,2104, + 2106,1,0,0,0,2105,2107,3,184,92,0,2106,2105,1,0,0,0,2106,2107,1, + 0,0,0,2107,2109,1,0,0,0,2108,2110,3,186,93,0,2109,2108,1,0,0,0,2109, + 2110,1,0,0,0,2110,2112,1,0,0,0,2111,2113,3,250,125,0,2112,2111,1, + 0,0,0,2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2116,3,272,136,0, + 2115,2114,1,0,0,0,2115,2116,1,0,0,0,2116,2118,1,0,0,0,2117,2119, + 3,274,137,0,2118,2117,1,0,0,0,2118,2119,1,0,0,0,2119,2121,1,0,0, + 0,2120,2122,3,252,126,0,2121,2120,1,0,0,0,2121,2122,1,0,0,0,2122, + 2123,1,0,0,0,2123,2124,5,17,0,0,2124,2125,3,414,207,0,2125,199,1, + 0,0,0,2126,2127,5,101,0,0,2127,2128,5,202,0,0,2128,2130,5,378,0, + 0,2129,2131,3,40,20,0,2130,2129,1,0,0,0,2130,2131,1,0,0,0,2131,2132, + 1,0,0,0,2132,2133,3,664,332,0,2133,201,1,0,0,0,2134,2135,5,58,0, + 0,2135,2136,5,293,0,0,2136,2137,5,258,0,0,2137,2138,3,926,463,0, + 2138,2140,3,210,105,0,2139,2141,3,212,106,0,2140,2139,1,0,0,0,2140, + 2141,1,0,0,0,2141,2143,1,0,0,0,2142,2144,3,296,148,0,2143,2142,1, + 0,0,0,2143,2144,1,0,0,0,2144,2145,1,0,0,0,2145,2146,3,214,107,0, + 2146,203,1,0,0,0,2147,2148,5,101,0,0,2148,2149,5,293,0,0,2149,2150, + 5,258,0,0,2150,2151,3,926,463,0,2151,205,1,0,0,0,2152,2153,5,9,0, + 0,2153,2154,5,293,0,0,2154,2155,5,258,0,0,2155,2156,3,926,463,0, + 2156,2157,3,208,104,0,2157,207,1,0,0,0,2158,2164,3,210,105,0,2159, + 2164,3,212,106,0,2160,2164,3,296,148,0,2161,2164,3,214,107,0,2162, + 2164,5,115,0,0,2163,2158,1,0,0,0,2163,2159,1,0,0,0,2163,2160,1,0, + 0,0,2163,2161,1,0,0,0,2163,2162,1,0,0,0,2164,209,1,0,0,0,2165,2166, + 5,59,0,0,2166,2181,5,426,0,0,2167,2169,5,111,0,0,2168,2170,5,431, + 0,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170,2171,1,0,0,0,2171,2178, + 3,826,413,0,2172,2176,5,20,0,0,2173,2174,5,223,0,0,2174,2176,5,32, + 0,0,2175,2172,1,0,0,0,2175,2173,1,0,0,0,2176,2177,1,0,0,0,2177,2179, + 5,426,0,0,2178,2175,1,0,0,0,2178,2179,1,0,0,0,2179,2181,1,0,0,0, + 2180,2165,1,0,0,0,2180,2167,1,0,0,0,2181,211,1,0,0,0,2182,2183,5, + 116,0,0,2183,2184,5,17,0,0,2184,2185,5,426,0,0,2185,213,1,0,0,0, + 2186,2188,5,85,0,0,2187,2186,1,0,0,0,2187,2188,1,0,0,0,2188,2189, + 1,0,0,0,2189,2190,5,17,0,0,2190,2191,3,2,1,0,2191,215,1,0,0,0,2192, + 2195,3,926,463,0,2193,2195,5,426,0,0,2194,2192,1,0,0,0,2194,2193, + 1,0,0,0,2195,217,1,0,0,0,2196,2197,5,47,0,0,2197,2198,5,426,0,0, + 2198,219,1,0,0,0,2199,2200,5,183,0,0,2200,2201,5,431,0,0,2201,221, + 1,0,0,0,2202,2203,5,238,0,0,2203,2212,5,32,0,0,2204,2207,5,399,0, + 0,2205,2208,3,224,112,0,2206,2208,3,226,113,0,2207,2205,1,0,0,0, + 2207,2206,1,0,0,0,2208,2213,1,0,0,0,2209,2210,5,316,0,0,2210,2211, + 5,399,0,0,2211,2213,3,228,114,0,2212,2204,1,0,0,0,2212,2209,1,0, + 0,0,2213,2214,1,0,0,0,2214,2215,5,400,0,0,2215,223,1,0,0,0,2216, + 2221,3,350,175,0,2217,2218,5,397,0,0,2218,2220,3,350,175,0,2219, + 2217,1,0,0,0,2220,2223,1,0,0,0,2221,2219,1,0,0,0,2221,2222,1,0,0, + 0,2222,225,1,0,0,0,2223,2221,1,0,0,0,2224,2229,3,284,142,0,2225, + 2226,5,397,0,0,2226,2228,3,284,142,0,2227,2225,1,0,0,0,2228,2231, + 1,0,0,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230,227,1,0,0,0,2231, + 2229,1,0,0,0,2232,2237,3,230,115,0,2233,2234,5,397,0,0,2234,2236, + 3,230,115,0,2235,2233,1,0,0,0,2236,2239,1,0,0,0,2237,2235,1,0,0, + 0,2237,2238,1,0,0,0,2238,229,1,0,0,0,2239,2237,1,0,0,0,2240,2241, + 3,232,116,0,2241,231,1,0,0,0,2242,2261,3,284,142,0,2243,2248,3,976, + 488,0,2244,2248,3,978,489,0,2245,2248,3,982,491,0,2246,2248,3,984, + 492,0,2247,2243,1,0,0,0,2247,2244,1,0,0,0,2247,2245,1,0,0,0,2247, + 2246,1,0,0,0,2248,2249,1,0,0,0,2249,2250,5,399,0,0,2250,2251,3,284, + 142,0,2251,2252,5,400,0,0,2252,2261,1,0,0,0,2253,2254,7,13,0,0,2254, + 2255,5,399,0,0,2255,2256,5,431,0,0,2256,2257,5,397,0,0,2257,2258, + 3,284,142,0,2258,2259,5,400,0,0,2259,2261,1,0,0,0,2260,2242,1,0, + 0,0,2260,2247,1,0,0,0,2260,2253,1,0,0,0,2261,233,1,0,0,0,2262,2263, + 5,42,0,0,2263,2264,5,32,0,0,2264,2265,5,399,0,0,2265,2266,3,282, + 141,0,2266,2273,5,400,0,0,2267,2268,5,315,0,0,2268,2269,5,32,0,0, + 2269,2270,5,399,0,0,2270,2271,3,290,145,0,2271,2272,5,400,0,0,2272, + 2274,1,0,0,0,2273,2267,1,0,0,0,2273,2274,1,0,0,0,2274,2275,1,0,0, + 0,2275,2276,5,166,0,0,2276,2277,5,431,0,0,2277,2278,5,31,0,0,2278, + 235,1,0,0,0,2279,2280,5,42,0,0,2280,2281,5,166,0,0,2281,2282,5,431, + 0,0,2282,2283,5,31,0,0,2283,237,1,0,0,0,2284,2285,5,310,0,0,2285, + 2286,5,32,0,0,2286,2287,5,399,0,0,2287,2288,3,282,141,0,2288,2289, + 5,400,0,0,2289,2290,5,224,0,0,2290,2291,5,399,0,0,2291,2292,3,318, + 159,0,2292,2294,5,400,0,0,2293,2295,3,52,26,0,2294,2293,1,0,0,0, + 2294,2295,1,0,0,0,2295,239,1,0,0,0,2296,2299,3,246,123,0,2297,2299, + 3,248,124,0,2298,2296,1,0,0,0,2298,2297,1,0,0,0,2299,241,1,0,0,0, + 2300,2301,5,266,0,0,2301,2302,5,426,0,0,2302,243,1,0,0,0,2303,2304, + 5,267,0,0,2304,2305,5,426,0,0,2305,245,1,0,0,0,2306,2307,5,291,0, + 0,2307,2308,5,137,0,0,2308,2309,5,301,0,0,2309,2313,5,426,0,0,2310, + 2311,5,387,0,0,2311,2312,5,302,0,0,2312,2314,3,254,127,0,2313,2310, + 1,0,0,0,2313,2314,1,0,0,0,2314,247,1,0,0,0,2315,2316,5,291,0,0,2316, + 2317,5,137,0,0,2317,2319,5,87,0,0,2318,2320,3,262,131,0,2319,2318, + 1,0,0,0,2319,2320,1,0,0,0,2320,2322,1,0,0,0,2321,2323,3,264,132, + 0,2322,2321,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0,0,2324,2326, + 3,266,133,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2328,1,0,0, + 0,2327,2329,3,268,134,0,2328,2327,1,0,0,0,2328,2329,1,0,0,0,2329, + 2331,1,0,0,0,2330,2332,3,270,135,0,2331,2330,1,0,0,0,2331,2332,1, + 0,0,0,2332,249,1,0,0,0,2333,2336,3,248,124,0,2334,2336,3,246,123, + 0,2335,2333,1,0,0,0,2335,2334,1,0,0,0,2336,251,1,0,0,0,2337,2338, + 5,332,0,0,2338,2339,3,254,127,0,2339,253,1,0,0,0,2340,2341,5,399, + 0,0,2341,2342,3,256,128,0,2342,2343,5,400,0,0,2343,255,1,0,0,0,2344, + 2349,3,258,129,0,2345,2346,5,397,0,0,2346,2348,3,258,129,0,2347, + 2345,1,0,0,0,2348,2351,1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0, + 0,2350,2361,1,0,0,0,2351,2349,1,0,0,0,2352,2357,3,260,130,0,2353, + 2354,5,397,0,0,2354,2356,3,260,130,0,2355,2353,1,0,0,0,2356,2359, + 1,0,0,0,2357,2355,1,0,0,0,2357,2358,1,0,0,0,2358,2361,1,0,0,0,2359, + 2357,1,0,0,0,2360,2344,1,0,0,0,2360,2352,1,0,0,0,2361,257,1,0,0, + 0,2362,2363,5,426,0,0,2363,2364,5,405,0,0,2364,2365,5,426,0,0,2365, + 259,1,0,0,0,2366,2367,5,426,0,0,2367,261,1,0,0,0,2368,2369,5,127, + 0,0,2369,2370,5,334,0,0,2370,2371,5,32,0,0,2371,2375,5,426,0,0,2372, + 2373,5,110,0,0,2373,2374,5,32,0,0,2374,2376,5,426,0,0,2375,2372, + 1,0,0,0,2375,2376,1,0,0,0,2376,263,1,0,0,0,2377,2378,5,44,0,0,2378, + 2379,5,169,0,0,2379,2380,5,334,0,0,2380,2381,5,32,0,0,2381,2382, + 5,426,0,0,2382,265,1,0,0,0,2383,2384,5,198,0,0,2384,2385,5,174,0, + 0,2385,2386,5,334,0,0,2386,2387,5,32,0,0,2387,2388,5,426,0,0,2388, + 267,1,0,0,0,2389,2390,5,186,0,0,2390,2391,5,334,0,0,2391,2392,5, + 32,0,0,2392,2393,5,426,0,0,2393,269,1,0,0,0,2394,2395,5,219,0,0, + 2395,2396,5,85,0,0,2396,2397,5,17,0,0,2397,2398,5,426,0,0,2398,271, + 1,0,0,0,2399,2400,5,321,0,0,2400,2401,5,17,0,0,2401,2402,5,160,0, + 0,2402,2403,5,426,0,0,2403,2404,5,233,0,0,2404,2409,5,426,0,0,2405, + 2406,5,159,0,0,2406,2407,5,426,0,0,2407,2408,5,232,0,0,2408,2410, + 5,426,0,0,2409,2405,1,0,0,0,2409,2410,1,0,0,0,2410,2441,1,0,0,0, + 2411,2412,5,321,0,0,2412,2413,5,32,0,0,2413,2417,5,426,0,0,2414, + 2415,5,387,0,0,2415,2416,5,302,0,0,2416,2418,3,254,127,0,2417,2414, + 1,0,0,0,2417,2418,1,0,0,0,2418,2422,1,0,0,0,2419,2420,5,321,0,0, + 2420,2421,5,17,0,0,2421,2423,3,926,463,0,2422,2419,1,0,0,0,2422, + 2423,1,0,0,0,2423,2441,1,0,0,0,2424,2425,5,321,0,0,2425,2426,5,32, + 0,0,2426,2430,3,926,463,0,2427,2428,5,387,0,0,2428,2429,5,302,0, + 0,2429,2431,3,254,127,0,2430,2427,1,0,0,0,2430,2431,1,0,0,0,2431, + 2435,1,0,0,0,2432,2433,5,321,0,0,2433,2434,5,17,0,0,2434,2436,3, + 926,463,0,2435,2432,1,0,0,0,2435,2436,1,0,0,0,2436,2441,1,0,0,0, + 2437,2438,5,321,0,0,2438,2439,5,17,0,0,2439,2441,3,926,463,0,2440, + 2399,1,0,0,0,2440,2411,1,0,0,0,2440,2424,1,0,0,0,2440,2437,1,0,0, + 0,2441,273,1,0,0,0,2442,2443,5,189,0,0,2443,2444,5,426,0,0,2444, + 275,1,0,0,0,2445,2450,3,344,172,0,2446,2447,5,397,0,0,2447,2449, + 3,344,172,0,2448,2446,1,0,0,0,2449,2452,1,0,0,0,2450,2448,1,0,0, + 0,2450,2451,1,0,0,0,2451,277,1,0,0,0,2452,2450,1,0,0,0,2453,2458, + 3,346,173,0,2454,2455,5,397,0,0,2455,2457,3,346,173,0,2456,2454, + 1,0,0,0,2457,2460,1,0,0,0,2458,2456,1,0,0,0,2458,2459,1,0,0,0,2459, + 279,1,0,0,0,2460,2458,1,0,0,0,2461,2466,3,374,187,0,2462,2463,5, + 397,0,0,2463,2465,3,374,187,0,2464,2462,1,0,0,0,2465,2468,1,0,0, + 0,2466,2464,1,0,0,0,2466,2467,1,0,0,0,2467,281,1,0,0,0,2468,2466, + 1,0,0,0,2469,2474,3,284,142,0,2470,2471,5,397,0,0,2471,2473,3,284, + 142,0,2472,2470,1,0,0,0,2473,2476,1,0,0,0,2474,2472,1,0,0,0,2474, + 2475,1,0,0,0,2475,283,1,0,0,0,2476,2474,1,0,0,0,2477,2482,3,926, + 463,0,2478,2479,5,395,0,0,2479,2481,3,926,463,0,2480,2478,1,0,0, + 0,2481,2484,1,0,0,0,2482,2480,1,0,0,0,2482,2483,1,0,0,0,2483,2487, + 1,0,0,0,2484,2482,1,0,0,0,2485,2487,4,142,0,0,2486,2477,1,0,0,0, + 2486,2485,1,0,0,0,2487,285,1,0,0,0,2488,2489,3,926,463,0,2489,287, + 1,0,0,0,2490,2500,3,284,142,0,2491,2496,5,395,0,0,2492,2497,5,104, + 0,0,2493,2497,5,175,0,0,2494,2497,5,375,0,0,2495,2497,3,926,463, + 0,2496,2492,1,0,0,0,2496,2493,1,0,0,0,2496,2494,1,0,0,0,2496,2495, + 1,0,0,0,2497,2499,1,0,0,0,2498,2491,1,0,0,0,2499,2502,1,0,0,0,2500, + 2498,1,0,0,0,2500,2501,1,0,0,0,2501,289,1,0,0,0,2502,2500,1,0,0, + 0,2503,2508,3,334,167,0,2504,2505,5,397,0,0,2505,2507,3,334,167, + 0,2506,2504,1,0,0,0,2507,2510,1,0,0,0,2508,2506,1,0,0,0,2508,2509, + 1,0,0,0,2509,291,1,0,0,0,2510,2508,1,0,0,0,2511,2512,5,399,0,0,2512, + 2513,3,282,141,0,2513,2514,5,400,0,0,2514,293,1,0,0,0,2515,2517, + 3,296,148,0,2516,2518,3,298,149,0,2517,2516,1,0,0,0,2517,2518,1, + 0,0,0,2518,2521,1,0,0,0,2519,2521,3,300,150,0,2520,2515,1,0,0,0, + 2520,2519,1,0,0,0,2521,295,1,0,0,0,2522,2525,3,970,485,0,2523,2525, + 3,972,486,0,2524,2522,1,0,0,0,2524,2523,1,0,0,0,2525,297,1,0,0,0, + 2526,2527,7,14,0,0,2527,299,1,0,0,0,2528,2532,5,109,0,0,2529,2530, + 5,216,0,0,2530,2532,5,109,0,0,2531,2528,1,0,0,0,2531,2529,1,0,0, + 0,2532,301,1,0,0,0,2533,2534,7,15,0,0,2534,303,1,0,0,0,2535,2536, + 5,55,0,0,2536,2538,3,926,463,0,2537,2535,1,0,0,0,2537,2538,1,0,0, + 0,2538,2539,1,0,0,0,2539,2541,3,308,154,0,2540,2542,3,370,185,0, + 2541,2540,1,0,0,0,2541,2542,1,0,0,0,2542,305,1,0,0,0,2543,2544,5, + 55,0,0,2544,2545,3,926,463,0,2545,2547,3,308,154,0,2546,2548,3,372, + 186,0,2547,2546,1,0,0,0,2547,2548,1,0,0,0,2548,307,1,0,0,0,2549, + 2552,3,310,155,0,2550,2552,3,312,156,0,2551,2549,1,0,0,0,2551,2550, + 1,0,0,0,2552,309,1,0,0,0,2553,2554,3,368,184,0,2554,2555,3,292,146, + 0,2555,311,1,0,0,0,2556,2557,5,40,0,0,2557,2558,5,399,0,0,2558,2559, + 3,828,414,0,2559,2560,5,400,0,0,2560,313,1,0,0,0,2561,2562,5,55, + 0,0,2562,2564,3,926,463,0,2563,2561,1,0,0,0,2563,2564,1,0,0,0,2564, + 2565,1,0,0,0,2565,2566,5,136,0,0,2566,2567,5,173,0,0,2567,2568,3, + 292,146,0,2568,2569,5,269,0,0,2569,2570,3,660,330,0,2570,2572,3, + 292,146,0,2571,2573,3,370,185,0,2572,2571,1,0,0,0,2572,2573,1,0, + 0,0,2573,315,1,0,0,0,2574,2575,5,55,0,0,2575,2576,3,926,463,0,2576, + 2577,5,136,0,0,2577,2578,5,173,0,0,2578,2579,3,292,146,0,2579,2580, + 5,269,0,0,2580,2581,3,660,330,0,2581,2583,3,292,146,0,2582,2584, + 3,372,186,0,2583,2582,1,0,0,0,2583,2584,1,0,0,0,2584,317,1,0,0,0, + 2585,2588,3,324,162,0,2586,2588,3,320,160,0,2587,2585,1,0,0,0,2587, + 2586,1,0,0,0,2588,319,1,0,0,0,2589,2594,3,322,161,0,2590,2591,5, + 397,0,0,2591,2593,3,322,161,0,2592,2590,1,0,0,0,2593,2596,1,0,0, + 0,2594,2592,1,0,0,0,2594,2595,1,0,0,0,2595,321,1,0,0,0,2596,2594, + 1,0,0,0,2597,2598,5,399,0,0,2598,2599,3,324,162,0,2599,2600,5,400, + 0,0,2600,323,1,0,0,0,2601,2606,3,326,163,0,2602,2603,5,397,0,0,2603, + 2605,3,326,163,0,2604,2602,1,0,0,0,2605,2608,1,0,0,0,2606,2604,1, + 0,0,0,2606,2607,1,0,0,0,2607,325,1,0,0,0,2608,2606,1,0,0,0,2609, + 2610,3,804,402,0,2610,327,1,0,0,0,2611,2614,3,326,163,0,2612,2614, + 3,322,161,0,2613,2611,1,0,0,0,2613,2612,1,0,0,0,2614,329,1,0,0,0, + 2615,2616,7,16,0,0,2616,331,1,0,0,0,2617,2618,5,220,0,0,2618,2619, + 7,17,0,0,2619,333,1,0,0,0,2620,2622,3,284,142,0,2621,2623,3,330, + 165,0,2622,2621,1,0,0,0,2622,2623,1,0,0,0,2623,2625,1,0,0,0,2624, + 2626,3,332,166,0,2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,335,1, + 0,0,0,2627,2632,3,338,169,0,2628,2629,5,397,0,0,2629,2631,3,338, + 169,0,2630,2628,1,0,0,0,2631,2634,1,0,0,0,2632,2630,1,0,0,0,2632, + 2633,1,0,0,0,2633,337,1,0,0,0,2634,2632,1,0,0,0,2635,2638,3,286, + 143,0,2636,2637,5,47,0,0,2637,2639,5,426,0,0,2638,2636,1,0,0,0,2638, + 2639,1,0,0,0,2639,339,1,0,0,0,2640,2641,7,16,0,0,2641,341,1,0,0, + 0,2642,2645,3,284,142,0,2643,2645,3,828,414,0,2644,2642,1,0,0,0, + 2644,2643,1,0,0,0,2645,2647,1,0,0,0,2646,2648,3,340,170,0,2647,2646, + 1,0,0,0,2647,2648,1,0,0,0,2648,2650,1,0,0,0,2649,2651,3,332,166, + 0,2650,2649,1,0,0,0,2650,2651,1,0,0,0,2651,343,1,0,0,0,2652,2653, + 3,286,143,0,2653,2656,3,376,188,0,2654,2655,5,47,0,0,2655,2657,5, + 426,0,0,2656,2654,1,0,0,0,2656,2657,1,0,0,0,2657,345,1,0,0,0,2658, + 2661,3,348,174,0,2659,2661,3,350,175,0,2660,2658,1,0,0,0,2660,2659, + 1,0,0,0,2661,347,1,0,0,0,2662,2665,3,314,157,0,2663,2665,3,304,152, + 0,2664,2662,1,0,0,0,2664,2663,1,0,0,0,2665,349,1,0,0,0,2666,2667, + 3,286,143,0,2667,2669,3,376,188,0,2668,2670,3,352,176,0,2669,2668, + 1,0,0,0,2669,2670,1,0,0,0,2670,2673,1,0,0,0,2671,2672,5,47,0,0,2672, + 2674,5,426,0,0,2673,2671,1,0,0,0,2673,2674,1,0,0,0,2674,351,1,0, + 0,0,2675,2678,3,354,177,0,2676,2678,3,356,178,0,2677,2675,1,0,0, + 0,2677,2676,1,0,0,0,2678,353,1,0,0,0,2679,2680,5,55,0,0,2680,2682, + 3,926,463,0,2681,2679,1,0,0,0,2681,2682,1,0,0,0,2682,2683,1,0,0, + 0,2683,2684,5,269,0,0,2684,2685,3,660,330,0,2685,2686,5,399,0,0, + 2686,2687,3,284,142,0,2687,2689,5,400,0,0,2688,2690,3,370,185,0, + 2689,2688,1,0,0,0,2689,2690,1,0,0,0,2690,355,1,0,0,0,2691,2692,5, + 55,0,0,2692,2694,3,926,463,0,2693,2691,1,0,0,0,2693,2694,1,0,0,0, + 2694,2695,1,0,0,0,2695,2697,3,364,182,0,2696,2698,3,370,185,0,2697, + 2696,1,0,0,0,2697,2698,1,0,0,0,2698,357,1,0,0,0,2699,2702,3,360, + 180,0,2700,2702,3,362,181,0,2701,2699,1,0,0,0,2701,2700,1,0,0,0, + 2702,359,1,0,0,0,2703,2704,5,55,0,0,2704,2706,3,926,463,0,2705,2703, + 1,0,0,0,2705,2706,1,0,0,0,2706,2707,1,0,0,0,2707,2708,5,269,0,0, + 2708,2709,3,660,330,0,2709,2710,5,399,0,0,2710,2711,3,284,142,0, + 2711,2713,5,400,0,0,2712,2714,3,372,186,0,2713,2712,1,0,0,0,2713, + 2714,1,0,0,0,2714,361,1,0,0,0,2715,2716,5,55,0,0,2716,2718,3,926, + 463,0,2717,2715,1,0,0,0,2717,2718,1,0,0,0,2718,2719,1,0,0,0,2719, + 2721,3,364,182,0,2720,2722,3,372,186,0,2721,2720,1,0,0,0,2721,2722, + 1,0,0,0,2722,363,1,0,0,0,2723,2724,5,216,0,0,2724,2730,5,219,0,0, + 2725,2726,5,83,0,0,2726,2730,3,366,183,0,2727,2730,3,312,156,0,2728, + 2730,3,368,184,0,2729,2723,1,0,0,0,2729,2725,1,0,0,0,2729,2727,1, + 0,0,0,2729,2728,1,0,0,0,2730,365,1,0,0,0,2731,2735,3,804,402,0,2732, + 2735,3,776,388,0,2733,2735,3,790,395,0,2734,2731,1,0,0,0,2734,2732, + 1,0,0,0,2734,2733,1,0,0,0,2735,367,1,0,0,0,2736,2737,5,251,0,0,2737, + 2740,5,173,0,0,2738,2740,5,358,0,0,2739,2736,1,0,0,0,2739,2738,1, + 0,0,0,2740,369,1,0,0,0,2741,2743,3,294,147,0,2742,2744,3,302,151, + 0,2743,2742,1,0,0,0,2743,2744,1,0,0,0,2744,371,1,0,0,0,2745,2747, + 3,294,147,0,2746,2748,3,302,151,0,2747,2746,1,0,0,0,2747,2748,1, + 0,0,0,2748,373,1,0,0,0,2749,2750,3,286,143,0,2750,2751,5,396,0,0, + 2751,2754,3,376,188,0,2752,2753,5,47,0,0,2753,2755,5,426,0,0,2754, + 2752,1,0,0,0,2754,2755,1,0,0,0,2755,375,1,0,0,0,2756,2757,3,380, + 190,0,2757,377,1,0,0,0,2758,2763,3,376,188,0,2759,2760,5,397,0,0, + 2760,2762,3,376,188,0,2761,2759,1,0,0,0,2762,2765,1,0,0,0,2763,2761, + 1,0,0,0,2763,2764,1,0,0,0,2764,379,1,0,0,0,2765,2763,1,0,0,0,2766, + 2772,3,382,191,0,2767,2772,3,384,192,0,2768,2772,3,386,193,0,2769, + 2772,3,388,194,0,2770,2772,3,390,195,0,2771,2766,1,0,0,0,2771,2767, + 1,0,0,0,2771,2768,1,0,0,0,2771,2769,1,0,0,0,2771,2770,1,0,0,0,2772, + 381,1,0,0,0,2773,2811,5,340,0,0,2774,2811,5,311,0,0,2775,2811,5, + 162,0,0,2776,2811,5,163,0,0,2777,2811,5,26,0,0,2778,2811,5,28,0, + 0,2779,2811,5,131,0,0,2780,2811,5,264,0,0,2781,2783,5,100,0,0,2782, + 2784,5,248,0,0,2783,2782,1,0,0,0,2783,2784,1,0,0,0,2784,2811,1,0, + 0,0,2785,2811,5,71,0,0,2786,2811,5,72,0,0,2787,2811,5,337,0,0,2788, + 2811,5,338,0,0,2789,2790,5,337,0,0,2790,2791,5,387,0,0,2791,2792, + 5,188,0,0,2792,2793,5,336,0,0,2793,2811,5,394,0,0,2794,2811,5,323, + 0,0,2795,2811,5,27,0,0,2796,2804,3,990,495,0,2797,2798,5,399,0,0, + 2798,2801,5,431,0,0,2799,2800,5,397,0,0,2800,2802,5,431,0,0,2801, + 2799,1,0,0,0,2801,2802,1,0,0,0,2802,2803,1,0,0,0,2803,2805,5,400, + 0,0,2804,2797,1,0,0,0,2804,2805,1,0,0,0,2805,2811,1,0,0,0,2806,2807, + 7,18,0,0,2807,2808,5,399,0,0,2808,2809,5,431,0,0,2809,2811,5,400, + 0,0,2810,2773,1,0,0,0,2810,2774,1,0,0,0,2810,2775,1,0,0,0,2810,2776, + 1,0,0,0,2810,2777,1,0,0,0,2810,2778,1,0,0,0,2810,2779,1,0,0,0,2810, + 2780,1,0,0,0,2810,2781,1,0,0,0,2810,2785,1,0,0,0,2810,2786,1,0,0, + 0,2810,2787,1,0,0,0,2810,2788,1,0,0,0,2810,2789,1,0,0,0,2810,2794, + 1,0,0,0,2810,2795,1,0,0,0,2810,2796,1,0,0,0,2810,2806,1,0,0,0,2811, + 383,1,0,0,0,2812,2813,5,16,0,0,2813,2814,5,409,0,0,2814,2815,3,380, + 190,0,2815,2816,5,411,0,0,2816,385,1,0,0,0,2817,2818,5,324,0,0,2818, + 2819,5,409,0,0,2819,2820,3,280,140,0,2820,2821,5,411,0,0,2821,387, + 1,0,0,0,2822,2823,5,198,0,0,2823,2824,5,409,0,0,2824,2825,3,382, + 191,0,2825,2826,5,397,0,0,2826,2827,3,380,190,0,2827,2828,5,411, + 0,0,2828,389,1,0,0,0,2829,2830,5,357,0,0,2830,2831,5,409,0,0,2831, + 2832,3,378,189,0,2832,2833,5,411,0,0,2833,391,1,0,0,0,2834,2836, + 7,19,0,0,2835,2837,7,20,0,0,2836,2835,1,0,0,0,2836,2837,1,0,0,0, + 2837,393,1,0,0,0,2838,2840,3,398,199,0,2839,2838,1,0,0,0,2839,2840, + 1,0,0,0,2840,2841,1,0,0,0,2841,2842,3,396,198,0,2842,395,1,0,0,0, + 2843,2846,3,402,201,0,2844,2846,3,406,203,0,2845,2843,1,0,0,0,2845, + 2844,1,0,0,0,2846,397,1,0,0,0,2847,2848,5,387,0,0,2848,2853,3,400, + 200,0,2849,2850,5,397,0,0,2850,2852,3,400,200,0,2851,2849,1,0,0, + 0,2852,2855,1,0,0,0,2853,2851,1,0,0,0,2853,2854,1,0,0,0,2854,399, + 1,0,0,0,2855,2853,1,0,0,0,2856,2861,3,926,463,0,2857,2858,5,399, + 0,0,2858,2859,3,282,141,0,2859,2860,5,400,0,0,2860,2862,1,0,0,0, + 2861,2857,1,0,0,0,2861,2862,1,0,0,0,2862,2863,1,0,0,0,2863,2864, + 5,17,0,0,2864,2865,5,399,0,0,2865,2866,3,394,197,0,2866,2867,5,400, + 0,0,2867,401,1,0,0,0,2868,2874,3,404,202,0,2869,2870,3,392,196,0, + 2870,2871,3,404,202,0,2871,2873,1,0,0,0,2872,2869,1,0,0,0,2873,2876, + 1,0,0,0,2874,2872,1,0,0,0,2874,2875,1,0,0,0,2875,403,1,0,0,0,2876, + 2874,1,0,0,0,2877,2878,3,620,310,0,2878,2879,3,416,208,0,2879,2881, + 3,692,346,0,2880,2882,3,638,319,0,2881,2880,1,0,0,0,2881,2882,1, + 0,0,0,2882,2884,1,0,0,0,2883,2885,3,676,338,0,2884,2883,1,0,0,0, + 2884,2885,1,0,0,0,2885,2887,1,0,0,0,2886,2888,3,724,362,0,2887,2886, + 1,0,0,0,2887,2888,1,0,0,0,2888,2890,1,0,0,0,2889,2891,3,740,370, + 0,2890,2889,1,0,0,0,2890,2891,1,0,0,0,2891,2893,1,0,0,0,2892,2894, + 3,708,354,0,2893,2892,1,0,0,0,2893,2894,1,0,0,0,2894,2896,1,0,0, + 0,2895,2897,3,742,371,0,2896,2895,1,0,0,0,2896,2897,1,0,0,0,2897, + 2899,1,0,0,0,2898,2900,3,764,382,0,2899,2898,1,0,0,0,2899,2900,1, + 0,0,0,2900,2902,1,0,0,0,2901,2903,3,766,383,0,2902,2901,1,0,0,0, + 2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904,2906,3,770,385,0,2905,2904, + 1,0,0,0,2905,2906,1,0,0,0,2906,2908,1,0,0,0,2907,2909,3,772,386, + 0,2908,2907,1,0,0,0,2908,2909,1,0,0,0,2909,2911,1,0,0,0,2910,2912, + 3,420,210,0,2911,2910,1,0,0,0,2911,2912,1,0,0,0,2912,2949,1,0,0, + 0,2913,2914,3,620,310,0,2914,2916,3,692,346,0,2915,2917,3,638,319, + 0,2916,2915,1,0,0,0,2916,2917,1,0,0,0,2917,2919,1,0,0,0,2918,2920, + 3,676,338,0,2919,2918,1,0,0,0,2919,2920,1,0,0,0,2920,2922,1,0,0, + 0,2921,2923,3,724,362,0,2922,2921,1,0,0,0,2922,2923,1,0,0,0,2923, + 2925,1,0,0,0,2924,2926,3,740,370,0,2925,2924,1,0,0,0,2925,2926,1, + 0,0,0,2926,2928,1,0,0,0,2927,2929,3,708,354,0,2928,2927,1,0,0,0, + 2928,2929,1,0,0,0,2929,2931,1,0,0,0,2930,2932,3,742,371,0,2931,2930, + 1,0,0,0,2931,2932,1,0,0,0,2932,2934,1,0,0,0,2933,2935,3,764,382, + 0,2934,2933,1,0,0,0,2934,2935,1,0,0,0,2935,2937,1,0,0,0,2936,2938, + 3,766,383,0,2937,2936,1,0,0,0,2937,2938,1,0,0,0,2938,2940,1,0,0, + 0,2939,2941,3,770,385,0,2940,2939,1,0,0,0,2940,2941,1,0,0,0,2941, + 2943,1,0,0,0,2942,2944,3,772,386,0,2943,2942,1,0,0,0,2943,2944,1, + 0,0,0,2944,2946,1,0,0,0,2945,2947,3,420,210,0,2946,2945,1,0,0,0, + 2946,2947,1,0,0,0,2947,2949,1,0,0,0,2948,2877,1,0,0,0,2948,2913, + 1,0,0,0,2949,405,1,0,0,0,2950,2951,3,416,208,0,2951,2952,3,410,205, + 0,2952,2955,1,0,0,0,2953,2955,3,410,205,0,2954,2950,1,0,0,0,2954, + 2953,1,0,0,0,2955,407,1,0,0,0,2956,2958,3,692,346,0,2957,2959,3, + 620,310,0,2958,2957,1,0,0,0,2958,2959,1,0,0,0,2959,2961,1,0,0,0, + 2960,2962,3,676,338,0,2961,2960,1,0,0,0,2961,2962,1,0,0,0,2962,2964, + 1,0,0,0,2963,2965,3,724,362,0,2964,2963,1,0,0,0,2964,2965,1,0,0, + 0,2965,2967,1,0,0,0,2966,2968,3,740,370,0,2967,2966,1,0,0,0,2967, + 2968,1,0,0,0,2968,2970,1,0,0,0,2969,2971,3,708,354,0,2970,2969,1, + 0,0,0,2970,2971,1,0,0,0,2971,2973,1,0,0,0,2972,2974,3,742,371,0, + 2973,2972,1,0,0,0,2973,2974,1,0,0,0,2974,2981,1,0,0,0,2975,2976, + 5,399,0,0,2976,2977,3,410,205,0,2977,2978,5,400,0,0,2978,2981,1, + 0,0,0,2979,2981,3,680,340,0,2980,2956,1,0,0,0,2980,2975,1,0,0,0, + 2980,2979,1,0,0,0,2981,409,1,0,0,0,2982,2984,3,408,204,0,2983,2985, + 3,412,206,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985,2987,1,0,0, + 0,2986,2988,3,764,382,0,2987,2986,1,0,0,0,2987,2988,1,0,0,0,2988, + 2990,1,0,0,0,2989,2991,3,766,383,0,2990,2989,1,0,0,0,2990,2991,1, + 0,0,0,2991,2993,1,0,0,0,2992,2994,3,770,385,0,2993,2992,1,0,0,0, + 2993,2994,1,0,0,0,2994,2996,1,0,0,0,2995,2997,3,772,386,0,2996,2995, + 1,0,0,0,2996,2997,1,0,0,0,2997,2999,1,0,0,0,2998,3000,3,420,210, + 0,2999,2998,1,0,0,0,2999,3000,1,0,0,0,3000,411,1,0,0,0,3001,3002, + 3,392,196,0,3002,3003,3,408,204,0,3003,3005,1,0,0,0,3004,3001,1, + 0,0,0,3005,3006,1,0,0,0,3006,3004,1,0,0,0,3006,3007,1,0,0,0,3007, + 413,1,0,0,0,3008,3010,3,398,199,0,3009,3008,1,0,0,0,3009,3010,1, + 0,0,0,3010,3011,1,0,0,0,3011,3012,3,410,205,0,3012,415,1,0,0,0,3013, + 3030,5,161,0,0,3014,3015,5,235,0,0,3015,3017,3,418,209,0,3016,3018, + 3,44,22,0,3017,3016,1,0,0,0,3017,3018,1,0,0,0,3018,3031,1,0,0,0, + 3019,3021,5,166,0,0,3020,3022,5,329,0,0,3021,3020,1,0,0,0,3021,3022, + 1,0,0,0,3022,3023,1,0,0,0,3023,3028,3,910,455,0,3024,3025,5,399, + 0,0,3025,3026,3,282,141,0,3026,3027,5,400,0,0,3027,3029,1,0,0,0, + 3028,3024,1,0,0,0,3028,3029,1,0,0,0,3029,3031,1,0,0,0,3030,3014, + 1,0,0,0,3030,3019,1,0,0,0,3031,417,1,0,0,0,3032,3034,5,188,0,0,3033, + 3032,1,0,0,0,3033,3034,1,0,0,0,3034,3035,1,0,0,0,3035,3036,5,93, + 0,0,3036,3038,5,426,0,0,3037,3039,3,250,125,0,3038,3037,1,0,0,0, + 3038,3039,1,0,0,0,3039,3041,1,0,0,0,3040,3042,3,272,136,0,3041,3040, + 1,0,0,0,3041,3042,1,0,0,0,3042,3046,1,0,0,0,3043,3044,5,329,0,0, + 3044,3046,3,910,455,0,3045,3033,1,0,0,0,3045,3043,1,0,0,0,3046,419, + 1,0,0,0,3047,3056,5,185,0,0,3048,3049,5,431,0,0,3049,3051,5,397, + 0,0,3050,3048,1,0,0,0,3050,3051,1,0,0,0,3051,3052,1,0,0,0,3052,3057, + 5,431,0,0,3053,3054,5,431,0,0,3054,3055,5,223,0,0,3055,3057,5,431, + 0,0,3056,3050,1,0,0,0,3056,3053,1,0,0,0,3057,421,1,0,0,0,3058,3059, + 5,86,0,0,3059,3060,5,139,0,0,3060,3062,3,660,330,0,3061,3063,3,676, + 338,0,3062,3061,1,0,0,0,3062,3063,1,0,0,0,3063,423,1,0,0,0,3064, + 3065,3,284,142,0,3065,3066,5,405,0,0,3066,3067,3,426,213,0,3067, + 425,1,0,0,0,3068,3071,3,614,307,0,3069,3071,3,848,424,0,3070,3068, + 1,0,0,0,3070,3069,1,0,0,0,3071,427,1,0,0,0,3072,3073,5,304,0,0,3073, + 3078,3,424,212,0,3074,3075,5,397,0,0,3075,3077,3,424,212,0,3076, + 3074,1,0,0,0,3077,3080,1,0,0,0,3078,3076,1,0,0,0,3078,3079,1,0,0, + 0,3079,429,1,0,0,0,3080,3078,1,0,0,0,3081,3082,5,365,0,0,3082,3083, + 3,660,330,0,3083,3085,3,428,214,0,3084,3086,3,676,338,0,3085,3084, + 1,0,0,0,3085,3086,1,0,0,0,3086,431,1,0,0,0,3087,3092,3,434,217,0, + 3088,3092,3,444,222,0,3089,3092,3,446,223,0,3090,3092,3,448,224, + 0,3091,3087,1,0,0,0,3091,3088,1,0,0,0,3091,3089,1,0,0,0,3091,3090, + 1,0,0,0,3092,433,1,0,0,0,3093,3094,5,318,0,0,3094,3103,5,344,0,0, + 3095,3100,3,436,218,0,3096,3097,5,397,0,0,3097,3099,3,436,218,0, + 3098,3096,1,0,0,0,3099,3102,1,0,0,0,3100,3098,1,0,0,0,3100,3101, + 1,0,0,0,3101,3104,1,0,0,0,3102,3100,1,0,0,0,3103,3095,1,0,0,0,3103, + 3104,1,0,0,0,3104,435,1,0,0,0,3105,3108,3,440,220,0,3106,3108,3, + 438,219,0,3107,3105,1,0,0,0,3107,3106,1,0,0,0,3108,437,1,0,0,0,3109, + 3110,5,261,0,0,3110,3111,7,21,0,0,3111,439,1,0,0,0,3112,3113,5,168, + 0,0,3113,3114,5,182,0,0,3114,3115,3,442,221,0,3115,441,1,0,0,0,3116, + 3117,5,312,0,0,3117,443,1,0,0,0,3118,3120,5,48,0,0,3119,3121,5,389, + 0,0,3120,3119,1,0,0,0,3120,3121,1,0,0,0,3121,445,1,0,0,0,3122,3124, + 5,289,0,0,3123,3125,5,389,0,0,3124,3123,1,0,0,0,3124,3125,1,0,0, + 0,3125,447,1,0,0,0,3126,3127,5,304,0,0,3127,3128,5,22,0,0,3128,3129, + 3,908,454,0,3129,449,1,0,0,0,3130,3131,5,1,0,0,3131,3133,5,346,0, + 0,3132,3134,5,431,0,0,3133,3132,1,0,0,0,3134,3135,1,0,0,0,3135,3133, + 1,0,0,0,3135,3136,1,0,0,0,3136,451,1,0,0,0,3137,3138,5,1,0,0,3138, + 3140,5,50,0,0,3139,3141,5,431,0,0,3140,3139,1,0,0,0,3141,3142,1, + 0,0,0,3142,3140,1,0,0,0,3142,3143,1,0,0,0,3143,453,1,0,0,0,3144, + 3146,5,203,0,0,3145,3147,5,436,0,0,3146,3145,1,0,0,0,3146,3147,1, + 0,0,0,3147,3148,1,0,0,0,3148,3149,5,166,0,0,3149,3154,3,660,330, + 0,3150,3152,5,17,0,0,3151,3150,1,0,0,0,3151,3152,1,0,0,0,3152,3153, + 1,0,0,0,3153,3155,3,926,463,0,3154,3151,1,0,0,0,3154,3155,1,0,0, + 0,3155,3156,1,0,0,0,3156,3157,5,370,0,0,3157,3158,3,628,314,0,3158, + 3159,5,224,0,0,3159,3160,3,828,414,0,3160,3161,3,456,228,0,3161, + 455,1,0,0,0,3162,3165,3,460,230,0,3163,3165,3,462,231,0,3164,3162, + 1,0,0,0,3164,3163,1,0,0,0,3165,3168,1,0,0,0,3166,3164,1,0,0,0,3166, + 3167,1,0,0,0,3167,3170,1,0,0,0,3168,3166,1,0,0,0,3169,3171,3,458, + 229,0,3170,3169,1,0,0,0,3170,3171,1,0,0,0,3171,457,1,0,0,0,3172, + 3173,5,383,0,0,3173,3174,5,216,0,0,3174,3177,5,201,0,0,3175,3176, + 5,11,0,0,3176,3178,3,828,414,0,3177,3175,1,0,0,0,3177,3178,1,0,0, + 0,3178,3179,1,0,0,0,3179,3180,5,335,0,0,3180,3182,5,161,0,0,3181, + 3183,3,292,146,0,3182,3181,1,0,0,0,3182,3183,1,0,0,0,3183,3184,1, + 0,0,0,3184,3185,5,374,0,0,3185,3186,3,686,343,0,3186,459,1,0,0,0, + 3187,3188,5,383,0,0,3188,3189,5,201,0,0,3189,3190,5,11,0,0,3190, + 3191,3,828,414,0,3191,3192,5,335,0,0,3192,3193,3,464,232,0,3193, + 461,1,0,0,0,3194,3195,5,383,0,0,3195,3196,5,201,0,0,3196,3197,5, + 335,0,0,3197,3198,3,464,232,0,3198,463,1,0,0,0,3199,3200,5,365,0, + 0,3200,3203,3,428,214,0,3201,3203,5,86,0,0,3202,3199,1,0,0,0,3202, + 3201,1,0,0,0,3203,465,1,0,0,0,3204,3205,5,176,0,0,3205,3207,5,258, + 0,0,3206,3208,5,426,0,0,3207,3206,1,0,0,0,3208,3209,1,0,0,0,3209, + 3207,1,0,0,0,3209,3210,1,0,0,0,3210,467,1,0,0,0,3211,3212,5,51,0, + 0,3212,3213,5,405,0,0,3213,3214,5,431,0,0,3214,469,1,0,0,0,3215, + 3216,5,246,0,0,3216,3217,5,426,0,0,3217,471,1,0,0,0,3218,3219,5, + 352,0,0,3219,3220,5,426,0,0,3220,473,1,0,0,0,3221,3222,5,320,0,0, + 3222,3223,5,426,0,0,3223,475,1,0,0,0,3224,3248,5,9,0,0,3225,3226, + 5,329,0,0,3226,3227,3,660,330,0,3227,3228,3,478,239,0,3228,3249, + 1,0,0,0,3229,3230,5,378,0,0,3230,3232,3,664,332,0,3231,3233,5,17, + 0,0,3232,3231,1,0,0,0,3232,3233,1,0,0,0,3233,3234,1,0,0,0,3234,3235, + 3,484,242,0,3235,3249,1,0,0,0,3236,3237,5,202,0,0,3237,3238,5,378, + 0,0,3238,3239,3,664,332,0,3239,3240,3,486,243,0,3240,3249,1,0,0, + 0,3241,3242,3,92,46,0,3242,3243,3,492,246,0,3243,3249,1,0,0,0,3244, + 3245,5,69,0,0,3245,3249,3,588,294,0,3246,3247,5,155,0,0,3247,3249, + 3,584,292,0,3248,3225,1,0,0,0,3248,3229,1,0,0,0,3248,3236,1,0,0, + 0,3248,3241,1,0,0,0,3248,3244,1,0,0,0,3248,3246,1,0,0,0,3249,477, + 1,0,0,0,3250,3272,3,502,251,0,3251,3272,3,534,267,0,3252,3272,3, + 536,268,0,3253,3272,3,522,261,0,3254,3272,3,526,263,0,3255,3272, + 3,528,264,0,3256,3272,3,530,265,0,3257,3272,3,538,269,0,3258,3272, + 3,560,280,0,3259,3272,3,562,281,0,3260,3272,3,482,241,0,3261,3272, + 3,512,256,0,3262,3272,3,506,253,0,3263,3272,3,480,240,0,3264,3266, + 3,912,456,0,3265,3264,1,0,0,0,3265,3266,1,0,0,0,3266,3267,1,0,0, + 0,3267,3272,3,480,240,0,3268,3272,3,578,289,0,3269,3272,3,580,290, + 0,3270,3272,3,582,291,0,3271,3250,1,0,0,0,3271,3251,1,0,0,0,3271, + 3252,1,0,0,0,3271,3253,1,0,0,0,3271,3254,1,0,0,0,3271,3255,1,0,0, + 0,3271,3256,1,0,0,0,3271,3257,1,0,0,0,3271,3258,1,0,0,0,3271,3259, + 1,0,0,0,3271,3260,1,0,0,0,3271,3261,1,0,0,0,3271,3262,1,0,0,0,3271, + 3263,1,0,0,0,3271,3265,1,0,0,0,3271,3268,1,0,0,0,3271,3269,1,0,0, + 0,3271,3270,1,0,0,0,3272,479,1,0,0,0,3273,3289,3,546,273,0,3274, + 3289,3,558,279,0,3275,3289,3,568,284,0,3276,3289,3,542,271,0,3277, + 3289,3,564,282,0,3278,3289,3,570,285,0,3279,3289,3,550,275,0,3280, + 3289,3,548,274,0,3281,3289,3,576,288,0,3282,3289,3,516,258,0,3283, + 3289,3,518,259,0,3284,3289,3,514,257,0,3285,3289,3,504,252,0,3286, + 3289,3,508,254,0,3287,3289,3,510,255,0,3288,3273,1,0,0,0,3288,3274, + 1,0,0,0,3288,3275,1,0,0,0,3288,3276,1,0,0,0,3288,3277,1,0,0,0,3288, + 3278,1,0,0,0,3288,3279,1,0,0,0,3288,3280,1,0,0,0,3288,3281,1,0,0, + 0,3288,3282,1,0,0,0,3288,3283,1,0,0,0,3288,3284,1,0,0,0,3288,3285, + 1,0,0,0,3288,3286,1,0,0,0,3288,3287,1,0,0,0,3289,481,1,0,0,0,3290, + 3291,5,237,0,0,3291,3292,5,45,0,0,3292,3293,5,399,0,0,3293,3294, + 3,344,172,0,3294,3295,5,400,0,0,3295,483,1,0,0,0,3296,3302,3,540, + 270,0,3297,3302,3,502,251,0,3298,3302,3,522,261,0,3299,3302,3,536, + 268,0,3300,3302,3,414,207,0,3301,3296,1,0,0,0,3301,3297,1,0,0,0, + 3301,3298,1,0,0,0,3301,3299,1,0,0,0,3301,3300,1,0,0,0,3302,485,1, + 0,0,0,3303,3306,3,488,244,0,3304,3306,3,490,245,0,3305,3303,1,0, + 0,0,3305,3304,1,0,0,0,3306,487,1,0,0,0,3307,3310,3,48,24,0,3308, + 3310,3,50,25,0,3309,3307,1,0,0,0,3309,3308,1,0,0,0,3310,489,1,0, + 0,0,3311,3312,5,265,0,0,3312,491,1,0,0,0,3313,3317,3,494,247,0,3314, + 3317,3,496,248,0,3315,3317,3,498,249,0,3316,3313,1,0,0,0,3316,3314, + 1,0,0,0,3316,3315,1,0,0,0,3317,493,1,0,0,0,3318,3319,3,654,327,0, + 3319,3320,5,304,0,0,3320,3321,5,76,0,0,3321,3322,3,62,31,0,3322, + 495,1,0,0,0,3323,3324,3,654,327,0,3324,3325,5,304,0,0,3325,3326, + 5,236,0,0,3326,3327,3,150,75,0,3327,497,1,0,0,0,3328,3329,3,654, + 327,0,3329,3330,5,304,0,0,3330,3331,7,22,0,0,3331,3332,5,426,0,0, + 3332,499,1,0,0,0,3333,3334,3,654,327,0,3334,3335,5,304,0,0,3335, + 3336,5,196,0,0,3336,3337,5,426,0,0,3337,501,1,0,0,0,3338,3339,5, + 274,0,0,3339,3340,5,341,0,0,3340,3341,3,662,331,0,3341,503,1,0,0, + 0,3342,3345,5,4,0,0,3343,3345,5,278,0,0,3344,3342,1,0,0,0,3344,3343, + 1,0,0,0,3345,3346,1,0,0,0,3346,3347,5,46,0,0,3347,3348,5,399,0,0, + 3348,3349,3,276,138,0,3349,3351,5,400,0,0,3350,3352,3,42,21,0,3351, + 3350,1,0,0,0,3351,3352,1,0,0,0,3352,505,1,0,0,0,3353,3356,5,4,0, + 0,3354,3357,3,316,158,0,3355,3357,3,306,153,0,3356,3354,1,0,0,0, + 3356,3355,1,0,0,0,3357,507,1,0,0,0,3358,3359,5,365,0,0,3359,3361, + 5,46,0,0,3360,3362,3,42,21,0,3361,3360,1,0,0,0,3361,3362,1,0,0,0, + 3362,509,1,0,0,0,3363,3364,3,296,148,0,3364,3366,5,218,0,0,3365, + 3367,5,34,0,0,3366,3365,1,0,0,0,3366,3367,1,0,0,0,3367,3372,1,0, + 0,0,3368,3369,3,296,148,0,3369,3370,5,222,0,0,3370,3372,1,0,0,0, + 3371,3363,1,0,0,0,3371,3368,1,0,0,0,3372,511,1,0,0,0,3373,3374,5, + 101,0,0,3374,3375,5,55,0,0,3375,3376,3,926,463,0,3376,513,1,0,0, + 0,3377,3379,5,38,0,0,3378,3380,5,45,0,0,3379,3378,1,0,0,0,3379,3380, + 1,0,0,0,3380,3381,1,0,0,0,3381,3382,3,284,142,0,3382,3383,3,286, + 143,0,3383,3385,3,376,188,0,3384,3386,3,358,179,0,3385,3384,1,0, + 0,0,3385,3386,1,0,0,0,3386,3389,1,0,0,0,3387,3388,5,47,0,0,3388, + 3390,5,426,0,0,3389,3387,1,0,0,0,3389,3390,1,0,0,0,3390,3392,1,0, + 0,0,3391,3393,3,520,260,0,3392,3391,1,0,0,0,3392,3393,1,0,0,0,3393, + 3395,1,0,0,0,3394,3396,3,42,21,0,3395,3394,1,0,0,0,3395,3396,1,0, + 0,0,3396,515,1,0,0,0,3397,3398,5,365,0,0,3398,3399,5,319,0,0,3399, + 3401,5,134,0,0,3400,3402,5,45,0,0,3401,3400,1,0,0,0,3401,3402,1, + 0,0,0,3402,3403,1,0,0,0,3403,3404,3,284,142,0,3404,3405,5,304,0, + 0,3405,3408,3,254,127,0,3406,3407,5,47,0,0,3407,3409,5,426,0,0,3408, + 3406,1,0,0,0,3408,3409,1,0,0,0,3409,517,1,0,0,0,3410,3411,5,365, + 0,0,3411,3412,5,319,0,0,3412,3413,5,304,0,0,3413,3414,3,254,127, + 0,3414,519,1,0,0,0,3415,3419,5,130,0,0,3416,3417,5,6,0,0,3417,3419, + 3,926,463,0,3418,3415,1,0,0,0,3418,3416,1,0,0,0,3419,521,1,0,0,0, + 3420,3422,5,4,0,0,3421,3423,3,44,22,0,3422,3421,1,0,0,0,3422,3423, + 1,0,0,0,3423,3425,1,0,0,0,3424,3426,3,524,262,0,3425,3424,1,0,0, + 0,3426,3427,1,0,0,0,3427,3425,1,0,0,0,3427,3428,1,0,0,0,3428,523, + 1,0,0,0,3429,3431,3,912,456,0,3430,3432,3,532,266,0,3431,3430,1, + 0,0,0,3431,3432,1,0,0,0,3432,525,1,0,0,0,3433,3437,5,342,0,0,3434, + 3436,3,912,456,0,3435,3434,1,0,0,0,3436,3439,1,0,0,0,3437,3435,1, + 0,0,0,3437,3438,1,0,0,0,3438,527,1,0,0,0,3439,3437,1,0,0,0,3440, + 3444,5,15,0,0,3441,3443,3,912,456,0,3442,3441,1,0,0,0,3443,3446, + 1,0,0,0,3444,3442,1,0,0,0,3444,3445,1,0,0,0,3445,529,1,0,0,0,3446, + 3444,1,0,0,0,3447,3451,5,353,0,0,3448,3450,3,912,456,0,3449,3448, + 1,0,0,0,3450,3453,1,0,0,0,3451,3449,1,0,0,0,3451,3452,1,0,0,0,3452, + 531,1,0,0,0,3453,3451,1,0,0,0,3454,3455,5,189,0,0,3455,3456,5,426, + 0,0,3456,533,1,0,0,0,3457,3458,5,102,0,0,3458,3459,5,239,0,0,3459, + 535,1,0,0,0,3460,3462,5,101,0,0,3461,3463,3,40,20,0,3462,3461,1, + 0,0,0,3462,3463,1,0,0,0,3463,3464,1,0,0,0,3464,3465,5,237,0,0,3465, + 3471,3,916,458,0,3466,3467,5,397,0,0,3467,3468,5,237,0,0,3468,3470, + 3,916,458,0,3469,3466,1,0,0,0,3470,3473,1,0,0,0,3471,3469,1,0,0, + 0,3471,3472,1,0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3474,3476, + 3,16,8,0,3475,3474,1,0,0,0,3475,3476,1,0,0,0,3476,3478,1,0,0,0,3477, + 3479,5,255,0,0,3478,3477,1,0,0,0,3478,3479,1,0,0,0,3479,3481,1,0, + 0,0,3480,3482,3,18,9,0,3481,3480,1,0,0,0,3481,3482,1,0,0,0,3482, + 537,1,0,0,0,3483,3484,5,304,0,0,3484,3485,5,332,0,0,3485,3493,3, + 254,127,0,3486,3487,5,363,0,0,3487,3489,5,332,0,0,3488,3490,3,40, + 20,0,3489,3488,1,0,0,0,3489,3490,1,0,0,0,3490,3491,1,0,0,0,3491, + 3493,3,254,127,0,3492,3483,1,0,0,0,3492,3486,1,0,0,0,3493,539,1, + 0,0,0,3494,3495,5,304,0,0,3495,3496,5,332,0,0,3496,3504,3,254,127, + 0,3497,3498,5,363,0,0,3498,3500,5,332,0,0,3499,3501,3,40,20,0,3500, + 3499,1,0,0,0,3500,3501,1,0,0,0,3501,3502,1,0,0,0,3502,3504,3,254, + 127,0,3503,3494,1,0,0,0,3503,3497,1,0,0,0,3504,541,1,0,0,0,3505, + 3515,5,304,0,0,3506,3507,5,301,0,0,3507,3511,5,426,0,0,3508,3509, + 5,387,0,0,3509,3510,5,302,0,0,3510,3512,3,254,127,0,3511,3508,1, + 0,0,0,3511,3512,1,0,0,0,3512,3516,1,0,0,0,3513,3514,5,302,0,0,3514, + 3516,3,254,127,0,3515,3506,1,0,0,0,3515,3513,1,0,0,0,3516,3521,1, + 0,0,0,3517,3518,5,363,0,0,3518,3519,5,302,0,0,3519,3521,3,254,127, + 0,3520,3505,1,0,0,0,3520,3517,1,0,0,0,3521,543,1,0,0,0,3522,3524, + 3,660,330,0,3523,3525,3,912,456,0,3524,3523,1,0,0,0,3524,3525,1, + 0,0,0,3525,545,1,0,0,0,3526,3527,5,304,0,0,3527,3528,5,129,0,0,3528, + 3529,3,586,293,0,3529,547,1,0,0,0,3530,3531,5,216,0,0,3531,3534, + 7,23,0,0,3532,3534,3,234,117,0,3533,3530,1,0,0,0,3533,3532,1,0,0, + 0,3534,549,1,0,0,0,3535,3536,5,304,0,0,3536,3537,5,310,0,0,3537, + 3538,5,189,0,0,3538,3539,3,552,276,0,3539,551,1,0,0,0,3540,3541, + 5,399,0,0,3541,3542,3,554,277,0,3542,3543,5,400,0,0,3543,553,1,0, + 0,0,3544,3549,3,556,278,0,3545,3546,5,397,0,0,3546,3548,3,556,278, + 0,3547,3545,1,0,0,0,3548,3551,1,0,0,0,3549,3547,1,0,0,0,3549,3550, + 1,0,0,0,3550,555,1,0,0,0,3551,3549,1,0,0,0,3552,3553,3,328,164,0, + 3553,3554,5,405,0,0,3554,3555,5,426,0,0,3555,557,1,0,0,0,3556,3557, + 5,304,0,0,3557,3558,5,189,0,0,3558,3559,5,426,0,0,3559,559,1,0,0, + 0,3560,3567,3,238,119,0,3561,3564,5,216,0,0,3562,3565,5,310,0,0, + 3563,3565,3,52,26,0,3564,3562,1,0,0,0,3564,3563,1,0,0,0,3565,3567, + 1,0,0,0,3566,3560,1,0,0,0,3566,3561,1,0,0,0,3567,561,1,0,0,0,3568, + 3569,5,113,0,0,3569,3570,3,912,456,0,3570,3571,5,387,0,0,3571,3572, + 5,329,0,0,3572,3573,3,660,330,0,3573,563,1,0,0,0,3574,3575,5,274, + 0,0,3575,3576,5,341,0,0,3576,3577,3,912,456,0,3577,565,1,0,0,0,3578, + 3579,5,365,0,0,3579,3580,5,319,0,0,3580,3582,5,134,0,0,3581,3583, + 5,45,0,0,3582,3581,1,0,0,0,3582,3583,1,0,0,0,3583,3584,1,0,0,0,3584, + 3585,3,284,142,0,3585,3586,5,304,0,0,3586,3589,3,254,127,0,3587, + 3588,5,47,0,0,3588,3590,5,426,0,0,3589,3587,1,0,0,0,3589,3590,1, + 0,0,0,3590,567,1,0,0,0,3591,3592,5,53,0,0,3592,569,1,0,0,0,3593, + 3594,5,166,0,0,3594,3595,5,431,0,0,3595,3596,5,31,0,0,3596,571,1, + 0,0,0,3597,3598,5,11,0,0,3598,3599,5,380,0,0,3599,573,1,0,0,0,3600, + 3601,5,246,0,0,3601,3602,5,426,0,0,3602,575,1,0,0,0,3603,3604,5, + 49,0,0,3604,3606,5,426,0,0,3605,3607,3,572,286,0,3606,3605,1,0,0, + 0,3606,3607,1,0,0,0,3607,3609,1,0,0,0,3608,3610,3,236,118,0,3609, + 3608,1,0,0,0,3609,3610,1,0,0,0,3610,3612,1,0,0,0,3611,3613,3,764, + 382,0,3612,3611,1,0,0,0,3612,3613,1,0,0,0,3613,3615,1,0,0,0,3614, + 3616,3,574,287,0,3615,3614,1,0,0,0,3615,3616,1,0,0,0,3616,3621,1, + 0,0,0,3617,3618,5,387,0,0,3618,3619,5,235,0,0,3619,3620,5,332,0, + 0,3620,3622,3,254,127,0,3621,3617,1,0,0,0,3621,3622,1,0,0,0,3622, + 577,1,0,0,0,3623,3624,5,304,0,0,3624,3625,5,236,0,0,3625,3626,3, + 148,74,0,3626,579,1,0,0,0,3627,3628,5,304,0,0,3628,3629,5,237,0, + 0,3629,3630,5,316,0,0,3630,3631,5,399,0,0,3631,3632,3,228,114,0, + 3632,3633,5,400,0,0,3633,581,1,0,0,0,3634,3644,5,115,0,0,3635,3636, + 5,289,0,0,3636,3637,5,399,0,0,3637,3645,7,24,0,0,3638,3639,5,118, + 0,0,3639,3640,5,399,0,0,3640,3645,5,426,0,0,3641,3642,5,306,0,0, + 3642,3643,5,399,0,0,3643,3645,5,431,0,0,3644,3635,1,0,0,0,3644,3638, + 1,0,0,0,3644,3641,1,0,0,0,3645,3646,1,0,0,0,3646,3647,5,400,0,0, + 3647,583,1,0,0,0,3648,3649,3,926,463,0,3649,3650,5,224,0,0,3650, + 3652,3,660,330,0,3651,3653,3,912,456,0,3652,3651,1,0,0,0,3652,3653, + 1,0,0,0,3653,3654,1,0,0,0,3654,3655,5,265,0,0,3655,585,1,0,0,0,3656, + 3657,5,160,0,0,3657,3658,5,426,0,0,3658,3659,5,233,0,0,3659,3660, + 5,426,0,0,3660,3661,5,301,0,0,3661,3666,5,426,0,0,3662,3663,5,159, + 0,0,3663,3664,5,426,0,0,3664,3665,5,232,0,0,3665,3667,5,426,0,0, + 3666,3662,1,0,0,0,3666,3667,1,0,0,0,3667,3670,1,0,0,0,3668,3670, + 3,926,463,0,3669,3656,1,0,0,0,3669,3668,1,0,0,0,3670,587,1,0,0,0, + 3671,3675,3,590,295,0,3672,3675,3,592,296,0,3673,3675,3,594,297, + 0,3674,3671,1,0,0,0,3674,3672,1,0,0,0,3674,3673,1,0,0,0,3675,589, + 1,0,0,0,3676,3677,3,654,327,0,3677,3678,5,304,0,0,3678,3679,5,77, + 0,0,3679,3680,3,608,304,0,3680,591,1,0,0,0,3681,3682,3,654,327,0, + 3682,3683,5,304,0,0,3683,3684,5,236,0,0,3684,3685,3,150,75,0,3685, + 593,1,0,0,0,3686,3687,3,654,327,0,3687,3688,5,304,0,0,3688,3689, + 5,367,0,0,3689,3690,5,426,0,0,3690,595,1,0,0,0,3691,3692,5,184,0, + 0,3692,3701,5,128,0,0,3693,3694,5,184,0,0,3694,3695,5,128,0,0,3695, + 3696,3,926,463,0,3696,3697,5,426,0,0,3697,3701,1,0,0,0,3698,3699, + 5,184,0,0,3699,3701,3,660,330,0,3700,3691,1,0,0,0,3700,3693,1,0, + 0,0,3700,3698,1,0,0,0,3701,597,1,0,0,0,3702,3704,5,58,0,0,3703,3705, + 5,333,0,0,3704,3703,1,0,0,0,3704,3705,1,0,0,0,3705,3707,1,0,0,0, + 3706,3708,5,345,0,0,3707,3706,1,0,0,0,3707,3708,1,0,0,0,3708,3710, + 1,0,0,0,3709,3711,5,123,0,0,3710,3709,1,0,0,0,3710,3711,1,0,0,0, + 3711,3712,1,0,0,0,3712,3714,5,329,0,0,3713,3715,3,44,22,0,3714,3713, + 1,0,0,0,3714,3715,1,0,0,0,3715,3716,1,0,0,0,3716,3770,3,662,331, + 0,3717,3719,3,596,298,0,3718,3720,3,222,111,0,3719,3718,1,0,0,0, + 3719,3720,1,0,0,0,3720,3722,1,0,0,0,3721,3723,3,250,125,0,3722,3721, + 1,0,0,0,3722,3723,1,0,0,0,3723,3725,1,0,0,0,3724,3726,3,272,136, + 0,3725,3724,1,0,0,0,3725,3726,1,0,0,0,3726,3728,1,0,0,0,3727,3729, + 3,274,137,0,3728,3727,1,0,0,0,3728,3729,1,0,0,0,3729,3731,1,0,0, + 0,3730,3732,3,252,126,0,3731,3730,1,0,0,0,3731,3732,1,0,0,0,3732, + 3771,1,0,0,0,3733,3734,5,399,0,0,3734,3735,3,278,139,0,3735,3736, + 5,400,0,0,3736,3738,1,0,0,0,3737,3733,1,0,0,0,3737,3738,1,0,0,0, + 3738,3740,1,0,0,0,3739,3741,3,218,109,0,3740,3739,1,0,0,0,3740,3741, + 1,0,0,0,3741,3743,1,0,0,0,3742,3744,3,220,110,0,3743,3742,1,0,0, + 0,3743,3744,1,0,0,0,3744,3746,1,0,0,0,3745,3747,3,222,111,0,3746, + 3745,1,0,0,0,3746,3747,1,0,0,0,3747,3749,1,0,0,0,3748,3750,3,234, + 117,0,3749,3748,1,0,0,0,3749,3750,1,0,0,0,3750,3752,1,0,0,0,3751, + 3753,3,238,119,0,3752,3751,1,0,0,0,3752,3753,1,0,0,0,3753,3755,1, + 0,0,0,3754,3756,3,250,125,0,3755,3754,1,0,0,0,3755,3756,1,0,0,0, + 3756,3758,1,0,0,0,3757,3759,3,272,136,0,3758,3757,1,0,0,0,3758,3759, + 1,0,0,0,3759,3761,1,0,0,0,3760,3762,3,274,137,0,3761,3760,1,0,0, + 0,3761,3762,1,0,0,0,3762,3764,1,0,0,0,3763,3765,3,252,126,0,3764, + 3763,1,0,0,0,3764,3765,1,0,0,0,3765,3768,1,0,0,0,3766,3767,5,17, + 0,0,3767,3769,3,414,207,0,3768,3766,1,0,0,0,3768,3769,1,0,0,0,3769, + 3771,1,0,0,0,3770,3717,1,0,0,0,3770,3737,1,0,0,0,3771,3832,1,0,0, + 0,3772,3773,5,58,0,0,3773,3774,5,195,0,0,3774,3776,5,329,0,0,3775, + 3777,3,44,22,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3778,1,0, + 0,0,3778,3829,3,662,331,0,3779,3781,3,596,298,0,3780,3782,3,250, + 125,0,3781,3780,1,0,0,0,3781,3782,1,0,0,0,3782,3784,1,0,0,0,3783, + 3785,3,272,136,0,3784,3783,1,0,0,0,3784,3785,1,0,0,0,3785,3787,1, + 0,0,0,3786,3788,3,274,137,0,3787,3786,1,0,0,0,3787,3788,1,0,0,0, + 3788,3790,1,0,0,0,3789,3791,3,252,126,0,3790,3789,1,0,0,0,3790,3791, + 1,0,0,0,3791,3830,1,0,0,0,3792,3793,5,399,0,0,3793,3794,3,278,139, + 0,3794,3795,5,400,0,0,3795,3797,1,0,0,0,3796,3792,1,0,0,0,3796,3797, + 1,0,0,0,3797,3799,1,0,0,0,3798,3800,3,218,109,0,3799,3798,1,0,0, + 0,3799,3800,1,0,0,0,3800,3802,1,0,0,0,3801,3803,3,220,110,0,3802, + 3801,1,0,0,0,3802,3803,1,0,0,0,3803,3805,1,0,0,0,3804,3806,3,222, + 111,0,3805,3804,1,0,0,0,3805,3806,1,0,0,0,3806,3808,1,0,0,0,3807, + 3809,3,234,117,0,3808,3807,1,0,0,0,3808,3809,1,0,0,0,3809,3811,1, + 0,0,0,3810,3812,3,238,119,0,3811,3810,1,0,0,0,3811,3812,1,0,0,0, + 3812,3814,1,0,0,0,3813,3815,3,250,125,0,3814,3813,1,0,0,0,3814,3815, + 1,0,0,0,3815,3817,1,0,0,0,3816,3818,3,272,136,0,3817,3816,1,0,0, + 0,3817,3818,1,0,0,0,3818,3820,1,0,0,0,3819,3821,3,274,137,0,3820, + 3819,1,0,0,0,3820,3821,1,0,0,0,3821,3823,1,0,0,0,3822,3824,3,252, + 126,0,3823,3822,1,0,0,0,3823,3824,1,0,0,0,3824,3827,1,0,0,0,3825, + 3826,5,17,0,0,3826,3828,3,414,207,0,3827,3825,1,0,0,0,3827,3828, + 1,0,0,0,3828,3830,1,0,0,0,3829,3779,1,0,0,0,3829,3796,1,0,0,0,3830, + 3832,1,0,0,0,3831,3702,1,0,0,0,3831,3772,1,0,0,0,3832,599,1,0,0, + 0,3833,3834,5,58,0,0,3834,3836,5,69,0,0,3835,3837,3,44,22,0,3836, + 3835,1,0,0,0,3836,3837,1,0,0,0,3837,3838,1,0,0,0,3838,3840,3,926, + 463,0,3839,3841,3,606,303,0,3840,3839,1,0,0,0,3840,3841,1,0,0,0, + 3841,3843,1,0,0,0,3842,3844,3,604,302,0,3843,3842,1,0,0,0,3843,3844, + 1,0,0,0,3844,3846,1,0,0,0,3845,3847,3,602,301,0,3846,3845,1,0,0, + 0,3846,3847,1,0,0,0,3847,3851,1,0,0,0,3848,3849,5,387,0,0,3849,3850, + 5,77,0,0,3850,3852,3,608,304,0,3851,3848,1,0,0,0,3851,3852,1,0,0, + 0,3852,601,1,0,0,0,3853,3854,5,47,0,0,3854,3855,5,426,0,0,3855,603, + 1,0,0,0,3856,3857,5,367,0,0,3857,3858,5,426,0,0,3858,605,1,0,0,0, + 3859,3860,5,352,0,0,3860,3861,5,426,0,0,3861,607,1,0,0,0,3862,3863, + 5,399,0,0,3863,3864,3,64,32,0,3864,3865,5,400,0,0,3865,609,1,0,0, + 0,3866,3867,5,101,0,0,3867,3869,5,69,0,0,3868,3870,3,40,20,0,3869, + 3868,1,0,0,0,3869,3870,1,0,0,0,3870,3871,1,0,0,0,3871,3872,3,926, + 463,0,3872,611,1,0,0,0,3873,3874,3,926,463,0,3874,3875,5,395,0,0, + 3875,3877,1,0,0,0,3876,3873,1,0,0,0,3877,3880,1,0,0,0,3878,3876, + 1,0,0,0,3878,3879,1,0,0,0,3879,3881,1,0,0,0,3880,3878,1,0,0,0,3881, + 3882,5,415,0,0,3882,613,1,0,0,0,3883,3884,5,83,0,0,3884,615,1,0, + 0,0,3885,3890,3,828,414,0,3886,3887,5,397,0,0,3887,3889,3,828,414, + 0,3888,3886,1,0,0,0,3889,3892,1,0,0,0,3890,3888,1,0,0,0,3890,3891, + 1,0,0,0,3891,617,1,0,0,0,3892,3890,1,0,0,0,3893,3898,3,926,463,0, + 3894,3895,5,397,0,0,3895,3897,3,926,463,0,3896,3894,1,0,0,0,3897, + 3900,1,0,0,0,3898,3896,1,0,0,0,3898,3899,1,0,0,0,3899,619,1,0,0, + 0,3900,3898,1,0,0,0,3901,3902,5,139,0,0,3902,3903,3,622,311,0,3903, + 621,1,0,0,0,3904,3905,3,634,317,0,3905,3908,3,630,315,0,3906,3907, + 5,397,0,0,3907,3909,3,630,315,0,3908,3906,1,0,0,0,3909,3910,1,0, + 0,0,3910,3908,1,0,0,0,3910,3911,1,0,0,0,3911,3914,1,0,0,0,3912,3914, + 3,626,313,0,3913,3904,1,0,0,0,3913,3912,1,0,0,0,3914,623,1,0,0,0, + 3915,3919,3,648,324,0,3916,3918,3,638,319,0,3917,3916,1,0,0,0,3918, + 3921,1,0,0,0,3919,3917,1,0,0,0,3919,3920,1,0,0,0,3920,3948,1,0,0, + 0,3921,3919,1,0,0,0,3922,3926,3,690,345,0,3923,3925,3,638,319,0, + 3924,3923,1,0,0,0,3925,3928,1,0,0,0,3926,3924,1,0,0,0,3926,3927, + 1,0,0,0,3927,3948,1,0,0,0,3928,3926,1,0,0,0,3929,3933,3,668,334, + 0,3930,3932,3,638,319,0,3931,3930,1,0,0,0,3932,3935,1,0,0,0,3933, + 3931,1,0,0,0,3933,3934,1,0,0,0,3934,3948,1,0,0,0,3935,3933,1,0,0, + 0,3936,3940,3,674,337,0,3937,3939,3,638,319,0,3938,3937,1,0,0,0, + 3939,3942,1,0,0,0,3940,3938,1,0,0,0,3940,3941,1,0,0,0,3941,3948, + 1,0,0,0,3942,3940,1,0,0,0,3943,3944,5,399,0,0,3944,3945,3,626,313, + 0,3945,3946,5,400,0,0,3946,3948,1,0,0,0,3947,3915,1,0,0,0,3947,3922, + 1,0,0,0,3947,3929,1,0,0,0,3947,3936,1,0,0,0,3947,3943,1,0,0,0,3948, + 625,1,0,0,0,3949,3960,3,624,312,0,3950,3951,3,636,318,0,3951,3956, + 3,628,314,0,3952,3953,5,224,0,0,3953,3957,3,828,414,0,3954,3955, + 5,370,0,0,3955,3957,3,292,146,0,3956,3952,1,0,0,0,3956,3954,1,0, + 0,0,3956,3957,1,0,0,0,3957,3959,1,0,0,0,3958,3950,1,0,0,0,3959,3962, + 1,0,0,0,3960,3958,1,0,0,0,3960,3961,1,0,0,0,3961,627,1,0,0,0,3962, + 3960,1,0,0,0,3963,3968,3,648,324,0,3964,3968,3,690,345,0,3965,3968, + 3,668,334,0,3966,3968,3,674,337,0,3967,3963,1,0,0,0,3967,3964,1, + 0,0,0,3967,3965,1,0,0,0,3967,3966,1,0,0,0,3968,3972,1,0,0,0,3969, + 3971,3,638,319,0,3970,3969,1,0,0,0,3971,3974,1,0,0,0,3972,3970,1, + 0,0,0,3972,3973,1,0,0,0,3973,629,1,0,0,0,3974,3972,1,0,0,0,3975, + 3977,5,250,0,0,3976,3975,1,0,0,0,3976,3977,1,0,0,0,3977,3978,1,0, + 0,0,3978,3979,3,652,326,0,3979,3980,3,632,316,0,3980,631,1,0,0,0, + 3981,3982,5,399,0,0,3982,3983,3,616,308,0,3983,3984,5,400,0,0,3984, + 633,1,0,0,0,3985,3986,5,359,0,0,3986,635,1,0,0,0,3987,4002,5,397, + 0,0,3988,3999,5,157,0,0,3989,3999,5,60,0,0,3990,3992,7,25,0,0,3991, + 3993,5,231,0,0,3992,3991,1,0,0,0,3992,3993,1,0,0,0,3993,3999,1,0, + 0,0,3994,3996,5,180,0,0,3995,3997,7,26,0,0,3996,3995,1,0,0,0,3996, + 3997,1,0,0,0,3997,3999,1,0,0,0,3998,3988,1,0,0,0,3998,3989,1,0,0, + 0,3998,3990,1,0,0,0,3998,3994,1,0,0,0,3998,3999,1,0,0,0,3999,4000, + 1,0,0,0,4000,4002,5,171,0,0,4001,3987,1,0,0,0,4001,3998,1,0,0,0, + 4002,637,1,0,0,0,4003,4004,5,178,0,0,4004,4005,5,378,0,0,4005,4006, + 5,231,0,0,4006,4007,3,776,388,0,4007,4017,3,640,320,0,4008,4009, + 5,17,0,0,4009,4014,3,926,463,0,4010,4011,5,397,0,0,4011,4013,3,926, + 463,0,4012,4010,1,0,0,0,4013,4016,1,0,0,0,4014,4012,1,0,0,0,4014, + 4015,1,0,0,0,4015,4018,1,0,0,0,4016,4014,1,0,0,0,4017,4008,1,0,0, + 0,4017,4018,1,0,0,0,4018,4061,1,0,0,0,4019,4021,5,397,0,0,4020,4019, + 1,0,0,0,4020,4021,1,0,0,0,4021,4022,1,0,0,0,4022,4058,5,178,0,0, + 4023,4024,5,378,0,0,4024,4025,3,776,388,0,4025,4035,3,640,320,0, + 4026,4027,5,17,0,0,4027,4032,3,926,463,0,4028,4029,5,397,0,0,4029, + 4031,3,926,463,0,4030,4028,1,0,0,0,4031,4034,1,0,0,0,4032,4030,1, + 0,0,0,4032,4033,1,0,0,0,4033,4036,1,0,0,0,4034,4032,1,0,0,0,4035, + 4026,1,0,0,0,4035,4036,1,0,0,0,4036,4059,1,0,0,0,4037,4038,5,329, + 0,0,4038,4039,5,399,0,0,4039,4040,3,682,341,0,4040,4042,5,400,0, + 0,4041,4043,5,17,0,0,4042,4041,1,0,0,0,4042,4043,1,0,0,0,4043,4044, + 1,0,0,0,4044,4056,3,640,320,0,4045,4046,5,399,0,0,4046,4051,3,926, + 463,0,4047,4048,5,397,0,0,4048,4050,3,926,463,0,4049,4047,1,0,0, + 0,4050,4053,1,0,0,0,4051,4049,1,0,0,0,4051,4052,1,0,0,0,4052,4054, + 1,0,0,0,4053,4051,1,0,0,0,4054,4055,5,400,0,0,4055,4057,1,0,0,0, + 4056,4045,1,0,0,0,4056,4057,1,0,0,0,4057,4059,1,0,0,0,4058,4023, + 1,0,0,0,4058,4037,1,0,0,0,4059,4061,1,0,0,0,4060,4003,1,0,0,0,4060, + 4020,1,0,0,0,4061,639,1,0,0,0,4062,4063,3,926,463,0,4063,641,1,0, + 0,0,4064,4065,5,331,0,0,4065,4066,5,399,0,0,4066,4067,5,30,0,0,4067, + 4068,5,431,0,0,4068,4069,5,230,0,0,4069,4070,5,221,0,0,4070,4080, + 5,431,0,0,4071,4072,5,224,0,0,4072,4077,3,828,414,0,4073,4074,5, + 397,0,0,4074,4076,3,828,414,0,4075,4073,1,0,0,0,4076,4079,1,0,0, + 0,4077,4075,1,0,0,0,4077,4078,1,0,0,0,4078,4081,1,0,0,0,4079,4077, + 1,0,0,0,4080,4071,1,0,0,0,4080,4081,1,0,0,0,4081,4082,1,0,0,0,4082, + 4083,5,400,0,0,4083,643,1,0,0,0,4084,4085,5,331,0,0,4085,4089,5, + 399,0,0,4086,4087,5,431,0,0,4087,4090,7,27,0,0,4088,4090,5,430,0, + 0,4089,4086,1,0,0,0,4089,4088,1,0,0,0,4090,4091,1,0,0,0,4091,4092, + 5,400,0,0,4092,645,1,0,0,0,4093,4096,3,642,321,0,4094,4096,3,644, + 322,0,4095,4093,1,0,0,0,4095,4094,1,0,0,0,4096,647,1,0,0,0,4097, + 4099,3,658,329,0,4098,4100,3,254,127,0,4099,4098,1,0,0,0,4099,4100, + 1,0,0,0,4100,4102,1,0,0,0,4101,4103,3,646,323,0,4102,4101,1,0,0, + 0,4102,4103,1,0,0,0,4103,4105,1,0,0,0,4104,4106,3,650,325,0,4105, + 4104,1,0,0,0,4105,4106,1,0,0,0,4106,4111,1,0,0,0,4107,4109,5,17, + 0,0,4108,4107,1,0,0,0,4108,4109,1,0,0,0,4109,4110,1,0,0,0,4110,4112, + 3,926,463,0,4111,4108,1,0,0,0,4111,4112,1,0,0,0,4112,649,1,0,0,0, + 4113,4123,5,134,0,0,4114,4115,5,327,0,0,4115,4116,5,17,0,0,4116, + 4117,5,221,0,0,4117,4124,3,828,414,0,4118,4119,5,134,0,0,4119,4120, + 5,328,0,0,4120,4121,5,17,0,0,4121,4122,5,221,0,0,4122,4124,5,431, + 0,0,4123,4114,1,0,0,0,4123,4118,1,0,0,0,4124,651,1,0,0,0,4125,4127, + 3,658,329,0,4126,4128,3,646,323,0,4127,4126,1,0,0,0,4127,4128,1, + 0,0,0,4128,4133,1,0,0,0,4129,4131,5,17,0,0,4130,4129,1,0,0,0,4130, + 4131,1,0,0,0,4131,4132,1,0,0,0,4132,4134,3,926,463,0,4133,4130,1, + 0,0,0,4133,4134,1,0,0,0,4134,653,1,0,0,0,4135,4136,3,926,463,0,4136, + 655,1,0,0,0,4137,4138,3,926,463,0,4138,657,1,0,0,0,4139,4142,3,660, + 330,0,4140,4142,3,664,332,0,4141,4139,1,0,0,0,4141,4140,1,0,0,0, + 4142,659,1,0,0,0,4143,4144,3,926,463,0,4144,4145,5,395,0,0,4145, + 4148,3,926,463,0,4146,4147,5,395,0,0,4147,4149,3,926,463,0,4148, + 4146,1,0,0,0,4148,4149,1,0,0,0,4149,4152,1,0,0,0,4150,4152,3,926, + 463,0,4151,4143,1,0,0,0,4151,4150,1,0,0,0,4152,661,1,0,0,0,4153, + 4154,3,926,463,0,4154,4155,5,395,0,0,4155,4158,3,926,463,0,4156, + 4157,5,395,0,0,4157,4159,3,926,463,0,4158,4156,1,0,0,0,4158,4159, + 1,0,0,0,4159,4162,1,0,0,0,4160,4162,3,926,463,0,4161,4153,1,0,0, + 0,4161,4160,1,0,0,0,4162,663,1,0,0,0,4163,4164,3,926,463,0,4164, + 4165,5,395,0,0,4165,4167,1,0,0,0,4166,4163,1,0,0,0,4166,4167,1,0, + 0,0,4167,4168,1,0,0,0,4168,4169,3,926,463,0,4169,665,1,0,0,0,4170, + 4171,3,926,463,0,4171,4172,5,395,0,0,4172,4174,1,0,0,0,4173,4170, + 1,0,0,0,4173,4174,1,0,0,0,4174,4175,1,0,0,0,4175,4176,3,926,463, + 0,4176,667,1,0,0,0,4177,4178,5,399,0,0,4178,4179,3,394,197,0,4179, + 4181,5,400,0,0,4180,4182,5,17,0,0,4181,4180,1,0,0,0,4181,4182,1, + 0,0,0,4182,4183,1,0,0,0,4183,4184,3,926,463,0,4184,669,1,0,0,0,4185, + 4187,3,768,384,0,4186,4188,3,764,382,0,4187,4186,1,0,0,0,4187,4188, + 1,0,0,0,4188,4197,1,0,0,0,4189,4197,3,764,382,0,4190,4192,3,770, + 385,0,4191,4193,3,772,386,0,4192,4191,1,0,0,0,4192,4193,1,0,0,0, + 4193,4197,1,0,0,0,4194,4197,3,772,386,0,4195,4197,3,766,383,0,4196, + 4185,1,0,0,0,4196,4189,1,0,0,0,4196,4190,1,0,0,0,4196,4194,1,0,0, + 0,4196,4195,1,0,0,0,4197,671,1,0,0,0,4198,4202,3,668,334,0,4199, + 4202,3,648,324,0,4200,4202,3,674,337,0,4201,4198,1,0,0,0,4201,4199, + 1,0,0,0,4201,4200,1,0,0,0,4202,673,1,0,0,0,4203,4204,3,926,463,0, + 4204,4205,5,399,0,0,4205,4206,5,224,0,0,4206,4208,3,672,336,0,4207, + 4209,3,670,335,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,4225,1, + 0,0,0,4210,4211,5,432,0,0,4211,4212,5,399,0,0,4212,4213,3,828,414, + 0,4213,4222,5,400,0,0,4214,4215,5,397,0,0,4215,4216,5,432,0,0,4216, + 4217,5,399,0,0,4217,4218,3,828,414,0,4218,4219,5,400,0,0,4219,4221, + 1,0,0,0,4220,4214,1,0,0,0,4221,4224,1,0,0,0,4222,4220,1,0,0,0,4222, + 4223,1,0,0,0,4223,4226,1,0,0,0,4224,4222,1,0,0,0,4225,4210,1,0,0, + 0,4225,4226,1,0,0,0,4226,4227,1,0,0,0,4227,4229,5,400,0,0,4228,4230, + 3,926,463,0,4229,4228,1,0,0,0,4229,4230,1,0,0,0,4230,675,1,0,0,0, + 4231,4232,5,384,0,0,4232,4233,3,678,339,0,4233,677,1,0,0,0,4234, + 4235,3,828,414,0,4235,679,1,0,0,0,4236,4237,3,682,341,0,4237,681, + 1,0,0,0,4238,4239,5,374,0,0,4239,4240,3,684,342,0,4240,683,1,0,0, + 0,4241,4246,3,686,343,0,4242,4243,5,397,0,0,4243,4245,3,686,343, + 0,4244,4242,1,0,0,0,4245,4248,1,0,0,0,4246,4244,1,0,0,0,4246,4247, + 1,0,0,0,4247,4258,1,0,0,0,4248,4246,1,0,0,0,4249,4254,3,688,344, + 0,4250,4251,5,397,0,0,4251,4253,3,686,343,0,4252,4250,1,0,0,0,4253, + 4256,1,0,0,0,4254,4252,1,0,0,0,4254,4255,1,0,0,0,4255,4258,1,0,0, + 0,4256,4254,1,0,0,0,4257,4241,1,0,0,0,4257,4249,1,0,0,0,4258,685, + 1,0,0,0,4259,4260,3,746,373,0,4260,687,1,0,0,0,4261,4262,5,399,0, + 0,4262,4263,3,754,377,0,4263,4264,5,400,0,0,4264,689,1,0,0,0,4265, + 4266,5,329,0,0,4266,4267,5,399,0,0,4267,4268,3,682,341,0,4268,4270, + 5,400,0,0,4269,4271,5,17,0,0,4270,4269,1,0,0,0,4270,4271,1,0,0,0, + 4271,4272,1,0,0,0,4272,4282,3,640,320,0,4273,4274,5,399,0,0,4274, + 4279,3,926,463,0,4275,4276,5,397,0,0,4276,4278,3,926,463,0,4277, + 4275,1,0,0,0,4278,4281,1,0,0,0,4279,4277,1,0,0,0,4279,4280,1,0,0, + 0,4280,4283,1,0,0,0,4281,4279,1,0,0,0,4282,4273,1,0,0,0,4282,4283, + 1,0,0,0,4283,4284,1,0,0,0,4284,4285,5,400,0,0,4285,691,1,0,0,0,4286, + 4288,5,299,0,0,4287,4289,5,436,0,0,4288,4287,1,0,0,0,4288,4289,1, + 0,0,0,4289,4296,1,0,0,0,4290,4292,3,694,347,0,4291,4290,1,0,0,0, + 4291,4292,1,0,0,0,4292,4293,1,0,0,0,4293,4297,3,696,348,0,4294,4295, + 5,347,0,0,4295,4297,3,698,349,0,4296,4291,1,0,0,0,4296,4294,1,0, + 0,0,4297,4300,1,0,0,0,4298,4300,3,702,351,0,4299,4286,1,0,0,0,4299, + 4298,1,0,0,0,4300,693,1,0,0,0,4301,4302,7,20,0,0,4302,695,1,0,0, + 0,4303,4308,3,700,350,0,4304,4305,5,397,0,0,4305,4307,3,700,350, + 0,4306,4304,1,0,0,0,4307,4310,1,0,0,0,4308,4306,1,0,0,0,4308,4309, + 1,0,0,0,4309,697,1,0,0,0,4310,4308,1,0,0,0,4311,4312,5,399,0,0,4312, + 4313,3,706,353,0,4313,4314,5,400,0,0,4314,4315,3,240,120,0,4315, + 4316,3,244,122,0,4316,4317,5,370,0,0,4317,4330,5,426,0,0,4318,4328, + 5,17,0,0,4319,4322,5,399,0,0,4320,4323,3,618,309,0,4321,4323,3,276, + 138,0,4322,4320,1,0,0,0,4322,4321,1,0,0,0,4323,4324,1,0,0,0,4324, + 4325,5,400,0,0,4325,4329,1,0,0,0,4326,4329,3,618,309,0,4327,4329, + 3,276,138,0,4328,4319,1,0,0,0,4328,4326,1,0,0,0,4328,4327,1,0,0, + 0,4329,4331,1,0,0,0,4330,4318,1,0,0,0,4330,4331,1,0,0,0,4331,4332, + 1,0,0,0,4332,4333,3,240,120,0,4333,4334,3,242,121,0,4334,699,1,0, + 0,0,4335,4359,3,612,306,0,4336,4339,3,284,142,0,4337,4339,3,828, + 414,0,4338,4336,1,0,0,0,4338,4337,1,0,0,0,4339,4356,1,0,0,0,4340, + 4342,5,17,0,0,4341,4340,1,0,0,0,4341,4342,1,0,0,0,4342,4343,1,0, + 0,0,4343,4357,3,926,463,0,4344,4345,5,17,0,0,4345,4346,5,399,0,0, + 4346,4351,3,926,463,0,4347,4348,5,397,0,0,4348,4350,3,926,463,0, + 4349,4347,1,0,0,0,4350,4353,1,0,0,0,4351,4349,1,0,0,0,4351,4352, + 1,0,0,0,4352,4354,1,0,0,0,4353,4351,1,0,0,0,4354,4355,5,400,0,0, + 4355,4357,1,0,0,0,4356,4341,1,0,0,0,4356,4344,1,0,0,0,4356,4357, + 1,0,0,0,4357,4359,1,0,0,0,4358,4335,1,0,0,0,4358,4338,1,0,0,0,4359, + 701,1,0,0,0,4360,4361,7,28,0,0,4361,4362,3,706,353,0,4362,4363,3, + 240,120,0,4363,4364,3,244,122,0,4364,4365,5,370,0,0,4365,4378,5, + 426,0,0,4366,4376,5,17,0,0,4367,4370,5,399,0,0,4368,4371,3,618,309, + 0,4369,4371,3,276,138,0,4370,4368,1,0,0,0,4370,4369,1,0,0,0,4371, + 4372,1,0,0,0,4372,4373,5,400,0,0,4373,4377,1,0,0,0,4374,4377,3,618, + 309,0,4375,4377,3,276,138,0,4376,4367,1,0,0,0,4376,4374,1,0,0,0, + 4376,4375,1,0,0,0,4377,4379,1,0,0,0,4378,4366,1,0,0,0,4378,4379, + 1,0,0,0,4379,4380,1,0,0,0,4380,4381,3,240,120,0,4381,4382,3,242, + 121,0,4382,703,1,0,0,0,4383,4386,3,612,306,0,4384,4386,3,828,414, + 0,4385,4383,1,0,0,0,4385,4384,1,0,0,0,4386,705,1,0,0,0,4387,4392, + 3,704,352,0,4388,4389,5,397,0,0,4389,4391,3,704,352,0,4390,4388, + 1,0,0,0,4391,4394,1,0,0,0,4392,4390,1,0,0,0,4392,4393,1,0,0,0,4393, + 707,1,0,0,0,4394,4392,1,0,0,0,4395,4396,5,386,0,0,4396,4401,3,710, + 355,0,4397,4398,5,397,0,0,4398,4400,3,710,355,0,4399,4397,1,0,0, + 0,4400,4403,1,0,0,0,4401,4399,1,0,0,0,4401,4402,1,0,0,0,4402,709, + 1,0,0,0,4403,4401,1,0,0,0,4404,4405,3,926,463,0,4405,4406,5,17,0, + 0,4406,4407,3,712,356,0,4407,711,1,0,0,0,4408,4421,3,926,463,0,4409, + 4411,5,399,0,0,4410,4412,3,926,463,0,4411,4410,1,0,0,0,4411,4412, + 1,0,0,0,4412,4414,1,0,0,0,4413,4415,3,670,335,0,4414,4413,1,0,0, + 0,4414,4415,1,0,0,0,4415,4417,1,0,0,0,4416,4418,3,714,357,0,4417, + 4416,1,0,0,0,4417,4418,1,0,0,0,4418,4419,1,0,0,0,4419,4421,5,400, + 0,0,4420,4408,1,0,0,0,4420,4409,1,0,0,0,4421,713,1,0,0,0,4422,4425, + 3,716,358,0,4423,4425,3,718,359,0,4424,4422,1,0,0,0,4424,4423,1, + 0,0,0,4425,715,1,0,0,0,4426,4433,5,292,0,0,4427,4434,3,720,360,0, + 4428,4429,5,25,0,0,4429,4430,3,722,361,0,4430,4431,5,11,0,0,4431, + 4432,3,722,361,0,4432,4434,1,0,0,0,4433,4427,1,0,0,0,4433,4428,1, + 0,0,0,4434,717,1,0,0,0,4435,4442,5,260,0,0,4436,4443,3,720,360,0, + 4437,4438,5,25,0,0,4438,4439,3,722,361,0,4439,4440,5,11,0,0,4440, + 4441,3,722,361,0,4441,4443,1,0,0,0,4442,4436,1,0,0,0,4442,4437,1, + 0,0,0,4443,719,1,0,0,0,4444,4445,5,354,0,0,4445,4451,5,247,0,0,4446, + 4447,5,62,0,0,4447,4451,5,291,0,0,4448,4449,5,431,0,0,4449,4451, + 5,247,0,0,4450,4444,1,0,0,0,4450,4446,1,0,0,0,4450,4448,1,0,0,0, + 4451,721,1,0,0,0,4452,4453,7,29,0,0,4453,4457,7,30,0,0,4454,4455, + 5,62,0,0,4455,4457,5,291,0,0,4456,4452,1,0,0,0,4456,4454,1,0,0,0, + 4457,723,1,0,0,0,4458,4459,5,144,0,0,4459,4460,5,32,0,0,4460,4461, + 3,726,363,0,4461,725,1,0,0,0,4462,4467,3,284,142,0,4463,4467,3,730, + 365,0,4464,4467,3,732,366,0,4465,4467,3,728,364,0,4466,4462,1,0, + 0,0,4466,4463,1,0,0,0,4466,4464,1,0,0,0,4466,4465,1,0,0,0,4467,727, + 1,0,0,0,4468,4469,5,399,0,0,4469,4470,5,400,0,0,4470,729,1,0,0,0, + 4471,4474,5,290,0,0,4472,4474,5,61,0,0,4473,4471,1,0,0,0,4473,4472, + 1,0,0,0,4474,4475,1,0,0,0,4475,4476,5,399,0,0,4476,4481,3,828,414, + 0,4477,4478,5,397,0,0,4478,4480,3,828,414,0,4479,4477,1,0,0,0,4480, + 4483,1,0,0,0,4481,4479,1,0,0,0,4481,4482,1,0,0,0,4482,4484,1,0,0, + 0,4483,4481,1,0,0,0,4484,4485,5,400,0,0,4485,731,1,0,0,0,4486,4491, + 3,748,374,0,4487,4488,5,387,0,0,4488,4492,5,290,0,0,4489,4490,5, + 387,0,0,4490,4492,5,61,0,0,4491,4487,1,0,0,0,4491,4489,1,0,0,0,4491, + 4492,1,0,0,0,4492,4506,1,0,0,0,4493,4494,5,145,0,0,4494,4495,5,305, + 0,0,4495,4496,5,399,0,0,4496,4501,3,734,367,0,4497,4498,5,397,0, + 0,4498,4500,3,734,367,0,4499,4497,1,0,0,0,4500,4503,1,0,0,0,4501, + 4499,1,0,0,0,4501,4502,1,0,0,0,4502,4504,1,0,0,0,4503,4501,1,0,0, + 0,4504,4505,5,400,0,0,4505,4507,1,0,0,0,4506,4493,1,0,0,0,4506,4507, + 1,0,0,0,4507,733,1,0,0,0,4508,4511,3,736,368,0,4509,4511,3,738,369, + 0,4510,4508,1,0,0,0,4510,4509,1,0,0,0,4511,735,1,0,0,0,4512,4514, + 5,399,0,0,4513,4515,3,828,414,0,4514,4513,1,0,0,0,4514,4515,1,0, + 0,0,4515,4520,1,0,0,0,4516,4517,5,397,0,0,4517,4519,3,828,414,0, + 4518,4516,1,0,0,0,4519,4522,1,0,0,0,4520,4518,1,0,0,0,4520,4521, + 1,0,0,0,4521,4523,1,0,0,0,4522,4520,1,0,0,0,4523,4524,5,400,0,0, + 4524,737,1,0,0,0,4525,4526,3,828,414,0,4526,739,1,0,0,0,4527,4528, + 5,146,0,0,4528,4529,3,744,372,0,4529,741,1,0,0,0,4530,4531,5,256, + 0,0,4531,4532,3,828,414,0,4532,743,1,0,0,0,4533,4534,3,828,414,0, + 4534,745,1,0,0,0,4535,4536,5,399,0,0,4536,4537,3,748,374,0,4537, + 4538,5,400,0,0,4538,747,1,0,0,0,4539,4541,3,752,376,0,4540,4542, + 3,750,375,0,4541,4540,1,0,0,0,4541,4542,1,0,0,0,4542,749,1,0,0,0, + 4543,4544,5,397,0,0,4544,4546,3,752,376,0,4545,4543,1,0,0,0,4546, + 4547,1,0,0,0,4547,4545,1,0,0,0,4547,4548,1,0,0,0,4548,751,1,0,0, + 0,4549,4552,3,614,307,0,4550,4552,3,828,414,0,4551,4549,1,0,0,0, + 4551,4550,1,0,0,0,4552,753,1,0,0,0,4553,4555,3,828,414,0,4554,4556, + 5,17,0,0,4555,4554,1,0,0,0,4555,4556,1,0,0,0,4556,4558,1,0,0,0,4557, + 4559,3,926,463,0,4558,4557,1,0,0,0,4558,4559,1,0,0,0,4559,4564,1, + 0,0,0,4560,4561,5,397,0,0,4561,4563,3,756,378,0,4562,4560,1,0,0, + 0,4563,4566,1,0,0,0,4564,4562,1,0,0,0,4564,4565,1,0,0,0,4565,755, + 1,0,0,0,4566,4564,1,0,0,0,4567,4569,3,828,414,0,4568,4570,5,17,0, + 0,4569,4568,1,0,0,0,4569,4570,1,0,0,0,4570,4572,1,0,0,0,4571,4573, + 3,926,463,0,4572,4571,1,0,0,0,4572,4573,1,0,0,0,4573,757,1,0,0,0, + 4574,4577,3,746,373,0,4575,4577,3,748,374,0,4576,4574,1,0,0,0,4576, + 4575,1,0,0,0,4577,759,1,0,0,0,4578,4579,5,399,0,0,4579,4584,3,342, + 171,0,4580,4581,5,397,0,0,4581,4583,3,342,171,0,4582,4580,1,0,0, + 0,4583,4586,1,0,0,0,4584,4582,1,0,0,0,4584,4585,1,0,0,0,4585,4587, + 1,0,0,0,4586,4584,1,0,0,0,4587,4588,5,400,0,0,4588,761,1,0,0,0,4589, + 4594,3,342,171,0,4590,4591,5,397,0,0,4591,4593,3,342,171,0,4592, + 4590,1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4594,4595,1,0,0, + 0,4595,763,1,0,0,0,4596,4594,1,0,0,0,4597,4598,5,229,0,0,4598,4599, + 5,32,0,0,4599,4604,3,342,171,0,4600,4601,5,397,0,0,4601,4603,3,342, + 171,0,4602,4600,1,0,0,0,4603,4606,1,0,0,0,4604,4602,1,0,0,0,4604, + 4605,1,0,0,0,4605,765,1,0,0,0,4606,4604,1,0,0,0,4607,4608,5,41,0, + 0,4608,4609,5,32,0,0,4609,4610,3,758,379,0,4610,767,1,0,0,0,4611, + 4612,5,237,0,0,4612,4613,5,32,0,0,4613,4614,3,758,379,0,4614,769, + 1,0,0,0,4615,4616,5,97,0,0,4616,4617,5,32,0,0,4617,4618,3,758,379, + 0,4618,771,1,0,0,0,4619,4620,5,314,0,0,4620,4623,5,32,0,0,4621,4624, + 3,760,380,0,4622,4624,3,762,381,0,4623,4621,1,0,0,0,4623,4622,1, + 0,0,0,4624,773,1,0,0,0,4625,4626,5,349,0,0,4626,4630,5,399,0,0,4627, + 4631,5,179,0,0,4628,4631,5,343,0,0,4629,4631,5,29,0,0,4630,4627, + 1,0,0,0,4630,4628,1,0,0,0,4630,4629,1,0,0,0,4630,4631,1,0,0,0,4631, + 4633,1,0,0,0,4632,4634,3,704,352,0,4633,4632,1,0,0,0,4633,4634,1, + 0,0,0,4634,4635,1,0,0,0,4635,4636,5,139,0,0,4636,4637,3,704,352, + 0,4637,4638,5,400,0,0,4638,775,1,0,0,0,4639,4680,3,774,387,0,4640, + 4641,3,784,392,0,4641,4656,5,399,0,0,4642,4657,5,415,0,0,4643,4645, + 3,694,347,0,4644,4643,1,0,0,0,4644,4645,1,0,0,0,4645,4654,1,0,0, + 0,4646,4651,3,704,352,0,4647,4648,5,397,0,0,4648,4650,3,704,352, + 0,4649,4647,1,0,0,0,4650,4653,1,0,0,0,4651,4649,1,0,0,0,4651,4652, + 1,0,0,0,4652,4655,1,0,0,0,4653,4651,1,0,0,0,4654,4646,1,0,0,0,4654, + 4655,1,0,0,0,4655,4657,1,0,0,0,4656,4642,1,0,0,0,4656,4644,1,0,0, + 0,4657,4677,1,0,0,0,4658,4659,5,400,0,0,4659,4660,5,388,0,0,4660, + 4661,5,144,0,0,4661,4662,5,399,0,0,4662,4663,3,764,382,0,4663,4664, + 5,400,0,0,4664,4678,1,0,0,0,4665,4667,5,400,0,0,4666,4668,3,778, + 389,0,4667,4666,1,0,0,0,4667,4668,1,0,0,0,4668,4669,1,0,0,0,4669, + 4670,5,234,0,0,4670,4678,3,712,356,0,4671,4672,3,778,389,0,4672, + 4673,5,400,0,0,4673,4674,5,234,0,0,4674,4675,3,712,356,0,4675,4678, + 1,0,0,0,4676,4678,5,400,0,0,4677,4658,1,0,0,0,4677,4665,1,0,0,0, + 4677,4671,1,0,0,0,4677,4676,1,0,0,0,4678,4680,1,0,0,0,4679,4639, + 1,0,0,0,4679,4640,1,0,0,0,4680,777,1,0,0,0,4681,4682,5,281,0,0,4682, + 4686,5,220,0,0,4683,4684,5,152,0,0,4684,4686,5,220,0,0,4685,4681, + 1,0,0,0,4685,4683,1,0,0,0,4686,779,1,0,0,0,4687,4688,3,928,464,0, + 4688,781,1,0,0,0,4689,4692,3,786,393,0,4690,4692,5,426,0,0,4691, + 4689,1,0,0,0,4691,4690,1,0,0,0,4692,783,1,0,0,0,4693,4696,3,786, + 393,0,4694,4696,3,788,394,0,4695,4693,1,0,0,0,4695,4694,1,0,0,0, + 4696,785,1,0,0,0,4697,4698,3,928,464,0,4698,787,1,0,0,0,4699,4702, + 3,934,467,0,4700,4702,3,924,462,0,4701,4699,1,0,0,0,4701,4700,1, + 0,0,0,4702,789,1,0,0,0,4703,4704,5,36,0,0,4704,4705,5,399,0,0,4705, + 4706,3,828,414,0,4706,4707,5,17,0,0,4707,4710,3,382,191,0,4708,4709, + 5,137,0,0,4709,4711,5,426,0,0,4710,4708,1,0,0,0,4710,4711,1,0,0, + 0,4711,4712,1,0,0,0,4712,4713,5,400,0,0,4713,791,1,0,0,0,4714,4715, + 5,35,0,0,4715,4721,3,828,414,0,4716,4717,5,383,0,0,4717,4718,3,828, + 414,0,4718,4719,5,335,0,0,4719,4720,3,828,414,0,4720,4722,1,0,0, + 0,4721,4716,1,0,0,0,4722,4723,1,0,0,0,4723,4721,1,0,0,0,4723,4724, + 1,0,0,0,4724,4727,1,0,0,0,4725,4726,5,105,0,0,4726,4728,3,828,414, + 0,4727,4725,1,0,0,0,4727,4728,1,0,0,0,4728,4729,1,0,0,0,4729,4730, + 5,108,0,0,4730,793,1,0,0,0,4731,4737,5,35,0,0,4732,4733,5,383,0, + 0,4733,4734,3,828,414,0,4734,4735,5,335,0,0,4735,4736,3,828,414, + 0,4736,4738,1,0,0,0,4737,4732,1,0,0,0,4738,4739,1,0,0,0,4739,4737, + 1,0,0,0,4739,4740,1,0,0,0,4740,4743,1,0,0,0,4741,4742,5,105,0,0, + 4742,4744,3,828,414,0,4743,4741,1,0,0,0,4743,4744,1,0,0,0,4744,4745, + 1,0,0,0,4745,4746,5,108,0,0,4746,795,1,0,0,0,4747,4748,5,132,0,0, + 4748,4749,5,399,0,0,4749,4752,3,828,414,0,4750,4751,5,341,0,0,4751, + 4753,3,798,399,0,4752,4750,1,0,0,0,4752,4753,1,0,0,0,4753,4754,1, + 0,0,0,4754,4755,5,400,0,0,4755,797,1,0,0,0,4756,4765,3,976,488,0, + 4757,4765,5,257,0,0,4758,4765,3,978,489,0,4759,4765,3,980,490,0, + 4760,4765,3,982,491,0,4761,4765,3,984,492,0,4762,4765,3,986,493, + 0,4763,4765,3,988,494,0,4764,4756,1,0,0,0,4764,4757,1,0,0,0,4764, + 4758,1,0,0,0,4764,4759,1,0,0,0,4764,4760,1,0,0,0,4764,4761,1,0,0, + 0,4764,4762,1,0,0,0,4764,4763,1,0,0,0,4765,799,1,0,0,0,4766,4767, + 5,124,0,0,4767,4768,5,399,0,0,4768,4769,3,802,401,0,4769,4770,5, + 139,0,0,4770,4771,3,828,414,0,4771,4772,5,400,0,0,4772,801,1,0,0, + 0,4773,4782,3,976,488,0,4774,4782,5,257,0,0,4775,4782,3,978,489, + 0,4776,4782,3,980,490,0,4777,4782,3,982,491,0,4778,4782,3,984,492, + 0,4779,4782,3,986,493,0,4780,4782,3,988,494,0,4781,4773,1,0,0,0, + 4781,4774,1,0,0,0,4781,4775,1,0,0,0,4781,4776,1,0,0,0,4781,4777, + 1,0,0,0,4781,4778,1,0,0,0,4781,4779,1,0,0,0,4781,4780,1,0,0,0,4782, + 803,1,0,0,0,4783,4797,3,822,411,0,4784,4797,5,431,0,0,4785,4797, + 3,814,407,0,4786,4797,3,816,408,0,4787,4797,3,818,409,0,4788,4797, + 5,426,0,0,4789,4797,3,810,405,0,4790,4797,5,428,0,0,4791,4797,5, + 429,0,0,4792,4797,3,812,406,0,4793,4797,3,906,453,0,4794,4797,5, + 219,0,0,4795,4797,3,806,403,0,4796,4783,1,0,0,0,4796,4784,1,0,0, + 0,4796,4785,1,0,0,0,4796,4786,1,0,0,0,4796,4787,1,0,0,0,4796,4788, + 1,0,0,0,4796,4789,1,0,0,0,4796,4790,1,0,0,0,4796,4791,1,0,0,0,4796, + 4792,1,0,0,0,4796,4793,1,0,0,0,4796,4794,1,0,0,0,4796,4795,1,0,0, + 0,4797,805,1,0,0,0,4798,4799,3,808,404,0,4799,807,1,0,0,0,4800,4801, + 5,424,0,0,4801,809,1,0,0,0,4802,4804,5,426,0,0,4803,4805,5,426,0, + 0,4804,4803,1,0,0,0,4805,4806,1,0,0,0,4806,4804,1,0,0,0,4806,4807, + 1,0,0,0,4807,811,1,0,0,0,4808,4809,5,433,0,0,4809,4810,5,427,0,0, + 4810,813,1,0,0,0,4811,4812,5,71,0,0,4812,4815,5,426,0,0,4813,4815, + 5,63,0,0,4814,4811,1,0,0,0,4814,4813,1,0,0,0,4815,815,1,0,0,0,4816, + 4817,5,337,0,0,4817,4820,5,426,0,0,4818,4820,5,64,0,0,4819,4816, + 1,0,0,0,4819,4818,1,0,0,0,4820,817,1,0,0,0,4821,4822,5,338,0,0,4822, + 4823,5,426,0,0,4823,819,1,0,0,0,4824,4825,7,24,0,0,4825,821,1,0, + 0,0,4826,4827,3,820,410,0,4827,4828,3,826,413,0,4828,823,1,0,0,0, + 4829,4830,5,399,0,0,4830,4831,3,820,410,0,4831,4832,5,400,0,0,4832, + 4833,3,826,413,0,4833,4845,1,0,0,0,4834,4840,5,165,0,0,4835,4841, + 3,820,410,0,4836,4837,5,399,0,0,4837,4838,3,828,414,0,4838,4839, + 5,400,0,0,4839,4841,1,0,0,0,4840,4835,1,0,0,0,4840,4836,1,0,0,0, + 4841,4842,1,0,0,0,4842,4843,3,826,413,0,4843,4845,1,0,0,0,4844,4829, + 1,0,0,0,4844,4834,1,0,0,0,4845,825,1,0,0,0,4846,4847,3,976,488,0, + 4847,4848,5,341,0,0,4848,4849,3,978,489,0,4849,4861,1,0,0,0,4850, + 4851,3,982,491,0,4851,4852,5,341,0,0,4852,4853,3,988,494,0,4853, + 4861,1,0,0,0,4854,4861,3,976,488,0,4855,4861,3,978,489,0,4856,4861, + 3,982,491,0,4857,4861,3,984,492,0,4858,4861,3,986,493,0,4859,4861, + 3,988,494,0,4860,4846,1,0,0,0,4860,4850,1,0,0,0,4860,4854,1,0,0, + 0,4860,4855,1,0,0,0,4860,4856,1,0,0,0,4860,4857,1,0,0,0,4860,4858, + 1,0,0,0,4860,4859,1,0,0,0,4861,827,1,0,0,0,4862,4863,3,904,452,0, + 4863,829,1,0,0,0,4864,4876,3,804,402,0,4865,4876,3,824,412,0,4866, + 4876,3,790,395,0,4867,4876,3,800,400,0,4868,4876,3,796,398,0,4869, + 4876,3,792,396,0,4870,4876,3,794,397,0,4871,4876,3,866,433,0,4872, + 4876,3,776,388,0,4873,4876,3,746,373,0,4874,4876,3,926,463,0,4875, + 4864,1,0,0,0,4875,4865,1,0,0,0,4875,4866,1,0,0,0,4875,4867,1,0,0, + 0,4875,4868,1,0,0,0,4875,4869,1,0,0,0,4875,4870,1,0,0,0,4875,4871, + 1,0,0,0,4875,4872,1,0,0,0,4875,4873,1,0,0,0,4875,4874,1,0,0,0,4876, + 831,1,0,0,0,4877,4886,3,830,415,0,4878,4879,5,401,0,0,4879,4880, + 3,828,414,0,4880,4881,5,402,0,0,4881,4885,1,0,0,0,4882,4883,5,395, + 0,0,4883,4885,3,926,463,0,4884,4878,1,0,0,0,4884,4882,1,0,0,0,4885, + 4888,1,0,0,0,4886,4884,1,0,0,0,4886,4887,1,0,0,0,4887,833,1,0,0, + 0,4888,4886,1,0,0,0,4889,4890,7,31,0,0,4890,835,1,0,0,0,4891,4893, + 3,834,417,0,4892,4891,1,0,0,0,4893,4896,1,0,0,0,4894,4892,1,0,0, + 0,4894,4895,1,0,0,0,4895,4897,1,0,0,0,4896,4894,1,0,0,0,4897,4898, + 3,832,416,0,4898,837,1,0,0,0,4899,4900,5,423,0,0,4900,839,1,0,0, + 0,4901,4907,3,836,418,0,4902,4903,3,838,419,0,4903,4904,3,836,418, + 0,4904,4906,1,0,0,0,4905,4902,1,0,0,0,4906,4909,1,0,0,0,4907,4905, + 1,0,0,0,4907,4908,1,0,0,0,4908,841,1,0,0,0,4909,4907,1,0,0,0,4910, + 4911,7,32,0,0,4911,843,1,0,0,0,4912,4918,3,840,420,0,4913,4914,3, + 842,421,0,4914,4915,3,840,420,0,4915,4917,1,0,0,0,4916,4913,1,0, + 0,0,4917,4920,1,0,0,0,4918,4916,1,0,0,0,4918,4919,1,0,0,0,4919,845, + 1,0,0,0,4920,4918,1,0,0,0,4921,4922,7,33,0,0,4922,847,1,0,0,0,4923, + 4929,3,844,422,0,4924,4925,3,846,423,0,4925,4926,3,844,422,0,4926, + 4928,1,0,0,0,4927,4924,1,0,0,0,4928,4931,1,0,0,0,4929,4927,1,0,0, + 0,4929,4930,1,0,0,0,4930,849,1,0,0,0,4931,4929,1,0,0,0,4932,4933, + 5,422,0,0,4933,851,1,0,0,0,4934,4940,3,848,424,0,4935,4936,3,850, + 425,0,4936,4937,3,848,424,0,4937,4939,1,0,0,0,4938,4935,1,0,0,0, + 4939,4942,1,0,0,0,4940,4938,1,0,0,0,4940,4941,1,0,0,0,4941,853,1, + 0,0,0,4942,4940,1,0,0,0,4943,4944,5,419,0,0,4944,855,1,0,0,0,4945, + 4951,3,852,426,0,4946,4947,3,854,427,0,4947,4948,3,852,426,0,4948, + 4950,1,0,0,0,4949,4946,1,0,0,0,4950,4953,1,0,0,0,4951,4949,1,0,0, + 0,4951,4952,1,0,0,0,4952,857,1,0,0,0,4953,4951,1,0,0,0,4954,4955, + 5,421,0,0,4955,859,1,0,0,0,4956,4962,3,856,428,0,4957,4958,3,858, + 429,0,4958,4959,3,856,428,0,4959,4961,1,0,0,0,4960,4957,1,0,0,0, + 4961,4964,1,0,0,0,4962,4960,1,0,0,0,4962,4963,1,0,0,0,4963,861,1, + 0,0,0,4964,4962,1,0,0,0,4965,4966,7,34,0,0,4966,863,1,0,0,0,4967, + 4973,3,862,431,0,4968,4973,5,408,0,0,4969,4973,5,409,0,0,4970,4973, + 5,410,0,0,4971,4973,5,411,0,0,4972,4967,1,0,0,0,4972,4968,1,0,0, + 0,4972,4969,1,0,0,0,4972,4970,1,0,0,0,4972,4971,1,0,0,0,4973,865, + 1,0,0,0,4974,4975,5,399,0,0,4975,4976,3,410,205,0,4976,4977,5,400, + 0,0,4977,867,1,0,0,0,4978,4982,3,870,435,0,4979,4980,5,117,0,0,4980, + 4982,3,866,433,0,4981,4978,1,0,0,0,4981,4979,1,0,0,0,4982,869,1, + 0,0,0,4983,4985,3,860,430,0,4984,4986,3,872,436,0,4985,4984,1,0, + 0,0,4985,4986,1,0,0,0,4986,871,1,0,0,0,4987,4988,3,864,432,0,4988, + 4989,3,860,430,0,4989,4994,1,0,0,0,4990,4994,3,874,437,0,4991,4992, + 5,216,0,0,4992,4994,3,882,441,0,4993,4987,1,0,0,0,4993,4990,1,0, + 0,0,4993,4991,1,0,0,0,4994,873,1,0,0,0,4995,4996,5,154,0,0,4996, + 5007,3,880,440,0,4997,4998,5,25,0,0,4998,4999,3,860,430,0,4999,5000, + 5,11,0,0,5000,5001,3,860,430,0,5001,5007,1,0,0,0,5002,5003,5,184, + 0,0,5003,5004,7,35,0,0,5004,5007,3,746,373,0,5005,5007,3,876,438, + 0,5006,4995,1,0,0,0,5006,4997,1,0,0,0,5006,5002,1,0,0,0,5006,5005, + 1,0,0,0,5007,875,1,0,0,0,5008,5009,3,922,461,0,5009,5010,3,878,439, + 0,5010,5011,3,866,433,0,5011,877,1,0,0,0,5012,5013,7,36,0,0,5013, + 879,1,0,0,0,5014,5017,3,866,433,0,5015,5017,3,746,373,0,5016,5014, + 1,0,0,0,5016,5015,1,0,0,0,5017,881,1,0,0,0,5018,5019,3,862,431,0, + 5019,5020,3,860,430,0,5020,5023,1,0,0,0,5021,5023,3,874,437,0,5022, + 5018,1,0,0,0,5022,5021,1,0,0,0,5023,883,1,0,0,0,5024,5025,5,167, + 0,0,5025,5026,5,96,0,0,5026,5027,5,139,0,0,5027,885,1,0,0,0,5028, + 5036,5,405,0,0,5029,5036,5,406,0,0,5030,5036,5,407,0,0,5031,5032, + 5,167,0,0,5032,5033,5,216,0,0,5033,5034,5,96,0,0,5034,5036,5,139, + 0,0,5035,5028,1,0,0,0,5035,5029,1,0,0,0,5035,5030,1,0,0,0,5035,5031, + 1,0,0,0,5036,887,1,0,0,0,5037,5046,3,868,434,0,5038,5039,3,886,443, + 0,5039,5040,3,868,434,0,5040,5045,1,0,0,0,5041,5042,3,884,442,0, + 5042,5043,3,868,434,0,5043,5045,1,0,0,0,5044,5038,1,0,0,0,5044,5041, + 1,0,0,0,5045,5048,1,0,0,0,5046,5044,1,0,0,0,5046,5047,1,0,0,0,5047, + 889,1,0,0,0,5048,5046,1,0,0,0,5049,5062,5,219,0,0,5050,5062,5,350, + 0,0,5051,5062,5,125,0,0,5052,5062,5,360,0,0,5053,5054,5,216,0,0, + 5054,5062,5,219,0,0,5055,5056,5,216,0,0,5056,5062,5,350,0,0,5057, + 5058,5,216,0,0,5058,5062,5,125,0,0,5059,5060,5,216,0,0,5060,5062, + 5,360,0,0,5061,5049,1,0,0,0,5061,5050,1,0,0,0,5061,5051,1,0,0,0, + 5061,5052,1,0,0,0,5061,5053,1,0,0,0,5061,5055,1,0,0,0,5061,5057, + 1,0,0,0,5061,5059,1,0,0,0,5062,891,1,0,0,0,5063,5066,3,888,444,0, + 5064,5065,5,167,0,0,5065,5067,3,890,445,0,5066,5064,1,0,0,0,5066, + 5067,1,0,0,0,5067,893,1,0,0,0,5068,5069,5,216,0,0,5069,895,1,0,0, + 0,5070,5072,3,894,447,0,5071,5070,1,0,0,0,5072,5075,1,0,0,0,5073, + 5071,1,0,0,0,5073,5074,1,0,0,0,5074,5076,1,0,0,0,5075,5073,1,0,0, + 0,5076,5077,3,892,446,0,5077,897,1,0,0,0,5078,5079,5,11,0,0,5079, + 899,1,0,0,0,5080,5086,3,896,448,0,5081,5082,3,898,449,0,5082,5083, + 3,896,448,0,5083,5085,1,0,0,0,5084,5081,1,0,0,0,5085,5088,1,0,0, + 0,5086,5084,1,0,0,0,5086,5087,1,0,0,0,5087,901,1,0,0,0,5088,5086, + 1,0,0,0,5089,5090,5,228,0,0,5090,903,1,0,0,0,5091,5097,3,900,450, + 0,5092,5093,3,902,451,0,5093,5094,3,900,450,0,5094,5096,1,0,0,0, + 5095,5092,1,0,0,0,5096,5099,1,0,0,0,5097,5095,1,0,0,0,5097,5098, + 1,0,0,0,5098,905,1,0,0,0,5099,5097,1,0,0,0,5100,5101,7,37,0,0,5101, + 907,1,0,0,0,5102,5103,7,37,0,0,5103,909,1,0,0,0,5104,5106,3,660, + 330,0,5105,5107,3,912,456,0,5106,5105,1,0,0,0,5106,5107,1,0,0,0, + 5107,911,1,0,0,0,5108,5109,5,237,0,0,5109,5110,5,399,0,0,5110,5115, + 3,914,457,0,5111,5112,5,397,0,0,5112,5114,3,914,457,0,5113,5111, + 1,0,0,0,5114,5117,1,0,0,0,5115,5113,1,0,0,0,5115,5116,1,0,0,0,5116, + 5118,1,0,0,0,5117,5115,1,0,0,0,5118,5119,5,400,0,0,5119,913,1,0, + 0,0,5120,5123,3,926,463,0,5121,5122,5,405,0,0,5122,5124,3,804,402, + 0,5123,5121,1,0,0,0,5123,5124,1,0,0,0,5124,915,1,0,0,0,5125,5126, + 5,399,0,0,5126,5131,3,918,459,0,5127,5128,5,397,0,0,5128,5130,3, + 918,459,0,5129,5127,1,0,0,0,5130,5133,1,0,0,0,5131,5129,1,0,0,0, + 5131,5132,1,0,0,0,5132,5134,1,0,0,0,5133,5131,1,0,0,0,5134,5135, + 5,400,0,0,5135,917,1,0,0,0,5136,5137,3,926,463,0,5137,5138,3,920, + 460,0,5138,5139,3,804,402,0,5139,919,1,0,0,0,5140,5143,5,184,0,0, + 5141,5143,3,922,461,0,5142,5140,1,0,0,0,5142,5141,1,0,0,0,5143,921, + 1,0,0,0,5144,5145,7,38,0,0,5145,923,1,0,0,0,5146,5147,7,39,0,0,5147, + 925,1,0,0,0,5148,5151,5,432,0,0,5149,5151,3,932,466,0,5150,5148, + 1,0,0,0,5150,5149,1,0,0,0,5151,927,1,0,0,0,5152,5155,3,926,463,0, + 5153,5154,5,395,0,0,5154,5156,3,926,463,0,5155,5153,1,0,0,0,5155, + 5156,1,0,0,0,5156,929,1,0,0,0,5157,5158,3,926,463,0,5158,931,1,0, + 0,0,5159,5160,7,40,0,0,5160,933,1,0,0,0,5161,5162,7,41,0,0,5162, + 935,1,0,0,0,5163,5164,3,938,469,0,5164,5165,5,0,0,1,5165,937,1,0, + 0,0,5166,5171,3,940,470,0,5167,5168,5,397,0,0,5168,5170,3,940,470, + 0,5169,5167,1,0,0,0,5170,5173,1,0,0,0,5171,5169,1,0,0,0,5171,5172, + 1,0,0,0,5172,939,1,0,0,0,5173,5171,1,0,0,0,5174,5179,3,942,471,0, + 5175,5176,5,399,0,0,5176,5177,3,944,472,0,5177,5178,5,400,0,0,5178, + 5180,1,0,0,0,5179,5175,1,0,0,0,5179,5180,1,0,0,0,5180,941,1,0,0, + 0,5181,5182,7,42,0,0,5182,943,1,0,0,0,5183,5188,3,946,473,0,5184, + 5185,5,397,0,0,5185,5187,3,946,473,0,5186,5184,1,0,0,0,5187,5190, + 1,0,0,0,5188,5186,1,0,0,0,5188,5189,1,0,0,0,5189,945,1,0,0,0,5190, + 5188,1,0,0,0,5191,5192,7,43,0,0,5192,947,1,0,0,0,5193,5194,5,249, + 0,0,5194,5195,3,926,463,0,5195,5196,5,139,0,0,5196,5197,3,394,197, + 0,5197,949,1,0,0,0,5198,5199,5,115,0,0,5199,5200,3,926,463,0,5200, + 5201,5,370,0,0,5201,5202,3,952,476,0,5202,951,1,0,0,0,5203,5208, + 3,804,402,0,5204,5205,5,397,0,0,5205,5207,3,804,402,0,5206,5204, + 1,0,0,0,5207,5210,1,0,0,0,5208,5206,1,0,0,0,5208,5209,1,0,0,0,5209, + 953,1,0,0,0,5210,5208,1,0,0,0,5211,5226,3,964,482,0,5212,5226,3, + 992,496,0,5213,5226,3,998,499,0,5214,5226,3,994,497,0,5215,5226, + 3,996,498,0,5216,5226,3,1020,510,0,5217,5226,3,1022,511,0,5218,5226, + 3,1024,512,0,5219,5226,3,1030,515,0,5220,5226,3,1032,516,0,5221, + 5226,3,1034,517,0,5222,5226,3,1036,518,0,5223,5226,3,1038,519,0, + 5224,5226,3,1040,520,0,5225,5211,1,0,0,0,5225,5212,1,0,0,0,5225, + 5213,1,0,0,0,5225,5214,1,0,0,0,5225,5215,1,0,0,0,5225,5216,1,0,0, + 0,5225,5217,1,0,0,0,5225,5218,1,0,0,0,5225,5219,1,0,0,0,5225,5220, + 1,0,0,0,5225,5221,1,0,0,0,5225,5222,1,0,0,0,5225,5223,1,0,0,0,5225, + 5224,1,0,0,0,5226,955,1,0,0,0,5227,5228,5,259,0,0,5228,5229,5,405, + 0,0,5229,5235,5,431,0,0,5230,5231,5,83,0,0,5231,5232,5,246,0,0,5232, + 5233,5,405,0,0,5233,5235,3,1000,500,0,5234,5227,1,0,0,0,5234,5230, + 1,0,0,0,5235,957,1,0,0,0,5236,5241,3,956,478,0,5237,5238,5,397,0, + 0,5238,5240,3,956,478,0,5239,5237,1,0,0,0,5240,5243,1,0,0,0,5241, + 5239,1,0,0,0,5241,5242,1,0,0,0,5242,959,1,0,0,0,5243,5241,1,0,0, + 0,5244,5248,5,259,0,0,5245,5246,5,83,0,0,5246,5248,5,246,0,0,5247, + 5244,1,0,0,0,5247,5245,1,0,0,0,5248,961,1,0,0,0,5249,5254,3,960, + 480,0,5250,5251,5,397,0,0,5251,5253,3,960,480,0,5252,5250,1,0,0, + 0,5253,5256,1,0,0,0,5254,5252,1,0,0,0,5254,5255,1,0,0,0,5255,963, + 1,0,0,0,5256,5254,1,0,0,0,5257,5258,5,58,0,0,5258,5259,5,280,0,0, + 5259,5261,5,243,0,0,5260,5262,3,44,22,0,5261,5260,1,0,0,0,5261,5262, + 1,0,0,0,5262,5272,1,0,0,0,5263,5264,3,926,463,0,5264,5265,5,184, + 0,0,5265,5266,3,926,463,0,5266,5273,1,0,0,0,5267,5270,3,926,463, + 0,5268,5269,5,387,0,0,5269,5271,3,958,479,0,5270,5268,1,0,0,0,5270, + 5271,1,0,0,0,5271,5273,1,0,0,0,5272,5263,1,0,0,0,5272,5267,1,0,0, + 0,5273,965,1,0,0,0,5274,5275,5,387,0,0,5275,5276,5,278,0,0,5276, + 967,1,0,0,0,5277,5279,5,2,0,0,5278,5280,3,966,483,0,5279,5278,1, + 0,0,0,5279,5280,1,0,0,0,5280,969,1,0,0,0,5281,5282,7,44,0,0,5282, + 971,1,0,0,0,5283,5284,7,45,0,0,5284,973,1,0,0,0,5285,5286,5,362, + 0,0,5286,975,1,0,0,0,5287,5288,7,46,0,0,5288,977,1,0,0,0,5289,5290, + 7,47,0,0,5290,979,1,0,0,0,5291,5292,7,48,0,0,5292,981,1,0,0,0,5293, + 5294,7,49,0,0,5294,983,1,0,0,0,5295,5296,7,50,0,0,5296,985,1,0,0, + 0,5297,5298,7,51,0,0,5298,987,1,0,0,0,5299,5300,7,52,0,0,5300,989, + 1,0,0,0,5301,5302,7,53,0,0,5302,991,1,0,0,0,5303,5304,5,9,0,0,5304, + 5305,5,280,0,0,5305,5306,5,243,0,0,5306,5324,3,926,463,0,5307,5325, + 5,373,0,0,5308,5325,3,972,486,0,5309,5310,5,304,0,0,5310,5325,3, + 958,479,0,5311,5312,5,363,0,0,5312,5325,3,962,481,0,5313,5314,5, + 274,0,0,5314,5315,5,341,0,0,5315,5325,3,926,463,0,5316,5318,3,968, + 484,0,5317,5319,3,970,485,0,5318,5317,1,0,0,0,5318,5319,1,0,0,0, + 5319,5325,1,0,0,0,5320,5322,3,970,485,0,5321,5323,3,968,484,0,5322, + 5321,1,0,0,0,5322,5323,1,0,0,0,5323,5325,1,0,0,0,5324,5307,1,0,0, + 0,5324,5308,1,0,0,0,5324,5309,1,0,0,0,5324,5311,1,0,0,0,5324,5313, + 1,0,0,0,5324,5316,1,0,0,0,5324,5320,1,0,0,0,5325,993,1,0,0,0,5326, + 5329,3,970,485,0,5327,5329,3,972,486,0,5328,5326,1,0,0,0,5328,5327, + 1,0,0,0,5329,5330,1,0,0,0,5330,5331,5,390,0,0,5331,5332,5,197,0, + 0,5332,995,1,0,0,0,5333,5345,5,278,0,0,5334,5335,5,3,0,0,5335,5336, + 5,280,0,0,5336,5337,5,243,0,0,5337,5338,5,387,0,0,5338,5346,3,926, + 463,0,5339,5340,5,280,0,0,5340,5341,5,243,0,0,5341,5342,3,926,463, + 0,5342,5343,5,387,0,0,5343,5344,3,926,463,0,5344,5346,1,0,0,0,5345, + 5334,1,0,0,0,5345,5339,1,0,0,0,5346,997,1,0,0,0,5347,5348,5,101, + 0,0,5348,5349,5,280,0,0,5349,5351,5,243,0,0,5350,5352,3,40,20,0, + 5351,5350,1,0,0,0,5351,5352,1,0,0,0,5352,5353,1,0,0,0,5353,5354, + 3,926,463,0,5354,999,1,0,0,0,5355,5360,3,926,463,0,5356,5357,5,395, + 0,0,5357,5359,3,926,463,0,5358,5356,1,0,0,0,5359,5362,1,0,0,0,5360, + 5358,1,0,0,0,5360,5361,1,0,0,0,5361,1001,1,0,0,0,5362,5360,1,0,0, + 0,5363,5364,3,1010,505,0,5364,1003,1,0,0,0,5365,5366,3,1002,501, + 0,5366,5367,5,0,0,1,5367,1005,1,0,0,0,5368,5373,3,1008,504,0,5369, + 5370,5,228,0,0,5370,5372,3,1008,504,0,5371,5369,1,0,0,0,5372,5375, + 1,0,0,0,5373,5371,1,0,0,0,5373,5374,1,0,0,0,5374,1007,1,0,0,0,5375, + 5373,1,0,0,0,5376,5381,3,1010,505,0,5377,5378,5,11,0,0,5378,5380, + 3,1010,505,0,5379,5377,1,0,0,0,5380,5383,1,0,0,0,5381,5379,1,0,0, + 0,5381,5382,1,0,0,0,5382,1009,1,0,0,0,5383,5381,1,0,0,0,5384,5385, + 3,926,463,0,5385,5386,3,1014,507,0,5386,5387,3,1012,506,0,5387,1011, + 1,0,0,0,5388,5389,7,24,0,0,5389,1013,1,0,0,0,5390,5391,5,411,0,0, + 5391,1015,1,0,0,0,5392,5397,5,176,0,0,5393,5394,5,211,0,0,5394,5395, + 5,341,0,0,5395,5397,3,1000,500,0,5396,5392,1,0,0,0,5396,5393,1,0, + 0,0,5397,1017,1,0,0,0,5398,5399,3,1016,508,0,5399,5400,5,0,0,1,5400, + 1019,1,0,0,0,5401,5402,5,58,0,0,5402,5403,5,348,0,0,5403,5404,3, + 926,463,0,5404,5405,5,395,0,0,5405,5406,3,926,463,0,5406,5407,5, + 383,0,0,5407,5408,3,1002,501,0,5408,5409,5,99,0,0,5409,5410,3,1016, + 508,0,5410,1021,1,0,0,0,5411,5412,5,9,0,0,5412,5413,5,348,0,0,5413, + 5414,3,926,463,0,5414,5415,5,395,0,0,5415,5432,3,926,463,0,5416, + 5417,5,383,0,0,5417,5418,3,1002,501,0,5418,5419,5,99,0,0,5419,5420, + 3,1016,508,0,5420,5433,1,0,0,0,5421,5422,5,4,0,0,5422,5426,5,341, + 0,0,5423,5424,5,101,0,0,5424,5426,5,139,0,0,5425,5421,1,0,0,0,5425, + 5423,1,0,0,0,5426,5430,1,0,0,0,5427,5428,5,246,0,0,5428,5431,3,1000, + 500,0,5429,5431,5,362,0,0,5430,5427,1,0,0,0,5430,5429,1,0,0,0,5431, + 5433,1,0,0,0,5432,5416,1,0,0,0,5432,5425,1,0,0,0,5433,1023,1,0,0, + 0,5434,5435,5,101,0,0,5435,5436,5,348,0,0,5436,5437,3,926,463,0, + 5437,5438,5,395,0,0,5438,5439,3,926,463,0,5439,1025,1,0,0,0,5440, + 5441,5,8,0,0,5441,5442,5,405,0,0,5442,5453,5,431,0,0,5443,5444,5, + 259,0,0,5444,5445,5,405,0,0,5445,5453,5,431,0,0,5446,5447,5,294, + 0,0,5447,5448,5,405,0,0,5448,5453,5,426,0,0,5449,5450,5,240,0,0, + 5450,5451,5,405,0,0,5451,5453,3,1000,500,0,5452,5440,1,0,0,0,5452, + 5443,1,0,0,0,5452,5446,1,0,0,0,5452,5449,1,0,0,0,5453,1027,1,0,0, + 0,5454,5459,3,1026,513,0,5455,5456,5,397,0,0,5456,5458,3,1026,513, + 0,5457,5455,1,0,0,0,5458,5461,1,0,0,0,5459,5457,1,0,0,0,5459,5460, + 1,0,0,0,5460,1029,1,0,0,0,5461,5459,1,0,0,0,5462,5463,5,58,0,0,5463, + 5464,5,246,0,0,5464,5465,3,926,463,0,5465,5466,5,395,0,0,5466,5467, + 3,1000,500,0,5467,5468,5,387,0,0,5468,5469,3,1028,514,0,5469,1031, + 1,0,0,0,5470,5471,5,9,0,0,5471,5472,5,246,0,0,5472,5473,3,926,463, + 0,5473,5474,5,395,0,0,5474,5482,3,1000,500,0,5475,5476,5,304,0,0, + 5476,5483,3,1028,514,0,5477,5478,5,363,0,0,5478,5483,5,294,0,0,5479, + 5480,7,54,0,0,5480,5481,5,348,0,0,5481,5483,3,926,463,0,5482,5475, + 1,0,0,0,5482,5477,1,0,0,0,5482,5479,1,0,0,0,5483,1033,1,0,0,0,5484, + 5485,5,101,0,0,5485,5486,5,246,0,0,5486,5487,3,926,463,0,5487,5488, + 5,395,0,0,5488,5489,3,1000,500,0,5489,1035,1,0,0,0,5490,5491,5,58, + 0,0,5491,5492,7,55,0,0,5492,5493,5,200,0,0,5493,5494,5,426,0,0,5494, + 5495,5,154,0,0,5495,5499,3,926,463,0,5496,5497,5,341,0,0,5497,5500, + 3,1000,500,0,5498,5500,3,974,487,0,5499,5496,1,0,0,0,5499,5498,1, + 0,0,0,5500,5504,1,0,0,0,5501,5502,5,387,0,0,5502,5503,5,229,0,0, + 5503,5505,5,431,0,0,5504,5501,1,0,0,0,5504,5505,1,0,0,0,5505,1037, + 1,0,0,0,5506,5507,5,9,0,0,5507,5508,7,55,0,0,5508,5509,5,200,0,0, + 5509,5510,5,426,0,0,5510,5511,5,154,0,0,5511,5515,3,926,463,0,5512, + 5513,5,341,0,0,5513,5516,3,1000,500,0,5514,5516,3,974,487,0,5515, + 5512,1,0,0,0,5515,5514,1,0,0,0,5516,5520,1,0,0,0,5517,5518,5,387, + 0,0,5518,5519,5,229,0,0,5519,5521,5,431,0,0,5520,5517,1,0,0,0,5520, + 5521,1,0,0,0,5521,1039,1,0,0,0,5522,5523,5,101,0,0,5523,5524,7,55, + 0,0,5524,5525,5,200,0,0,5525,5526,5,426,0,0,5526,5527,5,154,0,0, + 5527,5528,3,926,463,0,5528,1041,1,0,0,0,651,1045,1052,1055,1061, + 1067,1074,1084,1087,1091,1111,1116,1121,1127,1134,1147,1151,1155, + 1160,1167,1171,1176,1183,1187,1198,1204,1211,1260,1288,1292,1296, + 1299,1302,1307,1313,1317,1323,1325,1342,1354,1358,1365,1373,1376, + 1381,1385,1388,1398,1406,1410,1413,1417,1421,1424,1429,1435,1440, + 1445,1449,1460,1462,1466,1476,1480,1486,1489,1496,1501,1509,1514, + 1518,1526,1531,1537,1543,1546,1549,1552,1561,1569,1574,1582,1589, + 1592,1595,1597,1605,1608,1611,1614,1617,1620,1623,1626,1629,1632, + 1635,1637,1649,1655,1663,1665,1675,1681,1696,1713,1718,1722,1726, + 1733,1740,1746,1750,1753,1760,1783,1788,1792,1800,1809,1813,1819, + 1825,1832,1835,1841,1848,1856,1865,1874,1881,1901,1908,1910,1917, + 1927,1935,1939,1943,1956,1965,1981,1985,1990,1995,1998,2001,2005, + 2008,2011,2016,2024,2028,2035,2038,2041,2044,2056,2062,2088,2096, + 2100,2103,2106,2109,2112,2115,2118,2121,2130,2140,2143,2163,2169, + 2175,2178,2180,2187,2194,2207,2212,2221,2229,2237,2247,2260,2273, + 2294,2298,2313,2319,2322,2325,2328,2331,2335,2349,2357,2360,2375, + 2409,2417,2422,2430,2435,2440,2450,2458,2466,2474,2482,2486,2496, + 2500,2508,2517,2520,2524,2531,2537,2541,2547,2551,2563,2572,2583, + 2587,2594,2606,2613,2622,2625,2632,2638,2644,2647,2650,2656,2660, + 2664,2669,2673,2677,2681,2689,2693,2697,2701,2705,2713,2717,2721, + 2729,2734,2739,2743,2747,2754,2763,2771,2783,2801,2804,2810,2836, + 2839,2845,2853,2861,2874,2881,2884,2887,2890,2893,2896,2899,2902, + 2905,2908,2911,2916,2919,2922,2925,2928,2931,2934,2937,2940,2943, + 2946,2948,2954,2958,2961,2964,2967,2970,2973,2980,2984,2987,2990, + 2993,2996,2999,3006,3009,3017,3021,3028,3030,3033,3038,3041,3045, + 3050,3056,3062,3070,3078,3085,3091,3100,3103,3107,3120,3124,3135, + 3142,3146,3151,3154,3164,3166,3170,3177,3182,3202,3209,3232,3248, + 3265,3271,3288,3301,3305,3309,3316,3344,3351,3356,3361,3366,3371, + 3379,3385,3389,3392,3395,3401,3408,3418,3422,3427,3431,3437,3444, + 3451,3462,3471,3475,3478,3481,3489,3492,3500,3503,3511,3515,3520, + 3524,3533,3549,3564,3566,3582,3589,3606,3609,3612,3615,3621,3644, + 3652,3666,3669,3674,3700,3704,3707,3710,3714,3719,3722,3725,3728, + 3731,3737,3740,3743,3746,3749,3752,3755,3758,3761,3764,3768,3770, + 3776,3781,3784,3787,3790,3796,3799,3802,3805,3808,3811,3814,3817, + 3820,3823,3827,3829,3831,3836,3840,3843,3846,3851,3869,3878,3890, + 3898,3910,3913,3919,3926,3933,3940,3947,3956,3960,3967,3972,3976, + 3992,3996,3998,4001,4014,4017,4020,4032,4035,4042,4051,4056,4058, + 4060,4077,4080,4089,4095,4099,4102,4105,4108,4111,4123,4127,4130, + 4133,4141,4148,4151,4158,4161,4166,4173,4181,4187,4192,4196,4201, + 4208,4222,4225,4229,4246,4254,4257,4270,4279,4282,4288,4291,4296, + 4299,4308,4322,4328,4330,4338,4341,4351,4356,4358,4370,4376,4378, + 4385,4392,4401,4411,4414,4417,4420,4424,4433,4442,4450,4456,4466, + 4473,4481,4491,4501,4506,4510,4514,4520,4541,4547,4551,4555,4558, + 4564,4569,4572,4576,4584,4594,4604,4623,4630,4633,4644,4651,4654, + 4656,4667,4677,4679,4685,4691,4695,4701,4710,4723,4727,4739,4743, + 4752,4764,4781,4796,4806,4814,4819,4840,4844,4860,4875,4884,4886, + 4894,4907,4918,4929,4940,4951,4962,4972,4981,4985,4993,5006,5016, + 5022,5035,5044,5046,5061,5066,5073,5086,5097,5106,5115,5123,5131, + 5142,5150,5155,5171,5179,5188,5208,5225,5234,5241,5247,5254,5261, + 5270,5272,5279,5318,5322,5324,5328,5345,5351,5360,5373,5381,5396, + 5425,5430,5432,5452,5459,5482,5499,5504,5515,5520 ]; private static __ATN: antlr.ATN; @@ -36767,6 +36832,39 @@ export class TableCommentContext extends antlr.ParserRuleContext { } +export class TableLifecycleContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LIFECYCLE(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_LIFECYCLE, 0)!; + } + public Number(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.Number, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_tableLifecycle; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterTableLifecycle) { + listener.enterTableLifecycle(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitTableLifecycle) { + listener.exitTableLifecycle(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitTableLifecycle) { + return visitor.visitTableLifecycle(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class CreateTablePartitionSpecContext extends antlr.ParserRuleContext { public _opt1?: CreateTablePartitionColumnTypeSpecContext; public _opt2?: CreateTablePartitionColumnSpecContext; @@ -44982,6 +45080,9 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public tableComment(): TableCommentContext | null { return this.getRuleContext(0, TableCommentContext); } + public tableLifecycle(): TableLifecycleContext | null { + return this.getRuleContext(0, TableLifecycleContext); + } public tableBuckets(): TableBucketsContext | null { return this.getRuleContext(0, TableBucketsContext); } @@ -52556,6 +52657,9 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_LEVEL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LEVEL, 0); } + public KW_LIFECYCLE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LIFECYCLE, 0); + } public KW_LIMIT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LIMIT, 0); } diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 1dabc59..e9153ba 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -118,6 +118,7 @@ import { ExecutedAsSpecContext } from "./HiveSqlParser.js"; import { DefinedAsSpecContext } from "./HiveSqlParser.js"; import { ShowStmtIdentifierContext } from "./HiveSqlParser.js"; import { TableCommentContext } from "./HiveSqlParser.js"; +import { TableLifecycleContext } from "./HiveSqlParser.js"; import { CreateTablePartitionSpecContext } from "./HiveSqlParser.js"; import { CreateTablePartitionColumnTypeSpecContext } from "./HiveSqlParser.js"; import { CreateTablePartitionColumnSpecContext } from "./HiveSqlParser.js"; @@ -1637,6 +1638,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTableComment?: (ctx: TableCommentContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.tableLifecycle`. + * @param ctx the parse tree + */ + enterTableLifecycle?: (ctx: TableLifecycleContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.tableLifecycle`. + * @param ctx the parse tree + */ + exitTableLifecycle?: (ctx: TableLifecycleContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createTablePartitionSpec`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 3a1ce75..5cd9773 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -118,6 +118,7 @@ import { ExecutedAsSpecContext } from "./HiveSqlParser.js"; import { DefinedAsSpecContext } from "./HiveSqlParser.js"; import { ShowStmtIdentifierContext } from "./HiveSqlParser.js"; import { TableCommentContext } from "./HiveSqlParser.js"; +import { TableLifecycleContext } from "./HiveSqlParser.js"; import { CreateTablePartitionSpecContext } from "./HiveSqlParser.js"; import { CreateTablePartitionColumnTypeSpecContext } from "./HiveSqlParser.js"; import { CreateTablePartitionColumnSpecContext } from "./HiveSqlParser.js"; @@ -1200,6 +1201,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.tableLifecycle`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableLifecycle?: (ctx: TableLifecycleContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createTablePartitionSpec`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlLexer.interp b/src/lib/spark/SparkSqlLexer.interp index 2d8c1c9..7ea7f5e 100644 --- a/src/lib/spark/SparkSqlLexer.interp +++ b/src/lib/spark/SparkSqlLexer.interp @@ -161,6 +161,7 @@ null 'LAZY' 'LEADING' 'LEFT' +'LIFECYCLE' 'LIKE' 'ILIKE' 'LIMIT' @@ -556,6 +557,7 @@ KW_LATERAL KW_LAZY KW_LEADING KW_LEFT +KW_LIFECYCLE KW_LIKE KW_ILIKE KW_LIMIT @@ -950,6 +952,7 @@ KW_LATERAL KW_LAZY KW_LEADING KW_LEFT +KW_LIFECYCLE KW_LIKE KW_ILIKE KW_LIMIT @@ -1194,4 +1197,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 392, 3697, 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, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 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, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 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, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 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, 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, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 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, 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, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 45, 1, 45, 1, 45, 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, 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, 49, 1, 49, 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, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 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, 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, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 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, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 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, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 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, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 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, 75, 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, 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, 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, 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, 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, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 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, 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, 93, 1, 93, 1, 93, 1, 93, 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, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 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, 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, 105, 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, 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, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 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, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 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, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 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, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 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, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 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, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 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, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 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, 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, 144, 1, 145, 1, 145, 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, 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, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 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, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 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, 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, 161, 1, 161, 1, 161, 1, 161, 1, 161, 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, 164, 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, 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, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 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, 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, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 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, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 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, 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, 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, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 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, 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, 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, 193, 1, 193, 1, 193, 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, 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, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 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, 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, 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, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 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, 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, 215, 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, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 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, 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, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 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, 224, 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, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 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, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 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, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 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, 241, 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, 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, 244, 1, 244, 1, 244, 1, 245, 1, 245, 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, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 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, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 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, 257, 1, 257, 1, 258, 1, 258, 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, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 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, 263, 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, 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, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 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, 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, 275, 1, 275, 1, 275, 1, 275, 1, 275, 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, 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, 280, 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, 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, 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, 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, 289, 1, 289, 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, 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, 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, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 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, 298, 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, 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, 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, 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, 305, 1, 305, 1, 305, 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, 307, 1, 307, 1, 307, 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, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 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, 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, 315, 1, 316, 1, 316, 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, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 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, 320, 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, 323, 1, 323, 1, 323, 1, 323, 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, 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, 328, 1, 328, 1, 328, 1, 328, 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, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 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, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 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, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 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, 350, 1, 350, 1, 350, 3, 350, 3394, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 3412, 8, 355, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 3420, 8, 357, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 5, 375, 3466, 8, 375, 10, 375, 12, 375, 3469, 9, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 5, 375, 3476, 8, 375, 10, 375, 12, 375, 3479, 9, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 5, 375, 3486, 8, 375, 10, 375, 12, 375, 3489, 9, 375, 1, 375, 3, 375, 3492, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 3498, 8, 376, 10, 376, 12, 376, 3501, 9, 376, 1, 376, 1, 376, 1, 377, 4, 377, 3506, 8, 377, 11, 377, 12, 377, 3507, 1, 377, 1, 377, 1, 378, 4, 378, 3513, 8, 378, 11, 378, 12, 378, 3514, 1, 378, 1, 378, 1, 379, 4, 379, 3520, 8, 379, 11, 379, 12, 379, 3521, 1, 379, 1, 379, 1, 380, 4, 380, 3527, 8, 380, 11, 380, 12, 380, 3528, 1, 381, 4, 381, 3532, 8, 381, 11, 381, 12, 381, 3533, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 3, 381, 3541, 8, 381, 1, 382, 1, 382, 1, 383, 4, 383, 3546, 8, 383, 11, 383, 12, 383, 3547, 1, 383, 3, 383, 3551, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 3557, 8, 383, 1, 383, 1, 383, 3, 383, 3561, 8, 383, 1, 384, 4, 384, 3564, 8, 384, 11, 384, 12, 384, 3565, 1, 384, 3, 384, 3569, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 3575, 8, 384, 1, 384, 1, 384, 3, 384, 3579, 8, 384, 1, 385, 4, 385, 3582, 8, 385, 11, 385, 12, 385, 3583, 1, 385, 3, 385, 3587, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 3594, 8, 385, 1, 385, 1, 385, 1, 385, 3, 385, 3599, 8, 385, 1, 386, 1, 386, 1, 386, 4, 386, 3604, 8, 386, 11, 386, 12, 386, 3605, 1, 387, 1, 387, 1, 387, 1, 387, 5, 387, 3612, 8, 387, 10, 387, 12, 387, 3615, 9, 387, 1, 387, 1, 387, 1, 388, 4, 388, 3620, 8, 388, 11, 388, 12, 388, 3621, 1, 388, 1, 388, 5, 388, 3626, 8, 388, 10, 388, 12, 388, 3629, 9, 388, 1, 388, 1, 388, 4, 388, 3633, 8, 388, 11, 388, 12, 388, 3634, 3, 388, 3637, 8, 388, 1, 389, 1, 389, 3, 389, 3641, 8, 389, 1, 389, 4, 389, 3644, 8, 389, 11, 389, 12, 389, 3645, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 5, 392, 3658, 8, 392, 10, 392, 12, 392, 3661, 9, 392, 1, 392, 3, 392, 3664, 8, 392, 1, 392, 3, 392, 3667, 8, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 5, 393, 3676, 8, 393, 10, 393, 12, 393, 3679, 9, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 3685, 8, 393, 1, 393, 1, 393, 1, 394, 4, 394, 3690, 8, 394, 11, 394, 12, 394, 3691, 1, 394, 1, 394, 1, 395, 1, 395, 1, 3677, 0, 396, 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, 0, 779, 0, 781, 0, 783, 0, 785, 389, 787, 390, 789, 391, 791, 392, 1, 0, 36, 2, 0, 65, 65, 97, 97, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 82, 82, 114, 114, 2, 0, 76, 76, 108, 108, 2, 0, 87, 87, 119, 119, 2, 0, 89, 89, 121, 121, 2, 0, 83, 83, 115, 115, 2, 0, 78, 78, 110, 110, 2, 0, 90, 90, 122, 122, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 79, 79, 111, 111, 2, 0, 66, 66, 98, 98, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 77, 77, 109, 109, 2, 0, 80, 80, 112, 112, 2, 0, 88, 88, 120, 120, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 2, 0, 39, 39, 92, 92, 1, 0, 39, 39, 1, 0, 34, 34, 2, 0, 34, 34, 92, 92, 1, 0, 96, 96, 2, 0, 43, 43, 45, 45, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 3740, 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, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 1, 793, 1, 0, 0, 0, 3, 795, 1, 0, 0, 0, 5, 797, 1, 0, 0, 0, 7, 799, 1, 0, 0, 0, 9, 801, 1, 0, 0, 0, 11, 803, 1, 0, 0, 0, 13, 805, 1, 0, 0, 0, 15, 807, 1, 0, 0, 0, 17, 811, 1, 0, 0, 0, 19, 817, 1, 0, 0, 0, 21, 821, 1, 0, 0, 0, 23, 827, 1, 0, 0, 0, 25, 834, 1, 0, 0, 0, 27, 842, 1, 0, 0, 0, 29, 846, 1, 0, 0, 0, 31, 851, 1, 0, 0, 0, 33, 855, 1, 0, 0, 0, 35, 865, 1, 0, 0, 0, 37, 873, 1, 0, 0, 0, 39, 879, 1, 0, 0, 0, 41, 882, 1, 0, 0, 0, 43, 886, 1, 0, 0, 0, 45, 889, 1, 0, 0, 0, 47, 903, 1, 0, 0, 0, 49, 911, 1, 0, 0, 0, 51, 918, 1, 0, 0, 0, 53, 925, 1, 0, 0, 0, 55, 933, 1, 0, 0, 0, 57, 938, 1, 0, 0, 0, 59, 945, 1, 0, 0, 0, 61, 953, 1, 0, 0, 0, 63, 956, 1, 0, 0, 0, 65, 961, 1, 0, 0, 0, 67, 967, 1, 0, 0, 0, 69, 975, 1, 0, 0, 0, 71, 980, 1, 0, 0, 0, 73, 985, 1, 0, 0, 0, 75, 993, 1, 0, 0, 0, 77, 1002, 1, 0, 0, 0, 79, 1009, 1, 0, 0, 0, 81, 1014, 1, 0, 0, 0, 83, 1024, 1, 0, 0, 0, 85, 1030, 1, 0, 0, 0, 87, 1036, 1, 0, 0, 0, 89, 1044, 1, 0, 0, 0, 91, 1054, 1, 0, 0, 0, 93, 1062, 1, 0, 0, 0, 95, 1070, 1, 0, 0, 0, 97, 1081, 1, 0, 0, 0, 99, 1088, 1, 0, 0, 0, 101, 1096, 1, 0, 0, 0, 103, 1104, 1, 0, 0, 0, 105, 1111, 1, 0, 0, 0, 107, 1119, 1, 0, 0, 0, 109, 1131, 1, 0, 0, 0, 111, 1139, 1, 0, 0, 0, 113, 1151, 1, 0, 0, 0, 115, 1162, 1, 0, 0, 0, 117, 1167, 1, 0, 0, 0, 119, 1174, 1, 0, 0, 0, 121, 1180, 1, 0, 0, 0, 123, 1185, 1, 0, 0, 0, 125, 1193, 1, 0, 0, 0, 127, 1206, 1, 0, 0, 0, 129, 1219, 1, 0, 0, 0, 131, 1237, 1, 0, 0, 0, 133, 1250, 1, 0, 0, 0, 135, 1254, 1, 0, 0, 0, 137, 1259, 1, 0, 0, 0, 139, 1269, 1, 0, 0, 0, 141, 1274, 1, 0, 0, 0, 143, 1279, 1, 0, 0, 0, 145, 1288, 1, 0, 0, 0, 147, 1298, 1, 0, 0, 0, 149, 1306, 1, 0, 0, 0, 151, 1315, 1, 0, 0, 0, 153, 1324, 1, 0, 0, 0, 155, 1334, 1, 0, 0, 0, 157, 1347, 1, 0, 0, 0, 159, 1351, 1, 0, 0, 0, 161, 1359, 1, 0, 0, 0, 163, 1367, 1, 0, 0, 0, 165, 1375, 1, 0, 0, 0, 167, 1383, 1, 0, 0, 0, 169, 1390, 1, 0, 0, 0, 171, 1400, 1, 0, 0, 0, 173, 1405, 1, 0, 0, 0, 175, 1414, 1, 0, 0, 0, 177, 1418, 1, 0, 0, 0, 179, 1430, 1, 0, 0, 0, 181, 1440, 1, 0, 0, 0, 183, 1448, 1, 0, 0, 0, 185, 1457, 1, 0, 0, 0, 187, 1468, 1, 0, 0, 0, 189, 1472, 1, 0, 0, 0, 191, 1479, 1, 0, 0, 0, 193, 1484, 1, 0, 0, 0, 195, 1489, 1, 0, 0, 0, 197, 1496, 1, 0, 0, 0, 199, 1500, 1, 0, 0, 0, 201, 1507, 1, 0, 0, 0, 203, 1515, 1, 0, 0, 0, 205, 1522, 1, 0, 0, 0, 207, 1531, 1, 0, 0, 0, 209, 1539, 1, 0, 0, 0, 211, 1546, 1, 0, 0, 0, 213, 1554, 1, 0, 0, 0, 215, 1561, 1, 0, 0, 0, 217, 1570, 1, 0, 0, 0, 219, 1579, 1, 0, 0, 0, 221, 1587, 1, 0, 0, 0, 223, 1593, 1, 0, 0, 0, 225, 1599, 1, 0, 0, 0, 227, 1606, 1, 0, 0, 0, 229, 1613, 1, 0, 0, 0, 231, 1624, 1, 0, 0, 0, 233, 1630, 1, 0, 0, 0, 235, 1636, 1, 0, 0, 0, 237, 1646, 1, 0, 0, 0, 239, 1650, 1, 0, 0, 0, 241, 1658, 1, 0, 0, 0, 243, 1665, 1, 0, 0, 0, 245, 1675, 1, 0, 0, 0, 247, 1680, 1, 0, 0, 0, 249, 1685, 1, 0, 0, 0, 251, 1694, 1, 0, 0, 0, 253, 1704, 1, 0, 0, 0, 255, 1714, 1, 0, 0, 0, 257, 1721, 1, 0, 0, 0, 259, 1727, 1, 0, 0, 0, 261, 1733, 1, 0, 0, 0, 263, 1742, 1, 0, 0, 0, 265, 1749, 1, 0, 0, 0, 267, 1751, 1, 0, 0, 0, 269, 1756, 1, 0, 0, 0, 271, 1762, 1, 0, 0, 0, 273, 1773, 1, 0, 0, 0, 275, 1776, 1, 0, 0, 0, 277, 1783, 1, 0, 0, 0, 279, 1790, 1, 0, 0, 0, 281, 1793, 1, 0, 0, 0, 283, 1801, 1, 0, 0, 0, 285, 1807, 1, 0, 0, 0, 287, 1815, 1, 0, 0, 0, 289, 1821, 1, 0, 0, 0, 291, 1828, 1, 0, 0, 0, 293, 1840, 1, 0, 0, 0, 295, 1847, 1, 0, 0, 0, 297, 1857, 1, 0, 0, 0, 299, 1866, 1, 0, 0, 0, 301, 1870, 1, 0, 0, 0, 303, 1878, 1, 0, 0, 0, 305, 1883, 1, 0, 0, 0, 307, 1886, 1, 0, 0, 0, 309, 1892, 1, 0, 0, 0, 311, 1897, 1, 0, 0, 0, 313, 1902, 1, 0, 0, 0, 315, 1907, 1, 0, 0, 0, 317, 1915, 1, 0, 0, 0, 319, 1920, 1, 0, 0, 0, 321, 1928, 1, 0, 0, 0, 323, 1933, 1, 0, 0, 0, 325, 1938, 1, 0, 0, 0, 327, 1944, 1, 0, 0, 0, 329, 1950, 1, 0, 0, 0, 331, 1956, 1, 0, 0, 0, 333, 1961, 1, 0, 0, 0, 335, 1966, 1, 0, 0, 0, 337, 1972, 1, 0, 0, 0, 339, 1981, 1, 0, 0, 0, 341, 1986, 1, 0, 0, 0, 343, 1992, 1, 0, 0, 0, 345, 2000, 1, 0, 0, 0, 347, 2005, 1, 0, 0, 0, 349, 2011, 1, 0, 0, 0, 351, 2024, 1, 0, 0, 0, 353, 2028, 1, 0, 0, 0, 355, 2036, 1, 0, 0, 0, 357, 2042, 1, 0, 0, 0, 359, 2054, 1, 0, 0, 0, 361, 2067, 1, 0, 0, 0, 363, 2079, 1, 0, 0, 0, 365, 2092, 1, 0, 0, 0, 367, 2099, 1, 0, 0, 0, 369, 2107, 1, 0, 0, 0, 371, 2113, 1, 0, 0, 0, 373, 2120, 1, 0, 0, 0, 375, 2125, 1, 0, 0, 0, 377, 2130, 1, 0, 0, 0, 379, 2140, 1, 0, 0, 0, 381, 2151, 1, 0, 0, 0, 383, 2162, 1, 0, 0, 0, 385, 2174, 1, 0, 0, 0, 387, 2182, 1, 0, 0, 0, 389, 2185, 1, 0, 0, 0, 391, 2192, 1, 0, 0, 0, 393, 2196, 1, 0, 0, 0, 395, 2201, 1, 0, 0, 0, 397, 2207, 1, 0, 0, 0, 399, 2215, 1, 0, 0, 0, 401, 2218, 1, 0, 0, 0, 403, 2225, 1, 0, 0, 0, 405, 2228, 1, 0, 0, 0, 407, 2233, 1, 0, 0, 0, 409, 2242, 1, 0, 0, 0, 411, 2249, 1, 0, 0, 0, 413, 2257, 1, 0, 0, 0, 415, 2260, 1, 0, 0, 0, 417, 2266, 1, 0, 0, 0, 419, 2270, 1, 0, 0, 0, 421, 2276, 1, 0, 0, 0, 423, 2289, 1, 0, 0, 0, 425, 2294, 1, 0, 0, 0, 427, 2303, 1, 0, 0, 0, 429, 2311, 1, 0, 0, 0, 431, 2321, 1, 0, 0, 0, 433, 2331, 1, 0, 0, 0, 435, 2343, 1, 0, 0, 0, 437, 2354, 1, 0, 0, 0, 439, 2370, 1, 0, 0, 0, 441, 2386, 1, 0, 0, 0, 443, 2394, 1, 0, 0, 0, 445, 2400, 1, 0, 0, 0, 447, 2408, 1, 0, 0, 0, 449, 2417, 1, 0, 0, 0, 451, 2427, 1, 0, 0, 0, 453, 2435, 1, 0, 0, 0, 455, 2446, 1, 0, 0, 0, 457, 2457, 1, 0, 0, 0, 459, 2463, 1, 0, 0, 0, 461, 2471, 1, 0, 0, 0, 463, 2477, 1, 0, 0, 0, 465, 2483, 1, 0, 0, 0, 467, 2488, 1, 0, 0, 0, 469, 2501, 1, 0, 0, 0, 471, 2514, 1, 0, 0, 0, 473, 2522, 1, 0, 0, 0, 475, 2529, 1, 0, 0, 0, 477, 2540, 1, 0, 0, 0, 479, 2548, 1, 0, 0, 0, 481, 2555, 1, 0, 0, 0, 483, 2562, 1, 0, 0, 0, 485, 2573, 1, 0, 0, 0, 487, 2581, 1, 0, 0, 0, 489, 2587, 1, 0, 0, 0, 491, 2595, 1, 0, 0, 0, 493, 2604, 1, 0, 0, 0, 495, 2612, 1, 0, 0, 0, 497, 2619, 1, 0, 0, 0, 499, 2625, 1, 0, 0, 0, 501, 2631, 1, 0, 0, 0, 503, 2638, 1, 0, 0, 0, 505, 2643, 1, 0, 0, 0, 507, 2649, 1, 0, 0, 0, 509, 2658, 1, 0, 0, 0, 511, 2665, 1, 0, 0, 0, 513, 2669, 1, 0, 0, 0, 515, 2674, 1, 0, 0, 0, 517, 2681, 1, 0, 0, 0, 519, 2689, 1, 0, 0, 0, 521, 2696, 1, 0, 0, 0, 523, 2704, 1, 0, 0, 0, 525, 2711, 1, 0, 0, 0, 527, 2716, 1, 0, 0, 0, 529, 2726, 1, 0, 0, 0, 531, 2732, 1, 0, 0, 0, 533, 2748, 1, 0, 0, 0, 535, 2761, 1, 0, 0, 0, 537, 2765, 1, 0, 0, 0, 539, 2771, 1, 0, 0, 0, 541, 2776, 1, 0, 0, 0, 543, 2782, 1, 0, 0, 0, 545, 2787, 1, 0, 0, 0, 547, 2794, 1, 0, 0, 0, 549, 2801, 1, 0, 0, 0, 551, 2810, 1, 0, 0, 0, 553, 2815, 1, 0, 0, 0, 555, 2820, 1, 0, 0, 0, 557, 2827, 1, 0, 0, 0, 559, 2834, 1, 0, 0, 0, 561, 2840, 1, 0, 0, 0, 563, 2851, 1, 0, 0, 0, 565, 2858, 1, 0, 0, 0, 567, 2867, 1, 0, 0, 0, 569, 2874, 1, 0, 0, 0, 571, 2881, 1, 0, 0, 0, 573, 2888, 1, 0, 0, 0, 575, 2898, 1, 0, 0, 0, 577, 2903, 1, 0, 0, 0, 579, 2910, 1, 0, 0, 0, 581, 2922, 1, 0, 0, 0, 583, 2937, 1, 0, 0, 0, 585, 2943, 1, 0, 0, 0, 587, 2950, 1, 0, 0, 0, 589, 2962, 1, 0, 0, 0, 591, 2969, 1, 0, 0, 0, 593, 2983, 1, 0, 0, 0, 595, 2993, 1, 0, 0, 0, 597, 3004, 1, 0, 0, 0, 599, 3009, 1, 0, 0, 0, 601, 3014, 1, 0, 0, 0, 603, 3023, 1, 0, 0, 0, 605, 3033, 1, 0, 0, 0, 607, 3047, 1, 0, 0, 0, 609, 3061, 1, 0, 0, 0, 611, 3074, 1, 0, 0, 0, 613, 3088, 1, 0, 0, 0, 615, 3096, 1, 0, 0, 0, 617, 3099, 1, 0, 0, 0, 619, 3105, 1, 0, 0, 0, 621, 3114, 1, 0, 0, 0, 623, 3126, 1, 0, 0, 0, 625, 3139, 1, 0, 0, 0, 627, 3149, 1, 0, 0, 0, 629, 3154, 1, 0, 0, 0, 631, 3159, 1, 0, 0, 0, 633, 3168, 1, 0, 0, 0, 635, 3177, 1, 0, 0, 0, 637, 3182, 1, 0, 0, 0, 639, 3192, 1, 0, 0, 0, 641, 3202, 1, 0, 0, 0, 643, 3210, 1, 0, 0, 0, 645, 3216, 1, 0, 0, 0, 647, 3223, 1, 0, 0, 0, 649, 3231, 1, 0, 0, 0, 651, 3238, 1, 0, 0, 0, 653, 3246, 1, 0, 0, 0, 655, 3252, 1, 0, 0, 0, 657, 3259, 1, 0, 0, 0, 659, 3263, 1, 0, 0, 0, 661, 3268, 1, 0, 0, 0, 663, 3274, 1, 0, 0, 0, 665, 3281, 1, 0, 0, 0, 667, 3289, 1, 0, 0, 0, 669, 3293, 1, 0, 0, 0, 671, 3302, 1, 0, 0, 0, 673, 3310, 1, 0, 0, 0, 675, 3315, 1, 0, 0, 0, 677, 3321, 1, 0, 0, 0, 679, 3326, 1, 0, 0, 0, 681, 3331, 1, 0, 0, 0, 683, 3337, 1, 0, 0, 0, 685, 3342, 1, 0, 0, 0, 687, 3348, 1, 0, 0, 0, 689, 3355, 1, 0, 0, 0, 691, 3360, 1, 0, 0, 0, 693, 3367, 1, 0, 0, 0, 695, 3372, 1, 0, 0, 0, 697, 3378, 1, 0, 0, 0, 699, 3383, 1, 0, 0, 0, 701, 3393, 1, 0, 0, 0, 703, 3395, 1, 0, 0, 0, 705, 3399, 1, 0, 0, 0, 707, 3402, 1, 0, 0, 0, 709, 3405, 1, 0, 0, 0, 711, 3411, 1, 0, 0, 0, 713, 3413, 1, 0, 0, 0, 715, 3419, 1, 0, 0, 0, 717, 3421, 1, 0, 0, 0, 719, 3423, 1, 0, 0, 0, 721, 3425, 1, 0, 0, 0, 723, 3427, 1, 0, 0, 0, 725, 3429, 1, 0, 0, 0, 727, 3431, 1, 0, 0, 0, 729, 3433, 1, 0, 0, 0, 731, 3435, 1, 0, 0, 0, 733, 3437, 1, 0, 0, 0, 735, 3439, 1, 0, 0, 0, 737, 3442, 1, 0, 0, 0, 739, 3444, 1, 0, 0, 0, 741, 3446, 1, 0, 0, 0, 743, 3449, 1, 0, 0, 0, 745, 3452, 1, 0, 0, 0, 747, 3456, 1, 0, 0, 0, 749, 3459, 1, 0, 0, 0, 751, 3491, 1, 0, 0, 0, 753, 3493, 1, 0, 0, 0, 755, 3505, 1, 0, 0, 0, 757, 3512, 1, 0, 0, 0, 759, 3519, 1, 0, 0, 0, 761, 3526, 1, 0, 0, 0, 763, 3540, 1, 0, 0, 0, 765, 3542, 1, 0, 0, 0, 767, 3560, 1, 0, 0, 0, 769, 3578, 1, 0, 0, 0, 771, 3598, 1, 0, 0, 0, 773, 3603, 1, 0, 0, 0, 775, 3607, 1, 0, 0, 0, 777, 3636, 1, 0, 0, 0, 779, 3638, 1, 0, 0, 0, 781, 3647, 1, 0, 0, 0, 783, 3649, 1, 0, 0, 0, 785, 3651, 1, 0, 0, 0, 787, 3670, 1, 0, 0, 0, 789, 3689, 1, 0, 0, 0, 791, 3695, 1, 0, 0, 0, 793, 794, 5, 59, 0, 0, 794, 2, 1, 0, 0, 0, 795, 796, 5, 40, 0, 0, 796, 4, 1, 0, 0, 0, 797, 798, 5, 41, 0, 0, 798, 6, 1, 0, 0, 0, 799, 800, 5, 44, 0, 0, 800, 8, 1, 0, 0, 0, 801, 802, 5, 46, 0, 0, 802, 10, 1, 0, 0, 0, 803, 804, 5, 91, 0, 0, 804, 12, 1, 0, 0, 0, 805, 806, 5, 93, 0, 0, 806, 14, 1, 0, 0, 0, 807, 808, 7, 0, 0, 0, 808, 809, 7, 1, 0, 0, 809, 810, 7, 1, 0, 0, 810, 16, 1, 0, 0, 0, 811, 812, 7, 0, 0, 0, 812, 813, 7, 2, 0, 0, 813, 814, 7, 3, 0, 0, 814, 815, 7, 4, 0, 0, 815, 816, 7, 5, 0, 0, 816, 18, 1, 0, 0, 0, 817, 818, 7, 0, 0, 0, 818, 819, 7, 6, 0, 0, 819, 820, 7, 6, 0, 0, 820, 20, 1, 0, 0, 0, 821, 822, 7, 0, 0, 0, 822, 823, 7, 6, 0, 0, 823, 824, 7, 3, 0, 0, 824, 825, 7, 4, 0, 0, 825, 826, 7, 5, 0, 0, 826, 22, 1, 0, 0, 0, 827, 828, 7, 0, 0, 0, 828, 829, 7, 6, 0, 0, 829, 830, 7, 7, 0, 0, 830, 831, 7, 0, 0, 0, 831, 832, 7, 8, 0, 0, 832, 833, 7, 9, 0, 0, 833, 24, 1, 0, 0, 0, 834, 835, 7, 0, 0, 0, 835, 836, 7, 10, 0, 0, 836, 837, 7, 0, 0, 0, 837, 838, 7, 6, 0, 0, 838, 839, 7, 8, 0, 0, 839, 840, 7, 11, 0, 0, 840, 841, 7, 4, 0, 0, 841, 26, 1, 0, 0, 0, 842, 843, 7, 0, 0, 0, 843, 844, 7, 10, 0, 0, 844, 845, 7, 1, 0, 0, 845, 28, 1, 0, 0, 0, 846, 847, 7, 0, 0, 0, 847, 848, 7, 10, 0, 0, 848, 849, 7, 3, 0, 0, 849, 850, 7, 12, 0, 0, 850, 30, 1, 0, 0, 0, 851, 852, 7, 0, 0, 0, 852, 853, 7, 10, 0, 0, 853, 854, 7, 8, 0, 0, 854, 32, 1, 0, 0, 0, 855, 856, 7, 0, 0, 0, 856, 857, 7, 10, 0, 0, 857, 858, 7, 8, 0, 0, 858, 859, 5, 95, 0, 0, 859, 860, 7, 13, 0, 0, 860, 861, 7, 0, 0, 0, 861, 862, 7, 6, 0, 0, 862, 863, 7, 14, 0, 0, 863, 864, 7, 4, 0, 0, 864, 34, 1, 0, 0, 0, 865, 866, 7, 0, 0, 0, 866, 867, 7, 5, 0, 0, 867, 868, 7, 15, 0, 0, 868, 869, 7, 16, 0, 0, 869, 870, 7, 12, 0, 0, 870, 871, 7, 13, 0, 0, 871, 872, 7, 4, 0, 0, 872, 36, 1, 0, 0, 0, 873, 874, 7, 0, 0, 0, 874, 875, 7, 5, 0, 0, 875, 876, 7, 5, 0, 0, 876, 877, 7, 0, 0, 0, 877, 878, 7, 8, 0, 0, 878, 38, 1, 0, 0, 0, 879, 880, 7, 0, 0, 0, 880, 881, 7, 9, 0, 0, 881, 40, 1, 0, 0, 0, 882, 883, 7, 0, 0, 0, 883, 884, 7, 9, 0, 0, 884, 885, 7, 15, 0, 0, 885, 42, 1, 0, 0, 0, 886, 887, 7, 0, 0, 0, 887, 888, 7, 3, 0, 0, 888, 44, 1, 0, 0, 0, 889, 890, 7, 0, 0, 0, 890, 891, 7, 14, 0, 0, 891, 892, 7, 3, 0, 0, 892, 893, 7, 16, 0, 0, 893, 894, 7, 17, 0, 0, 894, 895, 7, 5, 0, 0, 895, 896, 7, 12, 0, 0, 896, 897, 7, 11, 0, 0, 897, 898, 7, 0, 0, 0, 898, 899, 7, 3, 0, 0, 899, 900, 7, 12, 0, 0, 900, 901, 7, 17, 0, 0, 901, 902, 7, 10, 0, 0, 902, 46, 1, 0, 0, 0, 903, 904, 7, 18, 0, 0, 904, 905, 7, 4, 0, 0, 905, 906, 7, 3, 0, 0, 906, 907, 7, 7, 0, 0, 907, 908, 7, 4, 0, 0, 908, 909, 7, 4, 0, 0, 909, 910, 7, 10, 0, 0, 910, 48, 1, 0, 0, 0, 911, 912, 7, 18, 0, 0, 912, 913, 7, 12, 0, 0, 913, 914, 7, 19, 0, 0, 914, 915, 7, 12, 0, 0, 915, 916, 7, 10, 0, 0, 916, 917, 7, 3, 0, 0, 917, 50, 1, 0, 0, 0, 918, 919, 7, 18, 0, 0, 919, 920, 7, 12, 0, 0, 920, 921, 7, 10, 0, 0, 921, 922, 7, 0, 0, 0, 922, 923, 7, 5, 0, 0, 923, 924, 7, 8, 0, 0, 924, 52, 1, 0, 0, 0, 925, 926, 7, 18, 0, 0, 926, 927, 7, 17, 0, 0, 927, 928, 7, 17, 0, 0, 928, 929, 7, 6, 0, 0, 929, 930, 7, 4, 0, 0, 930, 931, 7, 0, 0, 0, 931, 932, 7, 10, 0, 0, 932, 54, 1, 0, 0, 0, 933, 934, 7, 18, 0, 0, 934, 935, 7, 17, 0, 0, 935, 936, 7, 3, 0, 0, 936, 937, 7, 16, 0, 0, 937, 56, 1, 0, 0, 0, 938, 939, 7, 18, 0, 0, 939, 940, 7, 14, 0, 0, 940, 941, 7, 15, 0, 0, 941, 942, 7, 20, 0, 0, 942, 943, 7, 4, 0, 0, 943, 944, 7, 3, 0, 0, 944, 58, 1, 0, 0, 0, 945, 946, 7, 18, 0, 0, 946, 947, 7, 14, 0, 0, 947, 948, 7, 15, 0, 0, 948, 949, 7, 20, 0, 0, 949, 950, 7, 4, 0, 0, 950, 951, 7, 3, 0, 0, 951, 952, 7, 9, 0, 0, 952, 60, 1, 0, 0, 0, 953, 954, 7, 18, 0, 0, 954, 955, 7, 8, 0, 0, 955, 62, 1, 0, 0, 0, 956, 957, 7, 18, 0, 0, 957, 958, 7, 8, 0, 0, 958, 959, 7, 3, 0, 0, 959, 960, 7, 4, 0, 0, 960, 64, 1, 0, 0, 0, 961, 962, 7, 15, 0, 0, 962, 963, 7, 0, 0, 0, 963, 964, 7, 15, 0, 0, 964, 965, 7, 16, 0, 0, 965, 966, 7, 4, 0, 0, 966, 66, 1, 0, 0, 0, 967, 968, 7, 15, 0, 0, 968, 969, 7, 0, 0, 0, 969, 970, 7, 9, 0, 0, 970, 971, 7, 15, 0, 0, 971, 972, 7, 0, 0, 0, 972, 973, 7, 1, 0, 0, 973, 974, 7, 4, 0, 0, 974, 68, 1, 0, 0, 0, 975, 976, 7, 15, 0, 0, 976, 977, 7, 0, 0, 0, 977, 978, 7, 9, 0, 0, 978, 979, 7, 4, 0, 0, 979, 70, 1, 0, 0, 0, 980, 981, 7, 15, 0, 0, 981, 982, 7, 0, 0, 0, 982, 983, 7, 9, 0, 0, 983, 984, 7, 3, 0, 0, 984, 72, 1, 0, 0, 0, 985, 986, 7, 15, 0, 0, 986, 987, 7, 0, 0, 0, 987, 988, 7, 3, 0, 0, 988, 989, 7, 0, 0, 0, 989, 990, 7, 6, 0, 0, 990, 991, 7, 17, 0, 0, 991, 992, 7, 19, 0, 0, 992, 74, 1, 0, 0, 0, 993, 994, 7, 15, 0, 0, 994, 995, 7, 0, 0, 0, 995, 996, 7, 3, 0, 0, 996, 997, 7, 0, 0, 0, 997, 998, 7, 6, 0, 0, 998, 999, 7, 17, 0, 0, 999, 1000, 7, 19, 0, 0, 1000, 1001, 7, 9, 0, 0, 1001, 76, 1, 0, 0, 0, 1002, 1003, 7, 15, 0, 0, 1003, 1004, 7, 16, 0, 0, 1004, 1005, 7, 0, 0, 0, 1005, 1006, 7, 10, 0, 0, 1006, 1007, 7, 19, 0, 0, 1007, 1008, 7, 4, 0, 0, 1008, 78, 1, 0, 0, 0, 1009, 1010, 7, 15, 0, 0, 1010, 1011, 7, 16, 0, 0, 1011, 1012, 7, 0, 0, 0, 1012, 1013, 7, 5, 0, 0, 1013, 80, 1, 0, 0, 0, 1014, 1015, 7, 15, 0, 0, 1015, 1016, 7, 16, 0, 0, 1016, 1017, 7, 0, 0, 0, 1017, 1018, 7, 5, 0, 0, 1018, 1019, 7, 0, 0, 0, 1019, 1020, 7, 15, 0, 0, 1020, 1021, 7, 3, 0, 0, 1021, 1022, 7, 4, 0, 0, 1022, 1023, 7, 5, 0, 0, 1023, 82, 1, 0, 0, 0, 1024, 1025, 7, 15, 0, 0, 1025, 1026, 7, 16, 0, 0, 1026, 1027, 7, 4, 0, 0, 1027, 1028, 7, 15, 0, 0, 1028, 1029, 7, 20, 0, 0, 1029, 84, 1, 0, 0, 0, 1030, 1031, 7, 15, 0, 0, 1031, 1032, 7, 6, 0, 0, 1032, 1033, 7, 4, 0, 0, 1033, 1034, 7, 0, 0, 0, 1034, 1035, 7, 5, 0, 0, 1035, 86, 1, 0, 0, 0, 1036, 1037, 7, 15, 0, 0, 1037, 1038, 7, 6, 0, 0, 1038, 1039, 7, 14, 0, 0, 1039, 1040, 7, 9, 0, 0, 1040, 1041, 7, 3, 0, 0, 1041, 1042, 7, 4, 0, 0, 1042, 1043, 7, 5, 0, 0, 1043, 88, 1, 0, 0, 0, 1044, 1045, 7, 15, 0, 0, 1045, 1046, 7, 6, 0, 0, 1046, 1047, 7, 14, 0, 0, 1047, 1048, 7, 9, 0, 0, 1048, 1049, 7, 3, 0, 0, 1049, 1050, 7, 4, 0, 0, 1050, 1051, 7, 5, 0, 0, 1051, 1052, 7, 4, 0, 0, 1052, 1053, 7, 1, 0, 0, 1053, 90, 1, 0, 0, 0, 1054, 1055, 7, 15, 0, 0, 1055, 1056, 7, 17, 0, 0, 1056, 1057, 7, 1, 0, 0, 1057, 1058, 7, 4, 0, 0, 1058, 1059, 7, 19, 0, 0, 1059, 1060, 7, 4, 0, 0, 1060, 1061, 7, 10, 0, 0, 1061, 92, 1, 0, 0, 0, 1062, 1063, 7, 15, 0, 0, 1063, 1064, 7, 17, 0, 0, 1064, 1065, 7, 6, 0, 0, 1065, 1066, 7, 6, 0, 0, 1066, 1067, 7, 0, 0, 0, 1067, 1068, 7, 3, 0, 0, 1068, 1069, 7, 4, 0, 0, 1069, 94, 1, 0, 0, 0, 1070, 1071, 7, 15, 0, 0, 1071, 1072, 7, 17, 0, 0, 1072, 1073, 7, 6, 0, 0, 1073, 1074, 7, 6, 0, 0, 1074, 1075, 7, 4, 0, 0, 1075, 1076, 7, 15, 0, 0, 1076, 1077, 7, 3, 0, 0, 1077, 1078, 7, 12, 0, 0, 1078, 1079, 7, 17, 0, 0, 1079, 1080, 7, 10, 0, 0, 1080, 96, 1, 0, 0, 0, 1081, 1082, 7, 15, 0, 0, 1082, 1083, 7, 17, 0, 0, 1083, 1084, 7, 6, 0, 0, 1084, 1085, 7, 14, 0, 0, 1085, 1086, 7, 21, 0, 0, 1086, 1087, 7, 10, 0, 0, 1087, 98, 1, 0, 0, 0, 1088, 1089, 7, 15, 0, 0, 1089, 1090, 7, 17, 0, 0, 1090, 1091, 7, 6, 0, 0, 1091, 1092, 7, 14, 0, 0, 1092, 1093, 7, 21, 0, 0, 1093, 1094, 7, 10, 0, 0, 1094, 1095, 7, 9, 0, 0, 1095, 100, 1, 0, 0, 0, 1096, 1097, 7, 15, 0, 0, 1097, 1098, 7, 17, 0, 0, 1098, 1099, 7, 21, 0, 0, 1099, 1100, 7, 21, 0, 0, 1100, 1101, 7, 4, 0, 0, 1101, 1102, 7, 10, 0, 0, 1102, 1103, 7, 3, 0, 0, 1103, 102, 1, 0, 0, 0, 1104, 1105, 7, 15, 0, 0, 1105, 1106, 7, 17, 0, 0, 1106, 1107, 7, 21, 0, 0, 1107, 1108, 7, 21, 0, 0, 1108, 1109, 7, 12, 0, 0, 1109, 1110, 7, 3, 0, 0, 1110, 104, 1, 0, 0, 0, 1111, 1112, 7, 15, 0, 0, 1112, 1113, 7, 17, 0, 0, 1113, 1114, 7, 21, 0, 0, 1114, 1115, 7, 22, 0, 0, 1115, 1116, 7, 0, 0, 0, 1116, 1117, 7, 15, 0, 0, 1117, 1118, 7, 3, 0, 0, 1118, 106, 1, 0, 0, 0, 1119, 1120, 7, 15, 0, 0, 1120, 1121, 7, 17, 0, 0, 1121, 1122, 7, 21, 0, 0, 1122, 1123, 7, 22, 0, 0, 1123, 1124, 7, 0, 0, 0, 1124, 1125, 7, 15, 0, 0, 1125, 1126, 7, 3, 0, 0, 1126, 1127, 7, 12, 0, 0, 1127, 1128, 7, 17, 0, 0, 1128, 1129, 7, 10, 0, 0, 1129, 1130, 7, 9, 0, 0, 1130, 108, 1, 0, 0, 0, 1131, 1132, 7, 15, 0, 0, 1132, 1133, 7, 17, 0, 0, 1133, 1134, 7, 21, 0, 0, 1134, 1135, 7, 22, 0, 0, 1135, 1136, 7, 14, 0, 0, 1136, 1137, 7, 3, 0, 0, 1137, 1138, 7, 4, 0, 0, 1138, 110, 1, 0, 0, 0, 1139, 1140, 7, 15, 0, 0, 1140, 1141, 7, 17, 0, 0, 1141, 1142, 7, 10, 0, 0, 1142, 1143, 7, 15, 0, 0, 1143, 1144, 7, 0, 0, 0, 1144, 1145, 7, 3, 0, 0, 1145, 1146, 7, 4, 0, 0, 1146, 1147, 7, 10, 0, 0, 1147, 1148, 7, 0, 0, 0, 1148, 1149, 7, 3, 0, 0, 1149, 1150, 7, 4, 0, 0, 1150, 112, 1, 0, 0, 0, 1151, 1152, 7, 15, 0, 0, 1152, 1153, 7, 17, 0, 0, 1153, 1154, 7, 10, 0, 0, 1154, 1155, 7, 9, 0, 0, 1155, 1156, 7, 3, 0, 0, 1156, 1157, 7, 5, 0, 0, 1157, 1158, 7, 0, 0, 0, 1158, 1159, 7, 12, 0, 0, 1159, 1160, 7, 10, 0, 0, 1160, 1161, 7, 3, 0, 0, 1161, 114, 1, 0, 0, 0, 1162, 1163, 7, 15, 0, 0, 1163, 1164, 7, 17, 0, 0, 1164, 1165, 7, 9, 0, 0, 1165, 1166, 7, 3, 0, 0, 1166, 116, 1, 0, 0, 0, 1167, 1168, 7, 15, 0, 0, 1168, 1169, 7, 5, 0, 0, 1169, 1170, 7, 4, 0, 0, 1170, 1171, 7, 0, 0, 0, 1171, 1172, 7, 3, 0, 0, 1172, 1173, 7, 4, 0, 0, 1173, 118, 1, 0, 0, 0, 1174, 1175, 7, 15, 0, 0, 1175, 1176, 7, 5, 0, 0, 1176, 1177, 7, 17, 0, 0, 1177, 1178, 7, 9, 0, 0, 1178, 1179, 7, 9, 0, 0, 1179, 120, 1, 0, 0, 0, 1180, 1181, 7, 15, 0, 0, 1181, 1182, 7, 14, 0, 0, 1182, 1183, 7, 18, 0, 0, 1183, 1184, 7, 4, 0, 0, 1184, 122, 1, 0, 0, 0, 1185, 1186, 7, 15, 0, 0, 1186, 1187, 7, 14, 0, 0, 1187, 1188, 7, 5, 0, 0, 1188, 1189, 7, 5, 0, 0, 1189, 1190, 7, 4, 0, 0, 1190, 1191, 7, 10, 0, 0, 1191, 1192, 7, 3, 0, 0, 1192, 124, 1, 0, 0, 0, 1193, 1194, 7, 15, 0, 0, 1194, 1195, 7, 14, 0, 0, 1195, 1196, 7, 5, 0, 0, 1196, 1197, 7, 5, 0, 0, 1197, 1198, 7, 4, 0, 0, 1198, 1199, 7, 10, 0, 0, 1199, 1200, 7, 3, 0, 0, 1200, 1201, 5, 95, 0, 0, 1201, 1202, 7, 1, 0, 0, 1202, 1203, 7, 0, 0, 0, 1203, 1204, 7, 3, 0, 0, 1204, 1205, 7, 4, 0, 0, 1205, 126, 1, 0, 0, 0, 1206, 1207, 7, 15, 0, 0, 1207, 1208, 7, 14, 0, 0, 1208, 1209, 7, 5, 0, 0, 1209, 1210, 7, 5, 0, 0, 1210, 1211, 7, 4, 0, 0, 1211, 1212, 7, 10, 0, 0, 1212, 1213, 7, 3, 0, 0, 1213, 1214, 5, 95, 0, 0, 1214, 1215, 7, 3, 0, 0, 1215, 1216, 7, 12, 0, 0, 1216, 1217, 7, 21, 0, 0, 1217, 1218, 7, 4, 0, 0, 1218, 128, 1, 0, 0, 0, 1219, 1220, 7, 15, 0, 0, 1220, 1221, 7, 14, 0, 0, 1221, 1222, 7, 5, 0, 0, 1222, 1223, 7, 5, 0, 0, 1223, 1224, 7, 4, 0, 0, 1224, 1225, 7, 10, 0, 0, 1225, 1226, 7, 3, 0, 0, 1226, 1227, 5, 95, 0, 0, 1227, 1228, 7, 3, 0, 0, 1228, 1229, 7, 12, 0, 0, 1229, 1230, 7, 21, 0, 0, 1230, 1231, 7, 4, 0, 0, 1231, 1232, 7, 9, 0, 0, 1232, 1233, 7, 3, 0, 0, 1233, 1234, 7, 0, 0, 0, 1234, 1235, 7, 21, 0, 0, 1235, 1236, 7, 22, 0, 0, 1236, 130, 1, 0, 0, 0, 1237, 1238, 7, 15, 0, 0, 1238, 1239, 7, 14, 0, 0, 1239, 1240, 7, 5, 0, 0, 1240, 1241, 7, 5, 0, 0, 1241, 1242, 7, 4, 0, 0, 1242, 1243, 7, 10, 0, 0, 1243, 1244, 7, 3, 0, 0, 1244, 1245, 5, 95, 0, 0, 1245, 1246, 7, 14, 0, 0, 1246, 1247, 7, 9, 0, 0, 1247, 1248, 7, 4, 0, 0, 1248, 1249, 7, 5, 0, 0, 1249, 132, 1, 0, 0, 0, 1250, 1251, 7, 1, 0, 0, 1251, 1252, 7, 0, 0, 0, 1252, 1253, 7, 8, 0, 0, 1253, 134, 1, 0, 0, 0, 1254, 1255, 7, 1, 0, 0, 1255, 1256, 7, 0, 0, 0, 1256, 1257, 7, 8, 0, 0, 1257, 1258, 7, 9, 0, 0, 1258, 136, 1, 0, 0, 0, 1259, 1260, 7, 1, 0, 0, 1260, 1261, 7, 0, 0, 0, 1261, 1262, 7, 8, 0, 0, 1262, 1263, 7, 17, 0, 0, 1263, 1264, 7, 2, 0, 0, 1264, 1265, 7, 8, 0, 0, 1265, 1266, 7, 4, 0, 0, 1266, 1267, 7, 0, 0, 0, 1267, 1268, 7, 5, 0, 0, 1268, 138, 1, 0, 0, 0, 1269, 1270, 7, 1, 0, 0, 1270, 1271, 7, 0, 0, 0, 1271, 1272, 7, 3, 0, 0, 1272, 1273, 7, 0, 0, 0, 1273, 140, 1, 0, 0, 0, 1274, 1275, 7, 1, 0, 0, 1275, 1276, 7, 0, 0, 0, 1276, 1277, 7, 3, 0, 0, 1277, 1278, 7, 4, 0, 0, 1278, 142, 1, 0, 0, 0, 1279, 1280, 7, 1, 0, 0, 1280, 1281, 7, 0, 0, 0, 1281, 1282, 7, 3, 0, 0, 1282, 1283, 7, 0, 0, 0, 1283, 1284, 7, 18, 0, 0, 1284, 1285, 7, 0, 0, 0, 1285, 1286, 7, 9, 0, 0, 1286, 1287, 7, 4, 0, 0, 1287, 144, 1, 0, 0, 0, 1288, 1289, 7, 1, 0, 0, 1289, 1290, 7, 0, 0, 0, 1290, 1291, 7, 3, 0, 0, 1291, 1292, 7, 0, 0, 0, 1292, 1293, 7, 18, 0, 0, 1293, 1294, 7, 0, 0, 0, 1294, 1295, 7, 9, 0, 0, 1295, 1296, 7, 4, 0, 0, 1296, 1297, 7, 9, 0, 0, 1297, 146, 1, 0, 0, 0, 1298, 1299, 7, 1, 0, 0, 1299, 1300, 7, 0, 0, 0, 1300, 1301, 7, 3, 0, 0, 1301, 1302, 7, 4, 0, 0, 1302, 1303, 7, 0, 0, 0, 1303, 1304, 7, 1, 0, 0, 1304, 1305, 7, 1, 0, 0, 1305, 148, 1, 0, 0, 0, 1306, 1307, 7, 1, 0, 0, 1307, 1308, 7, 0, 0, 0, 1308, 1309, 7, 3, 0, 0, 1309, 1310, 7, 4, 0, 0, 1310, 1311, 5, 95, 0, 0, 1311, 1312, 7, 0, 0, 0, 1312, 1313, 7, 1, 0, 0, 1313, 1314, 7, 1, 0, 0, 1314, 150, 1, 0, 0, 0, 1315, 1316, 7, 1, 0, 0, 1316, 1317, 7, 0, 0, 0, 1317, 1318, 7, 3, 0, 0, 1318, 1319, 7, 4, 0, 0, 1319, 1320, 7, 1, 0, 0, 1320, 1321, 7, 12, 0, 0, 1321, 1322, 7, 2, 0, 0, 1322, 1323, 7, 2, 0, 0, 1323, 152, 1, 0, 0, 0, 1324, 1325, 7, 1, 0, 0, 1325, 1326, 7, 0, 0, 0, 1326, 1327, 7, 3, 0, 0, 1327, 1328, 7, 4, 0, 0, 1328, 1329, 5, 95, 0, 0, 1329, 1330, 7, 1, 0, 0, 1330, 1331, 7, 12, 0, 0, 1331, 1332, 7, 2, 0, 0, 1332, 1333, 7, 2, 0, 0, 1333, 154, 1, 0, 0, 0, 1334, 1335, 7, 1, 0, 0, 1335, 1336, 7, 18, 0, 0, 1336, 1337, 7, 22, 0, 0, 1337, 1338, 7, 5, 0, 0, 1338, 1339, 7, 17, 0, 0, 1339, 1340, 7, 22, 0, 0, 1340, 1341, 7, 4, 0, 0, 1341, 1342, 7, 5, 0, 0, 1342, 1343, 7, 3, 0, 0, 1343, 1344, 7, 12, 0, 0, 1344, 1345, 7, 4, 0, 0, 1345, 1346, 7, 9, 0, 0, 1346, 156, 1, 0, 0, 0, 1347, 1348, 7, 1, 0, 0, 1348, 1349, 7, 4, 0, 0, 1349, 1350, 7, 15, 0, 0, 1350, 158, 1, 0, 0, 0, 1351, 1352, 7, 1, 0, 0, 1352, 1353, 7, 4, 0, 0, 1353, 1354, 7, 15, 0, 0, 1354, 1355, 7, 12, 0, 0, 1355, 1356, 7, 21, 0, 0, 1356, 1357, 7, 0, 0, 0, 1357, 1358, 7, 6, 0, 0, 1358, 160, 1, 0, 0, 0, 1359, 1360, 7, 1, 0, 0, 1360, 1361, 7, 4, 0, 0, 1361, 1362, 7, 15, 0, 0, 1362, 1363, 7, 6, 0, 0, 1363, 1364, 7, 0, 0, 0, 1364, 1365, 7, 5, 0, 0, 1365, 1366, 7, 4, 0, 0, 1366, 162, 1, 0, 0, 0, 1367, 1368, 7, 1, 0, 0, 1368, 1369, 7, 4, 0, 0, 1369, 1370, 7, 2, 0, 0, 1370, 1371, 7, 0, 0, 0, 1371, 1372, 7, 14, 0, 0, 1372, 1373, 7, 6, 0, 0, 1373, 1374, 7, 3, 0, 0, 1374, 164, 1, 0, 0, 0, 1375, 1376, 7, 1, 0, 0, 1376, 1377, 7, 4, 0, 0, 1377, 1378, 7, 2, 0, 0, 1378, 1379, 7, 12, 0, 0, 1379, 1380, 7, 10, 0, 0, 1380, 1381, 7, 4, 0, 0, 1381, 1382, 7, 1, 0, 0, 1382, 166, 1, 0, 0, 0, 1383, 1384, 7, 1, 0, 0, 1384, 1385, 7, 4, 0, 0, 1385, 1386, 7, 6, 0, 0, 1386, 1387, 7, 4, 0, 0, 1387, 1388, 7, 3, 0, 0, 1388, 1389, 7, 4, 0, 0, 1389, 168, 1, 0, 0, 0, 1390, 1391, 7, 1, 0, 0, 1391, 1392, 7, 4, 0, 0, 1392, 1393, 7, 6, 0, 0, 1393, 1394, 7, 12, 0, 0, 1394, 1395, 7, 21, 0, 0, 1395, 1396, 7, 12, 0, 0, 1396, 1397, 7, 3, 0, 0, 1397, 1398, 7, 4, 0, 0, 1398, 1399, 7, 1, 0, 0, 1399, 170, 1, 0, 0, 0, 1400, 1401, 7, 1, 0, 0, 1401, 1402, 7, 4, 0, 0, 1402, 1403, 7, 9, 0, 0, 1403, 1404, 7, 15, 0, 0, 1404, 172, 1, 0, 0, 0, 1405, 1406, 7, 1, 0, 0, 1406, 1407, 7, 4, 0, 0, 1407, 1408, 7, 9, 0, 0, 1408, 1409, 7, 15, 0, 0, 1409, 1410, 7, 5, 0, 0, 1410, 1411, 7, 12, 0, 0, 1411, 1412, 7, 18, 0, 0, 1412, 1413, 7, 4, 0, 0, 1413, 174, 1, 0, 0, 0, 1414, 1415, 7, 1, 0, 0, 1415, 1416, 7, 2, 0, 0, 1416, 1417, 7, 9, 0, 0, 1417, 176, 1, 0, 0, 0, 1418, 1419, 7, 1, 0, 0, 1419, 1420, 7, 12, 0, 0, 1420, 1421, 7, 5, 0, 0, 1421, 1422, 7, 4, 0, 0, 1422, 1423, 7, 15, 0, 0, 1423, 1424, 7, 3, 0, 0, 1424, 1425, 7, 17, 0, 0, 1425, 1426, 7, 5, 0, 0, 1426, 1427, 7, 12, 0, 0, 1427, 1428, 7, 4, 0, 0, 1428, 1429, 7, 9, 0, 0, 1429, 178, 1, 0, 0, 0, 1430, 1431, 7, 1, 0, 0, 1431, 1432, 7, 12, 0, 0, 1432, 1433, 7, 5, 0, 0, 1433, 1434, 7, 4, 0, 0, 1434, 1435, 7, 15, 0, 0, 1435, 1436, 7, 3, 0, 0, 1436, 1437, 7, 17, 0, 0, 1437, 1438, 7, 5, 0, 0, 1438, 1439, 7, 8, 0, 0, 1439, 180, 1, 0, 0, 0, 1440, 1441, 7, 1, 0, 0, 1441, 1442, 7, 12, 0, 0, 1442, 1443, 7, 9, 0, 0, 1443, 1444, 7, 0, 0, 0, 1444, 1445, 7, 18, 0, 0, 1445, 1446, 7, 6, 0, 0, 1446, 1447, 7, 4, 0, 0, 1447, 182, 1, 0, 0, 0, 1448, 1449, 7, 1, 0, 0, 1449, 1450, 7, 12, 0, 0, 1450, 1451, 7, 9, 0, 0, 1451, 1452, 7, 3, 0, 0, 1452, 1453, 7, 12, 0, 0, 1453, 1454, 7, 10, 0, 0, 1454, 1455, 7, 15, 0, 0, 1455, 1456, 7, 3, 0, 0, 1456, 184, 1, 0, 0, 0, 1457, 1458, 7, 1, 0, 0, 1458, 1459, 7, 12, 0, 0, 1459, 1460, 7, 9, 0, 0, 1460, 1461, 7, 3, 0, 0, 1461, 1462, 7, 5, 0, 0, 1462, 1463, 7, 12, 0, 0, 1463, 1464, 7, 18, 0, 0, 1464, 1465, 7, 14, 0, 0, 1465, 1466, 7, 3, 0, 0, 1466, 1467, 7, 4, 0, 0, 1467, 186, 1, 0, 0, 0, 1468, 1469, 7, 1, 0, 0, 1469, 1470, 7, 12, 0, 0, 1470, 1471, 7, 13, 0, 0, 1471, 188, 1, 0, 0, 0, 1472, 1473, 7, 1, 0, 0, 1473, 1474, 7, 17, 0, 0, 1474, 1475, 7, 14, 0, 0, 1475, 1476, 7, 18, 0, 0, 1476, 1477, 7, 6, 0, 0, 1477, 1478, 7, 4, 0, 0, 1478, 190, 1, 0, 0, 0, 1479, 1480, 7, 1, 0, 0, 1480, 1481, 7, 5, 0, 0, 1481, 1482, 7, 17, 0, 0, 1482, 1483, 7, 22, 0, 0, 1483, 192, 1, 0, 0, 0, 1484, 1485, 7, 4, 0, 0, 1485, 1486, 7, 6, 0, 0, 1486, 1487, 7, 9, 0, 0, 1487, 1488, 7, 4, 0, 0, 1488, 194, 1, 0, 0, 0, 1489, 1490, 7, 4, 0, 0, 1490, 1491, 7, 10, 0, 0, 1491, 1492, 7, 0, 0, 0, 1492, 1493, 7, 18, 0, 0, 1493, 1494, 7, 6, 0, 0, 1494, 1495, 7, 4, 0, 0, 1495, 196, 1, 0, 0, 0, 1496, 1497, 7, 4, 0, 0, 1497, 1498, 7, 10, 0, 0, 1498, 1499, 7, 1, 0, 0, 1499, 198, 1, 0, 0, 0, 1500, 1501, 7, 4, 0, 0, 1501, 1502, 7, 9, 0, 0, 1502, 1503, 7, 15, 0, 0, 1503, 1504, 7, 0, 0, 0, 1504, 1505, 7, 22, 0, 0, 1505, 1506, 7, 4, 0, 0, 1506, 200, 1, 0, 0, 0, 1507, 1508, 7, 4, 0, 0, 1508, 1509, 7, 9, 0, 0, 1509, 1510, 7, 15, 0, 0, 1510, 1511, 7, 0, 0, 0, 1511, 1512, 7, 22, 0, 0, 1512, 1513, 7, 4, 0, 0, 1513, 1514, 7, 1, 0, 0, 1514, 202, 1, 0, 0, 0, 1515, 1516, 7, 4, 0, 0, 1516, 1517, 7, 23, 0, 0, 1517, 1518, 7, 15, 0, 0, 1518, 1519, 7, 4, 0, 0, 1519, 1520, 7, 22, 0, 0, 1520, 1521, 7, 3, 0, 0, 1521, 204, 1, 0, 0, 0, 1522, 1523, 7, 4, 0, 0, 1523, 1524, 7, 23, 0, 0, 1524, 1525, 7, 15, 0, 0, 1525, 1526, 7, 16, 0, 0, 1526, 1527, 7, 0, 0, 0, 1527, 1528, 7, 10, 0, 0, 1528, 1529, 7, 19, 0, 0, 1529, 1530, 7, 4, 0, 0, 1530, 206, 1, 0, 0, 0, 1531, 1532, 7, 4, 0, 0, 1532, 1533, 7, 23, 0, 0, 1533, 1534, 7, 15, 0, 0, 1534, 1535, 7, 6, 0, 0, 1535, 1536, 7, 14, 0, 0, 1536, 1537, 7, 1, 0, 0, 1537, 1538, 7, 4, 0, 0, 1538, 208, 1, 0, 0, 0, 1539, 1540, 7, 4, 0, 0, 1540, 1541, 7, 23, 0, 0, 1541, 1542, 7, 12, 0, 0, 1542, 1543, 7, 9, 0, 0, 1543, 1544, 7, 3, 0, 0, 1544, 1545, 7, 9, 0, 0, 1545, 210, 1, 0, 0, 0, 1546, 1547, 7, 4, 0, 0, 1547, 1548, 7, 23, 0, 0, 1548, 1549, 7, 22, 0, 0, 1549, 1550, 7, 6, 0, 0, 1550, 1551, 7, 0, 0, 0, 1551, 1552, 7, 12, 0, 0, 1552, 1553, 7, 10, 0, 0, 1553, 212, 1, 0, 0, 0, 1554, 1555, 7, 4, 0, 0, 1555, 1556, 7, 23, 0, 0, 1556, 1557, 7, 22, 0, 0, 1557, 1558, 7, 17, 0, 0, 1558, 1559, 7, 5, 0, 0, 1559, 1560, 7, 3, 0, 0, 1560, 214, 1, 0, 0, 0, 1561, 1562, 7, 4, 0, 0, 1562, 1563, 7, 23, 0, 0, 1563, 1564, 7, 3, 0, 0, 1564, 1565, 7, 4, 0, 0, 1565, 1566, 7, 10, 0, 0, 1566, 1567, 7, 1, 0, 0, 1567, 1568, 7, 4, 0, 0, 1568, 1569, 7, 1, 0, 0, 1569, 216, 1, 0, 0, 0, 1570, 1571, 7, 4, 0, 0, 1571, 1572, 7, 23, 0, 0, 1572, 1573, 7, 3, 0, 0, 1573, 1574, 7, 4, 0, 0, 1574, 1575, 7, 5, 0, 0, 1575, 1576, 7, 10, 0, 0, 1576, 1577, 7, 0, 0, 0, 1577, 1578, 7, 6, 0, 0, 1578, 218, 1, 0, 0, 0, 1579, 1580, 7, 4, 0, 0, 1580, 1581, 7, 23, 0, 0, 1581, 1582, 7, 3, 0, 0, 1582, 1583, 7, 5, 0, 0, 1583, 1584, 7, 0, 0, 0, 1584, 1585, 7, 15, 0, 0, 1585, 1586, 7, 3, 0, 0, 1586, 220, 1, 0, 0, 0, 1587, 1588, 7, 2, 0, 0, 1588, 1589, 7, 0, 0, 0, 1589, 1590, 7, 6, 0, 0, 1590, 1591, 7, 9, 0, 0, 1591, 1592, 7, 4, 0, 0, 1592, 222, 1, 0, 0, 0, 1593, 1594, 7, 2, 0, 0, 1594, 1595, 7, 4, 0, 0, 1595, 1596, 7, 3, 0, 0, 1596, 1597, 7, 15, 0, 0, 1597, 1598, 7, 16, 0, 0, 1598, 224, 1, 0, 0, 0, 1599, 1600, 7, 2, 0, 0, 1600, 1601, 7, 12, 0, 0, 1601, 1602, 7, 4, 0, 0, 1602, 1603, 7, 6, 0, 0, 1603, 1604, 7, 1, 0, 0, 1604, 1605, 7, 9, 0, 0, 1605, 226, 1, 0, 0, 0, 1606, 1607, 7, 2, 0, 0, 1607, 1608, 7, 12, 0, 0, 1608, 1609, 7, 6, 0, 0, 1609, 1610, 7, 3, 0, 0, 1610, 1611, 7, 4, 0, 0, 1611, 1612, 7, 5, 0, 0, 1612, 228, 1, 0, 0, 0, 1613, 1614, 7, 2, 0, 0, 1614, 1615, 7, 12, 0, 0, 1615, 1616, 7, 6, 0, 0, 1616, 1617, 7, 4, 0, 0, 1617, 1618, 7, 2, 0, 0, 1618, 1619, 7, 17, 0, 0, 1619, 1620, 7, 5, 0, 0, 1620, 1621, 7, 21, 0, 0, 1621, 1622, 7, 0, 0, 0, 1622, 1623, 7, 3, 0, 0, 1623, 230, 1, 0, 0, 0, 1624, 1625, 7, 2, 0, 0, 1625, 1626, 7, 12, 0, 0, 1626, 1627, 7, 5, 0, 0, 1627, 1628, 7, 9, 0, 0, 1628, 1629, 7, 3, 0, 0, 1629, 232, 1, 0, 0, 0, 1630, 1631, 7, 2, 0, 0, 1631, 1632, 7, 6, 0, 0, 1632, 1633, 7, 17, 0, 0, 1633, 1634, 7, 0, 0, 0, 1634, 1635, 7, 3, 0, 0, 1635, 234, 1, 0, 0, 0, 1636, 1637, 7, 2, 0, 0, 1637, 1638, 7, 17, 0, 0, 1638, 1639, 7, 6, 0, 0, 1639, 1640, 7, 6, 0, 0, 1640, 1641, 7, 17, 0, 0, 1641, 1642, 7, 7, 0, 0, 1642, 1643, 7, 12, 0, 0, 1643, 1644, 7, 10, 0, 0, 1644, 1645, 7, 19, 0, 0, 1645, 236, 1, 0, 0, 0, 1646, 1647, 7, 2, 0, 0, 1647, 1648, 7, 17, 0, 0, 1648, 1649, 7, 5, 0, 0, 1649, 238, 1, 0, 0, 0, 1650, 1651, 7, 2, 0, 0, 1651, 1652, 7, 17, 0, 0, 1652, 1653, 7, 5, 0, 0, 1653, 1654, 7, 4, 0, 0, 1654, 1655, 7, 12, 0, 0, 1655, 1656, 7, 19, 0, 0, 1656, 1657, 7, 10, 0, 0, 1657, 240, 1, 0, 0, 0, 1658, 1659, 7, 2, 0, 0, 1659, 1660, 7, 17, 0, 0, 1660, 1661, 7, 5, 0, 0, 1661, 1662, 7, 21, 0, 0, 1662, 1663, 7, 0, 0, 0, 1663, 1664, 7, 3, 0, 0, 1664, 242, 1, 0, 0, 0, 1665, 1666, 7, 2, 0, 0, 1666, 1667, 7, 17, 0, 0, 1667, 1668, 7, 5, 0, 0, 1668, 1669, 7, 21, 0, 0, 1669, 1670, 7, 0, 0, 0, 1670, 1671, 7, 3, 0, 0, 1671, 1672, 7, 3, 0, 0, 1672, 1673, 7, 4, 0, 0, 1673, 1674, 7, 1, 0, 0, 1674, 244, 1, 0, 0, 0, 1675, 1676, 7, 2, 0, 0, 1676, 1677, 7, 5, 0, 0, 1677, 1678, 7, 17, 0, 0, 1678, 1679, 7, 21, 0, 0, 1679, 246, 1, 0, 0, 0, 1680, 1681, 7, 2, 0, 0, 1681, 1682, 7, 14, 0, 0, 1682, 1683, 7, 6, 0, 0, 1683, 1684, 7, 6, 0, 0, 1684, 248, 1, 0, 0, 0, 1685, 1686, 7, 2, 0, 0, 1686, 1687, 7, 14, 0, 0, 1687, 1688, 7, 10, 0, 0, 1688, 1689, 7, 15, 0, 0, 1689, 1690, 7, 3, 0, 0, 1690, 1691, 7, 12, 0, 0, 1691, 1692, 7, 17, 0, 0, 1692, 1693, 7, 10, 0, 0, 1693, 250, 1, 0, 0, 0, 1694, 1695, 7, 2, 0, 0, 1695, 1696, 7, 14, 0, 0, 1696, 1697, 7, 10, 0, 0, 1697, 1698, 7, 15, 0, 0, 1698, 1699, 7, 3, 0, 0, 1699, 1700, 7, 12, 0, 0, 1700, 1701, 7, 17, 0, 0, 1701, 1702, 7, 10, 0, 0, 1702, 1703, 7, 9, 0, 0, 1703, 252, 1, 0, 0, 0, 1704, 1705, 7, 19, 0, 0, 1705, 1706, 7, 4, 0, 0, 1706, 1707, 7, 10, 0, 0, 1707, 1708, 7, 4, 0, 0, 1708, 1709, 7, 5, 0, 0, 1709, 1710, 7, 0, 0, 0, 1710, 1711, 7, 3, 0, 0, 1711, 1712, 7, 4, 0, 0, 1712, 1713, 7, 1, 0, 0, 1713, 254, 1, 0, 0, 0, 1714, 1715, 7, 19, 0, 0, 1715, 1716, 7, 6, 0, 0, 1716, 1717, 7, 17, 0, 0, 1717, 1718, 7, 18, 0, 0, 1718, 1719, 7, 0, 0, 0, 1719, 1720, 7, 6, 0, 0, 1720, 256, 1, 0, 0, 0, 1721, 1722, 7, 19, 0, 0, 1722, 1723, 7, 5, 0, 0, 1723, 1724, 7, 0, 0, 0, 1724, 1725, 7, 10, 0, 0, 1725, 1726, 7, 3, 0, 0, 1726, 258, 1, 0, 0, 0, 1727, 1728, 7, 19, 0, 0, 1728, 1729, 7, 5, 0, 0, 1729, 1730, 7, 17, 0, 0, 1730, 1731, 7, 14, 0, 0, 1731, 1732, 7, 22, 0, 0, 1732, 260, 1, 0, 0, 0, 1733, 1734, 7, 19, 0, 0, 1734, 1735, 7, 5, 0, 0, 1735, 1736, 7, 17, 0, 0, 1736, 1737, 7, 14, 0, 0, 1737, 1738, 7, 22, 0, 0, 1738, 1739, 7, 12, 0, 0, 1739, 1740, 7, 10, 0, 0, 1740, 1741, 7, 19, 0, 0, 1741, 262, 1, 0, 0, 0, 1742, 1743, 7, 16, 0, 0, 1743, 1744, 7, 0, 0, 0, 1744, 1745, 7, 13, 0, 0, 1745, 1746, 7, 12, 0, 0, 1746, 1747, 7, 10, 0, 0, 1747, 1748, 7, 19, 0, 0, 1748, 264, 1, 0, 0, 0, 1749, 1750, 7, 23, 0, 0, 1750, 266, 1, 0, 0, 0, 1751, 1752, 7, 16, 0, 0, 1752, 1753, 7, 17, 0, 0, 1753, 1754, 7, 14, 0, 0, 1754, 1755, 7, 5, 0, 0, 1755, 268, 1, 0, 0, 0, 1756, 1757, 7, 16, 0, 0, 1757, 1758, 7, 17, 0, 0, 1758, 1759, 7, 14, 0, 0, 1759, 1760, 7, 5, 0, 0, 1760, 1761, 7, 9, 0, 0, 1761, 270, 1, 0, 0, 0, 1762, 1763, 7, 12, 0, 0, 1763, 1764, 7, 1, 0, 0, 1764, 1765, 7, 4, 0, 0, 1765, 1766, 7, 10, 0, 0, 1766, 1767, 7, 3, 0, 0, 1767, 1768, 7, 12, 0, 0, 1768, 1769, 7, 2, 0, 0, 1769, 1770, 7, 12, 0, 0, 1770, 1771, 7, 4, 0, 0, 1771, 1772, 7, 5, 0, 0, 1772, 272, 1, 0, 0, 0, 1773, 1774, 7, 12, 0, 0, 1774, 1775, 7, 2, 0, 0, 1775, 274, 1, 0, 0, 0, 1776, 1777, 7, 12, 0, 0, 1777, 1778, 7, 19, 0, 0, 1778, 1779, 7, 10, 0, 0, 1779, 1780, 7, 17, 0, 0, 1780, 1781, 7, 5, 0, 0, 1781, 1782, 7, 4, 0, 0, 1782, 276, 1, 0, 0, 0, 1783, 1784, 7, 12, 0, 0, 1784, 1785, 7, 21, 0, 0, 1785, 1786, 7, 22, 0, 0, 1786, 1787, 7, 17, 0, 0, 1787, 1788, 7, 5, 0, 0, 1788, 1789, 7, 3, 0, 0, 1789, 278, 1, 0, 0, 0, 1790, 1791, 7, 12, 0, 0, 1791, 1792, 7, 10, 0, 0, 1792, 280, 1, 0, 0, 0, 1793, 1794, 7, 12, 0, 0, 1794, 1795, 7, 10, 0, 0, 1795, 1796, 7, 15, 0, 0, 1796, 1797, 7, 6, 0, 0, 1797, 1798, 7, 14, 0, 0, 1798, 1799, 7, 1, 0, 0, 1799, 1800, 7, 4, 0, 0, 1800, 282, 1, 0, 0, 0, 1801, 1802, 7, 12, 0, 0, 1802, 1803, 7, 10, 0, 0, 1803, 1804, 7, 1, 0, 0, 1804, 1805, 7, 4, 0, 0, 1805, 1806, 7, 23, 0, 0, 1806, 284, 1, 0, 0, 0, 1807, 1808, 7, 12, 0, 0, 1808, 1809, 7, 10, 0, 0, 1809, 1810, 7, 1, 0, 0, 1810, 1811, 7, 4, 0, 0, 1811, 1812, 7, 23, 0, 0, 1812, 1813, 7, 4, 0, 0, 1813, 1814, 7, 9, 0, 0, 1814, 286, 1, 0, 0, 0, 1815, 1816, 7, 12, 0, 0, 1816, 1817, 7, 10, 0, 0, 1817, 1818, 7, 10, 0, 0, 1818, 1819, 7, 4, 0, 0, 1819, 1820, 7, 5, 0, 0, 1820, 288, 1, 0, 0, 0, 1821, 1822, 7, 12, 0, 0, 1822, 1823, 7, 10, 0, 0, 1823, 1824, 7, 22, 0, 0, 1824, 1825, 7, 0, 0, 0, 1825, 1826, 7, 3, 0, 0, 1826, 1827, 7, 16, 0, 0, 1827, 290, 1, 0, 0, 0, 1828, 1829, 7, 12, 0, 0, 1829, 1830, 7, 10, 0, 0, 1830, 1831, 7, 22, 0, 0, 1831, 1832, 7, 14, 0, 0, 1832, 1833, 7, 3, 0, 0, 1833, 1834, 7, 2, 0, 0, 1834, 1835, 7, 17, 0, 0, 1835, 1836, 7, 5, 0, 0, 1836, 1837, 7, 21, 0, 0, 1837, 1838, 7, 0, 0, 0, 1838, 1839, 7, 3, 0, 0, 1839, 292, 1, 0, 0, 0, 1840, 1841, 7, 12, 0, 0, 1841, 1842, 7, 10, 0, 0, 1842, 1843, 7, 9, 0, 0, 1843, 1844, 7, 4, 0, 0, 1844, 1845, 7, 5, 0, 0, 1845, 1846, 7, 3, 0, 0, 1846, 294, 1, 0, 0, 0, 1847, 1848, 7, 12, 0, 0, 1848, 1849, 7, 10, 0, 0, 1849, 1850, 7, 3, 0, 0, 1850, 1851, 7, 4, 0, 0, 1851, 1852, 7, 5, 0, 0, 1852, 1853, 7, 9, 0, 0, 1853, 1854, 7, 4, 0, 0, 1854, 1855, 7, 15, 0, 0, 1855, 1856, 7, 3, 0, 0, 1856, 296, 1, 0, 0, 0, 1857, 1858, 7, 12, 0, 0, 1858, 1859, 7, 10, 0, 0, 1859, 1860, 7, 3, 0, 0, 1860, 1861, 7, 4, 0, 0, 1861, 1862, 7, 5, 0, 0, 1862, 1863, 7, 13, 0, 0, 1863, 1864, 7, 0, 0, 0, 1864, 1865, 7, 6, 0, 0, 1865, 298, 1, 0, 0, 0, 1866, 1867, 7, 12, 0, 0, 1867, 1868, 7, 10, 0, 0, 1868, 1869, 7, 3, 0, 0, 1869, 300, 1, 0, 0, 0, 1870, 1871, 7, 12, 0, 0, 1871, 1872, 7, 10, 0, 0, 1872, 1873, 7, 3, 0, 0, 1873, 1874, 7, 4, 0, 0, 1874, 1875, 7, 19, 0, 0, 1875, 1876, 7, 4, 0, 0, 1876, 1877, 7, 5, 0, 0, 1877, 302, 1, 0, 0, 0, 1878, 1879, 7, 12, 0, 0, 1879, 1880, 7, 10, 0, 0, 1880, 1881, 7, 3, 0, 0, 1881, 1882, 7, 17, 0, 0, 1882, 304, 1, 0, 0, 0, 1883, 1884, 7, 12, 0, 0, 1884, 1885, 7, 9, 0, 0, 1885, 306, 1, 0, 0, 0, 1886, 1887, 7, 12, 0, 0, 1887, 1888, 7, 3, 0, 0, 1888, 1889, 7, 4, 0, 0, 1889, 1890, 7, 21, 0, 0, 1890, 1891, 7, 9, 0, 0, 1891, 308, 1, 0, 0, 0, 1892, 1893, 7, 24, 0, 0, 1893, 1894, 7, 17, 0, 0, 1894, 1895, 7, 12, 0, 0, 1895, 1896, 7, 10, 0, 0, 1896, 310, 1, 0, 0, 0, 1897, 1898, 7, 20, 0, 0, 1898, 1899, 7, 4, 0, 0, 1899, 1900, 7, 8, 0, 0, 1900, 1901, 7, 9, 0, 0, 1901, 312, 1, 0, 0, 0, 1902, 1903, 7, 6, 0, 0, 1903, 1904, 7, 0, 0, 0, 1904, 1905, 7, 9, 0, 0, 1905, 1906, 7, 3, 0, 0, 1906, 314, 1, 0, 0, 0, 1907, 1908, 7, 6, 0, 0, 1908, 1909, 7, 0, 0, 0, 1909, 1910, 7, 3, 0, 0, 1910, 1911, 7, 4, 0, 0, 1911, 1912, 7, 5, 0, 0, 1912, 1913, 7, 0, 0, 0, 1913, 1914, 7, 6, 0, 0, 1914, 316, 1, 0, 0, 0, 1915, 1916, 7, 6, 0, 0, 1916, 1917, 7, 0, 0, 0, 1917, 1918, 7, 11, 0, 0, 1918, 1919, 7, 8, 0, 0, 1919, 318, 1, 0, 0, 0, 1920, 1921, 7, 6, 0, 0, 1921, 1922, 7, 4, 0, 0, 1922, 1923, 7, 0, 0, 0, 1923, 1924, 7, 1, 0, 0, 1924, 1925, 7, 12, 0, 0, 1925, 1926, 7, 10, 0, 0, 1926, 1927, 7, 19, 0, 0, 1927, 320, 1, 0, 0, 0, 1928, 1929, 7, 6, 0, 0, 1929, 1930, 7, 4, 0, 0, 1930, 1931, 7, 2, 0, 0, 1931, 1932, 7, 3, 0, 0, 1932, 322, 1, 0, 0, 0, 1933, 1934, 7, 6, 0, 0, 1934, 1935, 7, 12, 0, 0, 1935, 1936, 7, 20, 0, 0, 1936, 1937, 7, 4, 0, 0, 1937, 324, 1, 0, 0, 0, 1938, 1939, 7, 12, 0, 0, 1939, 1940, 7, 6, 0, 0, 1940, 1941, 7, 12, 0, 0, 1941, 1942, 7, 20, 0, 0, 1942, 1943, 7, 4, 0, 0, 1943, 326, 1, 0, 0, 0, 1944, 1945, 7, 6, 0, 0, 1945, 1946, 7, 12, 0, 0, 1946, 1947, 7, 21, 0, 0, 1947, 1948, 7, 12, 0, 0, 1948, 1949, 7, 3, 0, 0, 1949, 328, 1, 0, 0, 0, 1950, 1951, 7, 6, 0, 0, 1951, 1952, 7, 12, 0, 0, 1952, 1953, 7, 10, 0, 0, 1953, 1954, 7, 4, 0, 0, 1954, 1955, 7, 9, 0, 0, 1955, 330, 1, 0, 0, 0, 1956, 1957, 7, 6, 0, 0, 1957, 1958, 7, 12, 0, 0, 1958, 1959, 7, 9, 0, 0, 1959, 1960, 7, 3, 0, 0, 1960, 332, 1, 0, 0, 0, 1961, 1962, 7, 6, 0, 0, 1962, 1963, 7, 17, 0, 0, 1963, 1964, 7, 0, 0, 0, 1964, 1965, 7, 1, 0, 0, 1965, 334, 1, 0, 0, 0, 1966, 1967, 7, 6, 0, 0, 1967, 1968, 7, 17, 0, 0, 1968, 1969, 7, 15, 0, 0, 1969, 1970, 7, 0, 0, 0, 1970, 1971, 7, 6, 0, 0, 1971, 336, 1, 0, 0, 0, 1972, 1973, 7, 6, 0, 0, 1973, 1974, 7, 17, 0, 0, 1974, 1975, 7, 15, 0, 0, 1975, 1976, 7, 0, 0, 0, 1976, 1977, 7, 3, 0, 0, 1977, 1978, 7, 12, 0, 0, 1978, 1979, 7, 17, 0, 0, 1979, 1980, 7, 10, 0, 0, 1980, 338, 1, 0, 0, 0, 1981, 1982, 7, 6, 0, 0, 1982, 1983, 7, 17, 0, 0, 1983, 1984, 7, 15, 0, 0, 1984, 1985, 7, 20, 0, 0, 1985, 340, 1, 0, 0, 0, 1986, 1987, 7, 6, 0, 0, 1987, 1988, 7, 17, 0, 0, 1988, 1989, 7, 15, 0, 0, 1989, 1990, 7, 20, 0, 0, 1990, 1991, 7, 9, 0, 0, 1991, 342, 1, 0, 0, 0, 1992, 1993, 7, 6, 0, 0, 1993, 1994, 7, 17, 0, 0, 1994, 1995, 7, 19, 0, 0, 1995, 1996, 7, 12, 0, 0, 1996, 1997, 7, 15, 0, 0, 1997, 1998, 7, 0, 0, 0, 1998, 1999, 7, 6, 0, 0, 1999, 344, 1, 0, 0, 0, 2000, 2001, 7, 6, 0, 0, 2001, 2002, 7, 17, 0, 0, 2002, 2003, 7, 10, 0, 0, 2003, 2004, 7, 19, 0, 0, 2004, 346, 1, 0, 0, 0, 2005, 2006, 7, 21, 0, 0, 2006, 2007, 7, 0, 0, 0, 2007, 2008, 7, 15, 0, 0, 2008, 2009, 7, 5, 0, 0, 2009, 2010, 7, 17, 0, 0, 2010, 348, 1, 0, 0, 0, 2011, 2012, 7, 21, 0, 0, 2012, 2013, 7, 0, 0, 0, 2013, 2014, 7, 3, 0, 0, 2014, 2015, 7, 4, 0, 0, 2015, 2016, 7, 5, 0, 0, 2016, 2017, 7, 12, 0, 0, 2017, 2018, 7, 0, 0, 0, 2018, 2019, 7, 6, 0, 0, 2019, 2020, 7, 12, 0, 0, 2020, 2021, 7, 11, 0, 0, 2021, 2022, 7, 4, 0, 0, 2022, 2023, 7, 1, 0, 0, 2023, 350, 1, 0, 0, 0, 2024, 2025, 7, 21, 0, 0, 2025, 2026, 7, 0, 0, 0, 2026, 2027, 7, 22, 0, 0, 2027, 352, 1, 0, 0, 0, 2028, 2029, 7, 21, 0, 0, 2029, 2030, 7, 0, 0, 0, 2030, 2031, 7, 3, 0, 0, 2031, 2032, 7, 15, 0, 0, 2032, 2033, 7, 16, 0, 0, 2033, 2034, 7, 4, 0, 0, 2034, 2035, 7, 1, 0, 0, 2035, 354, 1, 0, 0, 0, 2036, 2037, 7, 21, 0, 0, 2037, 2038, 7, 4, 0, 0, 2038, 2039, 7, 5, 0, 0, 2039, 2040, 7, 19, 0, 0, 2040, 2041, 7, 4, 0, 0, 2041, 356, 1, 0, 0, 0, 2042, 2043, 7, 21, 0, 0, 2043, 2044, 7, 12, 0, 0, 2044, 2045, 7, 15, 0, 0, 2045, 2046, 7, 5, 0, 0, 2046, 2047, 7, 17, 0, 0, 2047, 2048, 7, 9, 0, 0, 2048, 2049, 7, 4, 0, 0, 2049, 2050, 7, 15, 0, 0, 2050, 2051, 7, 17, 0, 0, 2051, 2052, 7, 10, 0, 0, 2052, 2053, 7, 1, 0, 0, 2053, 358, 1, 0, 0, 0, 2054, 2055, 7, 21, 0, 0, 2055, 2056, 7, 12, 0, 0, 2056, 2057, 7, 15, 0, 0, 2057, 2058, 7, 5, 0, 0, 2058, 2059, 7, 17, 0, 0, 2059, 2060, 7, 9, 0, 0, 2060, 2061, 7, 4, 0, 0, 2061, 2062, 7, 15, 0, 0, 2062, 2063, 7, 17, 0, 0, 2063, 2064, 7, 10, 0, 0, 2064, 2065, 7, 1, 0, 0, 2065, 2066, 7, 9, 0, 0, 2066, 360, 1, 0, 0, 0, 2067, 2068, 7, 21, 0, 0, 2068, 2069, 7, 12, 0, 0, 2069, 2070, 7, 6, 0, 0, 2070, 2071, 7, 6, 0, 0, 2071, 2072, 7, 12, 0, 0, 2072, 2073, 7, 9, 0, 0, 2073, 2074, 7, 4, 0, 0, 2074, 2075, 7, 15, 0, 0, 2075, 2076, 7, 17, 0, 0, 2076, 2077, 7, 10, 0, 0, 2077, 2078, 7, 1, 0, 0, 2078, 362, 1, 0, 0, 0, 2079, 2080, 7, 21, 0, 0, 2080, 2081, 7, 12, 0, 0, 2081, 2082, 7, 6, 0, 0, 2082, 2083, 7, 6, 0, 0, 2083, 2084, 7, 12, 0, 0, 2084, 2085, 7, 9, 0, 0, 2085, 2086, 7, 4, 0, 0, 2086, 2087, 7, 15, 0, 0, 2087, 2088, 7, 17, 0, 0, 2088, 2089, 7, 10, 0, 0, 2089, 2090, 7, 1, 0, 0, 2090, 2091, 7, 9, 0, 0, 2091, 364, 1, 0, 0, 0, 2092, 2093, 7, 21, 0, 0, 2093, 2094, 7, 12, 0, 0, 2094, 2095, 7, 10, 0, 0, 2095, 2096, 7, 14, 0, 0, 2096, 2097, 7, 3, 0, 0, 2097, 2098, 7, 4, 0, 0, 2098, 366, 1, 0, 0, 0, 2099, 2100, 7, 21, 0, 0, 2100, 2101, 7, 12, 0, 0, 2101, 2102, 7, 10, 0, 0, 2102, 2103, 7, 14, 0, 0, 2103, 2104, 7, 3, 0, 0, 2104, 2105, 7, 4, 0, 0, 2105, 2106, 7, 9, 0, 0, 2106, 368, 1, 0, 0, 0, 2107, 2108, 7, 21, 0, 0, 2108, 2109, 7, 17, 0, 0, 2109, 2110, 7, 10, 0, 0, 2110, 2111, 7, 3, 0, 0, 2111, 2112, 7, 16, 0, 0, 2112, 370, 1, 0, 0, 0, 2113, 2114, 7, 21, 0, 0, 2114, 2115, 7, 17, 0, 0, 2115, 2116, 7, 10, 0, 0, 2116, 2117, 7, 3, 0, 0, 2117, 2118, 7, 16, 0, 0, 2118, 2119, 7, 9, 0, 0, 2119, 372, 1, 0, 0, 0, 2120, 2121, 7, 21, 0, 0, 2121, 2122, 7, 9, 0, 0, 2122, 2123, 7, 15, 0, 0, 2123, 2124, 7, 20, 0, 0, 2124, 374, 1, 0, 0, 0, 2125, 2126, 7, 10, 0, 0, 2126, 2127, 7, 0, 0, 0, 2127, 2128, 7, 21, 0, 0, 2128, 2129, 7, 4, 0, 0, 2129, 376, 1, 0, 0, 0, 2130, 2131, 7, 10, 0, 0, 2131, 2132, 7, 0, 0, 0, 2132, 2133, 7, 21, 0, 0, 2133, 2134, 7, 4, 0, 0, 2134, 2135, 7, 9, 0, 0, 2135, 2136, 7, 22, 0, 0, 2136, 2137, 7, 0, 0, 0, 2137, 2138, 7, 15, 0, 0, 2138, 2139, 7, 4, 0, 0, 2139, 378, 1, 0, 0, 0, 2140, 2141, 7, 10, 0, 0, 2141, 2142, 7, 0, 0, 0, 2142, 2143, 7, 21, 0, 0, 2143, 2144, 7, 4, 0, 0, 2144, 2145, 7, 9, 0, 0, 2145, 2146, 7, 22, 0, 0, 2146, 2147, 7, 0, 0, 0, 2147, 2148, 7, 15, 0, 0, 2148, 2149, 7, 4, 0, 0, 2149, 2150, 7, 9, 0, 0, 2150, 380, 1, 0, 0, 0, 2151, 2152, 7, 10, 0, 0, 2152, 2153, 7, 0, 0, 0, 2153, 2154, 7, 10, 0, 0, 2154, 2155, 7, 17, 0, 0, 2155, 2156, 7, 9, 0, 0, 2156, 2157, 7, 4, 0, 0, 2157, 2158, 7, 15, 0, 0, 2158, 2159, 7, 17, 0, 0, 2159, 2160, 7, 10, 0, 0, 2160, 2161, 7, 1, 0, 0, 2161, 382, 1, 0, 0, 0, 2162, 2163, 7, 10, 0, 0, 2163, 2164, 7, 0, 0, 0, 2164, 2165, 7, 10, 0, 0, 2165, 2166, 7, 17, 0, 0, 2166, 2167, 7, 9, 0, 0, 2167, 2168, 7, 4, 0, 0, 2168, 2169, 7, 15, 0, 0, 2169, 2170, 7, 17, 0, 0, 2170, 2171, 7, 10, 0, 0, 2171, 2172, 7, 1, 0, 0, 2172, 2173, 7, 9, 0, 0, 2173, 384, 1, 0, 0, 0, 2174, 2175, 7, 10, 0, 0, 2175, 2176, 7, 0, 0, 0, 2176, 2177, 7, 3, 0, 0, 2177, 2178, 7, 14, 0, 0, 2178, 2179, 7, 5, 0, 0, 2179, 2180, 7, 0, 0, 0, 2180, 2181, 7, 6, 0, 0, 2181, 386, 1, 0, 0, 0, 2182, 2183, 7, 10, 0, 0, 2183, 2184, 7, 17, 0, 0, 2184, 388, 1, 0, 0, 0, 2185, 2186, 7, 10, 0, 0, 2186, 2187, 7, 17, 0, 0, 2187, 2188, 7, 9, 0, 0, 2188, 2189, 7, 15, 0, 0, 2189, 2190, 7, 0, 0, 0, 2190, 2191, 7, 10, 0, 0, 2191, 390, 1, 0, 0, 0, 2192, 2193, 7, 10, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 2195, 7, 3, 0, 0, 2195, 392, 1, 0, 0, 0, 2196, 2197, 7, 10, 0, 0, 2197, 2198, 7, 14, 0, 0, 2198, 2199, 7, 6, 0, 0, 2199, 2200, 7, 6, 0, 0, 2200, 394, 1, 0, 0, 0, 2201, 2202, 7, 10, 0, 0, 2202, 2203, 7, 14, 0, 0, 2203, 2204, 7, 6, 0, 0, 2204, 2205, 7, 6, 0, 0, 2205, 2206, 7, 9, 0, 0, 2206, 396, 1, 0, 0, 0, 2207, 2208, 7, 10, 0, 0, 2208, 2209, 7, 14, 0, 0, 2209, 2210, 7, 21, 0, 0, 2210, 2211, 7, 4, 0, 0, 2211, 2212, 7, 5, 0, 0, 2212, 2213, 7, 12, 0, 0, 2213, 2214, 7, 15, 0, 0, 2214, 398, 1, 0, 0, 0, 2215, 2216, 7, 17, 0, 0, 2216, 2217, 7, 2, 0, 0, 2217, 400, 1, 0, 0, 0, 2218, 2219, 7, 17, 0, 0, 2219, 2220, 7, 2, 0, 0, 2220, 2221, 7, 2, 0, 0, 2221, 2222, 7, 9, 0, 0, 2222, 2223, 7, 4, 0, 0, 2223, 2224, 7, 3, 0, 0, 2224, 402, 1, 0, 0, 0, 2225, 2226, 7, 17, 0, 0, 2226, 2227, 7, 10, 0, 0, 2227, 404, 1, 0, 0, 0, 2228, 2229, 7, 17, 0, 0, 2229, 2230, 7, 10, 0, 0, 2230, 2231, 7, 6, 0, 0, 2231, 2232, 7, 8, 0, 0, 2232, 406, 1, 0, 0, 0, 2233, 2234, 7, 17, 0, 0, 2234, 2235, 7, 22, 0, 0, 2235, 2236, 7, 3, 0, 0, 2236, 2237, 7, 12, 0, 0, 2237, 2238, 7, 21, 0, 0, 2238, 2239, 7, 12, 0, 0, 2239, 2240, 7, 11, 0, 0, 2240, 2241, 7, 4, 0, 0, 2241, 408, 1, 0, 0, 0, 2242, 2243, 7, 17, 0, 0, 2243, 2244, 7, 22, 0, 0, 2244, 2245, 7, 3, 0, 0, 2245, 2246, 7, 12, 0, 0, 2246, 2247, 7, 17, 0, 0, 2247, 2248, 7, 10, 0, 0, 2248, 410, 1, 0, 0, 0, 2249, 2250, 7, 17, 0, 0, 2250, 2251, 7, 22, 0, 0, 2251, 2252, 7, 3, 0, 0, 2252, 2253, 7, 12, 0, 0, 2253, 2254, 7, 17, 0, 0, 2254, 2255, 7, 10, 0, 0, 2255, 2256, 7, 9, 0, 0, 2256, 412, 1, 0, 0, 0, 2257, 2258, 7, 17, 0, 0, 2258, 2259, 7, 5, 0, 0, 2259, 414, 1, 0, 0, 0, 2260, 2261, 7, 17, 0, 0, 2261, 2262, 7, 5, 0, 0, 2262, 2263, 7, 1, 0, 0, 2263, 2264, 7, 4, 0, 0, 2264, 2265, 7, 5, 0, 0, 2265, 416, 1, 0, 0, 0, 2266, 2267, 7, 17, 0, 0, 2267, 2268, 7, 14, 0, 0, 2268, 2269, 7, 3, 0, 0, 2269, 418, 1, 0, 0, 0, 2270, 2271, 7, 17, 0, 0, 2271, 2272, 7, 14, 0, 0, 2272, 2273, 7, 3, 0, 0, 2273, 2274, 7, 4, 0, 0, 2274, 2275, 7, 5, 0, 0, 2275, 420, 1, 0, 0, 0, 2276, 2277, 7, 17, 0, 0, 2277, 2278, 7, 14, 0, 0, 2278, 2279, 7, 3, 0, 0, 2279, 2280, 7, 22, 0, 0, 2280, 2281, 7, 14, 0, 0, 2281, 2282, 7, 3, 0, 0, 2282, 2283, 7, 2, 0, 0, 2283, 2284, 7, 17, 0, 0, 2284, 2285, 7, 5, 0, 0, 2285, 2286, 7, 21, 0, 0, 2286, 2287, 7, 0, 0, 0, 2287, 2288, 7, 3, 0, 0, 2288, 422, 1, 0, 0, 0, 2289, 2290, 7, 17, 0, 0, 2290, 2291, 7, 13, 0, 0, 2291, 2292, 7, 4, 0, 0, 2292, 2293, 7, 5, 0, 0, 2293, 424, 1, 0, 0, 0, 2294, 2295, 7, 17, 0, 0, 2295, 2296, 7, 13, 0, 0, 2296, 2297, 7, 4, 0, 0, 2297, 2298, 7, 5, 0, 0, 2298, 2299, 7, 6, 0, 0, 2299, 2300, 7, 0, 0, 0, 2300, 2301, 7, 22, 0, 0, 2301, 2302, 7, 9, 0, 0, 2302, 426, 1, 0, 0, 0, 2303, 2304, 7, 17, 0, 0, 2304, 2305, 7, 13, 0, 0, 2305, 2306, 7, 4, 0, 0, 2306, 2307, 7, 5, 0, 0, 2307, 2308, 7, 6, 0, 0, 2308, 2309, 7, 0, 0, 0, 2309, 2310, 7, 8, 0, 0, 2310, 428, 1, 0, 0, 0, 2311, 2312, 7, 17, 0, 0, 2312, 2313, 7, 13, 0, 0, 2313, 2314, 7, 4, 0, 0, 2314, 2315, 7, 5, 0, 0, 2315, 2316, 7, 7, 0, 0, 2316, 2317, 7, 5, 0, 0, 2317, 2318, 7, 12, 0, 0, 2318, 2319, 7, 3, 0, 0, 2319, 2320, 7, 4, 0, 0, 2320, 430, 1, 0, 0, 0, 2321, 2322, 7, 22, 0, 0, 2322, 2323, 7, 0, 0, 0, 2323, 2324, 7, 5, 0, 0, 2324, 2325, 7, 3, 0, 0, 2325, 2326, 7, 12, 0, 0, 2326, 2327, 7, 3, 0, 0, 2327, 2328, 7, 12, 0, 0, 2328, 2329, 7, 17, 0, 0, 2329, 2330, 7, 10, 0, 0, 2330, 432, 1, 0, 0, 0, 2331, 2332, 7, 22, 0, 0, 2332, 2333, 7, 0, 0, 0, 2333, 2334, 7, 5, 0, 0, 2334, 2335, 7, 3, 0, 0, 2335, 2336, 7, 12, 0, 0, 2336, 2337, 7, 3, 0, 0, 2337, 2338, 7, 12, 0, 0, 2338, 2339, 7, 17, 0, 0, 2339, 2340, 7, 10, 0, 0, 2340, 2341, 7, 4, 0, 0, 2341, 2342, 7, 1, 0, 0, 2342, 434, 1, 0, 0, 0, 2343, 2344, 7, 22, 0, 0, 2344, 2345, 7, 0, 0, 0, 2345, 2346, 7, 5, 0, 0, 2346, 2347, 7, 3, 0, 0, 2347, 2348, 7, 12, 0, 0, 2348, 2349, 7, 3, 0, 0, 2349, 2350, 7, 12, 0, 0, 2350, 2351, 7, 17, 0, 0, 2351, 2352, 7, 10, 0, 0, 2352, 2353, 7, 9, 0, 0, 2353, 436, 1, 0, 0, 0, 2354, 2355, 7, 22, 0, 0, 2355, 2356, 7, 4, 0, 0, 2356, 2357, 7, 5, 0, 0, 2357, 2358, 7, 15, 0, 0, 2358, 2359, 7, 4, 0, 0, 2359, 2360, 7, 10, 0, 0, 2360, 2361, 7, 3, 0, 0, 2361, 2362, 7, 12, 0, 0, 2362, 2363, 7, 6, 0, 0, 2363, 2364, 7, 4, 0, 0, 2364, 2365, 5, 95, 0, 0, 2365, 2366, 7, 15, 0, 0, 2366, 2367, 7, 17, 0, 0, 2367, 2368, 7, 10, 0, 0, 2368, 2369, 7, 3, 0, 0, 2369, 438, 1, 0, 0, 0, 2370, 2371, 7, 22, 0, 0, 2371, 2372, 7, 4, 0, 0, 2372, 2373, 7, 5, 0, 0, 2373, 2374, 7, 15, 0, 0, 2374, 2375, 7, 4, 0, 0, 2375, 2376, 7, 10, 0, 0, 2376, 2377, 7, 3, 0, 0, 2377, 2378, 7, 12, 0, 0, 2378, 2379, 7, 6, 0, 0, 2379, 2380, 7, 4, 0, 0, 2380, 2381, 5, 95, 0, 0, 2381, 2382, 7, 1, 0, 0, 2382, 2383, 7, 12, 0, 0, 2383, 2384, 7, 9, 0, 0, 2384, 2385, 7, 15, 0, 0, 2385, 440, 1, 0, 0, 0, 2386, 2387, 7, 22, 0, 0, 2387, 2388, 7, 4, 0, 0, 2388, 2389, 7, 5, 0, 0, 2389, 2390, 7, 15, 0, 0, 2390, 2391, 7, 4, 0, 0, 2391, 2392, 7, 10, 0, 0, 2392, 2393, 7, 3, 0, 0, 2393, 442, 1, 0, 0, 0, 2394, 2395, 7, 22, 0, 0, 2395, 2396, 7, 12, 0, 0, 2396, 2397, 7, 13, 0, 0, 2397, 2398, 7, 17, 0, 0, 2398, 2399, 7, 3, 0, 0, 2399, 444, 1, 0, 0, 0, 2400, 2401, 7, 22, 0, 0, 2401, 2402, 7, 6, 0, 0, 2402, 2403, 7, 0, 0, 0, 2403, 2404, 7, 15, 0, 0, 2404, 2405, 7, 12, 0, 0, 2405, 2406, 7, 10, 0, 0, 2406, 2407, 7, 19, 0, 0, 2407, 446, 1, 0, 0, 0, 2408, 2409, 7, 22, 0, 0, 2409, 2410, 7, 17, 0, 0, 2410, 2411, 7, 9, 0, 0, 2411, 2412, 7, 12, 0, 0, 2412, 2413, 7, 3, 0, 0, 2413, 2414, 7, 12, 0, 0, 2414, 2415, 7, 17, 0, 0, 2415, 2416, 7, 10, 0, 0, 2416, 448, 1, 0, 0, 0, 2417, 2418, 7, 22, 0, 0, 2418, 2419, 7, 5, 0, 0, 2419, 2420, 7, 4, 0, 0, 2420, 2421, 7, 15, 0, 0, 2421, 2422, 7, 4, 0, 0, 2422, 2423, 7, 1, 0, 0, 2423, 2424, 7, 12, 0, 0, 2424, 2425, 7, 10, 0, 0, 2425, 2426, 7, 19, 0, 0, 2426, 450, 1, 0, 0, 0, 2427, 2428, 7, 22, 0, 0, 2428, 2429, 7, 5, 0, 0, 2429, 2430, 7, 12, 0, 0, 2430, 2431, 7, 21, 0, 0, 2431, 2432, 7, 0, 0, 0, 2432, 2433, 7, 5, 0, 0, 2433, 2434, 7, 8, 0, 0, 2434, 452, 1, 0, 0, 0, 2435, 2436, 7, 22, 0, 0, 2436, 2437, 7, 5, 0, 0, 2437, 2438, 7, 12, 0, 0, 2438, 2439, 7, 10, 0, 0, 2439, 2440, 7, 15, 0, 0, 2440, 2441, 7, 12, 0, 0, 2441, 2442, 7, 22, 0, 0, 2442, 2443, 7, 0, 0, 0, 2443, 2444, 7, 6, 0, 0, 2444, 2445, 7, 9, 0, 0, 2445, 454, 1, 0, 0, 0, 2446, 2447, 7, 22, 0, 0, 2447, 2448, 7, 5, 0, 0, 2448, 2449, 7, 17, 0, 0, 2449, 2450, 7, 22, 0, 0, 2450, 2451, 7, 4, 0, 0, 2451, 2452, 7, 5, 0, 0, 2452, 2453, 7, 3, 0, 0, 2453, 2454, 7, 12, 0, 0, 2454, 2455, 7, 4, 0, 0, 2455, 2456, 7, 9, 0, 0, 2456, 456, 1, 0, 0, 0, 2457, 2458, 7, 22, 0, 0, 2458, 2459, 7, 14, 0, 0, 2459, 2460, 7, 5, 0, 0, 2460, 2461, 7, 19, 0, 0, 2461, 2462, 7, 4, 0, 0, 2462, 458, 1, 0, 0, 0, 2463, 2464, 7, 25, 0, 0, 2464, 2465, 7, 14, 0, 0, 2465, 2466, 7, 0, 0, 0, 2466, 2467, 7, 5, 0, 0, 2467, 2468, 7, 3, 0, 0, 2468, 2469, 7, 4, 0, 0, 2469, 2470, 7, 5, 0, 0, 2470, 460, 1, 0, 0, 0, 2471, 2472, 7, 25, 0, 0, 2472, 2473, 7, 14, 0, 0, 2473, 2474, 7, 4, 0, 0, 2474, 2475, 7, 5, 0, 0, 2475, 2476, 7, 8, 0, 0, 2476, 462, 1, 0, 0, 0, 2477, 2478, 7, 5, 0, 0, 2478, 2479, 7, 0, 0, 0, 2479, 2480, 7, 10, 0, 0, 2480, 2481, 7, 19, 0, 0, 2481, 2482, 7, 4, 0, 0, 2482, 464, 1, 0, 0, 0, 2483, 2484, 7, 5, 0, 0, 2484, 2485, 7, 4, 0, 0, 2485, 2486, 7, 0, 0, 0, 2486, 2487, 7, 6, 0, 0, 2487, 466, 1, 0, 0, 0, 2488, 2489, 7, 5, 0, 0, 2489, 2490, 7, 4, 0, 0, 2490, 2491, 7, 15, 0, 0, 2491, 2492, 7, 17, 0, 0, 2492, 2493, 7, 5, 0, 0, 2493, 2494, 7, 1, 0, 0, 2494, 2495, 7, 5, 0, 0, 2495, 2496, 7, 4, 0, 0, 2496, 2497, 7, 0, 0, 0, 2497, 2498, 7, 1, 0, 0, 2498, 2499, 7, 4, 0, 0, 2499, 2500, 7, 5, 0, 0, 2500, 468, 1, 0, 0, 0, 2501, 2502, 7, 5, 0, 0, 2502, 2503, 7, 4, 0, 0, 2503, 2504, 7, 15, 0, 0, 2504, 2505, 7, 17, 0, 0, 2505, 2506, 7, 5, 0, 0, 2506, 2507, 7, 1, 0, 0, 2507, 2508, 7, 7, 0, 0, 2508, 2509, 7, 5, 0, 0, 2509, 2510, 7, 12, 0, 0, 2510, 2511, 7, 3, 0, 0, 2511, 2512, 7, 4, 0, 0, 2512, 2513, 7, 5, 0, 0, 2513, 470, 1, 0, 0, 0, 2514, 2515, 7, 5, 0, 0, 2515, 2516, 7, 4, 0, 0, 2516, 2517, 7, 15, 0, 0, 2517, 2518, 7, 17, 0, 0, 2518, 2519, 7, 13, 0, 0, 2519, 2520, 7, 4, 0, 0, 2520, 2521, 7, 5, 0, 0, 2521, 472, 1, 0, 0, 0, 2522, 2523, 7, 5, 0, 0, 2523, 2524, 7, 4, 0, 0, 2524, 2525, 7, 1, 0, 0, 2525, 2526, 7, 14, 0, 0, 2526, 2527, 7, 15, 0, 0, 2527, 2528, 7, 4, 0, 0, 2528, 474, 1, 0, 0, 0, 2529, 2530, 7, 5, 0, 0, 2530, 2531, 7, 4, 0, 0, 2531, 2532, 7, 2, 0, 0, 2532, 2533, 7, 4, 0, 0, 2533, 2534, 7, 5, 0, 0, 2534, 2535, 7, 4, 0, 0, 2535, 2536, 7, 10, 0, 0, 2536, 2537, 7, 15, 0, 0, 2537, 2538, 7, 4, 0, 0, 2538, 2539, 7, 9, 0, 0, 2539, 476, 1, 0, 0, 0, 2540, 2541, 7, 5, 0, 0, 2541, 2542, 7, 4, 0, 0, 2542, 2543, 7, 2, 0, 0, 2543, 2544, 7, 5, 0, 0, 2544, 2545, 7, 4, 0, 0, 2545, 2546, 7, 9, 0, 0, 2546, 2547, 7, 16, 0, 0, 2547, 478, 1, 0, 0, 0, 2548, 2549, 7, 5, 0, 0, 2549, 2550, 7, 4, 0, 0, 2550, 2551, 7, 10, 0, 0, 2551, 2552, 7, 0, 0, 0, 2552, 2553, 7, 21, 0, 0, 2553, 2554, 7, 4, 0, 0, 2554, 480, 1, 0, 0, 0, 2555, 2556, 7, 5, 0, 0, 2556, 2557, 7, 4, 0, 0, 2557, 2558, 7, 22, 0, 0, 2558, 2559, 7, 0, 0, 0, 2559, 2560, 7, 12, 0, 0, 2560, 2561, 7, 5, 0, 0, 2561, 482, 1, 0, 0, 0, 2562, 2563, 7, 5, 0, 0, 2563, 2564, 7, 4, 0, 0, 2564, 2565, 7, 22, 0, 0, 2565, 2566, 7, 4, 0, 0, 2566, 2567, 7, 0, 0, 0, 2567, 2568, 7, 3, 0, 0, 2568, 2569, 7, 0, 0, 0, 2569, 2570, 7, 18, 0, 0, 2570, 2571, 7, 6, 0, 0, 2571, 2572, 7, 4, 0, 0, 2572, 484, 1, 0, 0, 0, 2573, 2574, 7, 5, 0, 0, 2574, 2575, 7, 4, 0, 0, 2575, 2576, 7, 22, 0, 0, 2576, 2577, 7, 6, 0, 0, 2577, 2578, 7, 0, 0, 0, 2578, 2579, 7, 15, 0, 0, 2579, 2580, 7, 4, 0, 0, 2580, 486, 1, 0, 0, 0, 2581, 2582, 7, 5, 0, 0, 2582, 2583, 7, 4, 0, 0, 2583, 2584, 7, 9, 0, 0, 2584, 2585, 7, 4, 0, 0, 2585, 2586, 7, 3, 0, 0, 2586, 488, 1, 0, 0, 0, 2587, 2588, 7, 5, 0, 0, 2588, 2589, 7, 4, 0, 0, 2589, 2590, 7, 9, 0, 0, 2590, 2591, 7, 22, 0, 0, 2591, 2592, 7, 4, 0, 0, 2592, 2593, 7, 15, 0, 0, 2593, 2594, 7, 3, 0, 0, 2594, 490, 1, 0, 0, 0, 2595, 2596, 7, 5, 0, 0, 2596, 2597, 7, 4, 0, 0, 2597, 2598, 7, 9, 0, 0, 2598, 2599, 7, 3, 0, 0, 2599, 2600, 7, 5, 0, 0, 2600, 2601, 7, 12, 0, 0, 2601, 2602, 7, 15, 0, 0, 2602, 2603, 7, 3, 0, 0, 2603, 492, 1, 0, 0, 0, 2604, 2605, 7, 5, 0, 0, 2605, 2606, 7, 4, 0, 0, 2606, 2607, 7, 7, 0, 0, 2607, 2608, 7, 5, 0, 0, 2608, 2609, 7, 12, 0, 0, 2609, 2610, 7, 3, 0, 0, 2610, 2611, 7, 4, 0, 0, 2611, 494, 1, 0, 0, 0, 2612, 2613, 7, 5, 0, 0, 2613, 2614, 7, 4, 0, 0, 2614, 2615, 7, 13, 0, 0, 2615, 2616, 7, 17, 0, 0, 2616, 2617, 7, 20, 0, 0, 2617, 2618, 7, 4, 0, 0, 2618, 496, 1, 0, 0, 0, 2619, 2620, 7, 5, 0, 0, 2620, 2621, 7, 12, 0, 0, 2621, 2622, 7, 19, 0, 0, 2622, 2623, 7, 16, 0, 0, 2623, 2624, 7, 3, 0, 0, 2624, 498, 1, 0, 0, 0, 2625, 2626, 7, 5, 0, 0, 2626, 2627, 7, 6, 0, 0, 2627, 2628, 7, 12, 0, 0, 2628, 2629, 7, 20, 0, 0, 2629, 2630, 7, 4, 0, 0, 2630, 500, 1, 0, 0, 0, 2631, 2632, 7, 5, 0, 0, 2632, 2633, 7, 4, 0, 0, 2633, 2634, 7, 19, 0, 0, 2634, 2635, 7, 4, 0, 0, 2635, 2636, 7, 23, 0, 0, 2636, 2637, 7, 22, 0, 0, 2637, 502, 1, 0, 0, 0, 2638, 2639, 7, 5, 0, 0, 2639, 2640, 7, 17, 0, 0, 2640, 2641, 7, 6, 0, 0, 2641, 2642, 7, 4, 0, 0, 2642, 504, 1, 0, 0, 0, 2643, 2644, 7, 5, 0, 0, 2644, 2645, 7, 17, 0, 0, 2645, 2646, 7, 6, 0, 0, 2646, 2647, 7, 4, 0, 0, 2647, 2648, 7, 9, 0, 0, 2648, 506, 1, 0, 0, 0, 2649, 2650, 7, 5, 0, 0, 2650, 2651, 7, 17, 0, 0, 2651, 2652, 7, 6, 0, 0, 2652, 2653, 7, 6, 0, 0, 2653, 2654, 7, 18, 0, 0, 2654, 2655, 7, 0, 0, 0, 2655, 2656, 7, 15, 0, 0, 2656, 2657, 7, 20, 0, 0, 2657, 508, 1, 0, 0, 0, 2658, 2659, 7, 5, 0, 0, 2659, 2660, 7, 17, 0, 0, 2660, 2661, 7, 6, 0, 0, 2661, 2662, 7, 6, 0, 0, 2662, 2663, 7, 14, 0, 0, 2663, 2664, 7, 22, 0, 0, 2664, 510, 1, 0, 0, 0, 2665, 2666, 7, 5, 0, 0, 2666, 2667, 7, 17, 0, 0, 2667, 2668, 7, 7, 0, 0, 2668, 512, 1, 0, 0, 0, 2669, 2670, 7, 5, 0, 0, 2670, 2671, 7, 17, 0, 0, 2671, 2672, 7, 7, 0, 0, 2672, 2673, 7, 9, 0, 0, 2673, 514, 1, 0, 0, 0, 2674, 2675, 7, 9, 0, 0, 2675, 2676, 7, 4, 0, 0, 2676, 2677, 7, 15, 0, 0, 2677, 2678, 7, 17, 0, 0, 2678, 2679, 7, 10, 0, 0, 2679, 2680, 7, 1, 0, 0, 2680, 516, 1, 0, 0, 0, 2681, 2682, 7, 9, 0, 0, 2682, 2683, 7, 4, 0, 0, 2683, 2684, 7, 15, 0, 0, 2684, 2685, 7, 17, 0, 0, 2685, 2686, 7, 10, 0, 0, 2686, 2687, 7, 1, 0, 0, 2687, 2688, 7, 9, 0, 0, 2688, 518, 1, 0, 0, 0, 2689, 2690, 7, 9, 0, 0, 2690, 2691, 7, 15, 0, 0, 2691, 2692, 7, 16, 0, 0, 2692, 2693, 7, 4, 0, 0, 2693, 2694, 7, 21, 0, 0, 2694, 2695, 7, 0, 0, 0, 2695, 520, 1, 0, 0, 0, 2696, 2697, 7, 9, 0, 0, 2697, 2698, 7, 15, 0, 0, 2698, 2699, 7, 16, 0, 0, 2699, 2700, 7, 4, 0, 0, 2700, 2701, 7, 21, 0, 0, 2701, 2702, 7, 0, 0, 0, 2702, 2703, 7, 9, 0, 0, 2703, 522, 1, 0, 0, 0, 2704, 2705, 7, 9, 0, 0, 2705, 2706, 7, 4, 0, 0, 2706, 2707, 7, 6, 0, 0, 2707, 2708, 7, 4, 0, 0, 2708, 2709, 7, 15, 0, 0, 2709, 2710, 7, 3, 0, 0, 2710, 524, 1, 0, 0, 0, 2711, 2712, 7, 9, 0, 0, 2712, 2713, 7, 4, 0, 0, 2713, 2714, 7, 21, 0, 0, 2714, 2715, 7, 12, 0, 0, 2715, 526, 1, 0, 0, 0, 2716, 2717, 7, 9, 0, 0, 2717, 2718, 7, 4, 0, 0, 2718, 2719, 7, 22, 0, 0, 2719, 2720, 7, 0, 0, 0, 2720, 2721, 7, 5, 0, 0, 2721, 2722, 7, 0, 0, 0, 2722, 2723, 7, 3, 0, 0, 2723, 2724, 7, 4, 0, 0, 2724, 2725, 7, 1, 0, 0, 2725, 528, 1, 0, 0, 0, 2726, 2727, 7, 9, 0, 0, 2727, 2728, 7, 4, 0, 0, 2728, 2729, 7, 5, 0, 0, 2729, 2730, 7, 1, 0, 0, 2730, 2731, 7, 4, 0, 0, 2731, 530, 1, 0, 0, 0, 2732, 2733, 7, 9, 0, 0, 2733, 2734, 7, 4, 0, 0, 2734, 2735, 7, 5, 0, 0, 2735, 2736, 7, 1, 0, 0, 2736, 2737, 7, 4, 0, 0, 2737, 2738, 7, 22, 0, 0, 2738, 2739, 7, 5, 0, 0, 2739, 2740, 7, 17, 0, 0, 2740, 2741, 7, 22, 0, 0, 2741, 2742, 7, 4, 0, 0, 2742, 2743, 7, 5, 0, 0, 2743, 2744, 7, 3, 0, 0, 2744, 2745, 7, 12, 0, 0, 2745, 2746, 7, 4, 0, 0, 2746, 2747, 7, 9, 0, 0, 2747, 532, 1, 0, 0, 0, 2748, 2749, 7, 9, 0, 0, 2749, 2750, 7, 4, 0, 0, 2750, 2751, 7, 9, 0, 0, 2751, 2752, 7, 9, 0, 0, 2752, 2753, 7, 12, 0, 0, 2753, 2754, 7, 17, 0, 0, 2754, 2755, 7, 10, 0, 0, 2755, 2756, 5, 95, 0, 0, 2756, 2757, 7, 14, 0, 0, 2757, 2758, 7, 9, 0, 0, 2758, 2759, 7, 4, 0, 0, 2759, 2760, 7, 5, 0, 0, 2760, 534, 1, 0, 0, 0, 2761, 2762, 7, 9, 0, 0, 2762, 2763, 7, 4, 0, 0, 2763, 2764, 7, 3, 0, 0, 2764, 536, 1, 0, 0, 0, 2765, 2766, 7, 21, 0, 0, 2766, 2767, 7, 12, 0, 0, 2767, 2768, 7, 10, 0, 0, 2768, 2769, 7, 14, 0, 0, 2769, 2770, 7, 9, 0, 0, 2770, 538, 1, 0, 0, 0, 2771, 2772, 7, 9, 0, 0, 2772, 2773, 7, 4, 0, 0, 2773, 2774, 7, 3, 0, 0, 2774, 2775, 7, 9, 0, 0, 2775, 540, 1, 0, 0, 0, 2776, 2777, 7, 9, 0, 0, 2777, 2778, 7, 16, 0, 0, 2778, 2779, 7, 17, 0, 0, 2779, 2780, 7, 5, 0, 0, 2780, 2781, 7, 3, 0, 0, 2781, 542, 1, 0, 0, 0, 2782, 2783, 7, 9, 0, 0, 2783, 2784, 7, 16, 0, 0, 2784, 2785, 7, 17, 0, 0, 2785, 2786, 7, 7, 0, 0, 2786, 544, 1, 0, 0, 0, 2787, 2788, 7, 9, 0, 0, 2788, 2789, 7, 12, 0, 0, 2789, 2790, 7, 10, 0, 0, 2790, 2791, 7, 19, 0, 0, 2791, 2792, 7, 6, 0, 0, 2792, 2793, 7, 4, 0, 0, 2793, 546, 1, 0, 0, 0, 2794, 2795, 7, 9, 0, 0, 2795, 2796, 7, 20, 0, 0, 2796, 2797, 7, 4, 0, 0, 2797, 2798, 7, 7, 0, 0, 2798, 2799, 7, 4, 0, 0, 2799, 2800, 7, 1, 0, 0, 2800, 548, 1, 0, 0, 0, 2801, 2802, 7, 9, 0, 0, 2802, 2803, 7, 21, 0, 0, 2803, 2804, 7, 0, 0, 0, 2804, 2805, 7, 6, 0, 0, 2805, 2806, 7, 6, 0, 0, 2806, 2807, 7, 12, 0, 0, 2807, 2808, 7, 10, 0, 0, 2808, 2809, 7, 3, 0, 0, 2809, 550, 1, 0, 0, 0, 2810, 2811, 7, 9, 0, 0, 2811, 2812, 7, 17, 0, 0, 2812, 2813, 7, 21, 0, 0, 2813, 2814, 7, 4, 0, 0, 2814, 552, 1, 0, 0, 0, 2815, 2816, 7, 9, 0, 0, 2816, 2817, 7, 17, 0, 0, 2817, 2818, 7, 5, 0, 0, 2818, 2819, 7, 3, 0, 0, 2819, 554, 1, 0, 0, 0, 2820, 2821, 7, 9, 0, 0, 2821, 2822, 7, 17, 0, 0, 2822, 2823, 7, 5, 0, 0, 2823, 2824, 7, 3, 0, 0, 2824, 2825, 7, 4, 0, 0, 2825, 2826, 7, 1, 0, 0, 2826, 556, 1, 0, 0, 0, 2827, 2828, 7, 9, 0, 0, 2828, 2829, 7, 17, 0, 0, 2829, 2830, 7, 14, 0, 0, 2830, 2831, 7, 5, 0, 0, 2831, 2832, 7, 15, 0, 0, 2832, 2833, 7, 4, 0, 0, 2833, 558, 1, 0, 0, 0, 2834, 2835, 7, 9, 0, 0, 2835, 2836, 7, 3, 0, 0, 2836, 2837, 7, 0, 0, 0, 2837, 2838, 7, 5, 0, 0, 2838, 2839, 7, 3, 0, 0, 2839, 560, 1, 0, 0, 0, 2840, 2841, 7, 9, 0, 0, 2841, 2842, 7, 3, 0, 0, 2842, 2843, 7, 0, 0, 0, 2843, 2844, 7, 3, 0, 0, 2844, 2845, 7, 12, 0, 0, 2845, 2846, 7, 9, 0, 0, 2846, 2847, 7, 3, 0, 0, 2847, 2848, 7, 12, 0, 0, 2848, 2849, 7, 15, 0, 0, 2849, 2850, 7, 9, 0, 0, 2850, 562, 1, 0, 0, 0, 2851, 2852, 7, 9, 0, 0, 2852, 2853, 7, 3, 0, 0, 2853, 2854, 7, 17, 0, 0, 2854, 2855, 7, 5, 0, 0, 2855, 2856, 7, 4, 0, 0, 2856, 2857, 7, 1, 0, 0, 2857, 564, 1, 0, 0, 0, 2858, 2859, 7, 9, 0, 0, 2859, 2860, 7, 3, 0, 0, 2860, 2861, 7, 5, 0, 0, 2861, 2862, 7, 0, 0, 0, 2862, 2863, 7, 3, 0, 0, 2863, 2864, 7, 12, 0, 0, 2864, 2865, 7, 2, 0, 0, 2865, 2866, 7, 8, 0, 0, 2866, 566, 1, 0, 0, 0, 2867, 2868, 7, 9, 0, 0, 2868, 2869, 7, 3, 0, 0, 2869, 2870, 7, 5, 0, 0, 2870, 2871, 7, 12, 0, 0, 2871, 2872, 7, 10, 0, 0, 2872, 2873, 7, 19, 0, 0, 2873, 568, 1, 0, 0, 0, 2874, 2875, 7, 9, 0, 0, 2875, 2876, 7, 3, 0, 0, 2876, 2877, 7, 5, 0, 0, 2877, 2878, 7, 14, 0, 0, 2878, 2879, 7, 15, 0, 0, 2879, 2880, 7, 3, 0, 0, 2880, 570, 1, 0, 0, 0, 2881, 2882, 7, 9, 0, 0, 2882, 2883, 7, 14, 0, 0, 2883, 2884, 7, 18, 0, 0, 2884, 2885, 7, 9, 0, 0, 2885, 2886, 7, 3, 0, 0, 2886, 2887, 7, 5, 0, 0, 2887, 572, 1, 0, 0, 0, 2888, 2889, 7, 9, 0, 0, 2889, 2890, 7, 14, 0, 0, 2890, 2891, 7, 18, 0, 0, 2891, 2892, 7, 9, 0, 0, 2892, 2893, 7, 3, 0, 0, 2893, 2894, 7, 5, 0, 0, 2894, 2895, 7, 12, 0, 0, 2895, 2896, 7, 10, 0, 0, 2896, 2897, 7, 19, 0, 0, 2897, 574, 1, 0, 0, 0, 2898, 2899, 7, 9, 0, 0, 2899, 2900, 7, 8, 0, 0, 2900, 2901, 7, 10, 0, 0, 2901, 2902, 7, 15, 0, 0, 2902, 576, 1, 0, 0, 0, 2903, 2904, 7, 9, 0, 0, 2904, 2905, 7, 8, 0, 0, 2905, 2906, 7, 9, 0, 0, 2906, 2907, 7, 3, 0, 0, 2907, 2908, 7, 4, 0, 0, 2908, 2909, 7, 21, 0, 0, 2909, 578, 1, 0, 0, 0, 2910, 2911, 7, 9, 0, 0, 2911, 2912, 7, 8, 0, 0, 2912, 2913, 7, 9, 0, 0, 2913, 2914, 7, 3, 0, 0, 2914, 2915, 7, 4, 0, 0, 2915, 2916, 7, 21, 0, 0, 2916, 2917, 5, 95, 0, 0, 2917, 2918, 7, 3, 0, 0, 2918, 2919, 7, 12, 0, 0, 2919, 2920, 7, 21, 0, 0, 2920, 2921, 7, 4, 0, 0, 2921, 580, 1, 0, 0, 0, 2922, 2923, 7, 9, 0, 0, 2923, 2924, 7, 8, 0, 0, 2924, 2925, 7, 9, 0, 0, 2925, 2926, 7, 3, 0, 0, 2926, 2927, 7, 4, 0, 0, 2927, 2928, 7, 21, 0, 0, 2928, 2929, 5, 95, 0, 0, 2929, 2930, 7, 13, 0, 0, 2930, 2931, 7, 4, 0, 0, 2931, 2932, 7, 5, 0, 0, 2932, 2933, 7, 9, 0, 0, 2933, 2934, 7, 12, 0, 0, 2934, 2935, 7, 17, 0, 0, 2935, 2936, 7, 10, 0, 0, 2936, 582, 1, 0, 0, 0, 2937, 2938, 7, 3, 0, 0, 2938, 2939, 7, 0, 0, 0, 2939, 2940, 7, 18, 0, 0, 2940, 2941, 7, 6, 0, 0, 2941, 2942, 7, 4, 0, 0, 2942, 584, 1, 0, 0, 0, 2943, 2944, 7, 3, 0, 0, 2944, 2945, 7, 0, 0, 0, 2945, 2946, 7, 18, 0, 0, 2946, 2947, 7, 6, 0, 0, 2947, 2948, 7, 4, 0, 0, 2948, 2949, 7, 9, 0, 0, 2949, 586, 1, 0, 0, 0, 2950, 2951, 7, 3, 0, 0, 2951, 2952, 7, 0, 0, 0, 2952, 2953, 7, 18, 0, 0, 2953, 2954, 7, 6, 0, 0, 2954, 2955, 7, 4, 0, 0, 2955, 2956, 7, 9, 0, 0, 2956, 2957, 7, 0, 0, 0, 2957, 2958, 7, 21, 0, 0, 2958, 2959, 7, 22, 0, 0, 2959, 2960, 7, 6, 0, 0, 2960, 2961, 7, 4, 0, 0, 2961, 588, 1, 0, 0, 0, 2962, 2963, 7, 3, 0, 0, 2963, 2964, 7, 0, 0, 0, 2964, 2965, 7, 5, 0, 0, 2965, 2966, 7, 19, 0, 0, 2966, 2967, 7, 4, 0, 0, 2967, 2968, 7, 3, 0, 0, 2968, 590, 1, 0, 0, 0, 2969, 2970, 7, 3, 0, 0, 2970, 2971, 7, 18, 0, 0, 2971, 2972, 7, 6, 0, 0, 2972, 2973, 7, 22, 0, 0, 2973, 2974, 7, 5, 0, 0, 2974, 2975, 7, 17, 0, 0, 2975, 2976, 7, 22, 0, 0, 2976, 2977, 7, 4, 0, 0, 2977, 2978, 7, 5, 0, 0, 2978, 2979, 7, 3, 0, 0, 2979, 2980, 7, 12, 0, 0, 2980, 2981, 7, 4, 0, 0, 2981, 2982, 7, 9, 0, 0, 2982, 592, 1, 0, 0, 0, 2983, 2984, 7, 3, 0, 0, 2984, 2985, 7, 4, 0, 0, 2985, 2986, 7, 21, 0, 0, 2986, 2987, 7, 22, 0, 0, 2987, 2988, 7, 17, 0, 0, 2988, 2989, 7, 5, 0, 0, 2989, 2990, 7, 0, 0, 0, 2990, 2991, 7, 5, 0, 0, 2991, 2992, 7, 8, 0, 0, 2992, 594, 1, 0, 0, 0, 2993, 2994, 7, 3, 0, 0, 2994, 2995, 7, 4, 0, 0, 2995, 2996, 7, 5, 0, 0, 2996, 2997, 7, 21, 0, 0, 2997, 2998, 7, 12, 0, 0, 2998, 2999, 7, 10, 0, 0, 2999, 3000, 7, 0, 0, 0, 3000, 3001, 7, 3, 0, 0, 3001, 3002, 7, 4, 0, 0, 3002, 3003, 7, 1, 0, 0, 3003, 596, 1, 0, 0, 0, 3004, 3005, 7, 3, 0, 0, 3005, 3006, 7, 16, 0, 0, 3006, 3007, 7, 4, 0, 0, 3007, 3008, 7, 10, 0, 0, 3008, 598, 1, 0, 0, 0, 3009, 3010, 7, 3, 0, 0, 3010, 3011, 7, 12, 0, 0, 3011, 3012, 7, 21, 0, 0, 3012, 3013, 7, 4, 0, 0, 3013, 600, 1, 0, 0, 0, 3014, 3015, 7, 3, 0, 0, 3015, 3016, 7, 12, 0, 0, 3016, 3017, 7, 21, 0, 0, 3017, 3018, 7, 4, 0, 0, 3018, 3019, 7, 1, 0, 0, 3019, 3020, 7, 12, 0, 0, 3020, 3021, 7, 2, 0, 0, 3021, 3022, 7, 2, 0, 0, 3022, 602, 1, 0, 0, 0, 3023, 3024, 7, 3, 0, 0, 3024, 3025, 7, 12, 0, 0, 3025, 3026, 7, 21, 0, 0, 3026, 3027, 7, 4, 0, 0, 3027, 3028, 7, 9, 0, 0, 3028, 3029, 7, 3, 0, 0, 3029, 3030, 7, 0, 0, 0, 3030, 3031, 7, 21, 0, 0, 3031, 3032, 7, 22, 0, 0, 3032, 604, 1, 0, 0, 0, 3033, 3034, 7, 3, 0, 0, 3034, 3035, 7, 12, 0, 0, 3035, 3036, 7, 21, 0, 0, 3036, 3037, 7, 4, 0, 0, 3037, 3038, 7, 9, 0, 0, 3038, 3039, 7, 3, 0, 0, 3039, 3040, 7, 0, 0, 0, 3040, 3041, 7, 21, 0, 0, 3041, 3042, 7, 22, 0, 0, 3042, 3043, 5, 95, 0, 0, 3043, 3044, 7, 6, 0, 0, 3044, 3045, 7, 3, 0, 0, 3045, 3046, 7, 11, 0, 0, 3046, 606, 1, 0, 0, 0, 3047, 3048, 7, 3, 0, 0, 3048, 3049, 7, 12, 0, 0, 3049, 3050, 7, 21, 0, 0, 3050, 3051, 7, 4, 0, 0, 3051, 3052, 7, 9, 0, 0, 3052, 3053, 7, 3, 0, 0, 3053, 3054, 7, 0, 0, 0, 3054, 3055, 7, 21, 0, 0, 3055, 3056, 7, 22, 0, 0, 3056, 3057, 5, 95, 0, 0, 3057, 3058, 7, 10, 0, 0, 3058, 3059, 7, 3, 0, 0, 3059, 3060, 7, 11, 0, 0, 3060, 608, 1, 0, 0, 0, 3061, 3062, 7, 3, 0, 0, 3062, 3063, 7, 12, 0, 0, 3063, 3064, 7, 21, 0, 0, 3064, 3065, 7, 4, 0, 0, 3065, 3066, 7, 9, 0, 0, 3066, 3067, 7, 3, 0, 0, 3067, 3068, 7, 0, 0, 0, 3068, 3069, 7, 21, 0, 0, 3069, 3070, 7, 22, 0, 0, 3070, 3071, 7, 0, 0, 0, 3071, 3072, 7, 1, 0, 0, 3072, 3073, 7, 1, 0, 0, 3073, 610, 1, 0, 0, 0, 3074, 3075, 7, 3, 0, 0, 3075, 3076, 7, 12, 0, 0, 3076, 3077, 7, 21, 0, 0, 3077, 3078, 7, 4, 0, 0, 3078, 3079, 7, 9, 0, 0, 3079, 3080, 7, 3, 0, 0, 3080, 3081, 7, 0, 0, 0, 3081, 3082, 7, 21, 0, 0, 3082, 3083, 7, 22, 0, 0, 3083, 3084, 7, 1, 0, 0, 3084, 3085, 7, 12, 0, 0, 3085, 3086, 7, 2, 0, 0, 3086, 3087, 7, 2, 0, 0, 3087, 612, 1, 0, 0, 0, 3088, 3089, 7, 3, 0, 0, 3089, 3090, 7, 12, 0, 0, 3090, 3091, 7, 10, 0, 0, 3091, 3092, 7, 8, 0, 0, 3092, 3093, 7, 12, 0, 0, 3093, 3094, 7, 10, 0, 0, 3094, 3095, 7, 3, 0, 0, 3095, 614, 1, 0, 0, 0, 3096, 3097, 7, 3, 0, 0, 3097, 3098, 7, 17, 0, 0, 3098, 616, 1, 0, 0, 0, 3099, 3100, 7, 3, 0, 0, 3100, 3101, 7, 17, 0, 0, 3101, 3102, 7, 14, 0, 0, 3102, 3103, 7, 15, 0, 0, 3103, 3104, 7, 16, 0, 0, 3104, 618, 1, 0, 0, 0, 3105, 3106, 7, 3, 0, 0, 3106, 3107, 7, 5, 0, 0, 3107, 3108, 7, 0, 0, 0, 3108, 3109, 7, 12, 0, 0, 3109, 3110, 7, 6, 0, 0, 3110, 3111, 7, 12, 0, 0, 3111, 3112, 7, 10, 0, 0, 3112, 3113, 7, 19, 0, 0, 3113, 620, 1, 0, 0, 0, 3114, 3115, 7, 3, 0, 0, 3115, 3116, 7, 5, 0, 0, 3116, 3117, 7, 0, 0, 0, 3117, 3118, 7, 10, 0, 0, 3118, 3119, 7, 9, 0, 0, 3119, 3120, 7, 0, 0, 0, 3120, 3121, 7, 15, 0, 0, 3121, 3122, 7, 3, 0, 0, 3122, 3123, 7, 12, 0, 0, 3123, 3124, 7, 17, 0, 0, 3124, 3125, 7, 10, 0, 0, 3125, 622, 1, 0, 0, 0, 3126, 3127, 7, 3, 0, 0, 3127, 3128, 7, 5, 0, 0, 3128, 3129, 7, 0, 0, 0, 3129, 3130, 7, 10, 0, 0, 3130, 3131, 7, 9, 0, 0, 3131, 3132, 7, 0, 0, 0, 3132, 3133, 7, 15, 0, 0, 3133, 3134, 7, 3, 0, 0, 3134, 3135, 7, 12, 0, 0, 3135, 3136, 7, 17, 0, 0, 3136, 3137, 7, 10, 0, 0, 3137, 3138, 7, 9, 0, 0, 3138, 624, 1, 0, 0, 0, 3139, 3140, 7, 3, 0, 0, 3140, 3141, 7, 5, 0, 0, 3141, 3142, 7, 0, 0, 0, 3142, 3143, 7, 10, 0, 0, 3143, 3144, 7, 9, 0, 0, 3144, 3145, 7, 2, 0, 0, 3145, 3146, 7, 17, 0, 0, 3146, 3147, 7, 5, 0, 0, 3147, 3148, 7, 21, 0, 0, 3148, 626, 1, 0, 0, 0, 3149, 3150, 7, 3, 0, 0, 3150, 3151, 7, 5, 0, 0, 3151, 3152, 7, 12, 0, 0, 3152, 3153, 7, 21, 0, 0, 3153, 628, 1, 0, 0, 0, 3154, 3155, 7, 3, 0, 0, 3155, 3156, 7, 5, 0, 0, 3156, 3157, 7, 14, 0, 0, 3157, 3158, 7, 4, 0, 0, 3158, 630, 1, 0, 0, 0, 3159, 3160, 7, 3, 0, 0, 3160, 3161, 7, 5, 0, 0, 3161, 3162, 7, 14, 0, 0, 3162, 3163, 7, 10, 0, 0, 3163, 3164, 7, 15, 0, 0, 3164, 3165, 7, 0, 0, 0, 3165, 3166, 7, 3, 0, 0, 3166, 3167, 7, 4, 0, 0, 3167, 632, 1, 0, 0, 0, 3168, 3169, 7, 3, 0, 0, 3169, 3170, 7, 5, 0, 0, 3170, 3171, 7, 8, 0, 0, 3171, 3172, 5, 95, 0, 0, 3172, 3173, 7, 15, 0, 0, 3173, 3174, 7, 0, 0, 0, 3174, 3175, 7, 9, 0, 0, 3175, 3176, 7, 3, 0, 0, 3176, 634, 1, 0, 0, 0, 3177, 3178, 7, 3, 0, 0, 3178, 3179, 7, 8, 0, 0, 3179, 3180, 7, 22, 0, 0, 3180, 3181, 7, 4, 0, 0, 3181, 636, 1, 0, 0, 0, 3182, 3183, 7, 14, 0, 0, 3183, 3184, 7, 10, 0, 0, 3184, 3185, 7, 0, 0, 0, 3185, 3186, 7, 5, 0, 0, 3186, 3187, 7, 15, 0, 0, 3187, 3188, 7, 16, 0, 0, 3188, 3189, 7, 12, 0, 0, 3189, 3190, 7, 13, 0, 0, 3190, 3191, 7, 4, 0, 0, 3191, 638, 1, 0, 0, 0, 3192, 3193, 7, 14, 0, 0, 3193, 3194, 7, 10, 0, 0, 3194, 3195, 7, 18, 0, 0, 3195, 3196, 7, 17, 0, 0, 3196, 3197, 7, 14, 0, 0, 3197, 3198, 7, 10, 0, 0, 3198, 3199, 7, 1, 0, 0, 3199, 3200, 7, 4, 0, 0, 3200, 3201, 7, 1, 0, 0, 3201, 640, 1, 0, 0, 0, 3202, 3203, 7, 14, 0, 0, 3203, 3204, 7, 10, 0, 0, 3204, 3205, 7, 15, 0, 0, 3205, 3206, 7, 0, 0, 0, 3206, 3207, 7, 15, 0, 0, 3207, 3208, 7, 16, 0, 0, 3208, 3209, 7, 4, 0, 0, 3209, 642, 1, 0, 0, 0, 3210, 3211, 7, 14, 0, 0, 3211, 3212, 7, 10, 0, 0, 3212, 3213, 7, 12, 0, 0, 3213, 3214, 7, 17, 0, 0, 3214, 3215, 7, 10, 0, 0, 3215, 644, 1, 0, 0, 0, 3216, 3217, 7, 14, 0, 0, 3217, 3218, 7, 10, 0, 0, 3218, 3219, 7, 12, 0, 0, 3219, 3220, 7, 25, 0, 0, 3220, 3221, 7, 14, 0, 0, 3221, 3222, 7, 4, 0, 0, 3222, 646, 1, 0, 0, 0, 3223, 3224, 7, 14, 0, 0, 3224, 3225, 7, 10, 0, 0, 3225, 3226, 7, 20, 0, 0, 3226, 3227, 7, 10, 0, 0, 3227, 3228, 7, 17, 0, 0, 3228, 3229, 7, 7, 0, 0, 3229, 3230, 7, 10, 0, 0, 3230, 648, 1, 0, 0, 0, 3231, 3232, 7, 14, 0, 0, 3232, 3233, 7, 10, 0, 0, 3233, 3234, 7, 6, 0, 0, 3234, 3235, 7, 17, 0, 0, 3235, 3236, 7, 15, 0, 0, 3236, 3237, 7, 20, 0, 0, 3237, 650, 1, 0, 0, 0, 3238, 3239, 7, 14, 0, 0, 3239, 3240, 7, 10, 0, 0, 3240, 3241, 7, 22, 0, 0, 3241, 3242, 7, 12, 0, 0, 3242, 3243, 7, 13, 0, 0, 3243, 3244, 7, 17, 0, 0, 3244, 3245, 7, 3, 0, 0, 3245, 652, 1, 0, 0, 0, 3246, 3247, 7, 14, 0, 0, 3247, 3248, 7, 10, 0, 0, 3248, 3249, 7, 9, 0, 0, 3249, 3250, 7, 4, 0, 0, 3250, 3251, 7, 3, 0, 0, 3251, 654, 1, 0, 0, 0, 3252, 3253, 7, 14, 0, 0, 3253, 3254, 7, 22, 0, 0, 3254, 3255, 7, 1, 0, 0, 3255, 3256, 7, 0, 0, 0, 3256, 3257, 7, 3, 0, 0, 3257, 3258, 7, 4, 0, 0, 3258, 656, 1, 0, 0, 0, 3259, 3260, 7, 14, 0, 0, 3260, 3261, 7, 9, 0, 0, 3261, 3262, 7, 4, 0, 0, 3262, 658, 1, 0, 0, 0, 3263, 3264, 7, 14, 0, 0, 3264, 3265, 7, 9, 0, 0, 3265, 3266, 7, 4, 0, 0, 3266, 3267, 7, 5, 0, 0, 3267, 660, 1, 0, 0, 0, 3268, 3269, 7, 14, 0, 0, 3269, 3270, 7, 9, 0, 0, 3270, 3271, 7, 12, 0, 0, 3271, 3272, 7, 10, 0, 0, 3272, 3273, 7, 19, 0, 0, 3273, 662, 1, 0, 0, 0, 3274, 3275, 7, 13, 0, 0, 3275, 3276, 7, 0, 0, 0, 3276, 3277, 7, 6, 0, 0, 3277, 3278, 7, 14, 0, 0, 3278, 3279, 7, 4, 0, 0, 3279, 3280, 7, 9, 0, 0, 3280, 664, 1, 0, 0, 0, 3281, 3282, 7, 13, 0, 0, 3282, 3283, 7, 0, 0, 0, 3283, 3284, 7, 5, 0, 0, 3284, 3285, 7, 15, 0, 0, 3285, 3286, 7, 16, 0, 0, 3286, 3287, 7, 0, 0, 0, 3287, 3288, 7, 5, 0, 0, 3288, 666, 1, 0, 0, 0, 3289, 3290, 7, 13, 0, 0, 3290, 3291, 7, 0, 0, 0, 3291, 3292, 7, 5, 0, 0, 3292, 668, 1, 0, 0, 0, 3293, 3294, 7, 13, 0, 0, 3294, 3295, 7, 0, 0, 0, 3295, 3296, 7, 5, 0, 0, 3296, 3297, 7, 12, 0, 0, 3297, 3298, 7, 0, 0, 0, 3298, 3299, 7, 18, 0, 0, 3299, 3300, 7, 6, 0, 0, 3300, 3301, 7, 4, 0, 0, 3301, 670, 1, 0, 0, 0, 3302, 3303, 7, 13, 0, 0, 3303, 3304, 7, 4, 0, 0, 3304, 3305, 7, 5, 0, 0, 3305, 3306, 7, 9, 0, 0, 3306, 3307, 7, 12, 0, 0, 3307, 3308, 7, 17, 0, 0, 3308, 3309, 7, 10, 0, 0, 3309, 672, 1, 0, 0, 0, 3310, 3311, 7, 13, 0, 0, 3311, 3312, 7, 12, 0, 0, 3312, 3313, 7, 4, 0, 0, 3313, 3314, 7, 7, 0, 0, 3314, 674, 1, 0, 0, 0, 3315, 3316, 7, 13, 0, 0, 3316, 3317, 7, 12, 0, 0, 3317, 3318, 7, 4, 0, 0, 3318, 3319, 7, 7, 0, 0, 3319, 3320, 7, 9, 0, 0, 3320, 676, 1, 0, 0, 0, 3321, 3322, 7, 13, 0, 0, 3322, 3323, 7, 17, 0, 0, 3323, 3324, 7, 12, 0, 0, 3324, 3325, 7, 1, 0, 0, 3325, 678, 1, 0, 0, 0, 3326, 3327, 7, 7, 0, 0, 3327, 3328, 7, 4, 0, 0, 3328, 3329, 7, 4, 0, 0, 3329, 3330, 7, 20, 0, 0, 3330, 680, 1, 0, 0, 0, 3331, 3332, 7, 7, 0, 0, 3332, 3333, 7, 4, 0, 0, 3333, 3334, 7, 4, 0, 0, 3334, 3335, 7, 20, 0, 0, 3335, 3336, 7, 9, 0, 0, 3336, 682, 1, 0, 0, 0, 3337, 3338, 7, 7, 0, 0, 3338, 3339, 7, 16, 0, 0, 3339, 3340, 7, 4, 0, 0, 3340, 3341, 7, 10, 0, 0, 3341, 684, 1, 0, 0, 0, 3342, 3343, 7, 7, 0, 0, 3343, 3344, 7, 16, 0, 0, 3344, 3345, 7, 4, 0, 0, 3345, 3346, 7, 5, 0, 0, 3346, 3347, 7, 4, 0, 0, 3347, 686, 1, 0, 0, 0, 3348, 3349, 7, 7, 0, 0, 3349, 3350, 7, 12, 0, 0, 3350, 3351, 7, 10, 0, 0, 3351, 3352, 7, 1, 0, 0, 3352, 3353, 7, 17, 0, 0, 3353, 3354, 7, 7, 0, 0, 3354, 688, 1, 0, 0, 0, 3355, 3356, 7, 7, 0, 0, 3356, 3357, 7, 12, 0, 0, 3357, 3358, 7, 3, 0, 0, 3358, 3359, 7, 16, 0, 0, 3359, 690, 1, 0, 0, 0, 3360, 3361, 7, 7, 0, 0, 3361, 3362, 7, 12, 0, 0, 3362, 3363, 7, 3, 0, 0, 3363, 3364, 7, 16, 0, 0, 3364, 3365, 7, 12, 0, 0, 3365, 3366, 7, 10, 0, 0, 3366, 692, 1, 0, 0, 0, 3367, 3368, 7, 8, 0, 0, 3368, 3369, 7, 4, 0, 0, 3369, 3370, 7, 0, 0, 0, 3370, 3371, 7, 5, 0, 0, 3371, 694, 1, 0, 0, 0, 3372, 3373, 7, 8, 0, 0, 3373, 3374, 7, 4, 0, 0, 3374, 3375, 7, 0, 0, 0, 3375, 3376, 7, 5, 0, 0, 3376, 3377, 7, 9, 0, 0, 3377, 696, 1, 0, 0, 0, 3378, 3379, 7, 11, 0, 0, 3379, 3380, 7, 17, 0, 0, 3380, 3381, 7, 10, 0, 0, 3381, 3382, 7, 4, 0, 0, 3382, 698, 1, 0, 0, 0, 3383, 3384, 7, 11, 0, 0, 3384, 3385, 7, 17, 0, 0, 3385, 3386, 7, 5, 0, 0, 3386, 3387, 7, 1, 0, 0, 3387, 3388, 7, 4, 0, 0, 3388, 3389, 7, 5, 0, 0, 3389, 700, 1, 0, 0, 0, 3390, 3394, 5, 61, 0, 0, 3391, 3392, 5, 61, 0, 0, 3392, 3394, 5, 61, 0, 0, 3393, 3390, 1, 0, 0, 0, 3393, 3391, 1, 0, 0, 0, 3394, 702, 1, 0, 0, 0, 3395, 3396, 5, 60, 0, 0, 3396, 3397, 5, 61, 0, 0, 3397, 3398, 5, 62, 0, 0, 3398, 704, 1, 0, 0, 0, 3399, 3400, 5, 60, 0, 0, 3400, 3401, 5, 62, 0, 0, 3401, 706, 1, 0, 0, 0, 3402, 3403, 5, 33, 0, 0, 3403, 3404, 5, 61, 0, 0, 3404, 708, 1, 0, 0, 0, 3405, 3406, 5, 60, 0, 0, 3406, 710, 1, 0, 0, 0, 3407, 3408, 5, 60, 0, 0, 3408, 3412, 5, 61, 0, 0, 3409, 3410, 5, 33, 0, 0, 3410, 3412, 5, 62, 0, 0, 3411, 3407, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 712, 1, 0, 0, 0, 3413, 3414, 5, 62, 0, 0, 3414, 714, 1, 0, 0, 0, 3415, 3416, 5, 62, 0, 0, 3416, 3420, 5, 61, 0, 0, 3417, 3418, 5, 33, 0, 0, 3418, 3420, 5, 60, 0, 0, 3419, 3415, 1, 0, 0, 0, 3419, 3417, 1, 0, 0, 0, 3420, 716, 1, 0, 0, 0, 3421, 3422, 5, 33, 0, 0, 3422, 718, 1, 0, 0, 0, 3423, 3424, 5, 43, 0, 0, 3424, 720, 1, 0, 0, 0, 3425, 3426, 5, 45, 0, 0, 3426, 722, 1, 0, 0, 0, 3427, 3428, 5, 42, 0, 0, 3428, 724, 1, 0, 0, 0, 3429, 3430, 5, 47, 0, 0, 3430, 726, 1, 0, 0, 0, 3431, 3432, 5, 37, 0, 0, 3432, 728, 1, 0, 0, 0, 3433, 3434, 5, 126, 0, 0, 3434, 730, 1, 0, 0, 0, 3435, 3436, 5, 38, 0, 0, 3436, 732, 1, 0, 0, 0, 3437, 3438, 5, 124, 0, 0, 3438, 734, 1, 0, 0, 0, 3439, 3440, 5, 124, 0, 0, 3440, 3441, 5, 124, 0, 0, 3441, 736, 1, 0, 0, 0, 3442, 3443, 5, 94, 0, 0, 3443, 738, 1, 0, 0, 0, 3444, 3445, 5, 58, 0, 0, 3445, 740, 1, 0, 0, 0, 3446, 3447, 5, 45, 0, 0, 3447, 3448, 5, 62, 0, 0, 3448, 742, 1, 0, 0, 0, 3449, 3450, 5, 61, 0, 0, 3450, 3451, 5, 62, 0, 0, 3451, 744, 1, 0, 0, 0, 3452, 3453, 5, 47, 0, 0, 3453, 3454, 5, 42, 0, 0, 3454, 3455, 5, 43, 0, 0, 3455, 746, 1, 0, 0, 0, 3456, 3457, 5, 42, 0, 0, 3457, 3458, 5, 47, 0, 0, 3458, 748, 1, 0, 0, 0, 3459, 3460, 5, 63, 0, 0, 3460, 750, 1, 0, 0, 0, 3461, 3467, 5, 39, 0, 0, 3462, 3466, 8, 26, 0, 0, 3463, 3464, 5, 92, 0, 0, 3464, 3466, 9, 0, 0, 0, 3465, 3462, 1, 0, 0, 0, 3465, 3463, 1, 0, 0, 0, 3466, 3469, 1, 0, 0, 0, 3467, 3465, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3467, 1, 0, 0, 0, 3470, 3492, 5, 39, 0, 0, 3471, 3472, 7, 5, 0, 0, 3472, 3473, 5, 39, 0, 0, 3473, 3477, 1, 0, 0, 0, 3474, 3476, 8, 27, 0, 0, 3475, 3474, 1, 0, 0, 0, 3476, 3479, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3480, 1, 0, 0, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3492, 5, 39, 0, 0, 3481, 3482, 7, 5, 0, 0, 3482, 3483, 5, 34, 0, 0, 3483, 3487, 1, 0, 0, 0, 3484, 3486, 8, 28, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 3489, 1, 0, 0, 0, 3487, 3485, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3490, 3492, 5, 34, 0, 0, 3491, 3461, 1, 0, 0, 0, 3491, 3471, 1, 0, 0, 0, 3491, 3481, 1, 0, 0, 0, 3492, 752, 1, 0, 0, 0, 3493, 3499, 5, 34, 0, 0, 3494, 3498, 8, 29, 0, 0, 3495, 3496, 5, 92, 0, 0, 3496, 3498, 9, 0, 0, 0, 3497, 3494, 1, 0, 0, 0, 3497, 3495, 1, 0, 0, 0, 3498, 3501, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3502, 3503, 5, 34, 0, 0, 3503, 754, 1, 0, 0, 0, 3504, 3506, 3, 781, 390, 0, 3505, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3505, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3510, 7, 6, 0, 0, 3510, 756, 1, 0, 0, 0, 3511, 3513, 3, 781, 390, 0, 3512, 3511, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3512, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3517, 7, 9, 0, 0, 3517, 758, 1, 0, 0, 0, 3518, 3520, 3, 781, 390, 0, 3519, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3523, 1, 0, 0, 0, 3523, 3524, 7, 8, 0, 0, 3524, 760, 1, 0, 0, 0, 3525, 3527, 3, 781, 390, 0, 3526, 3525, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 762, 1, 0, 0, 0, 3530, 3532, 3, 781, 390, 0, 3531, 3530, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 3536, 3, 779, 389, 0, 3536, 3541, 1, 0, 0, 0, 3537, 3538, 3, 777, 388, 0, 3538, 3539, 3, 779, 389, 0, 3539, 3541, 1, 0, 0, 0, 3540, 3531, 1, 0, 0, 0, 3540, 3537, 1, 0, 0, 0, 3541, 764, 1, 0, 0, 0, 3542, 3543, 3, 777, 388, 0, 3543, 766, 1, 0, 0, 0, 3544, 3546, 3, 781, 390, 0, 3545, 3544, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3545, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3550, 1, 0, 0, 0, 3549, 3551, 3, 779, 389, 0, 3550, 3549, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 7, 2, 0, 0, 3553, 3561, 1, 0, 0, 0, 3554, 3556, 3, 777, 388, 0, 3555, 3557, 3, 779, 389, 0, 3556, 3555, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3559, 7, 2, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3545, 1, 0, 0, 0, 3560, 3554, 1, 0, 0, 0, 3561, 768, 1, 0, 0, 0, 3562, 3564, 3, 781, 390, 0, 3563, 3562, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 3563, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 779, 389, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3571, 7, 1, 0, 0, 3571, 3579, 1, 0, 0, 0, 3572, 3574, 3, 777, 388, 0, 3573, 3575, 3, 779, 389, 0, 3574, 3573, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3577, 7, 1, 0, 0, 3577, 3579, 1, 0, 0, 0, 3578, 3563, 1, 0, 0, 0, 3578, 3572, 1, 0, 0, 0, 3579, 770, 1, 0, 0, 0, 3580, 3582, 3, 781, 390, 0, 3581, 3580, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 779, 389, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3589, 7, 18, 0, 0, 3589, 3590, 7, 1, 0, 0, 3590, 3599, 1, 0, 0, 0, 3591, 3593, 3, 777, 388, 0, 3592, 3594, 3, 779, 389, 0, 3593, 3592, 1, 0, 0, 0, 3593, 3594, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 7, 18, 0, 0, 3596, 3597, 7, 1, 0, 0, 3597, 3599, 1, 0, 0, 0, 3598, 3581, 1, 0, 0, 0, 3598, 3591, 1, 0, 0, 0, 3599, 772, 1, 0, 0, 0, 3600, 3604, 3, 783, 391, 0, 3601, 3604, 3, 781, 390, 0, 3602, 3604, 5, 95, 0, 0, 3603, 3600, 1, 0, 0, 0, 3603, 3601, 1, 0, 0, 0, 3603, 3602, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 774, 1, 0, 0, 0, 3607, 3613, 5, 96, 0, 0, 3608, 3612, 8, 30, 0, 0, 3609, 3610, 5, 96, 0, 0, 3610, 3612, 5, 96, 0, 0, 3611, 3608, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3616, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3617, 5, 96, 0, 0, 3617, 776, 1, 0, 0, 0, 3618, 3620, 3, 781, 390, 0, 3619, 3618, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3621, 3622, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3627, 5, 46, 0, 0, 3624, 3626, 3, 781, 390, 0, 3625, 3624, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3637, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 46, 0, 0, 3631, 3633, 3, 781, 390, 0, 3632, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3632, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3619, 1, 0, 0, 0, 3636, 3630, 1, 0, 0, 0, 3637, 778, 1, 0, 0, 0, 3638, 3640, 7, 4, 0, 0, 3639, 3641, 7, 31, 0, 0, 3640, 3639, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3644, 3, 781, 390, 0, 3643, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3643, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 780, 1, 0, 0, 0, 3647, 3648, 7, 32, 0, 0, 3648, 782, 1, 0, 0, 0, 3649, 3650, 7, 33, 0, 0, 3650, 784, 1, 0, 0, 0, 3651, 3652, 5, 45, 0, 0, 3652, 3653, 5, 45, 0, 0, 3653, 3659, 1, 0, 0, 0, 3654, 3655, 5, 92, 0, 0, 3655, 3658, 5, 10, 0, 0, 3656, 3658, 8, 34, 0, 0, 3657, 3654, 1, 0, 0, 0, 3657, 3656, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3663, 1, 0, 0, 0, 3661, 3659, 1, 0, 0, 0, 3662, 3664, 5, 13, 0, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3666, 1, 0, 0, 0, 3665, 3667, 5, 10, 0, 0, 3666, 3665, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 6, 392, 0, 0, 3669, 786, 1, 0, 0, 0, 3670, 3671, 5, 47, 0, 0, 3671, 3672, 5, 42, 0, 0, 3672, 3677, 1, 0, 0, 0, 3673, 3676, 3, 787, 393, 0, 3674, 3676, 9, 0, 0, 0, 3675, 3673, 1, 0, 0, 0, 3675, 3674, 1, 0, 0, 0, 3676, 3679, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3677, 3675, 1, 0, 0, 0, 3678, 3684, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3680, 3681, 5, 42, 0, 0, 3681, 3685, 5, 47, 0, 0, 3682, 3683, 6, 393, 1, 0, 3683, 3685, 5, 0, 0, 1, 3684, 3680, 1, 0, 0, 0, 3684, 3682, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3687, 6, 393, 0, 0, 3687, 788, 1, 0, 0, 0, 3688, 3690, 7, 35, 0, 0, 3689, 3688, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 6, 394, 0, 0, 3694, 790, 1, 0, 0, 0, 3695, 3696, 9, 0, 0, 0, 3696, 792, 1, 0, 0, 0, 47, 0, 3393, 3411, 3419, 3465, 3467, 3477, 3487, 3491, 3497, 3499, 3507, 3514, 3521, 3528, 3533, 3540, 3547, 3550, 3556, 3560, 3565, 3568, 3574, 3578, 3583, 3586, 3593, 3598, 3603, 3605, 3611, 3613, 3621, 3627, 3634, 3636, 3640, 3645, 3657, 3659, 3663, 3666, 3675, 3677, 3684, 3691, 2, 0, 1, 0, 1, 393, 0] \ No newline at end of file +[4, 0, 393, 3709, 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, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 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, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 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, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 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, 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, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 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, 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, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 45, 1, 45, 1, 45, 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, 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, 49, 1, 49, 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, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 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, 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, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 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, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 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, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 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, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 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, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 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, 75, 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, 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, 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, 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, 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, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 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, 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, 93, 1, 93, 1, 93, 1, 93, 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, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 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, 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, 105, 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, 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, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 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, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 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, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 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, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 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, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 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, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 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, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 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, 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, 144, 1, 145, 1, 145, 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, 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, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 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, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 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, 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, 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, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 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, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 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, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 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, 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, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 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, 187, 1, 187, 1, 187, 1, 187, 1, 187, 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, 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, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 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, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 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, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 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, 211, 1, 211, 1, 211, 1, 211, 1, 211, 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, 214, 1, 214, 1, 214, 1, 214, 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, 215, 1, 216, 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, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 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, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 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, 223, 1, 223, 1, 223, 1, 223, 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, 225, 1, 225, 1, 225, 1, 226, 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, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 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, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 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, 241, 1, 241, 1, 241, 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, 242, 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, 245, 1, 245, 1, 245, 1, 246, 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, 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, 250, 1, 250, 1, 250, 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, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 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, 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, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 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, 266, 1, 266, 1, 266, 1, 266, 1, 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, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 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, 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, 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, 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, 281, 1, 281, 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, 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, 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, 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, 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, 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, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 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, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 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, 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, 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, 305, 1, 305, 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, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 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, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 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, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 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, 316, 1, 316, 1, 317, 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, 319, 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, 320, 1, 320, 1, 320, 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, 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, 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, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 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, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 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, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 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, 345, 1, 345, 1, 345, 1, 345, 1, 345, 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, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 3406, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 3424, 8, 356, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 3432, 8, 358, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 3478, 8, 376, 10, 376, 12, 376, 3481, 9, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 3488, 8, 376, 10, 376, 12, 376, 3491, 9, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 3498, 8, 376, 10, 376, 12, 376, 3501, 9, 376, 1, 376, 3, 376, 3504, 8, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 3510, 8, 377, 10, 377, 12, 377, 3513, 9, 377, 1, 377, 1, 377, 1, 378, 4, 378, 3518, 8, 378, 11, 378, 12, 378, 3519, 1, 378, 1, 378, 1, 379, 4, 379, 3525, 8, 379, 11, 379, 12, 379, 3526, 1, 379, 1, 379, 1, 380, 4, 380, 3532, 8, 380, 11, 380, 12, 380, 3533, 1, 380, 1, 380, 1, 381, 4, 381, 3539, 8, 381, 11, 381, 12, 381, 3540, 1, 382, 4, 382, 3544, 8, 382, 11, 382, 12, 382, 3545, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 3553, 8, 382, 1, 383, 1, 383, 1, 384, 4, 384, 3558, 8, 384, 11, 384, 12, 384, 3559, 1, 384, 3, 384, 3563, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 3569, 8, 384, 1, 384, 1, 384, 3, 384, 3573, 8, 384, 1, 385, 4, 385, 3576, 8, 385, 11, 385, 12, 385, 3577, 1, 385, 3, 385, 3581, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 3587, 8, 385, 1, 385, 1, 385, 3, 385, 3591, 8, 385, 1, 386, 4, 386, 3594, 8, 386, 11, 386, 12, 386, 3595, 1, 386, 3, 386, 3599, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 3606, 8, 386, 1, 386, 1, 386, 1, 386, 3, 386, 3611, 8, 386, 1, 387, 1, 387, 1, 387, 4, 387, 3616, 8, 387, 11, 387, 12, 387, 3617, 1, 388, 1, 388, 1, 388, 1, 388, 5, 388, 3624, 8, 388, 10, 388, 12, 388, 3627, 9, 388, 1, 388, 1, 388, 1, 389, 4, 389, 3632, 8, 389, 11, 389, 12, 389, 3633, 1, 389, 1, 389, 5, 389, 3638, 8, 389, 10, 389, 12, 389, 3641, 9, 389, 1, 389, 1, 389, 4, 389, 3645, 8, 389, 11, 389, 12, 389, 3646, 3, 389, 3649, 8, 389, 1, 390, 1, 390, 3, 390, 3653, 8, 390, 1, 390, 4, 390, 3656, 8, 390, 11, 390, 12, 390, 3657, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 5, 393, 3670, 8, 393, 10, 393, 12, 393, 3673, 9, 393, 1, 393, 3, 393, 3676, 8, 393, 1, 393, 3, 393, 3679, 8, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 5, 394, 3688, 8, 394, 10, 394, 12, 394, 3691, 9, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 3697, 8, 394, 1, 394, 1, 394, 1, 395, 4, 395, 3702, 8, 395, 11, 395, 12, 395, 3703, 1, 395, 1, 395, 1, 396, 1, 396, 1, 3689, 0, 397, 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, 0, 781, 0, 783, 0, 785, 0, 787, 390, 789, 391, 791, 392, 793, 393, 1, 0, 36, 2, 0, 65, 65, 97, 97, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0, 84, 84, 116, 116, 2, 0, 69, 69, 101, 101, 2, 0, 82, 82, 114, 114, 2, 0, 76, 76, 108, 108, 2, 0, 87, 87, 119, 119, 2, 0, 89, 89, 121, 121, 2, 0, 83, 83, 115, 115, 2, 0, 78, 78, 110, 110, 2, 0, 90, 90, 122, 122, 2, 0, 73, 73, 105, 105, 2, 0, 86, 86, 118, 118, 2, 0, 85, 85, 117, 117, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 79, 79, 111, 111, 2, 0, 66, 66, 98, 98, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 77, 77, 109, 109, 2, 0, 80, 80, 112, 112, 2, 0, 88, 88, 120, 120, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 2, 0, 39, 39, 92, 92, 1, 0, 39, 39, 1, 0, 34, 34, 2, 0, 34, 34, 92, 92, 1, 0, 96, 96, 2, 0, 43, 43, 45, 45, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 3752, 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, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 1, 795, 1, 0, 0, 0, 3, 797, 1, 0, 0, 0, 5, 799, 1, 0, 0, 0, 7, 801, 1, 0, 0, 0, 9, 803, 1, 0, 0, 0, 11, 805, 1, 0, 0, 0, 13, 807, 1, 0, 0, 0, 15, 809, 1, 0, 0, 0, 17, 813, 1, 0, 0, 0, 19, 819, 1, 0, 0, 0, 21, 823, 1, 0, 0, 0, 23, 829, 1, 0, 0, 0, 25, 836, 1, 0, 0, 0, 27, 844, 1, 0, 0, 0, 29, 848, 1, 0, 0, 0, 31, 853, 1, 0, 0, 0, 33, 857, 1, 0, 0, 0, 35, 867, 1, 0, 0, 0, 37, 875, 1, 0, 0, 0, 39, 881, 1, 0, 0, 0, 41, 884, 1, 0, 0, 0, 43, 888, 1, 0, 0, 0, 45, 891, 1, 0, 0, 0, 47, 905, 1, 0, 0, 0, 49, 913, 1, 0, 0, 0, 51, 920, 1, 0, 0, 0, 53, 927, 1, 0, 0, 0, 55, 935, 1, 0, 0, 0, 57, 940, 1, 0, 0, 0, 59, 947, 1, 0, 0, 0, 61, 955, 1, 0, 0, 0, 63, 958, 1, 0, 0, 0, 65, 963, 1, 0, 0, 0, 67, 969, 1, 0, 0, 0, 69, 977, 1, 0, 0, 0, 71, 982, 1, 0, 0, 0, 73, 987, 1, 0, 0, 0, 75, 995, 1, 0, 0, 0, 77, 1004, 1, 0, 0, 0, 79, 1011, 1, 0, 0, 0, 81, 1016, 1, 0, 0, 0, 83, 1026, 1, 0, 0, 0, 85, 1032, 1, 0, 0, 0, 87, 1038, 1, 0, 0, 0, 89, 1046, 1, 0, 0, 0, 91, 1056, 1, 0, 0, 0, 93, 1064, 1, 0, 0, 0, 95, 1072, 1, 0, 0, 0, 97, 1083, 1, 0, 0, 0, 99, 1090, 1, 0, 0, 0, 101, 1098, 1, 0, 0, 0, 103, 1106, 1, 0, 0, 0, 105, 1113, 1, 0, 0, 0, 107, 1121, 1, 0, 0, 0, 109, 1133, 1, 0, 0, 0, 111, 1141, 1, 0, 0, 0, 113, 1153, 1, 0, 0, 0, 115, 1164, 1, 0, 0, 0, 117, 1169, 1, 0, 0, 0, 119, 1176, 1, 0, 0, 0, 121, 1182, 1, 0, 0, 0, 123, 1187, 1, 0, 0, 0, 125, 1195, 1, 0, 0, 0, 127, 1208, 1, 0, 0, 0, 129, 1221, 1, 0, 0, 0, 131, 1239, 1, 0, 0, 0, 133, 1252, 1, 0, 0, 0, 135, 1256, 1, 0, 0, 0, 137, 1261, 1, 0, 0, 0, 139, 1271, 1, 0, 0, 0, 141, 1276, 1, 0, 0, 0, 143, 1281, 1, 0, 0, 0, 145, 1290, 1, 0, 0, 0, 147, 1300, 1, 0, 0, 0, 149, 1308, 1, 0, 0, 0, 151, 1317, 1, 0, 0, 0, 153, 1326, 1, 0, 0, 0, 155, 1336, 1, 0, 0, 0, 157, 1349, 1, 0, 0, 0, 159, 1353, 1, 0, 0, 0, 161, 1361, 1, 0, 0, 0, 163, 1369, 1, 0, 0, 0, 165, 1377, 1, 0, 0, 0, 167, 1385, 1, 0, 0, 0, 169, 1392, 1, 0, 0, 0, 171, 1402, 1, 0, 0, 0, 173, 1407, 1, 0, 0, 0, 175, 1416, 1, 0, 0, 0, 177, 1420, 1, 0, 0, 0, 179, 1432, 1, 0, 0, 0, 181, 1442, 1, 0, 0, 0, 183, 1450, 1, 0, 0, 0, 185, 1459, 1, 0, 0, 0, 187, 1470, 1, 0, 0, 0, 189, 1474, 1, 0, 0, 0, 191, 1481, 1, 0, 0, 0, 193, 1486, 1, 0, 0, 0, 195, 1491, 1, 0, 0, 0, 197, 1498, 1, 0, 0, 0, 199, 1502, 1, 0, 0, 0, 201, 1509, 1, 0, 0, 0, 203, 1517, 1, 0, 0, 0, 205, 1524, 1, 0, 0, 0, 207, 1533, 1, 0, 0, 0, 209, 1541, 1, 0, 0, 0, 211, 1548, 1, 0, 0, 0, 213, 1556, 1, 0, 0, 0, 215, 1563, 1, 0, 0, 0, 217, 1572, 1, 0, 0, 0, 219, 1581, 1, 0, 0, 0, 221, 1589, 1, 0, 0, 0, 223, 1595, 1, 0, 0, 0, 225, 1601, 1, 0, 0, 0, 227, 1608, 1, 0, 0, 0, 229, 1615, 1, 0, 0, 0, 231, 1626, 1, 0, 0, 0, 233, 1632, 1, 0, 0, 0, 235, 1638, 1, 0, 0, 0, 237, 1648, 1, 0, 0, 0, 239, 1652, 1, 0, 0, 0, 241, 1660, 1, 0, 0, 0, 243, 1667, 1, 0, 0, 0, 245, 1677, 1, 0, 0, 0, 247, 1682, 1, 0, 0, 0, 249, 1687, 1, 0, 0, 0, 251, 1696, 1, 0, 0, 0, 253, 1706, 1, 0, 0, 0, 255, 1716, 1, 0, 0, 0, 257, 1723, 1, 0, 0, 0, 259, 1729, 1, 0, 0, 0, 261, 1735, 1, 0, 0, 0, 263, 1744, 1, 0, 0, 0, 265, 1751, 1, 0, 0, 0, 267, 1753, 1, 0, 0, 0, 269, 1758, 1, 0, 0, 0, 271, 1764, 1, 0, 0, 0, 273, 1775, 1, 0, 0, 0, 275, 1778, 1, 0, 0, 0, 277, 1785, 1, 0, 0, 0, 279, 1792, 1, 0, 0, 0, 281, 1795, 1, 0, 0, 0, 283, 1803, 1, 0, 0, 0, 285, 1809, 1, 0, 0, 0, 287, 1817, 1, 0, 0, 0, 289, 1823, 1, 0, 0, 0, 291, 1830, 1, 0, 0, 0, 293, 1842, 1, 0, 0, 0, 295, 1849, 1, 0, 0, 0, 297, 1859, 1, 0, 0, 0, 299, 1868, 1, 0, 0, 0, 301, 1872, 1, 0, 0, 0, 303, 1880, 1, 0, 0, 0, 305, 1885, 1, 0, 0, 0, 307, 1888, 1, 0, 0, 0, 309, 1894, 1, 0, 0, 0, 311, 1899, 1, 0, 0, 0, 313, 1904, 1, 0, 0, 0, 315, 1909, 1, 0, 0, 0, 317, 1917, 1, 0, 0, 0, 319, 1922, 1, 0, 0, 0, 321, 1930, 1, 0, 0, 0, 323, 1935, 1, 0, 0, 0, 325, 1945, 1, 0, 0, 0, 327, 1950, 1, 0, 0, 0, 329, 1956, 1, 0, 0, 0, 331, 1962, 1, 0, 0, 0, 333, 1968, 1, 0, 0, 0, 335, 1973, 1, 0, 0, 0, 337, 1978, 1, 0, 0, 0, 339, 1984, 1, 0, 0, 0, 341, 1993, 1, 0, 0, 0, 343, 1998, 1, 0, 0, 0, 345, 2004, 1, 0, 0, 0, 347, 2012, 1, 0, 0, 0, 349, 2017, 1, 0, 0, 0, 351, 2023, 1, 0, 0, 0, 353, 2036, 1, 0, 0, 0, 355, 2040, 1, 0, 0, 0, 357, 2048, 1, 0, 0, 0, 359, 2054, 1, 0, 0, 0, 361, 2066, 1, 0, 0, 0, 363, 2079, 1, 0, 0, 0, 365, 2091, 1, 0, 0, 0, 367, 2104, 1, 0, 0, 0, 369, 2111, 1, 0, 0, 0, 371, 2119, 1, 0, 0, 0, 373, 2125, 1, 0, 0, 0, 375, 2132, 1, 0, 0, 0, 377, 2137, 1, 0, 0, 0, 379, 2142, 1, 0, 0, 0, 381, 2152, 1, 0, 0, 0, 383, 2163, 1, 0, 0, 0, 385, 2174, 1, 0, 0, 0, 387, 2186, 1, 0, 0, 0, 389, 2194, 1, 0, 0, 0, 391, 2197, 1, 0, 0, 0, 393, 2204, 1, 0, 0, 0, 395, 2208, 1, 0, 0, 0, 397, 2213, 1, 0, 0, 0, 399, 2219, 1, 0, 0, 0, 401, 2227, 1, 0, 0, 0, 403, 2230, 1, 0, 0, 0, 405, 2237, 1, 0, 0, 0, 407, 2240, 1, 0, 0, 0, 409, 2245, 1, 0, 0, 0, 411, 2254, 1, 0, 0, 0, 413, 2261, 1, 0, 0, 0, 415, 2269, 1, 0, 0, 0, 417, 2272, 1, 0, 0, 0, 419, 2278, 1, 0, 0, 0, 421, 2282, 1, 0, 0, 0, 423, 2288, 1, 0, 0, 0, 425, 2301, 1, 0, 0, 0, 427, 2306, 1, 0, 0, 0, 429, 2315, 1, 0, 0, 0, 431, 2323, 1, 0, 0, 0, 433, 2333, 1, 0, 0, 0, 435, 2343, 1, 0, 0, 0, 437, 2355, 1, 0, 0, 0, 439, 2366, 1, 0, 0, 0, 441, 2382, 1, 0, 0, 0, 443, 2398, 1, 0, 0, 0, 445, 2406, 1, 0, 0, 0, 447, 2412, 1, 0, 0, 0, 449, 2420, 1, 0, 0, 0, 451, 2429, 1, 0, 0, 0, 453, 2439, 1, 0, 0, 0, 455, 2447, 1, 0, 0, 0, 457, 2458, 1, 0, 0, 0, 459, 2469, 1, 0, 0, 0, 461, 2475, 1, 0, 0, 0, 463, 2483, 1, 0, 0, 0, 465, 2489, 1, 0, 0, 0, 467, 2495, 1, 0, 0, 0, 469, 2500, 1, 0, 0, 0, 471, 2513, 1, 0, 0, 0, 473, 2526, 1, 0, 0, 0, 475, 2534, 1, 0, 0, 0, 477, 2541, 1, 0, 0, 0, 479, 2552, 1, 0, 0, 0, 481, 2560, 1, 0, 0, 0, 483, 2567, 1, 0, 0, 0, 485, 2574, 1, 0, 0, 0, 487, 2585, 1, 0, 0, 0, 489, 2593, 1, 0, 0, 0, 491, 2599, 1, 0, 0, 0, 493, 2607, 1, 0, 0, 0, 495, 2616, 1, 0, 0, 0, 497, 2624, 1, 0, 0, 0, 499, 2631, 1, 0, 0, 0, 501, 2637, 1, 0, 0, 0, 503, 2643, 1, 0, 0, 0, 505, 2650, 1, 0, 0, 0, 507, 2655, 1, 0, 0, 0, 509, 2661, 1, 0, 0, 0, 511, 2670, 1, 0, 0, 0, 513, 2677, 1, 0, 0, 0, 515, 2681, 1, 0, 0, 0, 517, 2686, 1, 0, 0, 0, 519, 2693, 1, 0, 0, 0, 521, 2701, 1, 0, 0, 0, 523, 2708, 1, 0, 0, 0, 525, 2716, 1, 0, 0, 0, 527, 2723, 1, 0, 0, 0, 529, 2728, 1, 0, 0, 0, 531, 2738, 1, 0, 0, 0, 533, 2744, 1, 0, 0, 0, 535, 2760, 1, 0, 0, 0, 537, 2773, 1, 0, 0, 0, 539, 2777, 1, 0, 0, 0, 541, 2783, 1, 0, 0, 0, 543, 2788, 1, 0, 0, 0, 545, 2794, 1, 0, 0, 0, 547, 2799, 1, 0, 0, 0, 549, 2806, 1, 0, 0, 0, 551, 2813, 1, 0, 0, 0, 553, 2822, 1, 0, 0, 0, 555, 2827, 1, 0, 0, 0, 557, 2832, 1, 0, 0, 0, 559, 2839, 1, 0, 0, 0, 561, 2846, 1, 0, 0, 0, 563, 2852, 1, 0, 0, 0, 565, 2863, 1, 0, 0, 0, 567, 2870, 1, 0, 0, 0, 569, 2879, 1, 0, 0, 0, 571, 2886, 1, 0, 0, 0, 573, 2893, 1, 0, 0, 0, 575, 2900, 1, 0, 0, 0, 577, 2910, 1, 0, 0, 0, 579, 2915, 1, 0, 0, 0, 581, 2922, 1, 0, 0, 0, 583, 2934, 1, 0, 0, 0, 585, 2949, 1, 0, 0, 0, 587, 2955, 1, 0, 0, 0, 589, 2962, 1, 0, 0, 0, 591, 2974, 1, 0, 0, 0, 593, 2981, 1, 0, 0, 0, 595, 2995, 1, 0, 0, 0, 597, 3005, 1, 0, 0, 0, 599, 3016, 1, 0, 0, 0, 601, 3021, 1, 0, 0, 0, 603, 3026, 1, 0, 0, 0, 605, 3035, 1, 0, 0, 0, 607, 3045, 1, 0, 0, 0, 609, 3059, 1, 0, 0, 0, 611, 3073, 1, 0, 0, 0, 613, 3086, 1, 0, 0, 0, 615, 3100, 1, 0, 0, 0, 617, 3108, 1, 0, 0, 0, 619, 3111, 1, 0, 0, 0, 621, 3117, 1, 0, 0, 0, 623, 3126, 1, 0, 0, 0, 625, 3138, 1, 0, 0, 0, 627, 3151, 1, 0, 0, 0, 629, 3161, 1, 0, 0, 0, 631, 3166, 1, 0, 0, 0, 633, 3171, 1, 0, 0, 0, 635, 3180, 1, 0, 0, 0, 637, 3189, 1, 0, 0, 0, 639, 3194, 1, 0, 0, 0, 641, 3204, 1, 0, 0, 0, 643, 3214, 1, 0, 0, 0, 645, 3222, 1, 0, 0, 0, 647, 3228, 1, 0, 0, 0, 649, 3235, 1, 0, 0, 0, 651, 3243, 1, 0, 0, 0, 653, 3250, 1, 0, 0, 0, 655, 3258, 1, 0, 0, 0, 657, 3264, 1, 0, 0, 0, 659, 3271, 1, 0, 0, 0, 661, 3275, 1, 0, 0, 0, 663, 3280, 1, 0, 0, 0, 665, 3286, 1, 0, 0, 0, 667, 3293, 1, 0, 0, 0, 669, 3301, 1, 0, 0, 0, 671, 3305, 1, 0, 0, 0, 673, 3314, 1, 0, 0, 0, 675, 3322, 1, 0, 0, 0, 677, 3327, 1, 0, 0, 0, 679, 3333, 1, 0, 0, 0, 681, 3338, 1, 0, 0, 0, 683, 3343, 1, 0, 0, 0, 685, 3349, 1, 0, 0, 0, 687, 3354, 1, 0, 0, 0, 689, 3360, 1, 0, 0, 0, 691, 3367, 1, 0, 0, 0, 693, 3372, 1, 0, 0, 0, 695, 3379, 1, 0, 0, 0, 697, 3384, 1, 0, 0, 0, 699, 3390, 1, 0, 0, 0, 701, 3395, 1, 0, 0, 0, 703, 3405, 1, 0, 0, 0, 705, 3407, 1, 0, 0, 0, 707, 3411, 1, 0, 0, 0, 709, 3414, 1, 0, 0, 0, 711, 3417, 1, 0, 0, 0, 713, 3423, 1, 0, 0, 0, 715, 3425, 1, 0, 0, 0, 717, 3431, 1, 0, 0, 0, 719, 3433, 1, 0, 0, 0, 721, 3435, 1, 0, 0, 0, 723, 3437, 1, 0, 0, 0, 725, 3439, 1, 0, 0, 0, 727, 3441, 1, 0, 0, 0, 729, 3443, 1, 0, 0, 0, 731, 3445, 1, 0, 0, 0, 733, 3447, 1, 0, 0, 0, 735, 3449, 1, 0, 0, 0, 737, 3451, 1, 0, 0, 0, 739, 3454, 1, 0, 0, 0, 741, 3456, 1, 0, 0, 0, 743, 3458, 1, 0, 0, 0, 745, 3461, 1, 0, 0, 0, 747, 3464, 1, 0, 0, 0, 749, 3468, 1, 0, 0, 0, 751, 3471, 1, 0, 0, 0, 753, 3503, 1, 0, 0, 0, 755, 3505, 1, 0, 0, 0, 757, 3517, 1, 0, 0, 0, 759, 3524, 1, 0, 0, 0, 761, 3531, 1, 0, 0, 0, 763, 3538, 1, 0, 0, 0, 765, 3552, 1, 0, 0, 0, 767, 3554, 1, 0, 0, 0, 769, 3572, 1, 0, 0, 0, 771, 3590, 1, 0, 0, 0, 773, 3610, 1, 0, 0, 0, 775, 3615, 1, 0, 0, 0, 777, 3619, 1, 0, 0, 0, 779, 3648, 1, 0, 0, 0, 781, 3650, 1, 0, 0, 0, 783, 3659, 1, 0, 0, 0, 785, 3661, 1, 0, 0, 0, 787, 3663, 1, 0, 0, 0, 789, 3682, 1, 0, 0, 0, 791, 3701, 1, 0, 0, 0, 793, 3707, 1, 0, 0, 0, 795, 796, 5, 59, 0, 0, 796, 2, 1, 0, 0, 0, 797, 798, 5, 40, 0, 0, 798, 4, 1, 0, 0, 0, 799, 800, 5, 41, 0, 0, 800, 6, 1, 0, 0, 0, 801, 802, 5, 44, 0, 0, 802, 8, 1, 0, 0, 0, 803, 804, 5, 46, 0, 0, 804, 10, 1, 0, 0, 0, 805, 806, 5, 91, 0, 0, 806, 12, 1, 0, 0, 0, 807, 808, 5, 93, 0, 0, 808, 14, 1, 0, 0, 0, 809, 810, 7, 0, 0, 0, 810, 811, 7, 1, 0, 0, 811, 812, 7, 1, 0, 0, 812, 16, 1, 0, 0, 0, 813, 814, 7, 0, 0, 0, 814, 815, 7, 2, 0, 0, 815, 816, 7, 3, 0, 0, 816, 817, 7, 4, 0, 0, 817, 818, 7, 5, 0, 0, 818, 18, 1, 0, 0, 0, 819, 820, 7, 0, 0, 0, 820, 821, 7, 6, 0, 0, 821, 822, 7, 6, 0, 0, 822, 20, 1, 0, 0, 0, 823, 824, 7, 0, 0, 0, 824, 825, 7, 6, 0, 0, 825, 826, 7, 3, 0, 0, 826, 827, 7, 4, 0, 0, 827, 828, 7, 5, 0, 0, 828, 22, 1, 0, 0, 0, 829, 830, 7, 0, 0, 0, 830, 831, 7, 6, 0, 0, 831, 832, 7, 7, 0, 0, 832, 833, 7, 0, 0, 0, 833, 834, 7, 8, 0, 0, 834, 835, 7, 9, 0, 0, 835, 24, 1, 0, 0, 0, 836, 837, 7, 0, 0, 0, 837, 838, 7, 10, 0, 0, 838, 839, 7, 0, 0, 0, 839, 840, 7, 6, 0, 0, 840, 841, 7, 8, 0, 0, 841, 842, 7, 11, 0, 0, 842, 843, 7, 4, 0, 0, 843, 26, 1, 0, 0, 0, 844, 845, 7, 0, 0, 0, 845, 846, 7, 10, 0, 0, 846, 847, 7, 1, 0, 0, 847, 28, 1, 0, 0, 0, 848, 849, 7, 0, 0, 0, 849, 850, 7, 10, 0, 0, 850, 851, 7, 3, 0, 0, 851, 852, 7, 12, 0, 0, 852, 30, 1, 0, 0, 0, 853, 854, 7, 0, 0, 0, 854, 855, 7, 10, 0, 0, 855, 856, 7, 8, 0, 0, 856, 32, 1, 0, 0, 0, 857, 858, 7, 0, 0, 0, 858, 859, 7, 10, 0, 0, 859, 860, 7, 8, 0, 0, 860, 861, 5, 95, 0, 0, 861, 862, 7, 13, 0, 0, 862, 863, 7, 0, 0, 0, 863, 864, 7, 6, 0, 0, 864, 865, 7, 14, 0, 0, 865, 866, 7, 4, 0, 0, 866, 34, 1, 0, 0, 0, 867, 868, 7, 0, 0, 0, 868, 869, 7, 5, 0, 0, 869, 870, 7, 15, 0, 0, 870, 871, 7, 16, 0, 0, 871, 872, 7, 12, 0, 0, 872, 873, 7, 13, 0, 0, 873, 874, 7, 4, 0, 0, 874, 36, 1, 0, 0, 0, 875, 876, 7, 0, 0, 0, 876, 877, 7, 5, 0, 0, 877, 878, 7, 5, 0, 0, 878, 879, 7, 0, 0, 0, 879, 880, 7, 8, 0, 0, 880, 38, 1, 0, 0, 0, 881, 882, 7, 0, 0, 0, 882, 883, 7, 9, 0, 0, 883, 40, 1, 0, 0, 0, 884, 885, 7, 0, 0, 0, 885, 886, 7, 9, 0, 0, 886, 887, 7, 15, 0, 0, 887, 42, 1, 0, 0, 0, 888, 889, 7, 0, 0, 0, 889, 890, 7, 3, 0, 0, 890, 44, 1, 0, 0, 0, 891, 892, 7, 0, 0, 0, 892, 893, 7, 14, 0, 0, 893, 894, 7, 3, 0, 0, 894, 895, 7, 16, 0, 0, 895, 896, 7, 17, 0, 0, 896, 897, 7, 5, 0, 0, 897, 898, 7, 12, 0, 0, 898, 899, 7, 11, 0, 0, 899, 900, 7, 0, 0, 0, 900, 901, 7, 3, 0, 0, 901, 902, 7, 12, 0, 0, 902, 903, 7, 17, 0, 0, 903, 904, 7, 10, 0, 0, 904, 46, 1, 0, 0, 0, 905, 906, 7, 18, 0, 0, 906, 907, 7, 4, 0, 0, 907, 908, 7, 3, 0, 0, 908, 909, 7, 7, 0, 0, 909, 910, 7, 4, 0, 0, 910, 911, 7, 4, 0, 0, 911, 912, 7, 10, 0, 0, 912, 48, 1, 0, 0, 0, 913, 914, 7, 18, 0, 0, 914, 915, 7, 12, 0, 0, 915, 916, 7, 19, 0, 0, 916, 917, 7, 12, 0, 0, 917, 918, 7, 10, 0, 0, 918, 919, 7, 3, 0, 0, 919, 50, 1, 0, 0, 0, 920, 921, 7, 18, 0, 0, 921, 922, 7, 12, 0, 0, 922, 923, 7, 10, 0, 0, 923, 924, 7, 0, 0, 0, 924, 925, 7, 5, 0, 0, 925, 926, 7, 8, 0, 0, 926, 52, 1, 0, 0, 0, 927, 928, 7, 18, 0, 0, 928, 929, 7, 17, 0, 0, 929, 930, 7, 17, 0, 0, 930, 931, 7, 6, 0, 0, 931, 932, 7, 4, 0, 0, 932, 933, 7, 0, 0, 0, 933, 934, 7, 10, 0, 0, 934, 54, 1, 0, 0, 0, 935, 936, 7, 18, 0, 0, 936, 937, 7, 17, 0, 0, 937, 938, 7, 3, 0, 0, 938, 939, 7, 16, 0, 0, 939, 56, 1, 0, 0, 0, 940, 941, 7, 18, 0, 0, 941, 942, 7, 14, 0, 0, 942, 943, 7, 15, 0, 0, 943, 944, 7, 20, 0, 0, 944, 945, 7, 4, 0, 0, 945, 946, 7, 3, 0, 0, 946, 58, 1, 0, 0, 0, 947, 948, 7, 18, 0, 0, 948, 949, 7, 14, 0, 0, 949, 950, 7, 15, 0, 0, 950, 951, 7, 20, 0, 0, 951, 952, 7, 4, 0, 0, 952, 953, 7, 3, 0, 0, 953, 954, 7, 9, 0, 0, 954, 60, 1, 0, 0, 0, 955, 956, 7, 18, 0, 0, 956, 957, 7, 8, 0, 0, 957, 62, 1, 0, 0, 0, 958, 959, 7, 18, 0, 0, 959, 960, 7, 8, 0, 0, 960, 961, 7, 3, 0, 0, 961, 962, 7, 4, 0, 0, 962, 64, 1, 0, 0, 0, 963, 964, 7, 15, 0, 0, 964, 965, 7, 0, 0, 0, 965, 966, 7, 15, 0, 0, 966, 967, 7, 16, 0, 0, 967, 968, 7, 4, 0, 0, 968, 66, 1, 0, 0, 0, 969, 970, 7, 15, 0, 0, 970, 971, 7, 0, 0, 0, 971, 972, 7, 9, 0, 0, 972, 973, 7, 15, 0, 0, 973, 974, 7, 0, 0, 0, 974, 975, 7, 1, 0, 0, 975, 976, 7, 4, 0, 0, 976, 68, 1, 0, 0, 0, 977, 978, 7, 15, 0, 0, 978, 979, 7, 0, 0, 0, 979, 980, 7, 9, 0, 0, 980, 981, 7, 4, 0, 0, 981, 70, 1, 0, 0, 0, 982, 983, 7, 15, 0, 0, 983, 984, 7, 0, 0, 0, 984, 985, 7, 9, 0, 0, 985, 986, 7, 3, 0, 0, 986, 72, 1, 0, 0, 0, 987, 988, 7, 15, 0, 0, 988, 989, 7, 0, 0, 0, 989, 990, 7, 3, 0, 0, 990, 991, 7, 0, 0, 0, 991, 992, 7, 6, 0, 0, 992, 993, 7, 17, 0, 0, 993, 994, 7, 19, 0, 0, 994, 74, 1, 0, 0, 0, 995, 996, 7, 15, 0, 0, 996, 997, 7, 0, 0, 0, 997, 998, 7, 3, 0, 0, 998, 999, 7, 0, 0, 0, 999, 1000, 7, 6, 0, 0, 1000, 1001, 7, 17, 0, 0, 1001, 1002, 7, 19, 0, 0, 1002, 1003, 7, 9, 0, 0, 1003, 76, 1, 0, 0, 0, 1004, 1005, 7, 15, 0, 0, 1005, 1006, 7, 16, 0, 0, 1006, 1007, 7, 0, 0, 0, 1007, 1008, 7, 10, 0, 0, 1008, 1009, 7, 19, 0, 0, 1009, 1010, 7, 4, 0, 0, 1010, 78, 1, 0, 0, 0, 1011, 1012, 7, 15, 0, 0, 1012, 1013, 7, 16, 0, 0, 1013, 1014, 7, 0, 0, 0, 1014, 1015, 7, 5, 0, 0, 1015, 80, 1, 0, 0, 0, 1016, 1017, 7, 15, 0, 0, 1017, 1018, 7, 16, 0, 0, 1018, 1019, 7, 0, 0, 0, 1019, 1020, 7, 5, 0, 0, 1020, 1021, 7, 0, 0, 0, 1021, 1022, 7, 15, 0, 0, 1022, 1023, 7, 3, 0, 0, 1023, 1024, 7, 4, 0, 0, 1024, 1025, 7, 5, 0, 0, 1025, 82, 1, 0, 0, 0, 1026, 1027, 7, 15, 0, 0, 1027, 1028, 7, 16, 0, 0, 1028, 1029, 7, 4, 0, 0, 1029, 1030, 7, 15, 0, 0, 1030, 1031, 7, 20, 0, 0, 1031, 84, 1, 0, 0, 0, 1032, 1033, 7, 15, 0, 0, 1033, 1034, 7, 6, 0, 0, 1034, 1035, 7, 4, 0, 0, 1035, 1036, 7, 0, 0, 0, 1036, 1037, 7, 5, 0, 0, 1037, 86, 1, 0, 0, 0, 1038, 1039, 7, 15, 0, 0, 1039, 1040, 7, 6, 0, 0, 1040, 1041, 7, 14, 0, 0, 1041, 1042, 7, 9, 0, 0, 1042, 1043, 7, 3, 0, 0, 1043, 1044, 7, 4, 0, 0, 1044, 1045, 7, 5, 0, 0, 1045, 88, 1, 0, 0, 0, 1046, 1047, 7, 15, 0, 0, 1047, 1048, 7, 6, 0, 0, 1048, 1049, 7, 14, 0, 0, 1049, 1050, 7, 9, 0, 0, 1050, 1051, 7, 3, 0, 0, 1051, 1052, 7, 4, 0, 0, 1052, 1053, 7, 5, 0, 0, 1053, 1054, 7, 4, 0, 0, 1054, 1055, 7, 1, 0, 0, 1055, 90, 1, 0, 0, 0, 1056, 1057, 7, 15, 0, 0, 1057, 1058, 7, 17, 0, 0, 1058, 1059, 7, 1, 0, 0, 1059, 1060, 7, 4, 0, 0, 1060, 1061, 7, 19, 0, 0, 1061, 1062, 7, 4, 0, 0, 1062, 1063, 7, 10, 0, 0, 1063, 92, 1, 0, 0, 0, 1064, 1065, 7, 15, 0, 0, 1065, 1066, 7, 17, 0, 0, 1066, 1067, 7, 6, 0, 0, 1067, 1068, 7, 6, 0, 0, 1068, 1069, 7, 0, 0, 0, 1069, 1070, 7, 3, 0, 0, 1070, 1071, 7, 4, 0, 0, 1071, 94, 1, 0, 0, 0, 1072, 1073, 7, 15, 0, 0, 1073, 1074, 7, 17, 0, 0, 1074, 1075, 7, 6, 0, 0, 1075, 1076, 7, 6, 0, 0, 1076, 1077, 7, 4, 0, 0, 1077, 1078, 7, 15, 0, 0, 1078, 1079, 7, 3, 0, 0, 1079, 1080, 7, 12, 0, 0, 1080, 1081, 7, 17, 0, 0, 1081, 1082, 7, 10, 0, 0, 1082, 96, 1, 0, 0, 0, 1083, 1084, 7, 15, 0, 0, 1084, 1085, 7, 17, 0, 0, 1085, 1086, 7, 6, 0, 0, 1086, 1087, 7, 14, 0, 0, 1087, 1088, 7, 21, 0, 0, 1088, 1089, 7, 10, 0, 0, 1089, 98, 1, 0, 0, 0, 1090, 1091, 7, 15, 0, 0, 1091, 1092, 7, 17, 0, 0, 1092, 1093, 7, 6, 0, 0, 1093, 1094, 7, 14, 0, 0, 1094, 1095, 7, 21, 0, 0, 1095, 1096, 7, 10, 0, 0, 1096, 1097, 7, 9, 0, 0, 1097, 100, 1, 0, 0, 0, 1098, 1099, 7, 15, 0, 0, 1099, 1100, 7, 17, 0, 0, 1100, 1101, 7, 21, 0, 0, 1101, 1102, 7, 21, 0, 0, 1102, 1103, 7, 4, 0, 0, 1103, 1104, 7, 10, 0, 0, 1104, 1105, 7, 3, 0, 0, 1105, 102, 1, 0, 0, 0, 1106, 1107, 7, 15, 0, 0, 1107, 1108, 7, 17, 0, 0, 1108, 1109, 7, 21, 0, 0, 1109, 1110, 7, 21, 0, 0, 1110, 1111, 7, 12, 0, 0, 1111, 1112, 7, 3, 0, 0, 1112, 104, 1, 0, 0, 0, 1113, 1114, 7, 15, 0, 0, 1114, 1115, 7, 17, 0, 0, 1115, 1116, 7, 21, 0, 0, 1116, 1117, 7, 22, 0, 0, 1117, 1118, 7, 0, 0, 0, 1118, 1119, 7, 15, 0, 0, 1119, 1120, 7, 3, 0, 0, 1120, 106, 1, 0, 0, 0, 1121, 1122, 7, 15, 0, 0, 1122, 1123, 7, 17, 0, 0, 1123, 1124, 7, 21, 0, 0, 1124, 1125, 7, 22, 0, 0, 1125, 1126, 7, 0, 0, 0, 1126, 1127, 7, 15, 0, 0, 1127, 1128, 7, 3, 0, 0, 1128, 1129, 7, 12, 0, 0, 1129, 1130, 7, 17, 0, 0, 1130, 1131, 7, 10, 0, 0, 1131, 1132, 7, 9, 0, 0, 1132, 108, 1, 0, 0, 0, 1133, 1134, 7, 15, 0, 0, 1134, 1135, 7, 17, 0, 0, 1135, 1136, 7, 21, 0, 0, 1136, 1137, 7, 22, 0, 0, 1137, 1138, 7, 14, 0, 0, 1138, 1139, 7, 3, 0, 0, 1139, 1140, 7, 4, 0, 0, 1140, 110, 1, 0, 0, 0, 1141, 1142, 7, 15, 0, 0, 1142, 1143, 7, 17, 0, 0, 1143, 1144, 7, 10, 0, 0, 1144, 1145, 7, 15, 0, 0, 1145, 1146, 7, 0, 0, 0, 1146, 1147, 7, 3, 0, 0, 1147, 1148, 7, 4, 0, 0, 1148, 1149, 7, 10, 0, 0, 1149, 1150, 7, 0, 0, 0, 1150, 1151, 7, 3, 0, 0, 1151, 1152, 7, 4, 0, 0, 1152, 112, 1, 0, 0, 0, 1153, 1154, 7, 15, 0, 0, 1154, 1155, 7, 17, 0, 0, 1155, 1156, 7, 10, 0, 0, 1156, 1157, 7, 9, 0, 0, 1157, 1158, 7, 3, 0, 0, 1158, 1159, 7, 5, 0, 0, 1159, 1160, 7, 0, 0, 0, 1160, 1161, 7, 12, 0, 0, 1161, 1162, 7, 10, 0, 0, 1162, 1163, 7, 3, 0, 0, 1163, 114, 1, 0, 0, 0, 1164, 1165, 7, 15, 0, 0, 1165, 1166, 7, 17, 0, 0, 1166, 1167, 7, 9, 0, 0, 1167, 1168, 7, 3, 0, 0, 1168, 116, 1, 0, 0, 0, 1169, 1170, 7, 15, 0, 0, 1170, 1171, 7, 5, 0, 0, 1171, 1172, 7, 4, 0, 0, 1172, 1173, 7, 0, 0, 0, 1173, 1174, 7, 3, 0, 0, 1174, 1175, 7, 4, 0, 0, 1175, 118, 1, 0, 0, 0, 1176, 1177, 7, 15, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 17, 0, 0, 1179, 1180, 7, 9, 0, 0, 1180, 1181, 7, 9, 0, 0, 1181, 120, 1, 0, 0, 0, 1182, 1183, 7, 15, 0, 0, 1183, 1184, 7, 14, 0, 0, 1184, 1185, 7, 18, 0, 0, 1185, 1186, 7, 4, 0, 0, 1186, 122, 1, 0, 0, 0, 1187, 1188, 7, 15, 0, 0, 1188, 1189, 7, 14, 0, 0, 1189, 1190, 7, 5, 0, 0, 1190, 1191, 7, 5, 0, 0, 1191, 1192, 7, 4, 0, 0, 1192, 1193, 7, 10, 0, 0, 1193, 1194, 7, 3, 0, 0, 1194, 124, 1, 0, 0, 0, 1195, 1196, 7, 15, 0, 0, 1196, 1197, 7, 14, 0, 0, 1197, 1198, 7, 5, 0, 0, 1198, 1199, 7, 5, 0, 0, 1199, 1200, 7, 4, 0, 0, 1200, 1201, 7, 10, 0, 0, 1201, 1202, 7, 3, 0, 0, 1202, 1203, 5, 95, 0, 0, 1203, 1204, 7, 1, 0, 0, 1204, 1205, 7, 0, 0, 0, 1205, 1206, 7, 3, 0, 0, 1206, 1207, 7, 4, 0, 0, 1207, 126, 1, 0, 0, 0, 1208, 1209, 7, 15, 0, 0, 1209, 1210, 7, 14, 0, 0, 1210, 1211, 7, 5, 0, 0, 1211, 1212, 7, 5, 0, 0, 1212, 1213, 7, 4, 0, 0, 1213, 1214, 7, 10, 0, 0, 1214, 1215, 7, 3, 0, 0, 1215, 1216, 5, 95, 0, 0, 1216, 1217, 7, 3, 0, 0, 1217, 1218, 7, 12, 0, 0, 1218, 1219, 7, 21, 0, 0, 1219, 1220, 7, 4, 0, 0, 1220, 128, 1, 0, 0, 0, 1221, 1222, 7, 15, 0, 0, 1222, 1223, 7, 14, 0, 0, 1223, 1224, 7, 5, 0, 0, 1224, 1225, 7, 5, 0, 0, 1225, 1226, 7, 4, 0, 0, 1226, 1227, 7, 10, 0, 0, 1227, 1228, 7, 3, 0, 0, 1228, 1229, 5, 95, 0, 0, 1229, 1230, 7, 3, 0, 0, 1230, 1231, 7, 12, 0, 0, 1231, 1232, 7, 21, 0, 0, 1232, 1233, 7, 4, 0, 0, 1233, 1234, 7, 9, 0, 0, 1234, 1235, 7, 3, 0, 0, 1235, 1236, 7, 0, 0, 0, 1236, 1237, 7, 21, 0, 0, 1237, 1238, 7, 22, 0, 0, 1238, 130, 1, 0, 0, 0, 1239, 1240, 7, 15, 0, 0, 1240, 1241, 7, 14, 0, 0, 1241, 1242, 7, 5, 0, 0, 1242, 1243, 7, 5, 0, 0, 1243, 1244, 7, 4, 0, 0, 1244, 1245, 7, 10, 0, 0, 1245, 1246, 7, 3, 0, 0, 1246, 1247, 5, 95, 0, 0, 1247, 1248, 7, 14, 0, 0, 1248, 1249, 7, 9, 0, 0, 1249, 1250, 7, 4, 0, 0, 1250, 1251, 7, 5, 0, 0, 1251, 132, 1, 0, 0, 0, 1252, 1253, 7, 1, 0, 0, 1253, 1254, 7, 0, 0, 0, 1254, 1255, 7, 8, 0, 0, 1255, 134, 1, 0, 0, 0, 1256, 1257, 7, 1, 0, 0, 1257, 1258, 7, 0, 0, 0, 1258, 1259, 7, 8, 0, 0, 1259, 1260, 7, 9, 0, 0, 1260, 136, 1, 0, 0, 0, 1261, 1262, 7, 1, 0, 0, 1262, 1263, 7, 0, 0, 0, 1263, 1264, 7, 8, 0, 0, 1264, 1265, 7, 17, 0, 0, 1265, 1266, 7, 2, 0, 0, 1266, 1267, 7, 8, 0, 0, 1267, 1268, 7, 4, 0, 0, 1268, 1269, 7, 0, 0, 0, 1269, 1270, 7, 5, 0, 0, 1270, 138, 1, 0, 0, 0, 1271, 1272, 7, 1, 0, 0, 1272, 1273, 7, 0, 0, 0, 1273, 1274, 7, 3, 0, 0, 1274, 1275, 7, 0, 0, 0, 1275, 140, 1, 0, 0, 0, 1276, 1277, 7, 1, 0, 0, 1277, 1278, 7, 0, 0, 0, 1278, 1279, 7, 3, 0, 0, 1279, 1280, 7, 4, 0, 0, 1280, 142, 1, 0, 0, 0, 1281, 1282, 7, 1, 0, 0, 1282, 1283, 7, 0, 0, 0, 1283, 1284, 7, 3, 0, 0, 1284, 1285, 7, 0, 0, 0, 1285, 1286, 7, 18, 0, 0, 1286, 1287, 7, 0, 0, 0, 1287, 1288, 7, 9, 0, 0, 1288, 1289, 7, 4, 0, 0, 1289, 144, 1, 0, 0, 0, 1290, 1291, 7, 1, 0, 0, 1291, 1292, 7, 0, 0, 0, 1292, 1293, 7, 3, 0, 0, 1293, 1294, 7, 0, 0, 0, 1294, 1295, 7, 18, 0, 0, 1295, 1296, 7, 0, 0, 0, 1296, 1297, 7, 9, 0, 0, 1297, 1298, 7, 4, 0, 0, 1298, 1299, 7, 9, 0, 0, 1299, 146, 1, 0, 0, 0, 1300, 1301, 7, 1, 0, 0, 1301, 1302, 7, 0, 0, 0, 1302, 1303, 7, 3, 0, 0, 1303, 1304, 7, 4, 0, 0, 1304, 1305, 7, 0, 0, 0, 1305, 1306, 7, 1, 0, 0, 1306, 1307, 7, 1, 0, 0, 1307, 148, 1, 0, 0, 0, 1308, 1309, 7, 1, 0, 0, 1309, 1310, 7, 0, 0, 0, 1310, 1311, 7, 3, 0, 0, 1311, 1312, 7, 4, 0, 0, 1312, 1313, 5, 95, 0, 0, 1313, 1314, 7, 0, 0, 0, 1314, 1315, 7, 1, 0, 0, 1315, 1316, 7, 1, 0, 0, 1316, 150, 1, 0, 0, 0, 1317, 1318, 7, 1, 0, 0, 1318, 1319, 7, 0, 0, 0, 1319, 1320, 7, 3, 0, 0, 1320, 1321, 7, 4, 0, 0, 1321, 1322, 7, 1, 0, 0, 1322, 1323, 7, 12, 0, 0, 1323, 1324, 7, 2, 0, 0, 1324, 1325, 7, 2, 0, 0, 1325, 152, 1, 0, 0, 0, 1326, 1327, 7, 1, 0, 0, 1327, 1328, 7, 0, 0, 0, 1328, 1329, 7, 3, 0, 0, 1329, 1330, 7, 4, 0, 0, 1330, 1331, 5, 95, 0, 0, 1331, 1332, 7, 1, 0, 0, 1332, 1333, 7, 12, 0, 0, 1333, 1334, 7, 2, 0, 0, 1334, 1335, 7, 2, 0, 0, 1335, 154, 1, 0, 0, 0, 1336, 1337, 7, 1, 0, 0, 1337, 1338, 7, 18, 0, 0, 1338, 1339, 7, 22, 0, 0, 1339, 1340, 7, 5, 0, 0, 1340, 1341, 7, 17, 0, 0, 1341, 1342, 7, 22, 0, 0, 1342, 1343, 7, 4, 0, 0, 1343, 1344, 7, 5, 0, 0, 1344, 1345, 7, 3, 0, 0, 1345, 1346, 7, 12, 0, 0, 1346, 1347, 7, 4, 0, 0, 1347, 1348, 7, 9, 0, 0, 1348, 156, 1, 0, 0, 0, 1349, 1350, 7, 1, 0, 0, 1350, 1351, 7, 4, 0, 0, 1351, 1352, 7, 15, 0, 0, 1352, 158, 1, 0, 0, 0, 1353, 1354, 7, 1, 0, 0, 1354, 1355, 7, 4, 0, 0, 1355, 1356, 7, 15, 0, 0, 1356, 1357, 7, 12, 0, 0, 1357, 1358, 7, 21, 0, 0, 1358, 1359, 7, 0, 0, 0, 1359, 1360, 7, 6, 0, 0, 1360, 160, 1, 0, 0, 0, 1361, 1362, 7, 1, 0, 0, 1362, 1363, 7, 4, 0, 0, 1363, 1364, 7, 15, 0, 0, 1364, 1365, 7, 6, 0, 0, 1365, 1366, 7, 0, 0, 0, 1366, 1367, 7, 5, 0, 0, 1367, 1368, 7, 4, 0, 0, 1368, 162, 1, 0, 0, 0, 1369, 1370, 7, 1, 0, 0, 1370, 1371, 7, 4, 0, 0, 1371, 1372, 7, 2, 0, 0, 1372, 1373, 7, 0, 0, 0, 1373, 1374, 7, 14, 0, 0, 1374, 1375, 7, 6, 0, 0, 1375, 1376, 7, 3, 0, 0, 1376, 164, 1, 0, 0, 0, 1377, 1378, 7, 1, 0, 0, 1378, 1379, 7, 4, 0, 0, 1379, 1380, 7, 2, 0, 0, 1380, 1381, 7, 12, 0, 0, 1381, 1382, 7, 10, 0, 0, 1382, 1383, 7, 4, 0, 0, 1383, 1384, 7, 1, 0, 0, 1384, 166, 1, 0, 0, 0, 1385, 1386, 7, 1, 0, 0, 1386, 1387, 7, 4, 0, 0, 1387, 1388, 7, 6, 0, 0, 1388, 1389, 7, 4, 0, 0, 1389, 1390, 7, 3, 0, 0, 1390, 1391, 7, 4, 0, 0, 1391, 168, 1, 0, 0, 0, 1392, 1393, 7, 1, 0, 0, 1393, 1394, 7, 4, 0, 0, 1394, 1395, 7, 6, 0, 0, 1395, 1396, 7, 12, 0, 0, 1396, 1397, 7, 21, 0, 0, 1397, 1398, 7, 12, 0, 0, 1398, 1399, 7, 3, 0, 0, 1399, 1400, 7, 4, 0, 0, 1400, 1401, 7, 1, 0, 0, 1401, 170, 1, 0, 0, 0, 1402, 1403, 7, 1, 0, 0, 1403, 1404, 7, 4, 0, 0, 1404, 1405, 7, 9, 0, 0, 1405, 1406, 7, 15, 0, 0, 1406, 172, 1, 0, 0, 0, 1407, 1408, 7, 1, 0, 0, 1408, 1409, 7, 4, 0, 0, 1409, 1410, 7, 9, 0, 0, 1410, 1411, 7, 15, 0, 0, 1411, 1412, 7, 5, 0, 0, 1412, 1413, 7, 12, 0, 0, 1413, 1414, 7, 18, 0, 0, 1414, 1415, 7, 4, 0, 0, 1415, 174, 1, 0, 0, 0, 1416, 1417, 7, 1, 0, 0, 1417, 1418, 7, 2, 0, 0, 1418, 1419, 7, 9, 0, 0, 1419, 176, 1, 0, 0, 0, 1420, 1421, 7, 1, 0, 0, 1421, 1422, 7, 12, 0, 0, 1422, 1423, 7, 5, 0, 0, 1423, 1424, 7, 4, 0, 0, 1424, 1425, 7, 15, 0, 0, 1425, 1426, 7, 3, 0, 0, 1426, 1427, 7, 17, 0, 0, 1427, 1428, 7, 5, 0, 0, 1428, 1429, 7, 12, 0, 0, 1429, 1430, 7, 4, 0, 0, 1430, 1431, 7, 9, 0, 0, 1431, 178, 1, 0, 0, 0, 1432, 1433, 7, 1, 0, 0, 1433, 1434, 7, 12, 0, 0, 1434, 1435, 7, 5, 0, 0, 1435, 1436, 7, 4, 0, 0, 1436, 1437, 7, 15, 0, 0, 1437, 1438, 7, 3, 0, 0, 1438, 1439, 7, 17, 0, 0, 1439, 1440, 7, 5, 0, 0, 1440, 1441, 7, 8, 0, 0, 1441, 180, 1, 0, 0, 0, 1442, 1443, 7, 1, 0, 0, 1443, 1444, 7, 12, 0, 0, 1444, 1445, 7, 9, 0, 0, 1445, 1446, 7, 0, 0, 0, 1446, 1447, 7, 18, 0, 0, 1447, 1448, 7, 6, 0, 0, 1448, 1449, 7, 4, 0, 0, 1449, 182, 1, 0, 0, 0, 1450, 1451, 7, 1, 0, 0, 1451, 1452, 7, 12, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 1454, 7, 3, 0, 0, 1454, 1455, 7, 12, 0, 0, 1455, 1456, 7, 10, 0, 0, 1456, 1457, 7, 15, 0, 0, 1457, 1458, 7, 3, 0, 0, 1458, 184, 1, 0, 0, 0, 1459, 1460, 7, 1, 0, 0, 1460, 1461, 7, 12, 0, 0, 1461, 1462, 7, 9, 0, 0, 1462, 1463, 7, 3, 0, 0, 1463, 1464, 7, 5, 0, 0, 1464, 1465, 7, 12, 0, 0, 1465, 1466, 7, 18, 0, 0, 1466, 1467, 7, 14, 0, 0, 1467, 1468, 7, 3, 0, 0, 1468, 1469, 7, 4, 0, 0, 1469, 186, 1, 0, 0, 0, 1470, 1471, 7, 1, 0, 0, 1471, 1472, 7, 12, 0, 0, 1472, 1473, 7, 13, 0, 0, 1473, 188, 1, 0, 0, 0, 1474, 1475, 7, 1, 0, 0, 1475, 1476, 7, 17, 0, 0, 1476, 1477, 7, 14, 0, 0, 1477, 1478, 7, 18, 0, 0, 1478, 1479, 7, 6, 0, 0, 1479, 1480, 7, 4, 0, 0, 1480, 190, 1, 0, 0, 0, 1481, 1482, 7, 1, 0, 0, 1482, 1483, 7, 5, 0, 0, 1483, 1484, 7, 17, 0, 0, 1484, 1485, 7, 22, 0, 0, 1485, 192, 1, 0, 0, 0, 1486, 1487, 7, 4, 0, 0, 1487, 1488, 7, 6, 0, 0, 1488, 1489, 7, 9, 0, 0, 1489, 1490, 7, 4, 0, 0, 1490, 194, 1, 0, 0, 0, 1491, 1492, 7, 4, 0, 0, 1492, 1493, 7, 10, 0, 0, 1493, 1494, 7, 0, 0, 0, 1494, 1495, 7, 18, 0, 0, 1495, 1496, 7, 6, 0, 0, 1496, 1497, 7, 4, 0, 0, 1497, 196, 1, 0, 0, 0, 1498, 1499, 7, 4, 0, 0, 1499, 1500, 7, 10, 0, 0, 1500, 1501, 7, 1, 0, 0, 1501, 198, 1, 0, 0, 0, 1502, 1503, 7, 4, 0, 0, 1503, 1504, 7, 9, 0, 0, 1504, 1505, 7, 15, 0, 0, 1505, 1506, 7, 0, 0, 0, 1506, 1507, 7, 22, 0, 0, 1507, 1508, 7, 4, 0, 0, 1508, 200, 1, 0, 0, 0, 1509, 1510, 7, 4, 0, 0, 1510, 1511, 7, 9, 0, 0, 1511, 1512, 7, 15, 0, 0, 1512, 1513, 7, 0, 0, 0, 1513, 1514, 7, 22, 0, 0, 1514, 1515, 7, 4, 0, 0, 1515, 1516, 7, 1, 0, 0, 1516, 202, 1, 0, 0, 0, 1517, 1518, 7, 4, 0, 0, 1518, 1519, 7, 23, 0, 0, 1519, 1520, 7, 15, 0, 0, 1520, 1521, 7, 4, 0, 0, 1521, 1522, 7, 22, 0, 0, 1522, 1523, 7, 3, 0, 0, 1523, 204, 1, 0, 0, 0, 1524, 1525, 7, 4, 0, 0, 1525, 1526, 7, 23, 0, 0, 1526, 1527, 7, 15, 0, 0, 1527, 1528, 7, 16, 0, 0, 1528, 1529, 7, 0, 0, 0, 1529, 1530, 7, 10, 0, 0, 1530, 1531, 7, 19, 0, 0, 1531, 1532, 7, 4, 0, 0, 1532, 206, 1, 0, 0, 0, 1533, 1534, 7, 4, 0, 0, 1534, 1535, 7, 23, 0, 0, 1535, 1536, 7, 15, 0, 0, 1536, 1537, 7, 6, 0, 0, 1537, 1538, 7, 14, 0, 0, 1538, 1539, 7, 1, 0, 0, 1539, 1540, 7, 4, 0, 0, 1540, 208, 1, 0, 0, 0, 1541, 1542, 7, 4, 0, 0, 1542, 1543, 7, 23, 0, 0, 1543, 1544, 7, 12, 0, 0, 1544, 1545, 7, 9, 0, 0, 1545, 1546, 7, 3, 0, 0, 1546, 1547, 7, 9, 0, 0, 1547, 210, 1, 0, 0, 0, 1548, 1549, 7, 4, 0, 0, 1549, 1550, 7, 23, 0, 0, 1550, 1551, 7, 22, 0, 0, 1551, 1552, 7, 6, 0, 0, 1552, 1553, 7, 0, 0, 0, 1553, 1554, 7, 12, 0, 0, 1554, 1555, 7, 10, 0, 0, 1555, 212, 1, 0, 0, 0, 1556, 1557, 7, 4, 0, 0, 1557, 1558, 7, 23, 0, 0, 1558, 1559, 7, 22, 0, 0, 1559, 1560, 7, 17, 0, 0, 1560, 1561, 7, 5, 0, 0, 1561, 1562, 7, 3, 0, 0, 1562, 214, 1, 0, 0, 0, 1563, 1564, 7, 4, 0, 0, 1564, 1565, 7, 23, 0, 0, 1565, 1566, 7, 3, 0, 0, 1566, 1567, 7, 4, 0, 0, 1567, 1568, 7, 10, 0, 0, 1568, 1569, 7, 1, 0, 0, 1569, 1570, 7, 4, 0, 0, 1570, 1571, 7, 1, 0, 0, 1571, 216, 1, 0, 0, 0, 1572, 1573, 7, 4, 0, 0, 1573, 1574, 7, 23, 0, 0, 1574, 1575, 7, 3, 0, 0, 1575, 1576, 7, 4, 0, 0, 1576, 1577, 7, 5, 0, 0, 1577, 1578, 7, 10, 0, 0, 1578, 1579, 7, 0, 0, 0, 1579, 1580, 7, 6, 0, 0, 1580, 218, 1, 0, 0, 0, 1581, 1582, 7, 4, 0, 0, 1582, 1583, 7, 23, 0, 0, 1583, 1584, 7, 3, 0, 0, 1584, 1585, 7, 5, 0, 0, 1585, 1586, 7, 0, 0, 0, 1586, 1587, 7, 15, 0, 0, 1587, 1588, 7, 3, 0, 0, 1588, 220, 1, 0, 0, 0, 1589, 1590, 7, 2, 0, 0, 1590, 1591, 7, 0, 0, 0, 1591, 1592, 7, 6, 0, 0, 1592, 1593, 7, 9, 0, 0, 1593, 1594, 7, 4, 0, 0, 1594, 222, 1, 0, 0, 0, 1595, 1596, 7, 2, 0, 0, 1596, 1597, 7, 4, 0, 0, 1597, 1598, 7, 3, 0, 0, 1598, 1599, 7, 15, 0, 0, 1599, 1600, 7, 16, 0, 0, 1600, 224, 1, 0, 0, 0, 1601, 1602, 7, 2, 0, 0, 1602, 1603, 7, 12, 0, 0, 1603, 1604, 7, 4, 0, 0, 1604, 1605, 7, 6, 0, 0, 1605, 1606, 7, 1, 0, 0, 1606, 1607, 7, 9, 0, 0, 1607, 226, 1, 0, 0, 0, 1608, 1609, 7, 2, 0, 0, 1609, 1610, 7, 12, 0, 0, 1610, 1611, 7, 6, 0, 0, 1611, 1612, 7, 3, 0, 0, 1612, 1613, 7, 4, 0, 0, 1613, 1614, 7, 5, 0, 0, 1614, 228, 1, 0, 0, 0, 1615, 1616, 7, 2, 0, 0, 1616, 1617, 7, 12, 0, 0, 1617, 1618, 7, 6, 0, 0, 1618, 1619, 7, 4, 0, 0, 1619, 1620, 7, 2, 0, 0, 1620, 1621, 7, 17, 0, 0, 1621, 1622, 7, 5, 0, 0, 1622, 1623, 7, 21, 0, 0, 1623, 1624, 7, 0, 0, 0, 1624, 1625, 7, 3, 0, 0, 1625, 230, 1, 0, 0, 0, 1626, 1627, 7, 2, 0, 0, 1627, 1628, 7, 12, 0, 0, 1628, 1629, 7, 5, 0, 0, 1629, 1630, 7, 9, 0, 0, 1630, 1631, 7, 3, 0, 0, 1631, 232, 1, 0, 0, 0, 1632, 1633, 7, 2, 0, 0, 1633, 1634, 7, 6, 0, 0, 1634, 1635, 7, 17, 0, 0, 1635, 1636, 7, 0, 0, 0, 1636, 1637, 7, 3, 0, 0, 1637, 234, 1, 0, 0, 0, 1638, 1639, 7, 2, 0, 0, 1639, 1640, 7, 17, 0, 0, 1640, 1641, 7, 6, 0, 0, 1641, 1642, 7, 6, 0, 0, 1642, 1643, 7, 17, 0, 0, 1643, 1644, 7, 7, 0, 0, 1644, 1645, 7, 12, 0, 0, 1645, 1646, 7, 10, 0, 0, 1646, 1647, 7, 19, 0, 0, 1647, 236, 1, 0, 0, 0, 1648, 1649, 7, 2, 0, 0, 1649, 1650, 7, 17, 0, 0, 1650, 1651, 7, 5, 0, 0, 1651, 238, 1, 0, 0, 0, 1652, 1653, 7, 2, 0, 0, 1653, 1654, 7, 17, 0, 0, 1654, 1655, 7, 5, 0, 0, 1655, 1656, 7, 4, 0, 0, 1656, 1657, 7, 12, 0, 0, 1657, 1658, 7, 19, 0, 0, 1658, 1659, 7, 10, 0, 0, 1659, 240, 1, 0, 0, 0, 1660, 1661, 7, 2, 0, 0, 1661, 1662, 7, 17, 0, 0, 1662, 1663, 7, 5, 0, 0, 1663, 1664, 7, 21, 0, 0, 1664, 1665, 7, 0, 0, 0, 1665, 1666, 7, 3, 0, 0, 1666, 242, 1, 0, 0, 0, 1667, 1668, 7, 2, 0, 0, 1668, 1669, 7, 17, 0, 0, 1669, 1670, 7, 5, 0, 0, 1670, 1671, 7, 21, 0, 0, 1671, 1672, 7, 0, 0, 0, 1672, 1673, 7, 3, 0, 0, 1673, 1674, 7, 3, 0, 0, 1674, 1675, 7, 4, 0, 0, 1675, 1676, 7, 1, 0, 0, 1676, 244, 1, 0, 0, 0, 1677, 1678, 7, 2, 0, 0, 1678, 1679, 7, 5, 0, 0, 1679, 1680, 7, 17, 0, 0, 1680, 1681, 7, 21, 0, 0, 1681, 246, 1, 0, 0, 0, 1682, 1683, 7, 2, 0, 0, 1683, 1684, 7, 14, 0, 0, 1684, 1685, 7, 6, 0, 0, 1685, 1686, 7, 6, 0, 0, 1686, 248, 1, 0, 0, 0, 1687, 1688, 7, 2, 0, 0, 1688, 1689, 7, 14, 0, 0, 1689, 1690, 7, 10, 0, 0, 1690, 1691, 7, 15, 0, 0, 1691, 1692, 7, 3, 0, 0, 1692, 1693, 7, 12, 0, 0, 1693, 1694, 7, 17, 0, 0, 1694, 1695, 7, 10, 0, 0, 1695, 250, 1, 0, 0, 0, 1696, 1697, 7, 2, 0, 0, 1697, 1698, 7, 14, 0, 0, 1698, 1699, 7, 10, 0, 0, 1699, 1700, 7, 15, 0, 0, 1700, 1701, 7, 3, 0, 0, 1701, 1702, 7, 12, 0, 0, 1702, 1703, 7, 17, 0, 0, 1703, 1704, 7, 10, 0, 0, 1704, 1705, 7, 9, 0, 0, 1705, 252, 1, 0, 0, 0, 1706, 1707, 7, 19, 0, 0, 1707, 1708, 7, 4, 0, 0, 1708, 1709, 7, 10, 0, 0, 1709, 1710, 7, 4, 0, 0, 1710, 1711, 7, 5, 0, 0, 1711, 1712, 7, 0, 0, 0, 1712, 1713, 7, 3, 0, 0, 1713, 1714, 7, 4, 0, 0, 1714, 1715, 7, 1, 0, 0, 1715, 254, 1, 0, 0, 0, 1716, 1717, 7, 19, 0, 0, 1717, 1718, 7, 6, 0, 0, 1718, 1719, 7, 17, 0, 0, 1719, 1720, 7, 18, 0, 0, 1720, 1721, 7, 0, 0, 0, 1721, 1722, 7, 6, 0, 0, 1722, 256, 1, 0, 0, 0, 1723, 1724, 7, 19, 0, 0, 1724, 1725, 7, 5, 0, 0, 1725, 1726, 7, 0, 0, 0, 1726, 1727, 7, 10, 0, 0, 1727, 1728, 7, 3, 0, 0, 1728, 258, 1, 0, 0, 0, 1729, 1730, 7, 19, 0, 0, 1730, 1731, 7, 5, 0, 0, 1731, 1732, 7, 17, 0, 0, 1732, 1733, 7, 14, 0, 0, 1733, 1734, 7, 22, 0, 0, 1734, 260, 1, 0, 0, 0, 1735, 1736, 7, 19, 0, 0, 1736, 1737, 7, 5, 0, 0, 1737, 1738, 7, 17, 0, 0, 1738, 1739, 7, 14, 0, 0, 1739, 1740, 7, 22, 0, 0, 1740, 1741, 7, 12, 0, 0, 1741, 1742, 7, 10, 0, 0, 1742, 1743, 7, 19, 0, 0, 1743, 262, 1, 0, 0, 0, 1744, 1745, 7, 16, 0, 0, 1745, 1746, 7, 0, 0, 0, 1746, 1747, 7, 13, 0, 0, 1747, 1748, 7, 12, 0, 0, 1748, 1749, 7, 10, 0, 0, 1749, 1750, 7, 19, 0, 0, 1750, 264, 1, 0, 0, 0, 1751, 1752, 7, 23, 0, 0, 1752, 266, 1, 0, 0, 0, 1753, 1754, 7, 16, 0, 0, 1754, 1755, 7, 17, 0, 0, 1755, 1756, 7, 14, 0, 0, 1756, 1757, 7, 5, 0, 0, 1757, 268, 1, 0, 0, 0, 1758, 1759, 7, 16, 0, 0, 1759, 1760, 7, 17, 0, 0, 1760, 1761, 7, 14, 0, 0, 1761, 1762, 7, 5, 0, 0, 1762, 1763, 7, 9, 0, 0, 1763, 270, 1, 0, 0, 0, 1764, 1765, 7, 12, 0, 0, 1765, 1766, 7, 1, 0, 0, 1766, 1767, 7, 4, 0, 0, 1767, 1768, 7, 10, 0, 0, 1768, 1769, 7, 3, 0, 0, 1769, 1770, 7, 12, 0, 0, 1770, 1771, 7, 2, 0, 0, 1771, 1772, 7, 12, 0, 0, 1772, 1773, 7, 4, 0, 0, 1773, 1774, 7, 5, 0, 0, 1774, 272, 1, 0, 0, 0, 1775, 1776, 7, 12, 0, 0, 1776, 1777, 7, 2, 0, 0, 1777, 274, 1, 0, 0, 0, 1778, 1779, 7, 12, 0, 0, 1779, 1780, 7, 19, 0, 0, 1780, 1781, 7, 10, 0, 0, 1781, 1782, 7, 17, 0, 0, 1782, 1783, 7, 5, 0, 0, 1783, 1784, 7, 4, 0, 0, 1784, 276, 1, 0, 0, 0, 1785, 1786, 7, 12, 0, 0, 1786, 1787, 7, 21, 0, 0, 1787, 1788, 7, 22, 0, 0, 1788, 1789, 7, 17, 0, 0, 1789, 1790, 7, 5, 0, 0, 1790, 1791, 7, 3, 0, 0, 1791, 278, 1, 0, 0, 0, 1792, 1793, 7, 12, 0, 0, 1793, 1794, 7, 10, 0, 0, 1794, 280, 1, 0, 0, 0, 1795, 1796, 7, 12, 0, 0, 1796, 1797, 7, 10, 0, 0, 1797, 1798, 7, 15, 0, 0, 1798, 1799, 7, 6, 0, 0, 1799, 1800, 7, 14, 0, 0, 1800, 1801, 7, 1, 0, 0, 1801, 1802, 7, 4, 0, 0, 1802, 282, 1, 0, 0, 0, 1803, 1804, 7, 12, 0, 0, 1804, 1805, 7, 10, 0, 0, 1805, 1806, 7, 1, 0, 0, 1806, 1807, 7, 4, 0, 0, 1807, 1808, 7, 23, 0, 0, 1808, 284, 1, 0, 0, 0, 1809, 1810, 7, 12, 0, 0, 1810, 1811, 7, 10, 0, 0, 1811, 1812, 7, 1, 0, 0, 1812, 1813, 7, 4, 0, 0, 1813, 1814, 7, 23, 0, 0, 1814, 1815, 7, 4, 0, 0, 1815, 1816, 7, 9, 0, 0, 1816, 286, 1, 0, 0, 0, 1817, 1818, 7, 12, 0, 0, 1818, 1819, 7, 10, 0, 0, 1819, 1820, 7, 10, 0, 0, 1820, 1821, 7, 4, 0, 0, 1821, 1822, 7, 5, 0, 0, 1822, 288, 1, 0, 0, 0, 1823, 1824, 7, 12, 0, 0, 1824, 1825, 7, 10, 0, 0, 1825, 1826, 7, 22, 0, 0, 1826, 1827, 7, 0, 0, 0, 1827, 1828, 7, 3, 0, 0, 1828, 1829, 7, 16, 0, 0, 1829, 290, 1, 0, 0, 0, 1830, 1831, 7, 12, 0, 0, 1831, 1832, 7, 10, 0, 0, 1832, 1833, 7, 22, 0, 0, 1833, 1834, 7, 14, 0, 0, 1834, 1835, 7, 3, 0, 0, 1835, 1836, 7, 2, 0, 0, 1836, 1837, 7, 17, 0, 0, 1837, 1838, 7, 5, 0, 0, 1838, 1839, 7, 21, 0, 0, 1839, 1840, 7, 0, 0, 0, 1840, 1841, 7, 3, 0, 0, 1841, 292, 1, 0, 0, 0, 1842, 1843, 7, 12, 0, 0, 1843, 1844, 7, 10, 0, 0, 1844, 1845, 7, 9, 0, 0, 1845, 1846, 7, 4, 0, 0, 1846, 1847, 7, 5, 0, 0, 1847, 1848, 7, 3, 0, 0, 1848, 294, 1, 0, 0, 0, 1849, 1850, 7, 12, 0, 0, 1850, 1851, 7, 10, 0, 0, 1851, 1852, 7, 3, 0, 0, 1852, 1853, 7, 4, 0, 0, 1853, 1854, 7, 5, 0, 0, 1854, 1855, 7, 9, 0, 0, 1855, 1856, 7, 4, 0, 0, 1856, 1857, 7, 15, 0, 0, 1857, 1858, 7, 3, 0, 0, 1858, 296, 1, 0, 0, 0, 1859, 1860, 7, 12, 0, 0, 1860, 1861, 7, 10, 0, 0, 1861, 1862, 7, 3, 0, 0, 1862, 1863, 7, 4, 0, 0, 1863, 1864, 7, 5, 0, 0, 1864, 1865, 7, 13, 0, 0, 1865, 1866, 7, 0, 0, 0, 1866, 1867, 7, 6, 0, 0, 1867, 298, 1, 0, 0, 0, 1868, 1869, 7, 12, 0, 0, 1869, 1870, 7, 10, 0, 0, 1870, 1871, 7, 3, 0, 0, 1871, 300, 1, 0, 0, 0, 1872, 1873, 7, 12, 0, 0, 1873, 1874, 7, 10, 0, 0, 1874, 1875, 7, 3, 0, 0, 1875, 1876, 7, 4, 0, 0, 1876, 1877, 7, 19, 0, 0, 1877, 1878, 7, 4, 0, 0, 1878, 1879, 7, 5, 0, 0, 1879, 302, 1, 0, 0, 0, 1880, 1881, 7, 12, 0, 0, 1881, 1882, 7, 10, 0, 0, 1882, 1883, 7, 3, 0, 0, 1883, 1884, 7, 17, 0, 0, 1884, 304, 1, 0, 0, 0, 1885, 1886, 7, 12, 0, 0, 1886, 1887, 7, 9, 0, 0, 1887, 306, 1, 0, 0, 0, 1888, 1889, 7, 12, 0, 0, 1889, 1890, 7, 3, 0, 0, 1890, 1891, 7, 4, 0, 0, 1891, 1892, 7, 21, 0, 0, 1892, 1893, 7, 9, 0, 0, 1893, 308, 1, 0, 0, 0, 1894, 1895, 7, 24, 0, 0, 1895, 1896, 7, 17, 0, 0, 1896, 1897, 7, 12, 0, 0, 1897, 1898, 7, 10, 0, 0, 1898, 310, 1, 0, 0, 0, 1899, 1900, 7, 20, 0, 0, 1900, 1901, 7, 4, 0, 0, 1901, 1902, 7, 8, 0, 0, 1902, 1903, 7, 9, 0, 0, 1903, 312, 1, 0, 0, 0, 1904, 1905, 7, 6, 0, 0, 1905, 1906, 7, 0, 0, 0, 1906, 1907, 7, 9, 0, 0, 1907, 1908, 7, 3, 0, 0, 1908, 314, 1, 0, 0, 0, 1909, 1910, 7, 6, 0, 0, 1910, 1911, 7, 0, 0, 0, 1911, 1912, 7, 3, 0, 0, 1912, 1913, 7, 4, 0, 0, 1913, 1914, 7, 5, 0, 0, 1914, 1915, 7, 0, 0, 0, 1915, 1916, 7, 6, 0, 0, 1916, 316, 1, 0, 0, 0, 1917, 1918, 7, 6, 0, 0, 1918, 1919, 7, 0, 0, 0, 1919, 1920, 7, 11, 0, 0, 1920, 1921, 7, 8, 0, 0, 1921, 318, 1, 0, 0, 0, 1922, 1923, 7, 6, 0, 0, 1923, 1924, 7, 4, 0, 0, 1924, 1925, 7, 0, 0, 0, 1925, 1926, 7, 1, 0, 0, 1926, 1927, 7, 12, 0, 0, 1927, 1928, 7, 10, 0, 0, 1928, 1929, 7, 19, 0, 0, 1929, 320, 1, 0, 0, 0, 1930, 1931, 7, 6, 0, 0, 1931, 1932, 7, 4, 0, 0, 1932, 1933, 7, 2, 0, 0, 1933, 1934, 7, 3, 0, 0, 1934, 322, 1, 0, 0, 0, 1935, 1936, 7, 6, 0, 0, 1936, 1937, 7, 12, 0, 0, 1937, 1938, 7, 2, 0, 0, 1938, 1939, 7, 4, 0, 0, 1939, 1940, 7, 15, 0, 0, 1940, 1941, 7, 8, 0, 0, 1941, 1942, 7, 15, 0, 0, 1942, 1943, 7, 6, 0, 0, 1943, 1944, 7, 4, 0, 0, 1944, 324, 1, 0, 0, 0, 1945, 1946, 7, 6, 0, 0, 1946, 1947, 7, 12, 0, 0, 1947, 1948, 7, 20, 0, 0, 1948, 1949, 7, 4, 0, 0, 1949, 326, 1, 0, 0, 0, 1950, 1951, 7, 12, 0, 0, 1951, 1952, 7, 6, 0, 0, 1952, 1953, 7, 12, 0, 0, 1953, 1954, 7, 20, 0, 0, 1954, 1955, 7, 4, 0, 0, 1955, 328, 1, 0, 0, 0, 1956, 1957, 7, 6, 0, 0, 1957, 1958, 7, 12, 0, 0, 1958, 1959, 7, 21, 0, 0, 1959, 1960, 7, 12, 0, 0, 1960, 1961, 7, 3, 0, 0, 1961, 330, 1, 0, 0, 0, 1962, 1963, 7, 6, 0, 0, 1963, 1964, 7, 12, 0, 0, 1964, 1965, 7, 10, 0, 0, 1965, 1966, 7, 4, 0, 0, 1966, 1967, 7, 9, 0, 0, 1967, 332, 1, 0, 0, 0, 1968, 1969, 7, 6, 0, 0, 1969, 1970, 7, 12, 0, 0, 1970, 1971, 7, 9, 0, 0, 1971, 1972, 7, 3, 0, 0, 1972, 334, 1, 0, 0, 0, 1973, 1974, 7, 6, 0, 0, 1974, 1975, 7, 17, 0, 0, 1975, 1976, 7, 0, 0, 0, 1976, 1977, 7, 1, 0, 0, 1977, 336, 1, 0, 0, 0, 1978, 1979, 7, 6, 0, 0, 1979, 1980, 7, 17, 0, 0, 1980, 1981, 7, 15, 0, 0, 1981, 1982, 7, 0, 0, 0, 1982, 1983, 7, 6, 0, 0, 1983, 338, 1, 0, 0, 0, 1984, 1985, 7, 6, 0, 0, 1985, 1986, 7, 17, 0, 0, 1986, 1987, 7, 15, 0, 0, 1987, 1988, 7, 0, 0, 0, 1988, 1989, 7, 3, 0, 0, 1989, 1990, 7, 12, 0, 0, 1990, 1991, 7, 17, 0, 0, 1991, 1992, 7, 10, 0, 0, 1992, 340, 1, 0, 0, 0, 1993, 1994, 7, 6, 0, 0, 1994, 1995, 7, 17, 0, 0, 1995, 1996, 7, 15, 0, 0, 1996, 1997, 7, 20, 0, 0, 1997, 342, 1, 0, 0, 0, 1998, 1999, 7, 6, 0, 0, 1999, 2000, 7, 17, 0, 0, 2000, 2001, 7, 15, 0, 0, 2001, 2002, 7, 20, 0, 0, 2002, 2003, 7, 9, 0, 0, 2003, 344, 1, 0, 0, 0, 2004, 2005, 7, 6, 0, 0, 2005, 2006, 7, 17, 0, 0, 2006, 2007, 7, 19, 0, 0, 2007, 2008, 7, 12, 0, 0, 2008, 2009, 7, 15, 0, 0, 2009, 2010, 7, 0, 0, 0, 2010, 2011, 7, 6, 0, 0, 2011, 346, 1, 0, 0, 0, 2012, 2013, 7, 6, 0, 0, 2013, 2014, 7, 17, 0, 0, 2014, 2015, 7, 10, 0, 0, 2015, 2016, 7, 19, 0, 0, 2016, 348, 1, 0, 0, 0, 2017, 2018, 7, 21, 0, 0, 2018, 2019, 7, 0, 0, 0, 2019, 2020, 7, 15, 0, 0, 2020, 2021, 7, 5, 0, 0, 2021, 2022, 7, 17, 0, 0, 2022, 350, 1, 0, 0, 0, 2023, 2024, 7, 21, 0, 0, 2024, 2025, 7, 0, 0, 0, 2025, 2026, 7, 3, 0, 0, 2026, 2027, 7, 4, 0, 0, 2027, 2028, 7, 5, 0, 0, 2028, 2029, 7, 12, 0, 0, 2029, 2030, 7, 0, 0, 0, 2030, 2031, 7, 6, 0, 0, 2031, 2032, 7, 12, 0, 0, 2032, 2033, 7, 11, 0, 0, 2033, 2034, 7, 4, 0, 0, 2034, 2035, 7, 1, 0, 0, 2035, 352, 1, 0, 0, 0, 2036, 2037, 7, 21, 0, 0, 2037, 2038, 7, 0, 0, 0, 2038, 2039, 7, 22, 0, 0, 2039, 354, 1, 0, 0, 0, 2040, 2041, 7, 21, 0, 0, 2041, 2042, 7, 0, 0, 0, 2042, 2043, 7, 3, 0, 0, 2043, 2044, 7, 15, 0, 0, 2044, 2045, 7, 16, 0, 0, 2045, 2046, 7, 4, 0, 0, 2046, 2047, 7, 1, 0, 0, 2047, 356, 1, 0, 0, 0, 2048, 2049, 7, 21, 0, 0, 2049, 2050, 7, 4, 0, 0, 2050, 2051, 7, 5, 0, 0, 2051, 2052, 7, 19, 0, 0, 2052, 2053, 7, 4, 0, 0, 2053, 358, 1, 0, 0, 0, 2054, 2055, 7, 21, 0, 0, 2055, 2056, 7, 12, 0, 0, 2056, 2057, 7, 15, 0, 0, 2057, 2058, 7, 5, 0, 0, 2058, 2059, 7, 17, 0, 0, 2059, 2060, 7, 9, 0, 0, 2060, 2061, 7, 4, 0, 0, 2061, 2062, 7, 15, 0, 0, 2062, 2063, 7, 17, 0, 0, 2063, 2064, 7, 10, 0, 0, 2064, 2065, 7, 1, 0, 0, 2065, 360, 1, 0, 0, 0, 2066, 2067, 7, 21, 0, 0, 2067, 2068, 7, 12, 0, 0, 2068, 2069, 7, 15, 0, 0, 2069, 2070, 7, 5, 0, 0, 2070, 2071, 7, 17, 0, 0, 2071, 2072, 7, 9, 0, 0, 2072, 2073, 7, 4, 0, 0, 2073, 2074, 7, 15, 0, 0, 2074, 2075, 7, 17, 0, 0, 2075, 2076, 7, 10, 0, 0, 2076, 2077, 7, 1, 0, 0, 2077, 2078, 7, 9, 0, 0, 2078, 362, 1, 0, 0, 0, 2079, 2080, 7, 21, 0, 0, 2080, 2081, 7, 12, 0, 0, 2081, 2082, 7, 6, 0, 0, 2082, 2083, 7, 6, 0, 0, 2083, 2084, 7, 12, 0, 0, 2084, 2085, 7, 9, 0, 0, 2085, 2086, 7, 4, 0, 0, 2086, 2087, 7, 15, 0, 0, 2087, 2088, 7, 17, 0, 0, 2088, 2089, 7, 10, 0, 0, 2089, 2090, 7, 1, 0, 0, 2090, 364, 1, 0, 0, 0, 2091, 2092, 7, 21, 0, 0, 2092, 2093, 7, 12, 0, 0, 2093, 2094, 7, 6, 0, 0, 2094, 2095, 7, 6, 0, 0, 2095, 2096, 7, 12, 0, 0, 2096, 2097, 7, 9, 0, 0, 2097, 2098, 7, 4, 0, 0, 2098, 2099, 7, 15, 0, 0, 2099, 2100, 7, 17, 0, 0, 2100, 2101, 7, 10, 0, 0, 2101, 2102, 7, 1, 0, 0, 2102, 2103, 7, 9, 0, 0, 2103, 366, 1, 0, 0, 0, 2104, 2105, 7, 21, 0, 0, 2105, 2106, 7, 12, 0, 0, 2106, 2107, 7, 10, 0, 0, 2107, 2108, 7, 14, 0, 0, 2108, 2109, 7, 3, 0, 0, 2109, 2110, 7, 4, 0, 0, 2110, 368, 1, 0, 0, 0, 2111, 2112, 7, 21, 0, 0, 2112, 2113, 7, 12, 0, 0, 2113, 2114, 7, 10, 0, 0, 2114, 2115, 7, 14, 0, 0, 2115, 2116, 7, 3, 0, 0, 2116, 2117, 7, 4, 0, 0, 2117, 2118, 7, 9, 0, 0, 2118, 370, 1, 0, 0, 0, 2119, 2120, 7, 21, 0, 0, 2120, 2121, 7, 17, 0, 0, 2121, 2122, 7, 10, 0, 0, 2122, 2123, 7, 3, 0, 0, 2123, 2124, 7, 16, 0, 0, 2124, 372, 1, 0, 0, 0, 2125, 2126, 7, 21, 0, 0, 2126, 2127, 7, 17, 0, 0, 2127, 2128, 7, 10, 0, 0, 2128, 2129, 7, 3, 0, 0, 2129, 2130, 7, 16, 0, 0, 2130, 2131, 7, 9, 0, 0, 2131, 374, 1, 0, 0, 0, 2132, 2133, 7, 21, 0, 0, 2133, 2134, 7, 9, 0, 0, 2134, 2135, 7, 15, 0, 0, 2135, 2136, 7, 20, 0, 0, 2136, 376, 1, 0, 0, 0, 2137, 2138, 7, 10, 0, 0, 2138, 2139, 7, 0, 0, 0, 2139, 2140, 7, 21, 0, 0, 2140, 2141, 7, 4, 0, 0, 2141, 378, 1, 0, 0, 0, 2142, 2143, 7, 10, 0, 0, 2143, 2144, 7, 0, 0, 0, 2144, 2145, 7, 21, 0, 0, 2145, 2146, 7, 4, 0, 0, 2146, 2147, 7, 9, 0, 0, 2147, 2148, 7, 22, 0, 0, 2148, 2149, 7, 0, 0, 0, 2149, 2150, 7, 15, 0, 0, 2150, 2151, 7, 4, 0, 0, 2151, 380, 1, 0, 0, 0, 2152, 2153, 7, 10, 0, 0, 2153, 2154, 7, 0, 0, 0, 2154, 2155, 7, 21, 0, 0, 2155, 2156, 7, 4, 0, 0, 2156, 2157, 7, 9, 0, 0, 2157, 2158, 7, 22, 0, 0, 2158, 2159, 7, 0, 0, 0, 2159, 2160, 7, 15, 0, 0, 2160, 2161, 7, 4, 0, 0, 2161, 2162, 7, 9, 0, 0, 2162, 382, 1, 0, 0, 0, 2163, 2164, 7, 10, 0, 0, 2164, 2165, 7, 0, 0, 0, 2165, 2166, 7, 10, 0, 0, 2166, 2167, 7, 17, 0, 0, 2167, 2168, 7, 9, 0, 0, 2168, 2169, 7, 4, 0, 0, 2169, 2170, 7, 15, 0, 0, 2170, 2171, 7, 17, 0, 0, 2171, 2172, 7, 10, 0, 0, 2172, 2173, 7, 1, 0, 0, 2173, 384, 1, 0, 0, 0, 2174, 2175, 7, 10, 0, 0, 2175, 2176, 7, 0, 0, 0, 2176, 2177, 7, 10, 0, 0, 2177, 2178, 7, 17, 0, 0, 2178, 2179, 7, 9, 0, 0, 2179, 2180, 7, 4, 0, 0, 2180, 2181, 7, 15, 0, 0, 2181, 2182, 7, 17, 0, 0, 2182, 2183, 7, 10, 0, 0, 2183, 2184, 7, 1, 0, 0, 2184, 2185, 7, 9, 0, 0, 2185, 386, 1, 0, 0, 0, 2186, 2187, 7, 10, 0, 0, 2187, 2188, 7, 0, 0, 0, 2188, 2189, 7, 3, 0, 0, 2189, 2190, 7, 14, 0, 0, 2190, 2191, 7, 5, 0, 0, 2191, 2192, 7, 0, 0, 0, 2192, 2193, 7, 6, 0, 0, 2193, 388, 1, 0, 0, 0, 2194, 2195, 7, 10, 0, 0, 2195, 2196, 7, 17, 0, 0, 2196, 390, 1, 0, 0, 0, 2197, 2198, 7, 10, 0, 0, 2198, 2199, 7, 17, 0, 0, 2199, 2200, 7, 9, 0, 0, 2200, 2201, 7, 15, 0, 0, 2201, 2202, 7, 0, 0, 0, 2202, 2203, 7, 10, 0, 0, 2203, 392, 1, 0, 0, 0, 2204, 2205, 7, 10, 0, 0, 2205, 2206, 7, 17, 0, 0, 2206, 2207, 7, 3, 0, 0, 2207, 394, 1, 0, 0, 0, 2208, 2209, 7, 10, 0, 0, 2209, 2210, 7, 14, 0, 0, 2210, 2211, 7, 6, 0, 0, 2211, 2212, 7, 6, 0, 0, 2212, 396, 1, 0, 0, 0, 2213, 2214, 7, 10, 0, 0, 2214, 2215, 7, 14, 0, 0, 2215, 2216, 7, 6, 0, 0, 2216, 2217, 7, 6, 0, 0, 2217, 2218, 7, 9, 0, 0, 2218, 398, 1, 0, 0, 0, 2219, 2220, 7, 10, 0, 0, 2220, 2221, 7, 14, 0, 0, 2221, 2222, 7, 21, 0, 0, 2222, 2223, 7, 4, 0, 0, 2223, 2224, 7, 5, 0, 0, 2224, 2225, 7, 12, 0, 0, 2225, 2226, 7, 15, 0, 0, 2226, 400, 1, 0, 0, 0, 2227, 2228, 7, 17, 0, 0, 2228, 2229, 7, 2, 0, 0, 2229, 402, 1, 0, 0, 0, 2230, 2231, 7, 17, 0, 0, 2231, 2232, 7, 2, 0, 0, 2232, 2233, 7, 2, 0, 0, 2233, 2234, 7, 9, 0, 0, 2234, 2235, 7, 4, 0, 0, 2235, 2236, 7, 3, 0, 0, 2236, 404, 1, 0, 0, 0, 2237, 2238, 7, 17, 0, 0, 2238, 2239, 7, 10, 0, 0, 2239, 406, 1, 0, 0, 0, 2240, 2241, 7, 17, 0, 0, 2241, 2242, 7, 10, 0, 0, 2242, 2243, 7, 6, 0, 0, 2243, 2244, 7, 8, 0, 0, 2244, 408, 1, 0, 0, 0, 2245, 2246, 7, 17, 0, 0, 2246, 2247, 7, 22, 0, 0, 2247, 2248, 7, 3, 0, 0, 2248, 2249, 7, 12, 0, 0, 2249, 2250, 7, 21, 0, 0, 2250, 2251, 7, 12, 0, 0, 2251, 2252, 7, 11, 0, 0, 2252, 2253, 7, 4, 0, 0, 2253, 410, 1, 0, 0, 0, 2254, 2255, 7, 17, 0, 0, 2255, 2256, 7, 22, 0, 0, 2256, 2257, 7, 3, 0, 0, 2257, 2258, 7, 12, 0, 0, 2258, 2259, 7, 17, 0, 0, 2259, 2260, 7, 10, 0, 0, 2260, 412, 1, 0, 0, 0, 2261, 2262, 7, 17, 0, 0, 2262, 2263, 7, 22, 0, 0, 2263, 2264, 7, 3, 0, 0, 2264, 2265, 7, 12, 0, 0, 2265, 2266, 7, 17, 0, 0, 2266, 2267, 7, 10, 0, 0, 2267, 2268, 7, 9, 0, 0, 2268, 414, 1, 0, 0, 0, 2269, 2270, 7, 17, 0, 0, 2270, 2271, 7, 5, 0, 0, 2271, 416, 1, 0, 0, 0, 2272, 2273, 7, 17, 0, 0, 2273, 2274, 7, 5, 0, 0, 2274, 2275, 7, 1, 0, 0, 2275, 2276, 7, 4, 0, 0, 2276, 2277, 7, 5, 0, 0, 2277, 418, 1, 0, 0, 0, 2278, 2279, 7, 17, 0, 0, 2279, 2280, 7, 14, 0, 0, 2280, 2281, 7, 3, 0, 0, 2281, 420, 1, 0, 0, 0, 2282, 2283, 7, 17, 0, 0, 2283, 2284, 7, 14, 0, 0, 2284, 2285, 7, 3, 0, 0, 2285, 2286, 7, 4, 0, 0, 2286, 2287, 7, 5, 0, 0, 2287, 422, 1, 0, 0, 0, 2288, 2289, 7, 17, 0, 0, 2289, 2290, 7, 14, 0, 0, 2290, 2291, 7, 3, 0, 0, 2291, 2292, 7, 22, 0, 0, 2292, 2293, 7, 14, 0, 0, 2293, 2294, 7, 3, 0, 0, 2294, 2295, 7, 2, 0, 0, 2295, 2296, 7, 17, 0, 0, 2296, 2297, 7, 5, 0, 0, 2297, 2298, 7, 21, 0, 0, 2298, 2299, 7, 0, 0, 0, 2299, 2300, 7, 3, 0, 0, 2300, 424, 1, 0, 0, 0, 2301, 2302, 7, 17, 0, 0, 2302, 2303, 7, 13, 0, 0, 2303, 2304, 7, 4, 0, 0, 2304, 2305, 7, 5, 0, 0, 2305, 426, 1, 0, 0, 0, 2306, 2307, 7, 17, 0, 0, 2307, 2308, 7, 13, 0, 0, 2308, 2309, 7, 4, 0, 0, 2309, 2310, 7, 5, 0, 0, 2310, 2311, 7, 6, 0, 0, 2311, 2312, 7, 0, 0, 0, 2312, 2313, 7, 22, 0, 0, 2313, 2314, 7, 9, 0, 0, 2314, 428, 1, 0, 0, 0, 2315, 2316, 7, 17, 0, 0, 2316, 2317, 7, 13, 0, 0, 2317, 2318, 7, 4, 0, 0, 2318, 2319, 7, 5, 0, 0, 2319, 2320, 7, 6, 0, 0, 2320, 2321, 7, 0, 0, 0, 2321, 2322, 7, 8, 0, 0, 2322, 430, 1, 0, 0, 0, 2323, 2324, 7, 17, 0, 0, 2324, 2325, 7, 13, 0, 0, 2325, 2326, 7, 4, 0, 0, 2326, 2327, 7, 5, 0, 0, 2327, 2328, 7, 7, 0, 0, 2328, 2329, 7, 5, 0, 0, 2329, 2330, 7, 12, 0, 0, 2330, 2331, 7, 3, 0, 0, 2331, 2332, 7, 4, 0, 0, 2332, 432, 1, 0, 0, 0, 2333, 2334, 7, 22, 0, 0, 2334, 2335, 7, 0, 0, 0, 2335, 2336, 7, 5, 0, 0, 2336, 2337, 7, 3, 0, 0, 2337, 2338, 7, 12, 0, 0, 2338, 2339, 7, 3, 0, 0, 2339, 2340, 7, 12, 0, 0, 2340, 2341, 7, 17, 0, 0, 2341, 2342, 7, 10, 0, 0, 2342, 434, 1, 0, 0, 0, 2343, 2344, 7, 22, 0, 0, 2344, 2345, 7, 0, 0, 0, 2345, 2346, 7, 5, 0, 0, 2346, 2347, 7, 3, 0, 0, 2347, 2348, 7, 12, 0, 0, 2348, 2349, 7, 3, 0, 0, 2349, 2350, 7, 12, 0, 0, 2350, 2351, 7, 17, 0, 0, 2351, 2352, 7, 10, 0, 0, 2352, 2353, 7, 4, 0, 0, 2353, 2354, 7, 1, 0, 0, 2354, 436, 1, 0, 0, 0, 2355, 2356, 7, 22, 0, 0, 2356, 2357, 7, 0, 0, 0, 2357, 2358, 7, 5, 0, 0, 2358, 2359, 7, 3, 0, 0, 2359, 2360, 7, 12, 0, 0, 2360, 2361, 7, 3, 0, 0, 2361, 2362, 7, 12, 0, 0, 2362, 2363, 7, 17, 0, 0, 2363, 2364, 7, 10, 0, 0, 2364, 2365, 7, 9, 0, 0, 2365, 438, 1, 0, 0, 0, 2366, 2367, 7, 22, 0, 0, 2367, 2368, 7, 4, 0, 0, 2368, 2369, 7, 5, 0, 0, 2369, 2370, 7, 15, 0, 0, 2370, 2371, 7, 4, 0, 0, 2371, 2372, 7, 10, 0, 0, 2372, 2373, 7, 3, 0, 0, 2373, 2374, 7, 12, 0, 0, 2374, 2375, 7, 6, 0, 0, 2375, 2376, 7, 4, 0, 0, 2376, 2377, 5, 95, 0, 0, 2377, 2378, 7, 15, 0, 0, 2378, 2379, 7, 17, 0, 0, 2379, 2380, 7, 10, 0, 0, 2380, 2381, 7, 3, 0, 0, 2381, 440, 1, 0, 0, 0, 2382, 2383, 7, 22, 0, 0, 2383, 2384, 7, 4, 0, 0, 2384, 2385, 7, 5, 0, 0, 2385, 2386, 7, 15, 0, 0, 2386, 2387, 7, 4, 0, 0, 2387, 2388, 7, 10, 0, 0, 2388, 2389, 7, 3, 0, 0, 2389, 2390, 7, 12, 0, 0, 2390, 2391, 7, 6, 0, 0, 2391, 2392, 7, 4, 0, 0, 2392, 2393, 5, 95, 0, 0, 2393, 2394, 7, 1, 0, 0, 2394, 2395, 7, 12, 0, 0, 2395, 2396, 7, 9, 0, 0, 2396, 2397, 7, 15, 0, 0, 2397, 442, 1, 0, 0, 0, 2398, 2399, 7, 22, 0, 0, 2399, 2400, 7, 4, 0, 0, 2400, 2401, 7, 5, 0, 0, 2401, 2402, 7, 15, 0, 0, 2402, 2403, 7, 4, 0, 0, 2403, 2404, 7, 10, 0, 0, 2404, 2405, 7, 3, 0, 0, 2405, 444, 1, 0, 0, 0, 2406, 2407, 7, 22, 0, 0, 2407, 2408, 7, 12, 0, 0, 2408, 2409, 7, 13, 0, 0, 2409, 2410, 7, 17, 0, 0, 2410, 2411, 7, 3, 0, 0, 2411, 446, 1, 0, 0, 0, 2412, 2413, 7, 22, 0, 0, 2413, 2414, 7, 6, 0, 0, 2414, 2415, 7, 0, 0, 0, 2415, 2416, 7, 15, 0, 0, 2416, 2417, 7, 12, 0, 0, 2417, 2418, 7, 10, 0, 0, 2418, 2419, 7, 19, 0, 0, 2419, 448, 1, 0, 0, 0, 2420, 2421, 7, 22, 0, 0, 2421, 2422, 7, 17, 0, 0, 2422, 2423, 7, 9, 0, 0, 2423, 2424, 7, 12, 0, 0, 2424, 2425, 7, 3, 0, 0, 2425, 2426, 7, 12, 0, 0, 2426, 2427, 7, 17, 0, 0, 2427, 2428, 7, 10, 0, 0, 2428, 450, 1, 0, 0, 0, 2429, 2430, 7, 22, 0, 0, 2430, 2431, 7, 5, 0, 0, 2431, 2432, 7, 4, 0, 0, 2432, 2433, 7, 15, 0, 0, 2433, 2434, 7, 4, 0, 0, 2434, 2435, 7, 1, 0, 0, 2435, 2436, 7, 12, 0, 0, 2436, 2437, 7, 10, 0, 0, 2437, 2438, 7, 19, 0, 0, 2438, 452, 1, 0, 0, 0, 2439, 2440, 7, 22, 0, 0, 2440, 2441, 7, 5, 0, 0, 2441, 2442, 7, 12, 0, 0, 2442, 2443, 7, 21, 0, 0, 2443, 2444, 7, 0, 0, 0, 2444, 2445, 7, 5, 0, 0, 2445, 2446, 7, 8, 0, 0, 2446, 454, 1, 0, 0, 0, 2447, 2448, 7, 22, 0, 0, 2448, 2449, 7, 5, 0, 0, 2449, 2450, 7, 12, 0, 0, 2450, 2451, 7, 10, 0, 0, 2451, 2452, 7, 15, 0, 0, 2452, 2453, 7, 12, 0, 0, 2453, 2454, 7, 22, 0, 0, 2454, 2455, 7, 0, 0, 0, 2455, 2456, 7, 6, 0, 0, 2456, 2457, 7, 9, 0, 0, 2457, 456, 1, 0, 0, 0, 2458, 2459, 7, 22, 0, 0, 2459, 2460, 7, 5, 0, 0, 2460, 2461, 7, 17, 0, 0, 2461, 2462, 7, 22, 0, 0, 2462, 2463, 7, 4, 0, 0, 2463, 2464, 7, 5, 0, 0, 2464, 2465, 7, 3, 0, 0, 2465, 2466, 7, 12, 0, 0, 2466, 2467, 7, 4, 0, 0, 2467, 2468, 7, 9, 0, 0, 2468, 458, 1, 0, 0, 0, 2469, 2470, 7, 22, 0, 0, 2470, 2471, 7, 14, 0, 0, 2471, 2472, 7, 5, 0, 0, 2472, 2473, 7, 19, 0, 0, 2473, 2474, 7, 4, 0, 0, 2474, 460, 1, 0, 0, 0, 2475, 2476, 7, 25, 0, 0, 2476, 2477, 7, 14, 0, 0, 2477, 2478, 7, 0, 0, 0, 2478, 2479, 7, 5, 0, 0, 2479, 2480, 7, 3, 0, 0, 2480, 2481, 7, 4, 0, 0, 2481, 2482, 7, 5, 0, 0, 2482, 462, 1, 0, 0, 0, 2483, 2484, 7, 25, 0, 0, 2484, 2485, 7, 14, 0, 0, 2485, 2486, 7, 4, 0, 0, 2486, 2487, 7, 5, 0, 0, 2487, 2488, 7, 8, 0, 0, 2488, 464, 1, 0, 0, 0, 2489, 2490, 7, 5, 0, 0, 2490, 2491, 7, 0, 0, 0, 2491, 2492, 7, 10, 0, 0, 2492, 2493, 7, 19, 0, 0, 2493, 2494, 7, 4, 0, 0, 2494, 466, 1, 0, 0, 0, 2495, 2496, 7, 5, 0, 0, 2496, 2497, 7, 4, 0, 0, 2497, 2498, 7, 0, 0, 0, 2498, 2499, 7, 6, 0, 0, 2499, 468, 1, 0, 0, 0, 2500, 2501, 7, 5, 0, 0, 2501, 2502, 7, 4, 0, 0, 2502, 2503, 7, 15, 0, 0, 2503, 2504, 7, 17, 0, 0, 2504, 2505, 7, 5, 0, 0, 2505, 2506, 7, 1, 0, 0, 2506, 2507, 7, 5, 0, 0, 2507, 2508, 7, 4, 0, 0, 2508, 2509, 7, 0, 0, 0, 2509, 2510, 7, 1, 0, 0, 2510, 2511, 7, 4, 0, 0, 2511, 2512, 7, 5, 0, 0, 2512, 470, 1, 0, 0, 0, 2513, 2514, 7, 5, 0, 0, 2514, 2515, 7, 4, 0, 0, 2515, 2516, 7, 15, 0, 0, 2516, 2517, 7, 17, 0, 0, 2517, 2518, 7, 5, 0, 0, 2518, 2519, 7, 1, 0, 0, 2519, 2520, 7, 7, 0, 0, 2520, 2521, 7, 5, 0, 0, 2521, 2522, 7, 12, 0, 0, 2522, 2523, 7, 3, 0, 0, 2523, 2524, 7, 4, 0, 0, 2524, 2525, 7, 5, 0, 0, 2525, 472, 1, 0, 0, 0, 2526, 2527, 7, 5, 0, 0, 2527, 2528, 7, 4, 0, 0, 2528, 2529, 7, 15, 0, 0, 2529, 2530, 7, 17, 0, 0, 2530, 2531, 7, 13, 0, 0, 2531, 2532, 7, 4, 0, 0, 2532, 2533, 7, 5, 0, 0, 2533, 474, 1, 0, 0, 0, 2534, 2535, 7, 5, 0, 0, 2535, 2536, 7, 4, 0, 0, 2536, 2537, 7, 1, 0, 0, 2537, 2538, 7, 14, 0, 0, 2538, 2539, 7, 15, 0, 0, 2539, 2540, 7, 4, 0, 0, 2540, 476, 1, 0, 0, 0, 2541, 2542, 7, 5, 0, 0, 2542, 2543, 7, 4, 0, 0, 2543, 2544, 7, 2, 0, 0, 2544, 2545, 7, 4, 0, 0, 2545, 2546, 7, 5, 0, 0, 2546, 2547, 7, 4, 0, 0, 2547, 2548, 7, 10, 0, 0, 2548, 2549, 7, 15, 0, 0, 2549, 2550, 7, 4, 0, 0, 2550, 2551, 7, 9, 0, 0, 2551, 478, 1, 0, 0, 0, 2552, 2553, 7, 5, 0, 0, 2553, 2554, 7, 4, 0, 0, 2554, 2555, 7, 2, 0, 0, 2555, 2556, 7, 5, 0, 0, 2556, 2557, 7, 4, 0, 0, 2557, 2558, 7, 9, 0, 0, 2558, 2559, 7, 16, 0, 0, 2559, 480, 1, 0, 0, 0, 2560, 2561, 7, 5, 0, 0, 2561, 2562, 7, 4, 0, 0, 2562, 2563, 7, 10, 0, 0, 2563, 2564, 7, 0, 0, 0, 2564, 2565, 7, 21, 0, 0, 2565, 2566, 7, 4, 0, 0, 2566, 482, 1, 0, 0, 0, 2567, 2568, 7, 5, 0, 0, 2568, 2569, 7, 4, 0, 0, 2569, 2570, 7, 22, 0, 0, 2570, 2571, 7, 0, 0, 0, 2571, 2572, 7, 12, 0, 0, 2572, 2573, 7, 5, 0, 0, 2573, 484, 1, 0, 0, 0, 2574, 2575, 7, 5, 0, 0, 2575, 2576, 7, 4, 0, 0, 2576, 2577, 7, 22, 0, 0, 2577, 2578, 7, 4, 0, 0, 2578, 2579, 7, 0, 0, 0, 2579, 2580, 7, 3, 0, 0, 2580, 2581, 7, 0, 0, 0, 2581, 2582, 7, 18, 0, 0, 2582, 2583, 7, 6, 0, 0, 2583, 2584, 7, 4, 0, 0, 2584, 486, 1, 0, 0, 0, 2585, 2586, 7, 5, 0, 0, 2586, 2587, 7, 4, 0, 0, 2587, 2588, 7, 22, 0, 0, 2588, 2589, 7, 6, 0, 0, 2589, 2590, 7, 0, 0, 0, 2590, 2591, 7, 15, 0, 0, 2591, 2592, 7, 4, 0, 0, 2592, 488, 1, 0, 0, 0, 2593, 2594, 7, 5, 0, 0, 2594, 2595, 7, 4, 0, 0, 2595, 2596, 7, 9, 0, 0, 2596, 2597, 7, 4, 0, 0, 2597, 2598, 7, 3, 0, 0, 2598, 490, 1, 0, 0, 0, 2599, 2600, 7, 5, 0, 0, 2600, 2601, 7, 4, 0, 0, 2601, 2602, 7, 9, 0, 0, 2602, 2603, 7, 22, 0, 0, 2603, 2604, 7, 4, 0, 0, 2604, 2605, 7, 15, 0, 0, 2605, 2606, 7, 3, 0, 0, 2606, 492, 1, 0, 0, 0, 2607, 2608, 7, 5, 0, 0, 2608, 2609, 7, 4, 0, 0, 2609, 2610, 7, 9, 0, 0, 2610, 2611, 7, 3, 0, 0, 2611, 2612, 7, 5, 0, 0, 2612, 2613, 7, 12, 0, 0, 2613, 2614, 7, 15, 0, 0, 2614, 2615, 7, 3, 0, 0, 2615, 494, 1, 0, 0, 0, 2616, 2617, 7, 5, 0, 0, 2617, 2618, 7, 4, 0, 0, 2618, 2619, 7, 7, 0, 0, 2619, 2620, 7, 5, 0, 0, 2620, 2621, 7, 12, 0, 0, 2621, 2622, 7, 3, 0, 0, 2622, 2623, 7, 4, 0, 0, 2623, 496, 1, 0, 0, 0, 2624, 2625, 7, 5, 0, 0, 2625, 2626, 7, 4, 0, 0, 2626, 2627, 7, 13, 0, 0, 2627, 2628, 7, 17, 0, 0, 2628, 2629, 7, 20, 0, 0, 2629, 2630, 7, 4, 0, 0, 2630, 498, 1, 0, 0, 0, 2631, 2632, 7, 5, 0, 0, 2632, 2633, 7, 12, 0, 0, 2633, 2634, 7, 19, 0, 0, 2634, 2635, 7, 16, 0, 0, 2635, 2636, 7, 3, 0, 0, 2636, 500, 1, 0, 0, 0, 2637, 2638, 7, 5, 0, 0, 2638, 2639, 7, 6, 0, 0, 2639, 2640, 7, 12, 0, 0, 2640, 2641, 7, 20, 0, 0, 2641, 2642, 7, 4, 0, 0, 2642, 502, 1, 0, 0, 0, 2643, 2644, 7, 5, 0, 0, 2644, 2645, 7, 4, 0, 0, 2645, 2646, 7, 19, 0, 0, 2646, 2647, 7, 4, 0, 0, 2647, 2648, 7, 23, 0, 0, 2648, 2649, 7, 22, 0, 0, 2649, 504, 1, 0, 0, 0, 2650, 2651, 7, 5, 0, 0, 2651, 2652, 7, 17, 0, 0, 2652, 2653, 7, 6, 0, 0, 2653, 2654, 7, 4, 0, 0, 2654, 506, 1, 0, 0, 0, 2655, 2656, 7, 5, 0, 0, 2656, 2657, 7, 17, 0, 0, 2657, 2658, 7, 6, 0, 0, 2658, 2659, 7, 4, 0, 0, 2659, 2660, 7, 9, 0, 0, 2660, 508, 1, 0, 0, 0, 2661, 2662, 7, 5, 0, 0, 2662, 2663, 7, 17, 0, 0, 2663, 2664, 7, 6, 0, 0, 2664, 2665, 7, 6, 0, 0, 2665, 2666, 7, 18, 0, 0, 2666, 2667, 7, 0, 0, 0, 2667, 2668, 7, 15, 0, 0, 2668, 2669, 7, 20, 0, 0, 2669, 510, 1, 0, 0, 0, 2670, 2671, 7, 5, 0, 0, 2671, 2672, 7, 17, 0, 0, 2672, 2673, 7, 6, 0, 0, 2673, 2674, 7, 6, 0, 0, 2674, 2675, 7, 14, 0, 0, 2675, 2676, 7, 22, 0, 0, 2676, 512, 1, 0, 0, 0, 2677, 2678, 7, 5, 0, 0, 2678, 2679, 7, 17, 0, 0, 2679, 2680, 7, 7, 0, 0, 2680, 514, 1, 0, 0, 0, 2681, 2682, 7, 5, 0, 0, 2682, 2683, 7, 17, 0, 0, 2683, 2684, 7, 7, 0, 0, 2684, 2685, 7, 9, 0, 0, 2685, 516, 1, 0, 0, 0, 2686, 2687, 7, 9, 0, 0, 2687, 2688, 7, 4, 0, 0, 2688, 2689, 7, 15, 0, 0, 2689, 2690, 7, 17, 0, 0, 2690, 2691, 7, 10, 0, 0, 2691, 2692, 7, 1, 0, 0, 2692, 518, 1, 0, 0, 0, 2693, 2694, 7, 9, 0, 0, 2694, 2695, 7, 4, 0, 0, 2695, 2696, 7, 15, 0, 0, 2696, 2697, 7, 17, 0, 0, 2697, 2698, 7, 10, 0, 0, 2698, 2699, 7, 1, 0, 0, 2699, 2700, 7, 9, 0, 0, 2700, 520, 1, 0, 0, 0, 2701, 2702, 7, 9, 0, 0, 2702, 2703, 7, 15, 0, 0, 2703, 2704, 7, 16, 0, 0, 2704, 2705, 7, 4, 0, 0, 2705, 2706, 7, 21, 0, 0, 2706, 2707, 7, 0, 0, 0, 2707, 522, 1, 0, 0, 0, 2708, 2709, 7, 9, 0, 0, 2709, 2710, 7, 15, 0, 0, 2710, 2711, 7, 16, 0, 0, 2711, 2712, 7, 4, 0, 0, 2712, 2713, 7, 21, 0, 0, 2713, 2714, 7, 0, 0, 0, 2714, 2715, 7, 9, 0, 0, 2715, 524, 1, 0, 0, 0, 2716, 2717, 7, 9, 0, 0, 2717, 2718, 7, 4, 0, 0, 2718, 2719, 7, 6, 0, 0, 2719, 2720, 7, 4, 0, 0, 2720, 2721, 7, 15, 0, 0, 2721, 2722, 7, 3, 0, 0, 2722, 526, 1, 0, 0, 0, 2723, 2724, 7, 9, 0, 0, 2724, 2725, 7, 4, 0, 0, 2725, 2726, 7, 21, 0, 0, 2726, 2727, 7, 12, 0, 0, 2727, 528, 1, 0, 0, 0, 2728, 2729, 7, 9, 0, 0, 2729, 2730, 7, 4, 0, 0, 2730, 2731, 7, 22, 0, 0, 2731, 2732, 7, 0, 0, 0, 2732, 2733, 7, 5, 0, 0, 2733, 2734, 7, 0, 0, 0, 2734, 2735, 7, 3, 0, 0, 2735, 2736, 7, 4, 0, 0, 2736, 2737, 7, 1, 0, 0, 2737, 530, 1, 0, 0, 0, 2738, 2739, 7, 9, 0, 0, 2739, 2740, 7, 4, 0, 0, 2740, 2741, 7, 5, 0, 0, 2741, 2742, 7, 1, 0, 0, 2742, 2743, 7, 4, 0, 0, 2743, 532, 1, 0, 0, 0, 2744, 2745, 7, 9, 0, 0, 2745, 2746, 7, 4, 0, 0, 2746, 2747, 7, 5, 0, 0, 2747, 2748, 7, 1, 0, 0, 2748, 2749, 7, 4, 0, 0, 2749, 2750, 7, 22, 0, 0, 2750, 2751, 7, 5, 0, 0, 2751, 2752, 7, 17, 0, 0, 2752, 2753, 7, 22, 0, 0, 2753, 2754, 7, 4, 0, 0, 2754, 2755, 7, 5, 0, 0, 2755, 2756, 7, 3, 0, 0, 2756, 2757, 7, 12, 0, 0, 2757, 2758, 7, 4, 0, 0, 2758, 2759, 7, 9, 0, 0, 2759, 534, 1, 0, 0, 0, 2760, 2761, 7, 9, 0, 0, 2761, 2762, 7, 4, 0, 0, 2762, 2763, 7, 9, 0, 0, 2763, 2764, 7, 9, 0, 0, 2764, 2765, 7, 12, 0, 0, 2765, 2766, 7, 17, 0, 0, 2766, 2767, 7, 10, 0, 0, 2767, 2768, 5, 95, 0, 0, 2768, 2769, 7, 14, 0, 0, 2769, 2770, 7, 9, 0, 0, 2770, 2771, 7, 4, 0, 0, 2771, 2772, 7, 5, 0, 0, 2772, 536, 1, 0, 0, 0, 2773, 2774, 7, 9, 0, 0, 2774, 2775, 7, 4, 0, 0, 2775, 2776, 7, 3, 0, 0, 2776, 538, 1, 0, 0, 0, 2777, 2778, 7, 21, 0, 0, 2778, 2779, 7, 12, 0, 0, 2779, 2780, 7, 10, 0, 0, 2780, 2781, 7, 14, 0, 0, 2781, 2782, 7, 9, 0, 0, 2782, 540, 1, 0, 0, 0, 2783, 2784, 7, 9, 0, 0, 2784, 2785, 7, 4, 0, 0, 2785, 2786, 7, 3, 0, 0, 2786, 2787, 7, 9, 0, 0, 2787, 542, 1, 0, 0, 0, 2788, 2789, 7, 9, 0, 0, 2789, 2790, 7, 16, 0, 0, 2790, 2791, 7, 17, 0, 0, 2791, 2792, 7, 5, 0, 0, 2792, 2793, 7, 3, 0, 0, 2793, 544, 1, 0, 0, 0, 2794, 2795, 7, 9, 0, 0, 2795, 2796, 7, 16, 0, 0, 2796, 2797, 7, 17, 0, 0, 2797, 2798, 7, 7, 0, 0, 2798, 546, 1, 0, 0, 0, 2799, 2800, 7, 9, 0, 0, 2800, 2801, 7, 12, 0, 0, 2801, 2802, 7, 10, 0, 0, 2802, 2803, 7, 19, 0, 0, 2803, 2804, 7, 6, 0, 0, 2804, 2805, 7, 4, 0, 0, 2805, 548, 1, 0, 0, 0, 2806, 2807, 7, 9, 0, 0, 2807, 2808, 7, 20, 0, 0, 2808, 2809, 7, 4, 0, 0, 2809, 2810, 7, 7, 0, 0, 2810, 2811, 7, 4, 0, 0, 2811, 2812, 7, 1, 0, 0, 2812, 550, 1, 0, 0, 0, 2813, 2814, 7, 9, 0, 0, 2814, 2815, 7, 21, 0, 0, 2815, 2816, 7, 0, 0, 0, 2816, 2817, 7, 6, 0, 0, 2817, 2818, 7, 6, 0, 0, 2818, 2819, 7, 12, 0, 0, 2819, 2820, 7, 10, 0, 0, 2820, 2821, 7, 3, 0, 0, 2821, 552, 1, 0, 0, 0, 2822, 2823, 7, 9, 0, 0, 2823, 2824, 7, 17, 0, 0, 2824, 2825, 7, 21, 0, 0, 2825, 2826, 7, 4, 0, 0, 2826, 554, 1, 0, 0, 0, 2827, 2828, 7, 9, 0, 0, 2828, 2829, 7, 17, 0, 0, 2829, 2830, 7, 5, 0, 0, 2830, 2831, 7, 3, 0, 0, 2831, 556, 1, 0, 0, 0, 2832, 2833, 7, 9, 0, 0, 2833, 2834, 7, 17, 0, 0, 2834, 2835, 7, 5, 0, 0, 2835, 2836, 7, 3, 0, 0, 2836, 2837, 7, 4, 0, 0, 2837, 2838, 7, 1, 0, 0, 2838, 558, 1, 0, 0, 0, 2839, 2840, 7, 9, 0, 0, 2840, 2841, 7, 17, 0, 0, 2841, 2842, 7, 14, 0, 0, 2842, 2843, 7, 5, 0, 0, 2843, 2844, 7, 15, 0, 0, 2844, 2845, 7, 4, 0, 0, 2845, 560, 1, 0, 0, 0, 2846, 2847, 7, 9, 0, 0, 2847, 2848, 7, 3, 0, 0, 2848, 2849, 7, 0, 0, 0, 2849, 2850, 7, 5, 0, 0, 2850, 2851, 7, 3, 0, 0, 2851, 562, 1, 0, 0, 0, 2852, 2853, 7, 9, 0, 0, 2853, 2854, 7, 3, 0, 0, 2854, 2855, 7, 0, 0, 0, 2855, 2856, 7, 3, 0, 0, 2856, 2857, 7, 12, 0, 0, 2857, 2858, 7, 9, 0, 0, 2858, 2859, 7, 3, 0, 0, 2859, 2860, 7, 12, 0, 0, 2860, 2861, 7, 15, 0, 0, 2861, 2862, 7, 9, 0, 0, 2862, 564, 1, 0, 0, 0, 2863, 2864, 7, 9, 0, 0, 2864, 2865, 7, 3, 0, 0, 2865, 2866, 7, 17, 0, 0, 2866, 2867, 7, 5, 0, 0, 2867, 2868, 7, 4, 0, 0, 2868, 2869, 7, 1, 0, 0, 2869, 566, 1, 0, 0, 0, 2870, 2871, 7, 9, 0, 0, 2871, 2872, 7, 3, 0, 0, 2872, 2873, 7, 5, 0, 0, 2873, 2874, 7, 0, 0, 0, 2874, 2875, 7, 3, 0, 0, 2875, 2876, 7, 12, 0, 0, 2876, 2877, 7, 2, 0, 0, 2877, 2878, 7, 8, 0, 0, 2878, 568, 1, 0, 0, 0, 2879, 2880, 7, 9, 0, 0, 2880, 2881, 7, 3, 0, 0, 2881, 2882, 7, 5, 0, 0, 2882, 2883, 7, 12, 0, 0, 2883, 2884, 7, 10, 0, 0, 2884, 2885, 7, 19, 0, 0, 2885, 570, 1, 0, 0, 0, 2886, 2887, 7, 9, 0, 0, 2887, 2888, 7, 3, 0, 0, 2888, 2889, 7, 5, 0, 0, 2889, 2890, 7, 14, 0, 0, 2890, 2891, 7, 15, 0, 0, 2891, 2892, 7, 3, 0, 0, 2892, 572, 1, 0, 0, 0, 2893, 2894, 7, 9, 0, 0, 2894, 2895, 7, 14, 0, 0, 2895, 2896, 7, 18, 0, 0, 2896, 2897, 7, 9, 0, 0, 2897, 2898, 7, 3, 0, 0, 2898, 2899, 7, 5, 0, 0, 2899, 574, 1, 0, 0, 0, 2900, 2901, 7, 9, 0, 0, 2901, 2902, 7, 14, 0, 0, 2902, 2903, 7, 18, 0, 0, 2903, 2904, 7, 9, 0, 0, 2904, 2905, 7, 3, 0, 0, 2905, 2906, 7, 5, 0, 0, 2906, 2907, 7, 12, 0, 0, 2907, 2908, 7, 10, 0, 0, 2908, 2909, 7, 19, 0, 0, 2909, 576, 1, 0, 0, 0, 2910, 2911, 7, 9, 0, 0, 2911, 2912, 7, 8, 0, 0, 2912, 2913, 7, 10, 0, 0, 2913, 2914, 7, 15, 0, 0, 2914, 578, 1, 0, 0, 0, 2915, 2916, 7, 9, 0, 0, 2916, 2917, 7, 8, 0, 0, 2917, 2918, 7, 9, 0, 0, 2918, 2919, 7, 3, 0, 0, 2919, 2920, 7, 4, 0, 0, 2920, 2921, 7, 21, 0, 0, 2921, 580, 1, 0, 0, 0, 2922, 2923, 7, 9, 0, 0, 2923, 2924, 7, 8, 0, 0, 2924, 2925, 7, 9, 0, 0, 2925, 2926, 7, 3, 0, 0, 2926, 2927, 7, 4, 0, 0, 2927, 2928, 7, 21, 0, 0, 2928, 2929, 5, 95, 0, 0, 2929, 2930, 7, 3, 0, 0, 2930, 2931, 7, 12, 0, 0, 2931, 2932, 7, 21, 0, 0, 2932, 2933, 7, 4, 0, 0, 2933, 582, 1, 0, 0, 0, 2934, 2935, 7, 9, 0, 0, 2935, 2936, 7, 8, 0, 0, 2936, 2937, 7, 9, 0, 0, 2937, 2938, 7, 3, 0, 0, 2938, 2939, 7, 4, 0, 0, 2939, 2940, 7, 21, 0, 0, 2940, 2941, 5, 95, 0, 0, 2941, 2942, 7, 13, 0, 0, 2942, 2943, 7, 4, 0, 0, 2943, 2944, 7, 5, 0, 0, 2944, 2945, 7, 9, 0, 0, 2945, 2946, 7, 12, 0, 0, 2946, 2947, 7, 17, 0, 0, 2947, 2948, 7, 10, 0, 0, 2948, 584, 1, 0, 0, 0, 2949, 2950, 7, 3, 0, 0, 2950, 2951, 7, 0, 0, 0, 2951, 2952, 7, 18, 0, 0, 2952, 2953, 7, 6, 0, 0, 2953, 2954, 7, 4, 0, 0, 2954, 586, 1, 0, 0, 0, 2955, 2956, 7, 3, 0, 0, 2956, 2957, 7, 0, 0, 0, 2957, 2958, 7, 18, 0, 0, 2958, 2959, 7, 6, 0, 0, 2959, 2960, 7, 4, 0, 0, 2960, 2961, 7, 9, 0, 0, 2961, 588, 1, 0, 0, 0, 2962, 2963, 7, 3, 0, 0, 2963, 2964, 7, 0, 0, 0, 2964, 2965, 7, 18, 0, 0, 2965, 2966, 7, 6, 0, 0, 2966, 2967, 7, 4, 0, 0, 2967, 2968, 7, 9, 0, 0, 2968, 2969, 7, 0, 0, 0, 2969, 2970, 7, 21, 0, 0, 2970, 2971, 7, 22, 0, 0, 2971, 2972, 7, 6, 0, 0, 2972, 2973, 7, 4, 0, 0, 2973, 590, 1, 0, 0, 0, 2974, 2975, 7, 3, 0, 0, 2975, 2976, 7, 0, 0, 0, 2976, 2977, 7, 5, 0, 0, 2977, 2978, 7, 19, 0, 0, 2978, 2979, 7, 4, 0, 0, 2979, 2980, 7, 3, 0, 0, 2980, 592, 1, 0, 0, 0, 2981, 2982, 7, 3, 0, 0, 2982, 2983, 7, 18, 0, 0, 2983, 2984, 7, 6, 0, 0, 2984, 2985, 7, 22, 0, 0, 2985, 2986, 7, 5, 0, 0, 2986, 2987, 7, 17, 0, 0, 2987, 2988, 7, 22, 0, 0, 2988, 2989, 7, 4, 0, 0, 2989, 2990, 7, 5, 0, 0, 2990, 2991, 7, 3, 0, 0, 2991, 2992, 7, 12, 0, 0, 2992, 2993, 7, 4, 0, 0, 2993, 2994, 7, 9, 0, 0, 2994, 594, 1, 0, 0, 0, 2995, 2996, 7, 3, 0, 0, 2996, 2997, 7, 4, 0, 0, 2997, 2998, 7, 21, 0, 0, 2998, 2999, 7, 22, 0, 0, 2999, 3000, 7, 17, 0, 0, 3000, 3001, 7, 5, 0, 0, 3001, 3002, 7, 0, 0, 0, 3002, 3003, 7, 5, 0, 0, 3003, 3004, 7, 8, 0, 0, 3004, 596, 1, 0, 0, 0, 3005, 3006, 7, 3, 0, 0, 3006, 3007, 7, 4, 0, 0, 3007, 3008, 7, 5, 0, 0, 3008, 3009, 7, 21, 0, 0, 3009, 3010, 7, 12, 0, 0, 3010, 3011, 7, 10, 0, 0, 3011, 3012, 7, 0, 0, 0, 3012, 3013, 7, 3, 0, 0, 3013, 3014, 7, 4, 0, 0, 3014, 3015, 7, 1, 0, 0, 3015, 598, 1, 0, 0, 0, 3016, 3017, 7, 3, 0, 0, 3017, 3018, 7, 16, 0, 0, 3018, 3019, 7, 4, 0, 0, 3019, 3020, 7, 10, 0, 0, 3020, 600, 1, 0, 0, 0, 3021, 3022, 7, 3, 0, 0, 3022, 3023, 7, 12, 0, 0, 3023, 3024, 7, 21, 0, 0, 3024, 3025, 7, 4, 0, 0, 3025, 602, 1, 0, 0, 0, 3026, 3027, 7, 3, 0, 0, 3027, 3028, 7, 12, 0, 0, 3028, 3029, 7, 21, 0, 0, 3029, 3030, 7, 4, 0, 0, 3030, 3031, 7, 1, 0, 0, 3031, 3032, 7, 12, 0, 0, 3032, 3033, 7, 2, 0, 0, 3033, 3034, 7, 2, 0, 0, 3034, 604, 1, 0, 0, 0, 3035, 3036, 7, 3, 0, 0, 3036, 3037, 7, 12, 0, 0, 3037, 3038, 7, 21, 0, 0, 3038, 3039, 7, 4, 0, 0, 3039, 3040, 7, 9, 0, 0, 3040, 3041, 7, 3, 0, 0, 3041, 3042, 7, 0, 0, 0, 3042, 3043, 7, 21, 0, 0, 3043, 3044, 7, 22, 0, 0, 3044, 606, 1, 0, 0, 0, 3045, 3046, 7, 3, 0, 0, 3046, 3047, 7, 12, 0, 0, 3047, 3048, 7, 21, 0, 0, 3048, 3049, 7, 4, 0, 0, 3049, 3050, 7, 9, 0, 0, 3050, 3051, 7, 3, 0, 0, 3051, 3052, 7, 0, 0, 0, 3052, 3053, 7, 21, 0, 0, 3053, 3054, 7, 22, 0, 0, 3054, 3055, 5, 95, 0, 0, 3055, 3056, 7, 6, 0, 0, 3056, 3057, 7, 3, 0, 0, 3057, 3058, 7, 11, 0, 0, 3058, 608, 1, 0, 0, 0, 3059, 3060, 7, 3, 0, 0, 3060, 3061, 7, 12, 0, 0, 3061, 3062, 7, 21, 0, 0, 3062, 3063, 7, 4, 0, 0, 3063, 3064, 7, 9, 0, 0, 3064, 3065, 7, 3, 0, 0, 3065, 3066, 7, 0, 0, 0, 3066, 3067, 7, 21, 0, 0, 3067, 3068, 7, 22, 0, 0, 3068, 3069, 5, 95, 0, 0, 3069, 3070, 7, 10, 0, 0, 3070, 3071, 7, 3, 0, 0, 3071, 3072, 7, 11, 0, 0, 3072, 610, 1, 0, 0, 0, 3073, 3074, 7, 3, 0, 0, 3074, 3075, 7, 12, 0, 0, 3075, 3076, 7, 21, 0, 0, 3076, 3077, 7, 4, 0, 0, 3077, 3078, 7, 9, 0, 0, 3078, 3079, 7, 3, 0, 0, 3079, 3080, 7, 0, 0, 0, 3080, 3081, 7, 21, 0, 0, 3081, 3082, 7, 22, 0, 0, 3082, 3083, 7, 0, 0, 0, 3083, 3084, 7, 1, 0, 0, 3084, 3085, 7, 1, 0, 0, 3085, 612, 1, 0, 0, 0, 3086, 3087, 7, 3, 0, 0, 3087, 3088, 7, 12, 0, 0, 3088, 3089, 7, 21, 0, 0, 3089, 3090, 7, 4, 0, 0, 3090, 3091, 7, 9, 0, 0, 3091, 3092, 7, 3, 0, 0, 3092, 3093, 7, 0, 0, 0, 3093, 3094, 7, 21, 0, 0, 3094, 3095, 7, 22, 0, 0, 3095, 3096, 7, 1, 0, 0, 3096, 3097, 7, 12, 0, 0, 3097, 3098, 7, 2, 0, 0, 3098, 3099, 7, 2, 0, 0, 3099, 614, 1, 0, 0, 0, 3100, 3101, 7, 3, 0, 0, 3101, 3102, 7, 12, 0, 0, 3102, 3103, 7, 10, 0, 0, 3103, 3104, 7, 8, 0, 0, 3104, 3105, 7, 12, 0, 0, 3105, 3106, 7, 10, 0, 0, 3106, 3107, 7, 3, 0, 0, 3107, 616, 1, 0, 0, 0, 3108, 3109, 7, 3, 0, 0, 3109, 3110, 7, 17, 0, 0, 3110, 618, 1, 0, 0, 0, 3111, 3112, 7, 3, 0, 0, 3112, 3113, 7, 17, 0, 0, 3113, 3114, 7, 14, 0, 0, 3114, 3115, 7, 15, 0, 0, 3115, 3116, 7, 16, 0, 0, 3116, 620, 1, 0, 0, 0, 3117, 3118, 7, 3, 0, 0, 3118, 3119, 7, 5, 0, 0, 3119, 3120, 7, 0, 0, 0, 3120, 3121, 7, 12, 0, 0, 3121, 3122, 7, 6, 0, 0, 3122, 3123, 7, 12, 0, 0, 3123, 3124, 7, 10, 0, 0, 3124, 3125, 7, 19, 0, 0, 3125, 622, 1, 0, 0, 0, 3126, 3127, 7, 3, 0, 0, 3127, 3128, 7, 5, 0, 0, 3128, 3129, 7, 0, 0, 0, 3129, 3130, 7, 10, 0, 0, 3130, 3131, 7, 9, 0, 0, 3131, 3132, 7, 0, 0, 0, 3132, 3133, 7, 15, 0, 0, 3133, 3134, 7, 3, 0, 0, 3134, 3135, 7, 12, 0, 0, 3135, 3136, 7, 17, 0, 0, 3136, 3137, 7, 10, 0, 0, 3137, 624, 1, 0, 0, 0, 3138, 3139, 7, 3, 0, 0, 3139, 3140, 7, 5, 0, 0, 3140, 3141, 7, 0, 0, 0, 3141, 3142, 7, 10, 0, 0, 3142, 3143, 7, 9, 0, 0, 3143, 3144, 7, 0, 0, 0, 3144, 3145, 7, 15, 0, 0, 3145, 3146, 7, 3, 0, 0, 3146, 3147, 7, 12, 0, 0, 3147, 3148, 7, 17, 0, 0, 3148, 3149, 7, 10, 0, 0, 3149, 3150, 7, 9, 0, 0, 3150, 626, 1, 0, 0, 0, 3151, 3152, 7, 3, 0, 0, 3152, 3153, 7, 5, 0, 0, 3153, 3154, 7, 0, 0, 0, 3154, 3155, 7, 10, 0, 0, 3155, 3156, 7, 9, 0, 0, 3156, 3157, 7, 2, 0, 0, 3157, 3158, 7, 17, 0, 0, 3158, 3159, 7, 5, 0, 0, 3159, 3160, 7, 21, 0, 0, 3160, 628, 1, 0, 0, 0, 3161, 3162, 7, 3, 0, 0, 3162, 3163, 7, 5, 0, 0, 3163, 3164, 7, 12, 0, 0, 3164, 3165, 7, 21, 0, 0, 3165, 630, 1, 0, 0, 0, 3166, 3167, 7, 3, 0, 0, 3167, 3168, 7, 5, 0, 0, 3168, 3169, 7, 14, 0, 0, 3169, 3170, 7, 4, 0, 0, 3170, 632, 1, 0, 0, 0, 3171, 3172, 7, 3, 0, 0, 3172, 3173, 7, 5, 0, 0, 3173, 3174, 7, 14, 0, 0, 3174, 3175, 7, 10, 0, 0, 3175, 3176, 7, 15, 0, 0, 3176, 3177, 7, 0, 0, 0, 3177, 3178, 7, 3, 0, 0, 3178, 3179, 7, 4, 0, 0, 3179, 634, 1, 0, 0, 0, 3180, 3181, 7, 3, 0, 0, 3181, 3182, 7, 5, 0, 0, 3182, 3183, 7, 8, 0, 0, 3183, 3184, 5, 95, 0, 0, 3184, 3185, 7, 15, 0, 0, 3185, 3186, 7, 0, 0, 0, 3186, 3187, 7, 9, 0, 0, 3187, 3188, 7, 3, 0, 0, 3188, 636, 1, 0, 0, 0, 3189, 3190, 7, 3, 0, 0, 3190, 3191, 7, 8, 0, 0, 3191, 3192, 7, 22, 0, 0, 3192, 3193, 7, 4, 0, 0, 3193, 638, 1, 0, 0, 0, 3194, 3195, 7, 14, 0, 0, 3195, 3196, 7, 10, 0, 0, 3196, 3197, 7, 0, 0, 0, 3197, 3198, 7, 5, 0, 0, 3198, 3199, 7, 15, 0, 0, 3199, 3200, 7, 16, 0, 0, 3200, 3201, 7, 12, 0, 0, 3201, 3202, 7, 13, 0, 0, 3202, 3203, 7, 4, 0, 0, 3203, 640, 1, 0, 0, 0, 3204, 3205, 7, 14, 0, 0, 3205, 3206, 7, 10, 0, 0, 3206, 3207, 7, 18, 0, 0, 3207, 3208, 7, 17, 0, 0, 3208, 3209, 7, 14, 0, 0, 3209, 3210, 7, 10, 0, 0, 3210, 3211, 7, 1, 0, 0, 3211, 3212, 7, 4, 0, 0, 3212, 3213, 7, 1, 0, 0, 3213, 642, 1, 0, 0, 0, 3214, 3215, 7, 14, 0, 0, 3215, 3216, 7, 10, 0, 0, 3216, 3217, 7, 15, 0, 0, 3217, 3218, 7, 0, 0, 0, 3218, 3219, 7, 15, 0, 0, 3219, 3220, 7, 16, 0, 0, 3220, 3221, 7, 4, 0, 0, 3221, 644, 1, 0, 0, 0, 3222, 3223, 7, 14, 0, 0, 3223, 3224, 7, 10, 0, 0, 3224, 3225, 7, 12, 0, 0, 3225, 3226, 7, 17, 0, 0, 3226, 3227, 7, 10, 0, 0, 3227, 646, 1, 0, 0, 0, 3228, 3229, 7, 14, 0, 0, 3229, 3230, 7, 10, 0, 0, 3230, 3231, 7, 12, 0, 0, 3231, 3232, 7, 25, 0, 0, 3232, 3233, 7, 14, 0, 0, 3233, 3234, 7, 4, 0, 0, 3234, 648, 1, 0, 0, 0, 3235, 3236, 7, 14, 0, 0, 3236, 3237, 7, 10, 0, 0, 3237, 3238, 7, 20, 0, 0, 3238, 3239, 7, 10, 0, 0, 3239, 3240, 7, 17, 0, 0, 3240, 3241, 7, 7, 0, 0, 3241, 3242, 7, 10, 0, 0, 3242, 650, 1, 0, 0, 0, 3243, 3244, 7, 14, 0, 0, 3244, 3245, 7, 10, 0, 0, 3245, 3246, 7, 6, 0, 0, 3246, 3247, 7, 17, 0, 0, 3247, 3248, 7, 15, 0, 0, 3248, 3249, 7, 20, 0, 0, 3249, 652, 1, 0, 0, 0, 3250, 3251, 7, 14, 0, 0, 3251, 3252, 7, 10, 0, 0, 3252, 3253, 7, 22, 0, 0, 3253, 3254, 7, 12, 0, 0, 3254, 3255, 7, 13, 0, 0, 3255, 3256, 7, 17, 0, 0, 3256, 3257, 7, 3, 0, 0, 3257, 654, 1, 0, 0, 0, 3258, 3259, 7, 14, 0, 0, 3259, 3260, 7, 10, 0, 0, 3260, 3261, 7, 9, 0, 0, 3261, 3262, 7, 4, 0, 0, 3262, 3263, 7, 3, 0, 0, 3263, 656, 1, 0, 0, 0, 3264, 3265, 7, 14, 0, 0, 3265, 3266, 7, 22, 0, 0, 3266, 3267, 7, 1, 0, 0, 3267, 3268, 7, 0, 0, 0, 3268, 3269, 7, 3, 0, 0, 3269, 3270, 7, 4, 0, 0, 3270, 658, 1, 0, 0, 0, 3271, 3272, 7, 14, 0, 0, 3272, 3273, 7, 9, 0, 0, 3273, 3274, 7, 4, 0, 0, 3274, 660, 1, 0, 0, 0, 3275, 3276, 7, 14, 0, 0, 3276, 3277, 7, 9, 0, 0, 3277, 3278, 7, 4, 0, 0, 3278, 3279, 7, 5, 0, 0, 3279, 662, 1, 0, 0, 0, 3280, 3281, 7, 14, 0, 0, 3281, 3282, 7, 9, 0, 0, 3282, 3283, 7, 12, 0, 0, 3283, 3284, 7, 10, 0, 0, 3284, 3285, 7, 19, 0, 0, 3285, 664, 1, 0, 0, 0, 3286, 3287, 7, 13, 0, 0, 3287, 3288, 7, 0, 0, 0, 3288, 3289, 7, 6, 0, 0, 3289, 3290, 7, 14, 0, 0, 3290, 3291, 7, 4, 0, 0, 3291, 3292, 7, 9, 0, 0, 3292, 666, 1, 0, 0, 0, 3293, 3294, 7, 13, 0, 0, 3294, 3295, 7, 0, 0, 0, 3295, 3296, 7, 5, 0, 0, 3296, 3297, 7, 15, 0, 0, 3297, 3298, 7, 16, 0, 0, 3298, 3299, 7, 0, 0, 0, 3299, 3300, 7, 5, 0, 0, 3300, 668, 1, 0, 0, 0, 3301, 3302, 7, 13, 0, 0, 3302, 3303, 7, 0, 0, 0, 3303, 3304, 7, 5, 0, 0, 3304, 670, 1, 0, 0, 0, 3305, 3306, 7, 13, 0, 0, 3306, 3307, 7, 0, 0, 0, 3307, 3308, 7, 5, 0, 0, 3308, 3309, 7, 12, 0, 0, 3309, 3310, 7, 0, 0, 0, 3310, 3311, 7, 18, 0, 0, 3311, 3312, 7, 6, 0, 0, 3312, 3313, 7, 4, 0, 0, 3313, 672, 1, 0, 0, 0, 3314, 3315, 7, 13, 0, 0, 3315, 3316, 7, 4, 0, 0, 3316, 3317, 7, 5, 0, 0, 3317, 3318, 7, 9, 0, 0, 3318, 3319, 7, 12, 0, 0, 3319, 3320, 7, 17, 0, 0, 3320, 3321, 7, 10, 0, 0, 3321, 674, 1, 0, 0, 0, 3322, 3323, 7, 13, 0, 0, 3323, 3324, 7, 12, 0, 0, 3324, 3325, 7, 4, 0, 0, 3325, 3326, 7, 7, 0, 0, 3326, 676, 1, 0, 0, 0, 3327, 3328, 7, 13, 0, 0, 3328, 3329, 7, 12, 0, 0, 3329, 3330, 7, 4, 0, 0, 3330, 3331, 7, 7, 0, 0, 3331, 3332, 7, 9, 0, 0, 3332, 678, 1, 0, 0, 0, 3333, 3334, 7, 13, 0, 0, 3334, 3335, 7, 17, 0, 0, 3335, 3336, 7, 12, 0, 0, 3336, 3337, 7, 1, 0, 0, 3337, 680, 1, 0, 0, 0, 3338, 3339, 7, 7, 0, 0, 3339, 3340, 7, 4, 0, 0, 3340, 3341, 7, 4, 0, 0, 3341, 3342, 7, 20, 0, 0, 3342, 682, 1, 0, 0, 0, 3343, 3344, 7, 7, 0, 0, 3344, 3345, 7, 4, 0, 0, 3345, 3346, 7, 4, 0, 0, 3346, 3347, 7, 20, 0, 0, 3347, 3348, 7, 9, 0, 0, 3348, 684, 1, 0, 0, 0, 3349, 3350, 7, 7, 0, 0, 3350, 3351, 7, 16, 0, 0, 3351, 3352, 7, 4, 0, 0, 3352, 3353, 7, 10, 0, 0, 3353, 686, 1, 0, 0, 0, 3354, 3355, 7, 7, 0, 0, 3355, 3356, 7, 16, 0, 0, 3356, 3357, 7, 4, 0, 0, 3357, 3358, 7, 5, 0, 0, 3358, 3359, 7, 4, 0, 0, 3359, 688, 1, 0, 0, 0, 3360, 3361, 7, 7, 0, 0, 3361, 3362, 7, 12, 0, 0, 3362, 3363, 7, 10, 0, 0, 3363, 3364, 7, 1, 0, 0, 3364, 3365, 7, 17, 0, 0, 3365, 3366, 7, 7, 0, 0, 3366, 690, 1, 0, 0, 0, 3367, 3368, 7, 7, 0, 0, 3368, 3369, 7, 12, 0, 0, 3369, 3370, 7, 3, 0, 0, 3370, 3371, 7, 16, 0, 0, 3371, 692, 1, 0, 0, 0, 3372, 3373, 7, 7, 0, 0, 3373, 3374, 7, 12, 0, 0, 3374, 3375, 7, 3, 0, 0, 3375, 3376, 7, 16, 0, 0, 3376, 3377, 7, 12, 0, 0, 3377, 3378, 7, 10, 0, 0, 3378, 694, 1, 0, 0, 0, 3379, 3380, 7, 8, 0, 0, 3380, 3381, 7, 4, 0, 0, 3381, 3382, 7, 0, 0, 0, 3382, 3383, 7, 5, 0, 0, 3383, 696, 1, 0, 0, 0, 3384, 3385, 7, 8, 0, 0, 3385, 3386, 7, 4, 0, 0, 3386, 3387, 7, 0, 0, 0, 3387, 3388, 7, 5, 0, 0, 3388, 3389, 7, 9, 0, 0, 3389, 698, 1, 0, 0, 0, 3390, 3391, 7, 11, 0, 0, 3391, 3392, 7, 17, 0, 0, 3392, 3393, 7, 10, 0, 0, 3393, 3394, 7, 4, 0, 0, 3394, 700, 1, 0, 0, 0, 3395, 3396, 7, 11, 0, 0, 3396, 3397, 7, 17, 0, 0, 3397, 3398, 7, 5, 0, 0, 3398, 3399, 7, 1, 0, 0, 3399, 3400, 7, 4, 0, 0, 3400, 3401, 7, 5, 0, 0, 3401, 702, 1, 0, 0, 0, 3402, 3406, 5, 61, 0, 0, 3403, 3404, 5, 61, 0, 0, 3404, 3406, 5, 61, 0, 0, 3405, 3402, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3406, 704, 1, 0, 0, 0, 3407, 3408, 5, 60, 0, 0, 3408, 3409, 5, 61, 0, 0, 3409, 3410, 5, 62, 0, 0, 3410, 706, 1, 0, 0, 0, 3411, 3412, 5, 60, 0, 0, 3412, 3413, 5, 62, 0, 0, 3413, 708, 1, 0, 0, 0, 3414, 3415, 5, 33, 0, 0, 3415, 3416, 5, 61, 0, 0, 3416, 710, 1, 0, 0, 0, 3417, 3418, 5, 60, 0, 0, 3418, 712, 1, 0, 0, 0, 3419, 3420, 5, 60, 0, 0, 3420, 3424, 5, 61, 0, 0, 3421, 3422, 5, 33, 0, 0, 3422, 3424, 5, 62, 0, 0, 3423, 3419, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3424, 714, 1, 0, 0, 0, 3425, 3426, 5, 62, 0, 0, 3426, 716, 1, 0, 0, 0, 3427, 3428, 5, 62, 0, 0, 3428, 3432, 5, 61, 0, 0, 3429, 3430, 5, 33, 0, 0, 3430, 3432, 5, 60, 0, 0, 3431, 3427, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 718, 1, 0, 0, 0, 3433, 3434, 5, 33, 0, 0, 3434, 720, 1, 0, 0, 0, 3435, 3436, 5, 43, 0, 0, 3436, 722, 1, 0, 0, 0, 3437, 3438, 5, 45, 0, 0, 3438, 724, 1, 0, 0, 0, 3439, 3440, 5, 42, 0, 0, 3440, 726, 1, 0, 0, 0, 3441, 3442, 5, 47, 0, 0, 3442, 728, 1, 0, 0, 0, 3443, 3444, 5, 37, 0, 0, 3444, 730, 1, 0, 0, 0, 3445, 3446, 5, 126, 0, 0, 3446, 732, 1, 0, 0, 0, 3447, 3448, 5, 38, 0, 0, 3448, 734, 1, 0, 0, 0, 3449, 3450, 5, 124, 0, 0, 3450, 736, 1, 0, 0, 0, 3451, 3452, 5, 124, 0, 0, 3452, 3453, 5, 124, 0, 0, 3453, 738, 1, 0, 0, 0, 3454, 3455, 5, 94, 0, 0, 3455, 740, 1, 0, 0, 0, 3456, 3457, 5, 58, 0, 0, 3457, 742, 1, 0, 0, 0, 3458, 3459, 5, 45, 0, 0, 3459, 3460, 5, 62, 0, 0, 3460, 744, 1, 0, 0, 0, 3461, 3462, 5, 61, 0, 0, 3462, 3463, 5, 62, 0, 0, 3463, 746, 1, 0, 0, 0, 3464, 3465, 5, 47, 0, 0, 3465, 3466, 5, 42, 0, 0, 3466, 3467, 5, 43, 0, 0, 3467, 748, 1, 0, 0, 0, 3468, 3469, 5, 42, 0, 0, 3469, 3470, 5, 47, 0, 0, 3470, 750, 1, 0, 0, 0, 3471, 3472, 5, 63, 0, 0, 3472, 752, 1, 0, 0, 0, 3473, 3479, 5, 39, 0, 0, 3474, 3478, 8, 26, 0, 0, 3475, 3476, 5, 92, 0, 0, 3476, 3478, 9, 0, 0, 0, 3477, 3474, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3481, 1, 0, 0, 0, 3479, 3477, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3482, 3504, 5, 39, 0, 0, 3483, 3484, 7, 5, 0, 0, 3484, 3485, 5, 39, 0, 0, 3485, 3489, 1, 0, 0, 0, 3486, 3488, 8, 27, 0, 0, 3487, 3486, 1, 0, 0, 0, 3488, 3491, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3489, 1, 0, 0, 0, 3492, 3504, 5, 39, 0, 0, 3493, 3494, 7, 5, 0, 0, 3494, 3495, 5, 34, 0, 0, 3495, 3499, 1, 0, 0, 0, 3496, 3498, 8, 28, 0, 0, 3497, 3496, 1, 0, 0, 0, 3498, 3501, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3502, 3504, 5, 34, 0, 0, 3503, 3473, 1, 0, 0, 0, 3503, 3483, 1, 0, 0, 0, 3503, 3493, 1, 0, 0, 0, 3504, 754, 1, 0, 0, 0, 3505, 3511, 5, 34, 0, 0, 3506, 3510, 8, 29, 0, 0, 3507, 3508, 5, 92, 0, 0, 3508, 3510, 9, 0, 0, 0, 3509, 3506, 1, 0, 0, 0, 3509, 3507, 1, 0, 0, 0, 3510, 3513, 1, 0, 0, 0, 3511, 3509, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3511, 1, 0, 0, 0, 3514, 3515, 5, 34, 0, 0, 3515, 756, 1, 0, 0, 0, 3516, 3518, 3, 783, 391, 0, 3517, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3522, 7, 6, 0, 0, 3522, 758, 1, 0, 0, 0, 3523, 3525, 3, 783, 391, 0, 3524, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3529, 7, 9, 0, 0, 3529, 760, 1, 0, 0, 0, 3530, 3532, 3, 783, 391, 0, 3531, 3530, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 3536, 7, 8, 0, 0, 3536, 762, 1, 0, 0, 0, 3537, 3539, 3, 783, 391, 0, 3538, 3537, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 764, 1, 0, 0, 0, 3542, 3544, 3, 783, 391, 0, 3543, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3548, 3, 781, 390, 0, 3548, 3553, 1, 0, 0, 0, 3549, 3550, 3, 779, 389, 0, 3550, 3551, 3, 781, 390, 0, 3551, 3553, 1, 0, 0, 0, 3552, 3543, 1, 0, 0, 0, 3552, 3549, 1, 0, 0, 0, 3553, 766, 1, 0, 0, 0, 3554, 3555, 3, 779, 389, 0, 3555, 768, 1, 0, 0, 0, 3556, 3558, 3, 783, 391, 0, 3557, 3556, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3562, 1, 0, 0, 0, 3561, 3563, 3, 781, 390, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3565, 7, 2, 0, 0, 3565, 3573, 1, 0, 0, 0, 3566, 3568, 3, 779, 389, 0, 3567, 3569, 3, 781, 390, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3571, 7, 2, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3557, 1, 0, 0, 0, 3572, 3566, 1, 0, 0, 0, 3573, 770, 1, 0, 0, 0, 3574, 3576, 3, 783, 391, 0, 3575, 3574, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3575, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3580, 1, 0, 0, 0, 3579, 3581, 3, 781, 390, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3583, 7, 1, 0, 0, 3583, 3591, 1, 0, 0, 0, 3584, 3586, 3, 779, 389, 0, 3585, 3587, 3, 781, 390, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3589, 7, 1, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3575, 1, 0, 0, 0, 3590, 3584, 1, 0, 0, 0, 3591, 772, 1, 0, 0, 0, 3592, 3594, 3, 783, 391, 0, 3593, 3592, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 1, 0, 0, 0, 3597, 3599, 3, 781, 390, 0, 3598, 3597, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3600, 1, 0, 0, 0, 3600, 3601, 7, 18, 0, 0, 3601, 3602, 7, 1, 0, 0, 3602, 3611, 1, 0, 0, 0, 3603, 3605, 3, 779, 389, 0, 3604, 3606, 3, 781, 390, 0, 3605, 3604, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3608, 7, 18, 0, 0, 3608, 3609, 7, 1, 0, 0, 3609, 3611, 1, 0, 0, 0, 3610, 3593, 1, 0, 0, 0, 3610, 3603, 1, 0, 0, 0, 3611, 774, 1, 0, 0, 0, 3612, 3616, 3, 785, 392, 0, 3613, 3616, 3, 783, 391, 0, 3614, 3616, 5, 95, 0, 0, 3615, 3612, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3614, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 776, 1, 0, 0, 0, 3619, 3625, 5, 96, 0, 0, 3620, 3624, 8, 30, 0, 0, 3621, 3622, 5, 96, 0, 0, 3622, 3624, 5, 96, 0, 0, 3623, 3620, 1, 0, 0, 0, 3623, 3621, 1, 0, 0, 0, 3624, 3627, 1, 0, 0, 0, 3625, 3623, 1, 0, 0, 0, 3625, 3626, 1, 0, 0, 0, 3626, 3628, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3628, 3629, 5, 96, 0, 0, 3629, 778, 1, 0, 0, 0, 3630, 3632, 3, 783, 391, 0, 3631, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3639, 5, 46, 0, 0, 3636, 3638, 3, 783, 391, 0, 3637, 3636, 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3649, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3642, 3644, 5, 46, 0, 0, 3643, 3645, 3, 783, 391, 0, 3644, 3643, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3649, 1, 0, 0, 0, 3648, 3631, 1, 0, 0, 0, 3648, 3642, 1, 0, 0, 0, 3649, 780, 1, 0, 0, 0, 3650, 3652, 7, 4, 0, 0, 3651, 3653, 7, 31, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3655, 1, 0, 0, 0, 3654, 3656, 3, 783, 391, 0, 3655, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 782, 1, 0, 0, 0, 3659, 3660, 7, 32, 0, 0, 3660, 784, 1, 0, 0, 0, 3661, 3662, 7, 33, 0, 0, 3662, 786, 1, 0, 0, 0, 3663, 3664, 5, 45, 0, 0, 3664, 3665, 5, 45, 0, 0, 3665, 3671, 1, 0, 0, 0, 3666, 3667, 5, 92, 0, 0, 3667, 3670, 5, 10, 0, 0, 3668, 3670, 8, 34, 0, 0, 3669, 3666, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 3673, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3675, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3674, 3676, 5, 13, 0, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3679, 5, 10, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3681, 6, 393, 0, 0, 3681, 788, 1, 0, 0, 0, 3682, 3683, 5, 47, 0, 0, 3683, 3684, 5, 42, 0, 0, 3684, 3689, 1, 0, 0, 0, 3685, 3688, 3, 789, 394, 0, 3686, 3688, 9, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3687, 3686, 1, 0, 0, 0, 3688, 3691, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3689, 3687, 1, 0, 0, 0, 3690, 3696, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3692, 3693, 5, 42, 0, 0, 3693, 3697, 5, 47, 0, 0, 3694, 3695, 6, 394, 1, 0, 3695, 3697, 5, 0, 0, 1, 3696, 3692, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3699, 6, 394, 0, 0, 3699, 790, 1, 0, 0, 0, 3700, 3702, 7, 35, 0, 0, 3701, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3706, 6, 395, 0, 0, 3706, 792, 1, 0, 0, 0, 3707, 3708, 9, 0, 0, 0, 3708, 794, 1, 0, 0, 0, 47, 0, 3405, 3423, 3431, 3477, 3479, 3489, 3499, 3503, 3509, 3511, 3519, 3526, 3533, 3540, 3545, 3552, 3559, 3562, 3568, 3572, 3577, 3580, 3586, 3590, 3595, 3598, 3605, 3610, 3615, 3617, 3623, 3625, 3633, 3639, 3646, 3648, 3652, 3657, 3669, 3671, 3675, 3678, 3687, 3689, 3696, 3703, 2, 0, 1, 0, 1, 394, 0] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlLexer.tokens b/src/lib/spark/SparkSqlLexer.tokens index 321c4a5..d88918b 100644 --- a/src/lib/spark/SparkSqlLexer.tokens +++ b/src/lib/spark/SparkSqlLexer.tokens @@ -159,237 +159,238 @@ KW_LATERAL=158 KW_LAZY=159 KW_LEADING=160 KW_LEFT=161 -KW_LIKE=162 -KW_ILIKE=163 -KW_LIMIT=164 -KW_LINES=165 -KW_LIST=166 -KW_LOAD=167 -KW_LOCAL=168 -KW_LOCATION=169 -KW_LOCK=170 -KW_LOCKS=171 -KW_LOGICAL=172 -KW_LONG=173 -KW_MACRO=174 -KW_MATERIALIZED=175 -KW_MAP=176 -KW_MATCHED=177 -KW_MERGE=178 -KW_MICROSECOND=179 -KW_MICROSECONDS=180 -KW_MILLISECOND=181 -KW_MILLISECONDS=182 -KW_MINUTE=183 -KW_MINUTES=184 -KW_MONTH=185 -KW_MONTHS=186 -KW_MSCK=187 -KW_NAME=188 -KW_NAMESPACE=189 -KW_NAMESPACES=190 -KW_NANOSECOND=191 -KW_NANOSECONDS=192 -KW_NATURAL=193 -KW_NO=194 -KW_NOSCAN=195 -KW_NOT=196 -KW_NULL=197 -KW_NULLS=198 -KW_NUMERIC=199 -KW_OF=200 -KW_OFFSET=201 -KW_ON=202 -KW_ONLY=203 -KW_OPTIMIZE=204 -KW_OPTION=205 -KW_OPTIONS=206 -KW_OR=207 -KW_ORDER=208 -KW_OUT=209 -KW_OUTER=210 -KW_OUTPUTFORMAT=211 -KW_OVER=212 -KW_OVERLAPS=213 -KW_OVERLAY=214 -KW_OVERWRITE=215 -KW_PARTITION=216 -KW_PARTITIONED=217 -KW_PARTITIONS=218 -KW_PERCENTILE_CONT=219 -KW_PERCENTILE_DISC=220 -KW_PERCENTLIT=221 -KW_PIVOT=222 -KW_PLACING=223 -KW_POSITION=224 -KW_PRECEDING=225 -KW_PRIMARY=226 -KW_PRINCIPALS=227 -KW_PROPERTIES=228 -KW_PURGE=229 -KW_QUARTER=230 -KW_QUERY=231 -KW_RANGE=232 -KW_REAL=233 -KW_RECORDREADER=234 -KW_RECORDWRITER=235 -KW_RECOVER=236 -KW_REDUCE=237 -KW_REFERENCES=238 -KW_REFRESH=239 -KW_RENAME=240 -KW_REPAIR=241 -KW_REPEATABLE=242 -KW_REPLACE=243 -KW_RESET=244 -KW_RESPECT=245 -KW_RESTRICT=246 -KW_REWRITE=247 -KW_REVOKE=248 -KW_RIGHT=249 -KW_RLIKE=250 -KW_REGEXP=251 -KW_ROLE=252 -KW_ROLES=253 -KW_ROLLBACK=254 -KW_ROLLUP=255 -KW_ROW=256 -KW_ROWS=257 -KW_SECOND=258 -KW_SECONDS=259 -KW_SCHEMA=260 -KW_SCHEMAS=261 -KW_SELECT=262 -KW_SEMI=263 -KW_SEPARATED=264 -KW_SERDE=265 -KW_SERDEPROPERTIES=266 -KW_SESSION_USER=267 -KW_SET=268 -KW_MINUS=269 -KW_SETS=270 -KW_SHORT=271 -KW_SHOW=272 -KW_SINGLE=273 -KW_SKEWED=274 -KW_SMALLINT=275 -KW_SOME=276 -KW_SORT=277 -KW_SORTED=278 -KW_SOURCE=279 -KW_START=280 -KW_STATISTICS=281 -KW_STORED=282 -KW_STRATIFY=283 -KW_STRING=284 -KW_STRUCT=285 -KW_SUBSTR=286 -KW_SUBSTRING=287 -KW_SYNC=288 -KW_SYSTEM=289 -KW_SYSTEM_TIME=290 -KW_SYSTEM_VERSION=291 -KW_TABLE=292 -KW_TABLES=293 -KW_TABLESAMPLE=294 -KW_TARGET=295 -KW_TBLPROPERTIES=296 -KW_TEMPORARY=297 -KW_TERMINATED=298 -KW_THEN=299 -KW_TIME=300 -KW_TIMEDIFF=301 -KW_TIMESTAMP=302 -KW_TIMESTAMP_LTZ=303 -KW_TIMESTAMP_NTZ=304 -KW_TIMESTAMPADD=305 -KW_TIMESTAMPDIFF=306 -KW_TINYINT=307 -KW_TO=308 -KW_TOUCH=309 -KW_TRAILING=310 -KW_TRANSACTION=311 -KW_TRANSACTIONS=312 -KW_TRANSFORM=313 -KW_TRIM=314 -KW_TRUE=315 -KW_TRUNCATE=316 -KW_TRY_CAST=317 -KW_TYPE=318 -KW_UNARCHIVE=319 -KW_UNBOUNDED=320 -KW_UNCACHE=321 -KW_UNION=322 -KW_UNIQUE=323 -KW_UNKNOWN=324 -KW_UNLOCK=325 -KW_UNPIVOT=326 -KW_UNSET=327 -KW_UPDATE=328 -KW_USE=329 -KW_USER=330 -KW_USING=331 -KW_VALUES=332 -KW_VARCHAR=333 -KW_VAR=334 -KW_VARIABLE=335 -KW_VERSION=336 -KW_VIEW=337 -KW_VIEWS=338 -KW_VOID=339 -KW_WEEK=340 -KW_WEEKS=341 -KW_WHEN=342 -KW_WHERE=343 -KW_WINDOW=344 -KW_WITH=345 -KW_WITHIN=346 -KW_YEAR=347 -KW_YEARS=348 -KW_ZONE=349 -KW_ZORDER=350 -EQ=351 -NSEQ=352 -NEQ=353 -NEQJ=354 -LT=355 -LTE=356 -GT=357 -GTE=358 -NOT=359 -PLUS=360 -MINUS=361 -ASTERISK=362 -SLASH=363 -PERCENT=364 -TILDE=365 -AMPERSAND=366 -PIPE=367 -CONCAT_PIPE=368 -HAT=369 -COLON=370 -ARROW=371 -FAT_ARROW=372 -HENT_START=373 -HENT_END=374 -QUESTION=375 -STRING_LITERAL=376 -DOUBLEQUOTED_STRING=377 -BIGINT_LITERAL=378 -SMALLINT_LITERAL=379 -TINYINT_LITERAL=380 -INTEGER_VALUE=381 -EXPONENT_VALUE=382 -DECIMAL_VALUE=383 -FLOAT_LITERAL=384 -DOUBLE_LITERAL=385 -BIGDECIMAL_LITERAL=386 -IDENTIFIER=387 -BACKQUOTED_IDENTIFIER=388 -SIMPLE_COMMENT=389 -BRACKETED_COMMENT=390 -WS=391 -UNRECOGNIZED=392 +KW_LIFECYCLE=162 +KW_LIKE=163 +KW_ILIKE=164 +KW_LIMIT=165 +KW_LINES=166 +KW_LIST=167 +KW_LOAD=168 +KW_LOCAL=169 +KW_LOCATION=170 +KW_LOCK=171 +KW_LOCKS=172 +KW_LOGICAL=173 +KW_LONG=174 +KW_MACRO=175 +KW_MATERIALIZED=176 +KW_MAP=177 +KW_MATCHED=178 +KW_MERGE=179 +KW_MICROSECOND=180 +KW_MICROSECONDS=181 +KW_MILLISECOND=182 +KW_MILLISECONDS=183 +KW_MINUTE=184 +KW_MINUTES=185 +KW_MONTH=186 +KW_MONTHS=187 +KW_MSCK=188 +KW_NAME=189 +KW_NAMESPACE=190 +KW_NAMESPACES=191 +KW_NANOSECOND=192 +KW_NANOSECONDS=193 +KW_NATURAL=194 +KW_NO=195 +KW_NOSCAN=196 +KW_NOT=197 +KW_NULL=198 +KW_NULLS=199 +KW_NUMERIC=200 +KW_OF=201 +KW_OFFSET=202 +KW_ON=203 +KW_ONLY=204 +KW_OPTIMIZE=205 +KW_OPTION=206 +KW_OPTIONS=207 +KW_OR=208 +KW_ORDER=209 +KW_OUT=210 +KW_OUTER=211 +KW_OUTPUTFORMAT=212 +KW_OVER=213 +KW_OVERLAPS=214 +KW_OVERLAY=215 +KW_OVERWRITE=216 +KW_PARTITION=217 +KW_PARTITIONED=218 +KW_PARTITIONS=219 +KW_PERCENTILE_CONT=220 +KW_PERCENTILE_DISC=221 +KW_PERCENTLIT=222 +KW_PIVOT=223 +KW_PLACING=224 +KW_POSITION=225 +KW_PRECEDING=226 +KW_PRIMARY=227 +KW_PRINCIPALS=228 +KW_PROPERTIES=229 +KW_PURGE=230 +KW_QUARTER=231 +KW_QUERY=232 +KW_RANGE=233 +KW_REAL=234 +KW_RECORDREADER=235 +KW_RECORDWRITER=236 +KW_RECOVER=237 +KW_REDUCE=238 +KW_REFERENCES=239 +KW_REFRESH=240 +KW_RENAME=241 +KW_REPAIR=242 +KW_REPEATABLE=243 +KW_REPLACE=244 +KW_RESET=245 +KW_RESPECT=246 +KW_RESTRICT=247 +KW_REWRITE=248 +KW_REVOKE=249 +KW_RIGHT=250 +KW_RLIKE=251 +KW_REGEXP=252 +KW_ROLE=253 +KW_ROLES=254 +KW_ROLLBACK=255 +KW_ROLLUP=256 +KW_ROW=257 +KW_ROWS=258 +KW_SECOND=259 +KW_SECONDS=260 +KW_SCHEMA=261 +KW_SCHEMAS=262 +KW_SELECT=263 +KW_SEMI=264 +KW_SEPARATED=265 +KW_SERDE=266 +KW_SERDEPROPERTIES=267 +KW_SESSION_USER=268 +KW_SET=269 +KW_MINUS=270 +KW_SETS=271 +KW_SHORT=272 +KW_SHOW=273 +KW_SINGLE=274 +KW_SKEWED=275 +KW_SMALLINT=276 +KW_SOME=277 +KW_SORT=278 +KW_SORTED=279 +KW_SOURCE=280 +KW_START=281 +KW_STATISTICS=282 +KW_STORED=283 +KW_STRATIFY=284 +KW_STRING=285 +KW_STRUCT=286 +KW_SUBSTR=287 +KW_SUBSTRING=288 +KW_SYNC=289 +KW_SYSTEM=290 +KW_SYSTEM_TIME=291 +KW_SYSTEM_VERSION=292 +KW_TABLE=293 +KW_TABLES=294 +KW_TABLESAMPLE=295 +KW_TARGET=296 +KW_TBLPROPERTIES=297 +KW_TEMPORARY=298 +KW_TERMINATED=299 +KW_THEN=300 +KW_TIME=301 +KW_TIMEDIFF=302 +KW_TIMESTAMP=303 +KW_TIMESTAMP_LTZ=304 +KW_TIMESTAMP_NTZ=305 +KW_TIMESTAMPADD=306 +KW_TIMESTAMPDIFF=307 +KW_TINYINT=308 +KW_TO=309 +KW_TOUCH=310 +KW_TRAILING=311 +KW_TRANSACTION=312 +KW_TRANSACTIONS=313 +KW_TRANSFORM=314 +KW_TRIM=315 +KW_TRUE=316 +KW_TRUNCATE=317 +KW_TRY_CAST=318 +KW_TYPE=319 +KW_UNARCHIVE=320 +KW_UNBOUNDED=321 +KW_UNCACHE=322 +KW_UNION=323 +KW_UNIQUE=324 +KW_UNKNOWN=325 +KW_UNLOCK=326 +KW_UNPIVOT=327 +KW_UNSET=328 +KW_UPDATE=329 +KW_USE=330 +KW_USER=331 +KW_USING=332 +KW_VALUES=333 +KW_VARCHAR=334 +KW_VAR=335 +KW_VARIABLE=336 +KW_VERSION=337 +KW_VIEW=338 +KW_VIEWS=339 +KW_VOID=340 +KW_WEEK=341 +KW_WEEKS=342 +KW_WHEN=343 +KW_WHERE=344 +KW_WINDOW=345 +KW_WITH=346 +KW_WITHIN=347 +KW_YEAR=348 +KW_YEARS=349 +KW_ZONE=350 +KW_ZORDER=351 +EQ=352 +NSEQ=353 +NEQ=354 +NEQJ=355 +LT=356 +LTE=357 +GT=358 +GTE=359 +NOT=360 +PLUS=361 +MINUS=362 +ASTERISK=363 +SLASH=364 +PERCENT=365 +TILDE=366 +AMPERSAND=367 +PIPE=368 +CONCAT_PIPE=369 +HAT=370 +COLON=371 +ARROW=372 +FAT_ARROW=373 +HENT_START=374 +HENT_END=375 +QUESTION=376 +STRING_LITERAL=377 +DOUBLEQUOTED_STRING=378 +BIGINT_LITERAL=379 +SMALLINT_LITERAL=380 +TINYINT_LITERAL=381 +INTEGER_VALUE=382 +EXPONENT_VALUE=383 +DECIMAL_VALUE=384 +FLOAT_LITERAL=385 +DOUBLE_LITERAL=386 +BIGDECIMAL_LITERAL=387 +IDENTIFIER=388 +BACKQUOTED_IDENTIFIER=389 +SIMPLE_COMMENT=390 +BRACKETED_COMMENT=391 +WS=392 +UNRECOGNIZED=393 ';'=1 '('=2 ')'=3 @@ -551,214 +552,215 @@ UNRECOGNIZED=392 'LAZY'=159 'LEADING'=160 'LEFT'=161 -'LIKE'=162 -'ILIKE'=163 -'LIMIT'=164 -'LINES'=165 -'LIST'=166 -'LOAD'=167 -'LOCAL'=168 -'LOCATION'=169 -'LOCK'=170 -'LOCKS'=171 -'LOGICAL'=172 -'LONG'=173 -'MACRO'=174 -'MATERIALIZED'=175 -'MAP'=176 -'MATCHED'=177 -'MERGE'=178 -'MICROSECOND'=179 -'MICROSECONDS'=180 -'MILLISECOND'=181 -'MILLISECONDS'=182 -'MINUTE'=183 -'MINUTES'=184 -'MONTH'=185 -'MONTHS'=186 -'MSCK'=187 -'NAME'=188 -'NAMESPACE'=189 -'NAMESPACES'=190 -'NANOSECOND'=191 -'NANOSECONDS'=192 -'NATURAL'=193 -'NO'=194 -'NOSCAN'=195 -'NOT'=196 -'NULL'=197 -'NULLS'=198 -'NUMERIC'=199 -'OF'=200 -'OFFSET'=201 -'ON'=202 -'ONLY'=203 -'OPTIMIZE'=204 -'OPTION'=205 -'OPTIONS'=206 -'OR'=207 -'ORDER'=208 -'OUT'=209 -'OUTER'=210 -'OUTPUTFORMAT'=211 -'OVER'=212 -'OVERLAPS'=213 -'OVERLAY'=214 -'OVERWRITE'=215 -'PARTITION'=216 -'PARTITIONED'=217 -'PARTITIONS'=218 -'PERCENTILE_CONT'=219 -'PERCENTILE_DISC'=220 -'PERCENT'=221 -'PIVOT'=222 -'PLACING'=223 -'POSITION'=224 -'PRECEDING'=225 -'PRIMARY'=226 -'PRINCIPALS'=227 -'PROPERTIES'=228 -'PURGE'=229 -'QUARTER'=230 -'QUERY'=231 -'RANGE'=232 -'REAL'=233 -'RECORDREADER'=234 -'RECORDWRITER'=235 -'RECOVER'=236 -'REDUCE'=237 -'REFERENCES'=238 -'REFRESH'=239 -'RENAME'=240 -'REPAIR'=241 -'REPEATABLE'=242 -'REPLACE'=243 -'RESET'=244 -'RESPECT'=245 -'RESTRICT'=246 -'REWRITE'=247 -'REVOKE'=248 -'RIGHT'=249 -'RLIKE'=250 -'REGEXP'=251 -'ROLE'=252 -'ROLES'=253 -'ROLLBACK'=254 -'ROLLUP'=255 -'ROW'=256 -'ROWS'=257 -'SECOND'=258 -'SECONDS'=259 -'SCHEMA'=260 -'SCHEMAS'=261 -'SELECT'=262 -'SEMI'=263 -'SEPARATED'=264 -'SERDE'=265 -'SERDEPROPERTIES'=266 -'SESSION_USER'=267 -'SET'=268 -'MINUS'=269 -'SETS'=270 -'SHORT'=271 -'SHOW'=272 -'SINGLE'=273 -'SKEWED'=274 -'SMALLINT'=275 -'SOME'=276 -'SORT'=277 -'SORTED'=278 -'SOURCE'=279 -'START'=280 -'STATISTICS'=281 -'STORED'=282 -'STRATIFY'=283 -'STRING'=284 -'STRUCT'=285 -'SUBSTR'=286 -'SUBSTRING'=287 -'SYNC'=288 -'SYSTEM'=289 -'SYSTEM_TIME'=290 -'SYSTEM_VERSION'=291 -'TABLE'=292 -'TABLES'=293 -'TABLESAMPLE'=294 -'TARGET'=295 -'TBLPROPERTIES'=296 -'TEMPORARY'=297 -'TERMINATED'=298 -'THEN'=299 -'TIME'=300 -'TIMEDIFF'=301 -'TIMESTAMP'=302 -'TIMESTAMP_LTZ'=303 -'TIMESTAMP_NTZ'=304 -'TIMESTAMPADD'=305 -'TIMESTAMPDIFF'=306 -'TINYINT'=307 -'TO'=308 -'TOUCH'=309 -'TRAILING'=310 -'TRANSACTION'=311 -'TRANSACTIONS'=312 -'TRANSFORM'=313 -'TRIM'=314 -'TRUE'=315 -'TRUNCATE'=316 -'TRY_CAST'=317 -'TYPE'=318 -'UNARCHIVE'=319 -'UNBOUNDED'=320 -'UNCACHE'=321 -'UNION'=322 -'UNIQUE'=323 -'UNKNOWN'=324 -'UNLOCK'=325 -'UNPIVOT'=326 -'UNSET'=327 -'UPDATE'=328 -'USE'=329 -'USER'=330 -'USING'=331 -'VALUES'=332 -'VARCHAR'=333 -'VAR'=334 -'VARIABLE'=335 -'VERSION'=336 -'VIEW'=337 -'VIEWS'=338 -'VOID'=339 -'WEEK'=340 -'WEEKS'=341 -'WHEN'=342 -'WHERE'=343 -'WINDOW'=344 -'WITH'=345 -'WITHIN'=346 -'YEAR'=347 -'YEARS'=348 -'ZONE'=349 -'ZORDER'=350 -'<=>'=352 -'<>'=353 -'!='=354 -'<'=355 -'>'=357 -'!'=359 -'+'=360 -'-'=361 -'*'=362 -'/'=363 -'%'=364 -'~'=365 -'&'=366 -'|'=367 -'||'=368 -'^'=369 -':'=370 -'->'=371 -'=>'=372 -'/*+'=373 -'*/'=374 -'?'=375 +'LIFECYCLE'=162 +'LIKE'=163 +'ILIKE'=164 +'LIMIT'=165 +'LINES'=166 +'LIST'=167 +'LOAD'=168 +'LOCAL'=169 +'LOCATION'=170 +'LOCK'=171 +'LOCKS'=172 +'LOGICAL'=173 +'LONG'=174 +'MACRO'=175 +'MATERIALIZED'=176 +'MAP'=177 +'MATCHED'=178 +'MERGE'=179 +'MICROSECOND'=180 +'MICROSECONDS'=181 +'MILLISECOND'=182 +'MILLISECONDS'=183 +'MINUTE'=184 +'MINUTES'=185 +'MONTH'=186 +'MONTHS'=187 +'MSCK'=188 +'NAME'=189 +'NAMESPACE'=190 +'NAMESPACES'=191 +'NANOSECOND'=192 +'NANOSECONDS'=193 +'NATURAL'=194 +'NO'=195 +'NOSCAN'=196 +'NOT'=197 +'NULL'=198 +'NULLS'=199 +'NUMERIC'=200 +'OF'=201 +'OFFSET'=202 +'ON'=203 +'ONLY'=204 +'OPTIMIZE'=205 +'OPTION'=206 +'OPTIONS'=207 +'OR'=208 +'ORDER'=209 +'OUT'=210 +'OUTER'=211 +'OUTPUTFORMAT'=212 +'OVER'=213 +'OVERLAPS'=214 +'OVERLAY'=215 +'OVERWRITE'=216 +'PARTITION'=217 +'PARTITIONED'=218 +'PARTITIONS'=219 +'PERCENTILE_CONT'=220 +'PERCENTILE_DISC'=221 +'PERCENT'=222 +'PIVOT'=223 +'PLACING'=224 +'POSITION'=225 +'PRECEDING'=226 +'PRIMARY'=227 +'PRINCIPALS'=228 +'PROPERTIES'=229 +'PURGE'=230 +'QUARTER'=231 +'QUERY'=232 +'RANGE'=233 +'REAL'=234 +'RECORDREADER'=235 +'RECORDWRITER'=236 +'RECOVER'=237 +'REDUCE'=238 +'REFERENCES'=239 +'REFRESH'=240 +'RENAME'=241 +'REPAIR'=242 +'REPEATABLE'=243 +'REPLACE'=244 +'RESET'=245 +'RESPECT'=246 +'RESTRICT'=247 +'REWRITE'=248 +'REVOKE'=249 +'RIGHT'=250 +'RLIKE'=251 +'REGEXP'=252 +'ROLE'=253 +'ROLES'=254 +'ROLLBACK'=255 +'ROLLUP'=256 +'ROW'=257 +'ROWS'=258 +'SECOND'=259 +'SECONDS'=260 +'SCHEMA'=261 +'SCHEMAS'=262 +'SELECT'=263 +'SEMI'=264 +'SEPARATED'=265 +'SERDE'=266 +'SERDEPROPERTIES'=267 +'SESSION_USER'=268 +'SET'=269 +'MINUS'=270 +'SETS'=271 +'SHORT'=272 +'SHOW'=273 +'SINGLE'=274 +'SKEWED'=275 +'SMALLINT'=276 +'SOME'=277 +'SORT'=278 +'SORTED'=279 +'SOURCE'=280 +'START'=281 +'STATISTICS'=282 +'STORED'=283 +'STRATIFY'=284 +'STRING'=285 +'STRUCT'=286 +'SUBSTR'=287 +'SUBSTRING'=288 +'SYNC'=289 +'SYSTEM'=290 +'SYSTEM_TIME'=291 +'SYSTEM_VERSION'=292 +'TABLE'=293 +'TABLES'=294 +'TABLESAMPLE'=295 +'TARGET'=296 +'TBLPROPERTIES'=297 +'TEMPORARY'=298 +'TERMINATED'=299 +'THEN'=300 +'TIME'=301 +'TIMEDIFF'=302 +'TIMESTAMP'=303 +'TIMESTAMP_LTZ'=304 +'TIMESTAMP_NTZ'=305 +'TIMESTAMPADD'=306 +'TIMESTAMPDIFF'=307 +'TINYINT'=308 +'TO'=309 +'TOUCH'=310 +'TRAILING'=311 +'TRANSACTION'=312 +'TRANSACTIONS'=313 +'TRANSFORM'=314 +'TRIM'=315 +'TRUE'=316 +'TRUNCATE'=317 +'TRY_CAST'=318 +'TYPE'=319 +'UNARCHIVE'=320 +'UNBOUNDED'=321 +'UNCACHE'=322 +'UNION'=323 +'UNIQUE'=324 +'UNKNOWN'=325 +'UNLOCK'=326 +'UNPIVOT'=327 +'UNSET'=328 +'UPDATE'=329 +'USE'=330 +'USER'=331 +'USING'=332 +'VALUES'=333 +'VARCHAR'=334 +'VAR'=335 +'VARIABLE'=336 +'VERSION'=337 +'VIEW'=338 +'VIEWS'=339 +'VOID'=340 +'WEEK'=341 +'WEEKS'=342 +'WHEN'=343 +'WHERE'=344 +'WINDOW'=345 +'WITH'=346 +'WITHIN'=347 +'YEAR'=348 +'YEARS'=349 +'ZONE'=350 +'ZORDER'=351 +'<=>'=353 +'<>'=354 +'!='=355 +'<'=356 +'>'=358 +'!'=360 +'+'=361 +'-'=362 +'*'=363 +'/'=364 +'%'=365 +'~'=366 +'&'=367 +'|'=368 +'||'=369 +'^'=370 +':'=371 +'->'=372 +'=>'=373 +'/*+'=374 +'*/'=375 +'?'=376 diff --git a/src/lib/spark/SparkSqlLexer.ts b/src/lib/spark/SparkSqlLexer.ts index 5024179..81dccaf 100644 --- a/src/lib/spark/SparkSqlLexer.ts +++ b/src/lib/spark/SparkSqlLexer.ts @@ -168,237 +168,238 @@ export class SparkSqlLexer extends antlr.Lexer { public static readonly KW_LAZY = 159; public static readonly KW_LEADING = 160; public static readonly KW_LEFT = 161; - public static readonly KW_LIKE = 162; - public static readonly KW_ILIKE = 163; - public static readonly KW_LIMIT = 164; - public static readonly KW_LINES = 165; - public static readonly KW_LIST = 166; - public static readonly KW_LOAD = 167; - public static readonly KW_LOCAL = 168; - public static readonly KW_LOCATION = 169; - public static readonly KW_LOCK = 170; - public static readonly KW_LOCKS = 171; - public static readonly KW_LOGICAL = 172; - public static readonly KW_LONG = 173; - public static readonly KW_MACRO = 174; - public static readonly KW_MATERIALIZED = 175; - public static readonly KW_MAP = 176; - public static readonly KW_MATCHED = 177; - public static readonly KW_MERGE = 178; - public static readonly KW_MICROSECOND = 179; - public static readonly KW_MICROSECONDS = 180; - public static readonly KW_MILLISECOND = 181; - public static readonly KW_MILLISECONDS = 182; - public static readonly KW_MINUTE = 183; - public static readonly KW_MINUTES = 184; - public static readonly KW_MONTH = 185; - public static readonly KW_MONTHS = 186; - public static readonly KW_MSCK = 187; - public static readonly KW_NAME = 188; - public static readonly KW_NAMESPACE = 189; - public static readonly KW_NAMESPACES = 190; - public static readonly KW_NANOSECOND = 191; - public static readonly KW_NANOSECONDS = 192; - public static readonly KW_NATURAL = 193; - public static readonly KW_NO = 194; - public static readonly KW_NOSCAN = 195; - public static readonly KW_NOT = 196; - public static readonly KW_NULL = 197; - public static readonly KW_NULLS = 198; - public static readonly KW_NUMERIC = 199; - public static readonly KW_OF = 200; - public static readonly KW_OFFSET = 201; - public static readonly KW_ON = 202; - public static readonly KW_ONLY = 203; - public static readonly KW_OPTIMIZE = 204; - public static readonly KW_OPTION = 205; - public static readonly KW_OPTIONS = 206; - public static readonly KW_OR = 207; - public static readonly KW_ORDER = 208; - public static readonly KW_OUT = 209; - public static readonly KW_OUTER = 210; - public static readonly KW_OUTPUTFORMAT = 211; - public static readonly KW_OVER = 212; - public static readonly KW_OVERLAPS = 213; - public static readonly KW_OVERLAY = 214; - public static readonly KW_OVERWRITE = 215; - public static readonly KW_PARTITION = 216; - public static readonly KW_PARTITIONED = 217; - public static readonly KW_PARTITIONS = 218; - public static readonly KW_PERCENTILE_CONT = 219; - public static readonly KW_PERCENTILE_DISC = 220; - public static readonly KW_PERCENTLIT = 221; - public static readonly KW_PIVOT = 222; - public static readonly KW_PLACING = 223; - public static readonly KW_POSITION = 224; - public static readonly KW_PRECEDING = 225; - public static readonly KW_PRIMARY = 226; - public static readonly KW_PRINCIPALS = 227; - public static readonly KW_PROPERTIES = 228; - public static readonly KW_PURGE = 229; - public static readonly KW_QUARTER = 230; - public static readonly KW_QUERY = 231; - public static readonly KW_RANGE = 232; - public static readonly KW_REAL = 233; - public static readonly KW_RECORDREADER = 234; - public static readonly KW_RECORDWRITER = 235; - public static readonly KW_RECOVER = 236; - public static readonly KW_REDUCE = 237; - public static readonly KW_REFERENCES = 238; - public static readonly KW_REFRESH = 239; - public static readonly KW_RENAME = 240; - public static readonly KW_REPAIR = 241; - public static readonly KW_REPEATABLE = 242; - public static readonly KW_REPLACE = 243; - public static readonly KW_RESET = 244; - public static readonly KW_RESPECT = 245; - public static readonly KW_RESTRICT = 246; - public static readonly KW_REWRITE = 247; - public static readonly KW_REVOKE = 248; - public static readonly KW_RIGHT = 249; - public static readonly KW_RLIKE = 250; - public static readonly KW_REGEXP = 251; - public static readonly KW_ROLE = 252; - public static readonly KW_ROLES = 253; - public static readonly KW_ROLLBACK = 254; - public static readonly KW_ROLLUP = 255; - public static readonly KW_ROW = 256; - public static readonly KW_ROWS = 257; - public static readonly KW_SECOND = 258; - public static readonly KW_SECONDS = 259; - public static readonly KW_SCHEMA = 260; - public static readonly KW_SCHEMAS = 261; - public static readonly KW_SELECT = 262; - public static readonly KW_SEMI = 263; - public static readonly KW_SEPARATED = 264; - public static readonly KW_SERDE = 265; - public static readonly KW_SERDEPROPERTIES = 266; - public static readonly KW_SESSION_USER = 267; - public static readonly KW_SET = 268; - public static readonly KW_MINUS = 269; - public static readonly KW_SETS = 270; - public static readonly KW_SHORT = 271; - public static readonly KW_SHOW = 272; - public static readonly KW_SINGLE = 273; - public static readonly KW_SKEWED = 274; - public static readonly KW_SMALLINT = 275; - public static readonly KW_SOME = 276; - public static readonly KW_SORT = 277; - public static readonly KW_SORTED = 278; - public static readonly KW_SOURCE = 279; - public static readonly KW_START = 280; - public static readonly KW_STATISTICS = 281; - public static readonly KW_STORED = 282; - public static readonly KW_STRATIFY = 283; - public static readonly KW_STRING = 284; - public static readonly KW_STRUCT = 285; - public static readonly KW_SUBSTR = 286; - public static readonly KW_SUBSTRING = 287; - public static readonly KW_SYNC = 288; - public static readonly KW_SYSTEM = 289; - public static readonly KW_SYSTEM_TIME = 290; - public static readonly KW_SYSTEM_VERSION = 291; - public static readonly KW_TABLE = 292; - public static readonly KW_TABLES = 293; - public static readonly KW_TABLESAMPLE = 294; - public static readonly KW_TARGET = 295; - public static readonly KW_TBLPROPERTIES = 296; - public static readonly KW_TEMPORARY = 297; - public static readonly KW_TERMINATED = 298; - public static readonly KW_THEN = 299; - public static readonly KW_TIME = 300; - public static readonly KW_TIMEDIFF = 301; - public static readonly KW_TIMESTAMP = 302; - public static readonly KW_TIMESTAMP_LTZ = 303; - public static readonly KW_TIMESTAMP_NTZ = 304; - public static readonly KW_TIMESTAMPADD = 305; - public static readonly KW_TIMESTAMPDIFF = 306; - public static readonly KW_TINYINT = 307; - public static readonly KW_TO = 308; - public static readonly KW_TOUCH = 309; - public static readonly KW_TRAILING = 310; - public static readonly KW_TRANSACTION = 311; - public static readonly KW_TRANSACTIONS = 312; - public static readonly KW_TRANSFORM = 313; - public static readonly KW_TRIM = 314; - public static readonly KW_TRUE = 315; - public static readonly KW_TRUNCATE = 316; - public static readonly KW_TRY_CAST = 317; - public static readonly KW_TYPE = 318; - public static readonly KW_UNARCHIVE = 319; - public static readonly KW_UNBOUNDED = 320; - public static readonly KW_UNCACHE = 321; - public static readonly KW_UNION = 322; - public static readonly KW_UNIQUE = 323; - public static readonly KW_UNKNOWN = 324; - public static readonly KW_UNLOCK = 325; - public static readonly KW_UNPIVOT = 326; - public static readonly KW_UNSET = 327; - public static readonly KW_UPDATE = 328; - public static readonly KW_USE = 329; - public static readonly KW_USER = 330; - public static readonly KW_USING = 331; - public static readonly KW_VALUES = 332; - public static readonly KW_VARCHAR = 333; - public static readonly KW_VAR = 334; - public static readonly KW_VARIABLE = 335; - public static readonly KW_VERSION = 336; - public static readonly KW_VIEW = 337; - public static readonly KW_VIEWS = 338; - public static readonly KW_VOID = 339; - public static readonly KW_WEEK = 340; - public static readonly KW_WEEKS = 341; - public static readonly KW_WHEN = 342; - public static readonly KW_WHERE = 343; - public static readonly KW_WINDOW = 344; - public static readonly KW_WITH = 345; - public static readonly KW_WITHIN = 346; - public static readonly KW_YEAR = 347; - public static readonly KW_YEARS = 348; - public static readonly KW_ZONE = 349; - public static readonly KW_ZORDER = 350; - public static readonly EQ = 351; - public static readonly NSEQ = 352; - public static readonly NEQ = 353; - public static readonly NEQJ = 354; - public static readonly LT = 355; - public static readonly LTE = 356; - public static readonly GT = 357; - public static readonly GTE = 358; - public static readonly NOT = 359; - public static readonly PLUS = 360; - public static readonly MINUS = 361; - public static readonly ASTERISK = 362; - public static readonly SLASH = 363; - public static readonly PERCENT = 364; - public static readonly TILDE = 365; - public static readonly AMPERSAND = 366; - public static readonly PIPE = 367; - public static readonly CONCAT_PIPE = 368; - public static readonly HAT = 369; - public static readonly COLON = 370; - public static readonly ARROW = 371; - public static readonly FAT_ARROW = 372; - public static readonly HENT_START = 373; - public static readonly HENT_END = 374; - public static readonly QUESTION = 375; - public static readonly STRING_LITERAL = 376; - public static readonly DOUBLEQUOTED_STRING = 377; - public static readonly BIGINT_LITERAL = 378; - public static readonly SMALLINT_LITERAL = 379; - public static readonly TINYINT_LITERAL = 380; - public static readonly INTEGER_VALUE = 381; - public static readonly EXPONENT_VALUE = 382; - public static readonly DECIMAL_VALUE = 383; - public static readonly FLOAT_LITERAL = 384; - public static readonly DOUBLE_LITERAL = 385; - public static readonly BIGDECIMAL_LITERAL = 386; - public static readonly IDENTIFIER = 387; - public static readonly BACKQUOTED_IDENTIFIER = 388; - public static readonly SIMPLE_COMMENT = 389; - public static readonly BRACKETED_COMMENT = 390; - public static readonly WS = 391; - public static readonly UNRECOGNIZED = 392; + public static readonly KW_LIFECYCLE = 162; + public static readonly KW_LIKE = 163; + public static readonly KW_ILIKE = 164; + public static readonly KW_LIMIT = 165; + public static readonly KW_LINES = 166; + public static readonly KW_LIST = 167; + public static readonly KW_LOAD = 168; + public static readonly KW_LOCAL = 169; + public static readonly KW_LOCATION = 170; + public static readonly KW_LOCK = 171; + public static readonly KW_LOCKS = 172; + public static readonly KW_LOGICAL = 173; + public static readonly KW_LONG = 174; + public static readonly KW_MACRO = 175; + public static readonly KW_MATERIALIZED = 176; + public static readonly KW_MAP = 177; + public static readonly KW_MATCHED = 178; + public static readonly KW_MERGE = 179; + public static readonly KW_MICROSECOND = 180; + public static readonly KW_MICROSECONDS = 181; + public static readonly KW_MILLISECOND = 182; + public static readonly KW_MILLISECONDS = 183; + public static readonly KW_MINUTE = 184; + public static readonly KW_MINUTES = 185; + public static readonly KW_MONTH = 186; + public static readonly KW_MONTHS = 187; + public static readonly KW_MSCK = 188; + public static readonly KW_NAME = 189; + public static readonly KW_NAMESPACE = 190; + public static readonly KW_NAMESPACES = 191; + public static readonly KW_NANOSECOND = 192; + public static readonly KW_NANOSECONDS = 193; + public static readonly KW_NATURAL = 194; + public static readonly KW_NO = 195; + public static readonly KW_NOSCAN = 196; + public static readonly KW_NOT = 197; + public static readonly KW_NULL = 198; + public static readonly KW_NULLS = 199; + public static readonly KW_NUMERIC = 200; + public static readonly KW_OF = 201; + public static readonly KW_OFFSET = 202; + public static readonly KW_ON = 203; + public static readonly KW_ONLY = 204; + public static readonly KW_OPTIMIZE = 205; + public static readonly KW_OPTION = 206; + public static readonly KW_OPTIONS = 207; + public static readonly KW_OR = 208; + public static readonly KW_ORDER = 209; + public static readonly KW_OUT = 210; + public static readonly KW_OUTER = 211; + public static readonly KW_OUTPUTFORMAT = 212; + public static readonly KW_OVER = 213; + public static readonly KW_OVERLAPS = 214; + public static readonly KW_OVERLAY = 215; + public static readonly KW_OVERWRITE = 216; + public static readonly KW_PARTITION = 217; + public static readonly KW_PARTITIONED = 218; + public static readonly KW_PARTITIONS = 219; + public static readonly KW_PERCENTILE_CONT = 220; + public static readonly KW_PERCENTILE_DISC = 221; + public static readonly KW_PERCENTLIT = 222; + public static readonly KW_PIVOT = 223; + public static readonly KW_PLACING = 224; + public static readonly KW_POSITION = 225; + public static readonly KW_PRECEDING = 226; + public static readonly KW_PRIMARY = 227; + public static readonly KW_PRINCIPALS = 228; + public static readonly KW_PROPERTIES = 229; + public static readonly KW_PURGE = 230; + public static readonly KW_QUARTER = 231; + public static readonly KW_QUERY = 232; + public static readonly KW_RANGE = 233; + public static readonly KW_REAL = 234; + public static readonly KW_RECORDREADER = 235; + public static readonly KW_RECORDWRITER = 236; + public static readonly KW_RECOVER = 237; + public static readonly KW_REDUCE = 238; + public static readonly KW_REFERENCES = 239; + public static readonly KW_REFRESH = 240; + public static readonly KW_RENAME = 241; + public static readonly KW_REPAIR = 242; + public static readonly KW_REPEATABLE = 243; + public static readonly KW_REPLACE = 244; + public static readonly KW_RESET = 245; + public static readonly KW_RESPECT = 246; + public static readonly KW_RESTRICT = 247; + public static readonly KW_REWRITE = 248; + public static readonly KW_REVOKE = 249; + public static readonly KW_RIGHT = 250; + public static readonly KW_RLIKE = 251; + public static readonly KW_REGEXP = 252; + public static readonly KW_ROLE = 253; + public static readonly KW_ROLES = 254; + public static readonly KW_ROLLBACK = 255; + public static readonly KW_ROLLUP = 256; + public static readonly KW_ROW = 257; + public static readonly KW_ROWS = 258; + public static readonly KW_SECOND = 259; + public static readonly KW_SECONDS = 260; + public static readonly KW_SCHEMA = 261; + public static readonly KW_SCHEMAS = 262; + public static readonly KW_SELECT = 263; + public static readonly KW_SEMI = 264; + public static readonly KW_SEPARATED = 265; + public static readonly KW_SERDE = 266; + public static readonly KW_SERDEPROPERTIES = 267; + public static readonly KW_SESSION_USER = 268; + public static readonly KW_SET = 269; + public static readonly KW_MINUS = 270; + public static readonly KW_SETS = 271; + public static readonly KW_SHORT = 272; + public static readonly KW_SHOW = 273; + public static readonly KW_SINGLE = 274; + public static readonly KW_SKEWED = 275; + public static readonly KW_SMALLINT = 276; + public static readonly KW_SOME = 277; + public static readonly KW_SORT = 278; + public static readonly KW_SORTED = 279; + public static readonly KW_SOURCE = 280; + public static readonly KW_START = 281; + public static readonly KW_STATISTICS = 282; + public static readonly KW_STORED = 283; + public static readonly KW_STRATIFY = 284; + public static readonly KW_STRING = 285; + public static readonly KW_STRUCT = 286; + public static readonly KW_SUBSTR = 287; + public static readonly KW_SUBSTRING = 288; + public static readonly KW_SYNC = 289; + public static readonly KW_SYSTEM = 290; + public static readonly KW_SYSTEM_TIME = 291; + public static readonly KW_SYSTEM_VERSION = 292; + public static readonly KW_TABLE = 293; + public static readonly KW_TABLES = 294; + public static readonly KW_TABLESAMPLE = 295; + public static readonly KW_TARGET = 296; + public static readonly KW_TBLPROPERTIES = 297; + public static readonly KW_TEMPORARY = 298; + public static readonly KW_TERMINATED = 299; + public static readonly KW_THEN = 300; + public static readonly KW_TIME = 301; + public static readonly KW_TIMEDIFF = 302; + public static readonly KW_TIMESTAMP = 303; + public static readonly KW_TIMESTAMP_LTZ = 304; + public static readonly KW_TIMESTAMP_NTZ = 305; + public static readonly KW_TIMESTAMPADD = 306; + public static readonly KW_TIMESTAMPDIFF = 307; + public static readonly KW_TINYINT = 308; + public static readonly KW_TO = 309; + public static readonly KW_TOUCH = 310; + public static readonly KW_TRAILING = 311; + public static readonly KW_TRANSACTION = 312; + public static readonly KW_TRANSACTIONS = 313; + public static readonly KW_TRANSFORM = 314; + public static readonly KW_TRIM = 315; + public static readonly KW_TRUE = 316; + public static readonly KW_TRUNCATE = 317; + public static readonly KW_TRY_CAST = 318; + public static readonly KW_TYPE = 319; + public static readonly KW_UNARCHIVE = 320; + public static readonly KW_UNBOUNDED = 321; + public static readonly KW_UNCACHE = 322; + public static readonly KW_UNION = 323; + public static readonly KW_UNIQUE = 324; + public static readonly KW_UNKNOWN = 325; + public static readonly KW_UNLOCK = 326; + public static readonly KW_UNPIVOT = 327; + public static readonly KW_UNSET = 328; + public static readonly KW_UPDATE = 329; + public static readonly KW_USE = 330; + public static readonly KW_USER = 331; + public static readonly KW_USING = 332; + public static readonly KW_VALUES = 333; + public static readonly KW_VARCHAR = 334; + public static readonly KW_VAR = 335; + public static readonly KW_VARIABLE = 336; + public static readonly KW_VERSION = 337; + public static readonly KW_VIEW = 338; + public static readonly KW_VIEWS = 339; + public static readonly KW_VOID = 340; + public static readonly KW_WEEK = 341; + public static readonly KW_WEEKS = 342; + public static readonly KW_WHEN = 343; + public static readonly KW_WHERE = 344; + public static readonly KW_WINDOW = 345; + public static readonly KW_WITH = 346; + public static readonly KW_WITHIN = 347; + public static readonly KW_YEAR = 348; + public static readonly KW_YEARS = 349; + public static readonly KW_ZONE = 350; + public static readonly KW_ZORDER = 351; + public static readonly EQ = 352; + public static readonly NSEQ = 353; + public static readonly NEQ = 354; + public static readonly NEQJ = 355; + public static readonly LT = 356; + public static readonly LTE = 357; + public static readonly GT = 358; + public static readonly GTE = 359; + public static readonly NOT = 360; + public static readonly PLUS = 361; + public static readonly MINUS = 362; + public static readonly ASTERISK = 363; + public static readonly SLASH = 364; + public static readonly PERCENT = 365; + public static readonly TILDE = 366; + public static readonly AMPERSAND = 367; + public static readonly PIPE = 368; + public static readonly CONCAT_PIPE = 369; + public static readonly HAT = 370; + public static readonly COLON = 371; + public static readonly ARROW = 372; + public static readonly FAT_ARROW = 373; + public static readonly HENT_START = 374; + public static readonly HENT_END = 375; + public static readonly QUESTION = 376; + public static readonly STRING_LITERAL = 377; + public static readonly DOUBLEQUOTED_STRING = 378; + public static readonly BIGINT_LITERAL = 379; + public static readonly SMALLINT_LITERAL = 380; + public static readonly TINYINT_LITERAL = 381; + public static readonly INTEGER_VALUE = 382; + public static readonly EXPONENT_VALUE = 383; + public static readonly DECIMAL_VALUE = 384; + public static readonly FLOAT_LITERAL = 385; + public static readonly DOUBLE_LITERAL = 386; + public static readonly BIGDECIMAL_LITERAL = 387; + public static readonly IDENTIFIER = 388; + public static readonly BACKQUOTED_IDENTIFIER = 389; + public static readonly SIMPLE_COMMENT = 390; + public static readonly BRACKETED_COMMENT = 391; + public static readonly WS = 392; + public static readonly UNRECOGNIZED = 393; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -433,33 +434,33 @@ export class SparkSqlLexer extends antlr.Lexer { "'IN'", "'INCLUDE'", "'INDEX'", "'INDEXES'", "'INNER'", "'INPATH'", "'INPUTFORMAT'", "'INSERT'", "'INTERSECT'", "'INTERVAL'", "'INT'", "'INTEGER'", "'INTO'", "'IS'", "'ITEMS'", "'JOIN'", "'KEYS'", "'LAST'", - "'LATERAL'", "'LAZY'", "'LEADING'", "'LEFT'", "'LIKE'", "'ILIKE'", - "'LIMIT'", "'LINES'", "'LIST'", "'LOAD'", "'LOCAL'", "'LOCATION'", - "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", "'MACRO'", "'MATERIALIZED'", - "'MAP'", "'MATCHED'", "'MERGE'", "'MICROSECOND'", "'MICROSECONDS'", - "'MILLISECOND'", "'MILLISECONDS'", "'MINUTE'", "'MINUTES'", "'MONTH'", - "'MONTHS'", "'MSCK'", "'NAME'", "'NAMESPACE'", "'NAMESPACES'", "'NANOSECOND'", - "'NANOSECONDS'", "'NATURAL'", "'NO'", "'NOSCAN'", "'NOT'", "'NULL'", - "'NULLS'", "'NUMERIC'", "'OF'", "'OFFSET'", "'ON'", "'ONLY'", "'OPTIMIZE'", - "'OPTION'", "'OPTIONS'", "'OR'", "'ORDER'", "'OUT'", "'OUTER'", - "'OUTPUTFORMAT'", "'OVER'", "'OVERLAPS'", "'OVERLAY'", "'OVERWRITE'", - "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PERCENTILE_CONT'", - "'PERCENTILE_DISC'", "'PERCENT'", "'PIVOT'", "'PLACING'", "'POSITION'", - "'PRECEDING'", "'PRIMARY'", "'PRINCIPALS'", "'PROPERTIES'", "'PURGE'", - "'QUARTER'", "'QUERY'", "'RANGE'", "'REAL'", "'RECORDREADER'", "'RECORDWRITER'", - "'RECOVER'", "'REDUCE'", "'REFERENCES'", "'REFRESH'", "'RENAME'", - "'REPAIR'", "'REPEATABLE'", "'REPLACE'", "'RESET'", "'RESPECT'", - "'RESTRICT'", "'REWRITE'", "'REVOKE'", "'RIGHT'", "'RLIKE'", "'REGEXP'", - "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", "'ROW'", "'ROWS'", - "'SECOND'", "'SECONDS'", "'SCHEMA'", "'SCHEMAS'", "'SELECT'", "'SEMI'", - "'SEPARATED'", "'SERDE'", "'SERDEPROPERTIES'", "'SESSION_USER'", - "'SET'", "'MINUS'", "'SETS'", "'SHORT'", "'SHOW'", "'SINGLE'", "'SKEWED'", - "'SMALLINT'", "'SOME'", "'SORT'", "'SORTED'", "'SOURCE'", "'START'", - "'STATISTICS'", "'STORED'", "'STRATIFY'", "'STRING'", "'STRUCT'", - "'SUBSTR'", "'SUBSTRING'", "'SYNC'", "'SYSTEM'", "'SYSTEM_TIME'", - "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TARGET'", - "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", "'THEN'", "'TIME'", - "'TIMEDIFF'", "'TIMESTAMP'", "'TIMESTAMP_LTZ'", "'TIMESTAMP_NTZ'", + "'LATERAL'", "'LAZY'", "'LEADING'", "'LEFT'", "'LIFECYCLE'", "'LIKE'", + "'ILIKE'", "'LIMIT'", "'LINES'", "'LIST'", "'LOAD'", "'LOCAL'", + "'LOCATION'", "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", "'MACRO'", + "'MATERIALIZED'", "'MAP'", "'MATCHED'", "'MERGE'", "'MICROSECOND'", + "'MICROSECONDS'", "'MILLISECOND'", "'MILLISECONDS'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MSCK'", "'NAME'", "'NAMESPACE'", + "'NAMESPACES'", "'NANOSECOND'", "'NANOSECONDS'", "'NATURAL'", "'NO'", + "'NOSCAN'", "'NOT'", "'NULL'", "'NULLS'", "'NUMERIC'", "'OF'", "'OFFSET'", + "'ON'", "'ONLY'", "'OPTIMIZE'", "'OPTION'", "'OPTIONS'", "'OR'", + "'ORDER'", "'OUT'", "'OUTER'", "'OUTPUTFORMAT'", "'OVER'", "'OVERLAPS'", + "'OVERLAY'", "'OVERWRITE'", "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", + "'PERCENTILE_CONT'", "'PERCENTILE_DISC'", "'PERCENT'", "'PIVOT'", + "'PLACING'", "'POSITION'", "'PRECEDING'", "'PRIMARY'", "'PRINCIPALS'", + "'PROPERTIES'", "'PURGE'", "'QUARTER'", "'QUERY'", "'RANGE'", "'REAL'", + "'RECORDREADER'", "'RECORDWRITER'", "'RECOVER'", "'REDUCE'", "'REFERENCES'", + "'REFRESH'", "'RENAME'", "'REPAIR'", "'REPEATABLE'", "'REPLACE'", + "'RESET'", "'RESPECT'", "'RESTRICT'", "'REWRITE'", "'REVOKE'", "'RIGHT'", + "'RLIKE'", "'REGEXP'", "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", + "'ROW'", "'ROWS'", "'SECOND'", "'SECONDS'", "'SCHEMA'", "'SCHEMAS'", + "'SELECT'", "'SEMI'", "'SEPARATED'", "'SERDE'", "'SERDEPROPERTIES'", + "'SESSION_USER'", "'SET'", "'MINUS'", "'SETS'", "'SHORT'", "'SHOW'", + "'SINGLE'", "'SKEWED'", "'SMALLINT'", "'SOME'", "'SORT'", "'SORTED'", + "'SOURCE'", "'START'", "'STATISTICS'", "'STORED'", "'STRATIFY'", + "'STRING'", "'STRUCT'", "'SUBSTR'", "'SUBSTRING'", "'SYNC'", "'SYSTEM'", + "'SYSTEM_TIME'", "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", + "'TARGET'", "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", "'THEN'", + "'TIME'", "'TIMEDIFF'", "'TIMESTAMP'", "'TIMESTAMP_LTZ'", "'TIMESTAMP_NTZ'", "'TIMESTAMPADD'", "'TIMESTAMPDIFF'", "'TINYINT'", "'TO'", "'TOUCH'", "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONS'", "'TRANSFORM'", "'TRIM'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TYPE'", "'UNARCHIVE'", @@ -504,51 +505,52 @@ export class SparkSqlLexer extends antlr.Lexer { "KW_IN", "KW_INCLUDE", "KW_INDEX", "KW_INDEXES", "KW_INNER", "KW_INPATH", "KW_INPUTFORMAT", "KW_INSERT", "KW_INTERSECT", "KW_INTERVAL", "KW_INT", "KW_INTEGER", "KW_INTO", "KW_IS", "KW_ITEMS", "KW_JOIN", "KW_KEYS", - "KW_LAST", "KW_LATERAL", "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIKE", - "KW_ILIKE", "KW_LIMIT", "KW_LINES", "KW_LIST", "KW_LOAD", "KW_LOCAL", - "KW_LOCATION", "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", - "KW_MATERIALIZED", "KW_MAP", "KW_MATCHED", "KW_MERGE", "KW_MICROSECOND", - "KW_MICROSECONDS", "KW_MILLISECOND", "KW_MILLISECONDS", "KW_MINUTE", - "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MSCK", "KW_NAME", "KW_NAMESPACE", - "KW_NAMESPACES", "KW_NANOSECOND", "KW_NANOSECONDS", "KW_NATURAL", - "KW_NO", "KW_NOSCAN", "KW_NOT", "KW_NULL", "KW_NULLS", "KW_NUMERIC", - "KW_OF", "KW_OFFSET", "KW_ON", "KW_ONLY", "KW_OPTIMIZE", "KW_OPTION", - "KW_OPTIONS", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTPUTFORMAT", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_PARTITION", - "KW_PARTITIONED", "KW_PARTITIONS", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", - "KW_PERCENTLIT", "KW_PIVOT", "KW_PLACING", "KW_POSITION", "KW_PRECEDING", - "KW_PRIMARY", "KW_PRINCIPALS", "KW_PROPERTIES", "KW_PURGE", "KW_QUARTER", - "KW_QUERY", "KW_RANGE", "KW_REAL", "KW_RECORDREADER", "KW_RECORDWRITER", - "KW_RECOVER", "KW_REDUCE", "KW_REFERENCES", "KW_REFRESH", "KW_RENAME", - "KW_REPAIR", "KW_REPEATABLE", "KW_REPLACE", "KW_RESET", "KW_RESPECT", - "KW_RESTRICT", "KW_REWRITE", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", - "KW_REGEXP", "KW_ROLE", "KW_ROLES", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_SECOND", "KW_SECONDS", "KW_SCHEMA", "KW_SCHEMAS", - "KW_SELECT", "KW_SEMI", "KW_SEPARATED", "KW_SERDE", "KW_SERDEPROPERTIES", - "KW_SESSION_USER", "KW_SET", "KW_MINUS", "KW_SETS", "KW_SHORT", - "KW_SHOW", "KW_SINGLE", "KW_SKEWED", "KW_SMALLINT", "KW_SOME", "KW_SORT", - "KW_SORTED", "KW_SOURCE", "KW_START", "KW_STATISTICS", "KW_STORED", - "KW_STRATIFY", "KW_STRING", "KW_STRUCT", "KW_SUBSTR", "KW_SUBSTRING", - "KW_SYNC", "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_VERSION", "KW_TABLE", - "KW_TABLES", "KW_TABLESAMPLE", "KW_TARGET", "KW_TBLPROPERTIES", - "KW_TEMPORARY", "KW_TERMINATED", "KW_THEN", "KW_TIME", "KW_TIMEDIFF", - "KW_TIMESTAMP", "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_NTZ", "KW_TIMESTAMPADD", - "KW_TIMESTAMPDIFF", "KW_TINYINT", "KW_TO", "KW_TOUCH", "KW_TRAILING", - "KW_TRANSACTION", "KW_TRANSACTIONS", "KW_TRANSFORM", "KW_TRIM", - "KW_TRUE", "KW_TRUNCATE", "KW_TRY_CAST", "KW_TYPE", "KW_UNARCHIVE", - "KW_UNBOUNDED", "KW_UNCACHE", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", - "KW_UNLOCK", "KW_UNPIVOT", "KW_UNSET", "KW_UPDATE", "KW_USE", "KW_USER", - "KW_USING", "KW_VALUES", "KW_VARCHAR", "KW_VAR", "KW_VARIABLE", - "KW_VERSION", "KW_VIEW", "KW_VIEWS", "KW_VOID", "KW_WEEK", "KW_WEEKS", - "KW_WHEN", "KW_WHERE", "KW_WINDOW", "KW_WITH", "KW_WITHIN", "KW_YEAR", - "KW_YEARS", "KW_ZONE", "KW_ZORDER", "EQ", "NSEQ", "NEQ", "NEQJ", - "LT", "LTE", "GT", "GTE", "NOT", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", "HAT", "COLON", - "ARROW", "FAT_ARROW", "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", - "DOUBLEQUOTED_STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", - "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" + "KW_LAST", "KW_LATERAL", "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIFECYCLE", + "KW_LIKE", "KW_ILIKE", "KW_LIMIT", "KW_LINES", "KW_LIST", "KW_LOAD", + "KW_LOCAL", "KW_LOCATION", "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", + "KW_LONG", "KW_MACRO", "KW_MATERIALIZED", "KW_MAP", "KW_MATCHED", + "KW_MERGE", "KW_MICROSECOND", "KW_MICROSECONDS", "KW_MILLISECOND", + "KW_MILLISECONDS", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", + "KW_MSCK", "KW_NAME", "KW_NAMESPACE", "KW_NAMESPACES", "KW_NANOSECOND", + "KW_NANOSECONDS", "KW_NATURAL", "KW_NO", "KW_NOSCAN", "KW_NOT", + "KW_NULL", "KW_NULLS", "KW_NUMERIC", "KW_OF", "KW_OFFSET", "KW_ON", + "KW_ONLY", "KW_OPTIMIZE", "KW_OPTION", "KW_OPTIONS", "KW_OR", "KW_ORDER", + "KW_OUT", "KW_OUTER", "KW_OUTPUTFORMAT", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_PARTITION", "KW_PARTITIONED", + "KW_PARTITIONS", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", "KW_PERCENTLIT", + "KW_PIVOT", "KW_PLACING", "KW_POSITION", "KW_PRECEDING", "KW_PRIMARY", + "KW_PRINCIPALS", "KW_PROPERTIES", "KW_PURGE", "KW_QUARTER", "KW_QUERY", + "KW_RANGE", "KW_REAL", "KW_RECORDREADER", "KW_RECORDWRITER", "KW_RECOVER", + "KW_REDUCE", "KW_REFERENCES", "KW_REFRESH", "KW_RENAME", "KW_REPAIR", + "KW_REPEATABLE", "KW_REPLACE", "KW_RESET", "KW_RESPECT", "KW_RESTRICT", + "KW_REWRITE", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_REGEXP", + "KW_ROLE", "KW_ROLES", "KW_ROLLBACK", "KW_ROLLUP", "KW_ROW", "KW_ROWS", + "KW_SECOND", "KW_SECONDS", "KW_SCHEMA", "KW_SCHEMAS", "KW_SELECT", + "KW_SEMI", "KW_SEPARATED", "KW_SERDE", "KW_SERDEPROPERTIES", "KW_SESSION_USER", + "KW_SET", "KW_MINUS", "KW_SETS", "KW_SHORT", "KW_SHOW", "KW_SINGLE", + "KW_SKEWED", "KW_SMALLINT", "KW_SOME", "KW_SORT", "KW_SORTED", "KW_SOURCE", + "KW_START", "KW_STATISTICS", "KW_STORED", "KW_STRATIFY", "KW_STRING", + "KW_STRUCT", "KW_SUBSTR", "KW_SUBSTRING", "KW_SYNC", "KW_SYSTEM", + "KW_SYSTEM_TIME", "KW_SYSTEM_VERSION", "KW_TABLE", "KW_TABLES", + "KW_TABLESAMPLE", "KW_TARGET", "KW_TBLPROPERTIES", "KW_TEMPORARY", + "KW_TERMINATED", "KW_THEN", "KW_TIME", "KW_TIMEDIFF", "KW_TIMESTAMP", + "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_NTZ", "KW_TIMESTAMPADD", "KW_TIMESTAMPDIFF", + "KW_TINYINT", "KW_TO", "KW_TOUCH", "KW_TRAILING", "KW_TRANSACTION", + "KW_TRANSACTIONS", "KW_TRANSFORM", "KW_TRIM", "KW_TRUE", "KW_TRUNCATE", + "KW_TRY_CAST", "KW_TYPE", "KW_UNARCHIVE", "KW_UNBOUNDED", "KW_UNCACHE", + "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNLOCK", "KW_UNPIVOT", + "KW_UNSET", "KW_UPDATE", "KW_USE", "KW_USER", "KW_USING", "KW_VALUES", + "KW_VARCHAR", "KW_VAR", "KW_VARIABLE", "KW_VERSION", "KW_VIEW", + "KW_VIEWS", "KW_VOID", "KW_WEEK", "KW_WEEKS", "KW_WHEN", "KW_WHERE", + "KW_WINDOW", "KW_WITH", "KW_WITHIN", "KW_YEAR", "KW_YEARS", "KW_ZONE", + "KW_ZORDER", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", "GT", "GTE", + "NOT", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "TILDE", + "AMPERSAND", "PIPE", "CONCAT_PIPE", "HAT", "COLON", "ARROW", "FAT_ARROW", + "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", "DOUBLEQUOTED_STRING", + "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", + "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", + "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", + "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; public static readonly modeNames = [ @@ -586,9 +588,9 @@ export class SparkSqlLexer extends antlr.Lexer { "KW_INDEXES", "KW_INNER", "KW_INPATH", "KW_INPUTFORMAT", "KW_INSERT", "KW_INTERSECT", "KW_INTERVAL", "KW_INT", "KW_INTEGER", "KW_INTO", "KW_IS", "KW_ITEMS", "KW_JOIN", "KW_KEYS", "KW_LAST", "KW_LATERAL", - "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIKE", "KW_ILIKE", "KW_LIMIT", - "KW_LINES", "KW_LIST", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", "KW_LOCK", - "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MATERIALIZED", + "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIFECYCLE", "KW_LIKE", "KW_ILIKE", + "KW_LIMIT", "KW_LINES", "KW_LIST", "KW_LOAD", "KW_LOCAL", "KW_LOCATION", + "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", "KW_MATERIALIZED", "KW_MAP", "KW_MATCHED", "KW_MERGE", "KW_MICROSECOND", "KW_MICROSECONDS", "KW_MILLISECOND", "KW_MILLISECONDS", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MSCK", "KW_NAME", "KW_NAMESPACE", "KW_NAMESPACES", @@ -670,7 +672,7 @@ export class SparkSqlLexer extends antlr.Lexer { public override action(localContext: antlr.RuleContext | null, ruleIndex: number, actionIndex: number): void { switch (ruleIndex) { - case 393: + case 394: this.BRACKETED_COMMENT_action(localContext, actionIndex); break; } @@ -684,7 +686,7 @@ export class SparkSqlLexer extends antlr.Lexer { } public static readonly _serializedATN: number[] = [ - 4,0,392,3697,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,393,3709,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, @@ -753,1325 +755,1330 @@ export class SparkSqlLexer extends antlr.Lexer { 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,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4,1,5,1,5,1,6, - 1,6,1,7,1,7,1,7,1,7,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,10,1,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,12, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,14,1,14, - 1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,1,16, - 1,16,1,16,1,16,1,16,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,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21, - 1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,22,1,22,1,23,1,23,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,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,28, - 1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29, - 1,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32, - 1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,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,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,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41, - 1,42,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,45,1,45, - 1,45,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,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,49,1,49,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,51,1,51,1,51,1,51, - 1,51,1,51,1,51,1,52,1,52,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,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,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,57,1,57,1,57,1,57,1,57,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,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,62,1,62,1,62,1,62,1,62,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,63,1,63,1,64,1,64,1,64,1,64,1,64,1,64, - 1,64,1,64,1,64,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,65,1,65,1,65,1,65,1,65,1,66, - 1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68, - 1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,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,71,1,71,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,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,75,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,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,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,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,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,87,1,87,1,87,1,87,1,88,1,88, - 1,88,1,88,1,88,1,88,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,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,93,1,93,1,93,1,93, - 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,96, - 1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98, - 1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1, - 100,1,100,1,100,1,100,1,100,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,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,105, - 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,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,110,1,110,1,110,1,110,1,110,1,110,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,113,1,113,1,113, - 1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,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,115,1,116, - 1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,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,125,1,125,1,125,1,126,1,126,1,126,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,128,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, - 1,129,1,129,1,129,1,130,1,130,1,130,1,130,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,132,1,132,1,133, - 1,133,1,133,1,133,1,133,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,135,1,135,1,135,1,135,1,136, - 1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,140,1,140,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,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,144,1,145, - 1,145,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,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,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,150,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,153,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154, - 1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,1,156,1,156, - 1,156,1,157,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,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,161,1,161,1,161,1,161,1,161,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,164,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,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,168,1,168,1,169,1,169, - 1,169,1,169,1,169,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,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,174,1,174,1,174,1,174,1,174,1,174,1,174,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,177,1,177, - 1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178, + 2,395,7,395,2,396,7,396,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4, + 1,5,1,5,1,6,1,6,1,7,1,7,1,7,1,7,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,10,1,10,1,11,1,11,1,11,1,11,1,11,1, + 11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1, + 13,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1, + 16,1,16,1,16,1,16,1,16,1,16,1,16,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,19,1,19,1,19,1,20,1,20,1, + 20,1,20,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1, + 22,1,22,1,22,1,22,1,22,1,22,1,23,1,23,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,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,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1, + 29,1,29,1,29,1,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,32,1, + 32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1, + 34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,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,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,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1, + 41,1,41,1,41,1,42,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,45,1,45,1,45,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,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,49,1,49,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,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,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,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,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,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,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,62,1,62,1,62,1, + 62,1,62,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,63,1,63,1,64,1,64,1,64,1, + 64,1,64,1,64,1,64,1,64,1,64,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,65,1,65,1,65,1, + 65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1, + 68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,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,71,1, + 71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1, + 73,1,73,1,73,1,73,1,73,1,73,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,75,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,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,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,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,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,87,1,87,1,87,1, + 87,1,88,1,88,1,88,1,88,1,88,1,88,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,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,93,1, + 93,1,93,1,93,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,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1, + 97,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100, + 1,100,1,100,1,100,1,100,1,100,1,100,1,100,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,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,105,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,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,110,1,110,1,110,1,110,1,110,1,110,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,113, + 1,113,1,113,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,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,115,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117, + 1,117,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, + 1,123,1,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,125,1,125,1,125,1,126,1,126, + 1,126,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,128,1,128,1,128,1,128,1,128,1,128,1,129, + 1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,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,132, + 1,132,1,133,1,133,1,133,1,133,1,133,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,135,1,135,1,135, + 1,135,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,140, + 1,140,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,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,144,1,145,1,145,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,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,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,150, + 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,153,1,153,1,153,1,153,1,153,1,153,1,154, + 1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156, + 1,156,1,156,1,156,1,157,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,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,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,163,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164,1,164, + 1,164,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166, + 1,166,1,167,1,167,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,169,1,169,1,170, + 1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,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,175,1,176,1,176, + 1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,178, 1,178,1,178,1,178,1,178,1,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,180,1,180,1,180,1,180, + 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,181,1,181,1,181,1,181,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,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185, - 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,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,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,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,182,1,182,1,182,1,182, + 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184, + 1,184,1,184,1,184,1,184,1,185,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,187,1,187,1,187,1,187,1,187, + 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,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,193,1,193,1,193,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,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,200,1,200,1,200,1,200,1,200,1,200,1,200, - 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,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,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,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,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,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,215,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,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,194,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197,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,201,1,201,1,201,1,201,1,201,1,201, + 1,201,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,205,1,205,1,205,1,205, + 1,205,1,205,1,205,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206, + 1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,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,211,1,211,1,211,1,211,1,211,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,214,1,214,1,214,1,214,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,215,1,216,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,217,1,217,1,217,1,217,1,218,1,218,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, - 1,218,1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219,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,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,222,1,223,1,223,1,223,1,223, - 1,223,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,224,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,226,1,226,1,226, - 1,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,229,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,231,1,232,1,232,1,232,1,232,1,232,1,233, - 1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1,233, - 1,233,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234, - 1,234,1,234,1,234,1,235,1,235,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,236,1,237,1,237,1,237,1,237, - 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,238,1,238,1,238,1,238, - 1,238,1,238,1,238,1,238,1,239,1,239,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,241,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,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,244,1,244,1,244,1,245,1,245,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,248,1,248, - 1,248,1,248,1,248,1,248,1,249,1,249,1,249,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,251, - 1,252,1,252,1,252,1,252,1,252,1,252,1,253,1,253,1,253,1,253,1,253, - 1,253,1,253,1,253,1,253,1,254,1,254,1,254,1,254,1,254,1,254,1,254, - 1,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,257,1,257,1,258,1,258,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,260,1,260, - 1,260,1,260,1,260,1,260,1,260,1,260,1,261,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,263,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,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,266,1,267,1,267,1,267, - 1,267,1,268,1,268,1,268,1,268,1,268,1,268,1,269,1,269,1,269,1,269, - 1,269,1,270,1,270,1,270,1,270,1,270,1,270,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,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,275,1,275,1,275,1,275,1,275,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,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,280,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,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,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,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,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,217,1,217,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,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,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,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,221,1,221,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,223,1,223,1,223,1,223,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,225,1,225,1,225,1,226,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,227, + 1,227,1,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228, + 1,228,1,228,1,229,1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230, + 1,230,1,230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,1,231, + 1,232,1,232,1,232,1,232,1,232,1,232,1,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,234,1,234,1,234, + 1,234,1,234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, + 1,235,1,235,1,235,1,235,1,236,1,236,1,236,1,236,1,236,1,236,1,236, + 1,236,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,238,1,238,1,238, + 1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,239,1,239,1,239, + 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,241,1,241,1,241,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,242,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,245,1,245,1,245,1,246,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,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,250,1,250,1,250,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,252,1,253,1,253,1,253,1,253,1,253,1,253,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,1,254,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,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,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,260,1,260,1,260,1,261, + 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,262,1,262,1,262,1,262, + 1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,264,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,266,1,266,1,266,1,266,1,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,267,1,267,1,267,1,268,1,268, + 1,268,1,268,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270,1,270, + 1,270,1,270,1,271,1,271,1,271,1,271,1,271,1,271,1,272,1,272,1,272, + 1,272,1,272,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,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,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,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,281,1,281, + 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,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,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,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,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,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,293,1,293,1,293, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,295,1,295,1,295,1,295, - 1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,296, - 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,297,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,298,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,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,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,303,1,303,1,303, + 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,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,293,1,293, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, + 1,294,1,295,1,295,1,295,1,295,1,295,1,295,1,295,1,296,1,296,1,296, + 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,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,298,1,298,1,298,1,298,1,298,1,298,1,298,1,299, + 1,299,1,299,1,299,1,299,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,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,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,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,307,1,307,1,307,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,310,1,310,1,310,1,311, + 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,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,307,1,307,1,307,1,307,1,307, + 1,307,1,307,1,307,1,308,1,308,1,308,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,311,1,311,1,311, - 1,311,1,312,1,312,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,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,315,1,316,1,316,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,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,318,1,319, - 1,319,1,319,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,320,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,323,1,323,1,323,1,323,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,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,328,1,328,1,328,1,328,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,331, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,333,1,333,1,333, - 1,333,1,334,1,334,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,335,1,336,1,336,1,336,1,336, - 1,336,1,337,1,337,1,337,1,337,1,337,1,337,1,338,1,338,1,338,1,338, - 1,338,1,339,1,339,1,339,1,339,1,339,1,340,1,340,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,343,1,343,1,343,1,343,1,343,1,343,1,343,1,344,1,344,1,344, - 1,344,1,344,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,346,1,346, - 1,346,1,346,1,346,1,347,1,347,1,347,1,347,1,347,1,347,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,350, - 1,350,1,350,3,350,3394,8,350,1,351,1,351,1,351,1,351,1,352,1,352, - 1,352,1,353,1,353,1,353,1,354,1,354,1,355,1,355,1,355,1,355,3,355, - 3412,8,355,1,356,1,356,1,357,1,357,1,357,1,357,3,357,3420,8,357, - 1,358,1,358,1,359,1,359,1,360,1,360,1,361,1,361,1,362,1,362,1,363, - 1,363,1,364,1,364,1,365,1,365,1,366,1,366,1,367,1,367,1,367,1,368, - 1,368,1,369,1,369,1,370,1,370,1,370,1,371,1,371,1,371,1,372,1,372, - 1,372,1,372,1,373,1,373,1,373,1,374,1,374,1,375,1,375,1,375,1,375, - 5,375,3466,8,375,10,375,12,375,3469,9,375,1,375,1,375,1,375,1,375, - 1,375,5,375,3476,8,375,10,375,12,375,3479,9,375,1,375,1,375,1,375, - 1,375,1,375,5,375,3486,8,375,10,375,12,375,3489,9,375,1,375,3,375, - 3492,8,375,1,376,1,376,1,376,1,376,5,376,3498,8,376,10,376,12,376, - 3501,9,376,1,376,1,376,1,377,4,377,3506,8,377,11,377,12,377,3507, - 1,377,1,377,1,378,4,378,3513,8,378,11,378,12,378,3514,1,378,1,378, - 1,379,4,379,3520,8,379,11,379,12,379,3521,1,379,1,379,1,380,4,380, - 3527,8,380,11,380,12,380,3528,1,381,4,381,3532,8,381,11,381,12,381, - 3533,1,381,1,381,1,381,1,381,1,381,3,381,3541,8,381,1,382,1,382, - 1,383,4,383,3546,8,383,11,383,12,383,3547,1,383,3,383,3551,8,383, - 1,383,1,383,1,383,1,383,3,383,3557,8,383,1,383,1,383,3,383,3561, - 8,383,1,384,4,384,3564,8,384,11,384,12,384,3565,1,384,3,384,3569, - 8,384,1,384,1,384,1,384,1,384,3,384,3575,8,384,1,384,1,384,3,384, - 3579,8,384,1,385,4,385,3582,8,385,11,385,12,385,3583,1,385,3,385, - 3587,8,385,1,385,1,385,1,385,1,385,1,385,3,385,3594,8,385,1,385, - 1,385,1,385,3,385,3599,8,385,1,386,1,386,1,386,4,386,3604,8,386, - 11,386,12,386,3605,1,387,1,387,1,387,1,387,5,387,3612,8,387,10,387, - 12,387,3615,9,387,1,387,1,387,1,388,4,388,3620,8,388,11,388,12,388, - 3621,1,388,1,388,5,388,3626,8,388,10,388,12,388,3629,9,388,1,388, - 1,388,4,388,3633,8,388,11,388,12,388,3634,3,388,3637,8,388,1,389, - 1,389,3,389,3641,8,389,1,389,4,389,3644,8,389,11,389,12,389,3645, - 1,390,1,390,1,391,1,391,1,392,1,392,1,392,1,392,1,392,1,392,5,392, - 3658,8,392,10,392,12,392,3661,9,392,1,392,3,392,3664,8,392,1,392, - 3,392,3667,8,392,1,392,1,392,1,393,1,393,1,393,1,393,1,393,5,393, - 3676,8,393,10,393,12,393,3679,9,393,1,393,1,393,1,393,1,393,3,393, - 3685,8,393,1,393,1,393,1,394,4,394,3690,8,394,11,394,12,394,3691, - 1,394,1,394,1,395,1,395,1,3677,0,396,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,0,779,0,781,0,783,0,785,389,787,390,789,391,791, - 392,1,0,36,2,0,65,65,97,97,2,0,68,68,100,100,2,0,70,70,102,102,2, - 0,84,84,116,116,2,0,69,69,101,101,2,0,82,82,114,114,2,0,76,76,108, - 108,2,0,87,87,119,119,2,0,89,89,121,121,2,0,83,83,115,115,2,0,78, - 78,110,110,2,0,90,90,122,122,2,0,73,73,105,105,2,0,86,86,118,118, - 2,0,85,85,117,117,2,0,67,67,99,99,2,0,72,72,104,104,2,0,79,79,111, - 111,2,0,66,66,98,98,2,0,71,71,103,103,2,0,75,75,107,107,2,0,77,77, - 109,109,2,0,80,80,112,112,2,0,88,88,120,120,2,0,74,74,106,106,2, - 0,81,81,113,113,2,0,39,39,92,92,1,0,39,39,1,0,34,34,2,0,34,34,92, - 92,1,0,96,96,2,0,43,43,45,45,1,0,48,57,2,0,65,90,97,122,2,0,10,10, - 13,13,3,0,9,10,13,13,32,32,3740,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,785, - 1,0,0,0,0,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0,0,0,1,793,1,0,0,0, - 3,795,1,0,0,0,5,797,1,0,0,0,7,799,1,0,0,0,9,801,1,0,0,0,11,803,1, - 0,0,0,13,805,1,0,0,0,15,807,1,0,0,0,17,811,1,0,0,0,19,817,1,0,0, - 0,21,821,1,0,0,0,23,827,1,0,0,0,25,834,1,0,0,0,27,842,1,0,0,0,29, - 846,1,0,0,0,31,851,1,0,0,0,33,855,1,0,0,0,35,865,1,0,0,0,37,873, - 1,0,0,0,39,879,1,0,0,0,41,882,1,0,0,0,43,886,1,0,0,0,45,889,1,0, - 0,0,47,903,1,0,0,0,49,911,1,0,0,0,51,918,1,0,0,0,53,925,1,0,0,0, - 55,933,1,0,0,0,57,938,1,0,0,0,59,945,1,0,0,0,61,953,1,0,0,0,63,956, - 1,0,0,0,65,961,1,0,0,0,67,967,1,0,0,0,69,975,1,0,0,0,71,980,1,0, - 0,0,73,985,1,0,0,0,75,993,1,0,0,0,77,1002,1,0,0,0,79,1009,1,0,0, - 0,81,1014,1,0,0,0,83,1024,1,0,0,0,85,1030,1,0,0,0,87,1036,1,0,0, - 0,89,1044,1,0,0,0,91,1054,1,0,0,0,93,1062,1,0,0,0,95,1070,1,0,0, - 0,97,1081,1,0,0,0,99,1088,1,0,0,0,101,1096,1,0,0,0,103,1104,1,0, - 0,0,105,1111,1,0,0,0,107,1119,1,0,0,0,109,1131,1,0,0,0,111,1139, - 1,0,0,0,113,1151,1,0,0,0,115,1162,1,0,0,0,117,1167,1,0,0,0,119,1174, - 1,0,0,0,121,1180,1,0,0,0,123,1185,1,0,0,0,125,1193,1,0,0,0,127,1206, - 1,0,0,0,129,1219,1,0,0,0,131,1237,1,0,0,0,133,1250,1,0,0,0,135,1254, - 1,0,0,0,137,1259,1,0,0,0,139,1269,1,0,0,0,141,1274,1,0,0,0,143,1279, - 1,0,0,0,145,1288,1,0,0,0,147,1298,1,0,0,0,149,1306,1,0,0,0,151,1315, - 1,0,0,0,153,1324,1,0,0,0,155,1334,1,0,0,0,157,1347,1,0,0,0,159,1351, - 1,0,0,0,161,1359,1,0,0,0,163,1367,1,0,0,0,165,1375,1,0,0,0,167,1383, - 1,0,0,0,169,1390,1,0,0,0,171,1400,1,0,0,0,173,1405,1,0,0,0,175,1414, - 1,0,0,0,177,1418,1,0,0,0,179,1430,1,0,0,0,181,1440,1,0,0,0,183,1448, - 1,0,0,0,185,1457,1,0,0,0,187,1468,1,0,0,0,189,1472,1,0,0,0,191,1479, - 1,0,0,0,193,1484,1,0,0,0,195,1489,1,0,0,0,197,1496,1,0,0,0,199,1500, - 1,0,0,0,201,1507,1,0,0,0,203,1515,1,0,0,0,205,1522,1,0,0,0,207,1531, - 1,0,0,0,209,1539,1,0,0,0,211,1546,1,0,0,0,213,1554,1,0,0,0,215,1561, - 1,0,0,0,217,1570,1,0,0,0,219,1579,1,0,0,0,221,1587,1,0,0,0,223,1593, - 1,0,0,0,225,1599,1,0,0,0,227,1606,1,0,0,0,229,1613,1,0,0,0,231,1624, - 1,0,0,0,233,1630,1,0,0,0,235,1636,1,0,0,0,237,1646,1,0,0,0,239,1650, - 1,0,0,0,241,1658,1,0,0,0,243,1665,1,0,0,0,245,1675,1,0,0,0,247,1680, - 1,0,0,0,249,1685,1,0,0,0,251,1694,1,0,0,0,253,1704,1,0,0,0,255,1714, - 1,0,0,0,257,1721,1,0,0,0,259,1727,1,0,0,0,261,1733,1,0,0,0,263,1742, - 1,0,0,0,265,1749,1,0,0,0,267,1751,1,0,0,0,269,1756,1,0,0,0,271,1762, - 1,0,0,0,273,1773,1,0,0,0,275,1776,1,0,0,0,277,1783,1,0,0,0,279,1790, - 1,0,0,0,281,1793,1,0,0,0,283,1801,1,0,0,0,285,1807,1,0,0,0,287,1815, - 1,0,0,0,289,1821,1,0,0,0,291,1828,1,0,0,0,293,1840,1,0,0,0,295,1847, - 1,0,0,0,297,1857,1,0,0,0,299,1866,1,0,0,0,301,1870,1,0,0,0,303,1878, - 1,0,0,0,305,1883,1,0,0,0,307,1886,1,0,0,0,309,1892,1,0,0,0,311,1897, - 1,0,0,0,313,1902,1,0,0,0,315,1907,1,0,0,0,317,1915,1,0,0,0,319,1920, - 1,0,0,0,321,1928,1,0,0,0,323,1933,1,0,0,0,325,1938,1,0,0,0,327,1944, - 1,0,0,0,329,1950,1,0,0,0,331,1956,1,0,0,0,333,1961,1,0,0,0,335,1966, - 1,0,0,0,337,1972,1,0,0,0,339,1981,1,0,0,0,341,1986,1,0,0,0,343,1992, - 1,0,0,0,345,2000,1,0,0,0,347,2005,1,0,0,0,349,2011,1,0,0,0,351,2024, - 1,0,0,0,353,2028,1,0,0,0,355,2036,1,0,0,0,357,2042,1,0,0,0,359,2054, - 1,0,0,0,361,2067,1,0,0,0,363,2079,1,0,0,0,365,2092,1,0,0,0,367,2099, - 1,0,0,0,369,2107,1,0,0,0,371,2113,1,0,0,0,373,2120,1,0,0,0,375,2125, - 1,0,0,0,377,2130,1,0,0,0,379,2140,1,0,0,0,381,2151,1,0,0,0,383,2162, - 1,0,0,0,385,2174,1,0,0,0,387,2182,1,0,0,0,389,2185,1,0,0,0,391,2192, - 1,0,0,0,393,2196,1,0,0,0,395,2201,1,0,0,0,397,2207,1,0,0,0,399,2215, - 1,0,0,0,401,2218,1,0,0,0,403,2225,1,0,0,0,405,2228,1,0,0,0,407,2233, - 1,0,0,0,409,2242,1,0,0,0,411,2249,1,0,0,0,413,2257,1,0,0,0,415,2260, - 1,0,0,0,417,2266,1,0,0,0,419,2270,1,0,0,0,421,2276,1,0,0,0,423,2289, - 1,0,0,0,425,2294,1,0,0,0,427,2303,1,0,0,0,429,2311,1,0,0,0,431,2321, - 1,0,0,0,433,2331,1,0,0,0,435,2343,1,0,0,0,437,2354,1,0,0,0,439,2370, - 1,0,0,0,441,2386,1,0,0,0,443,2394,1,0,0,0,445,2400,1,0,0,0,447,2408, - 1,0,0,0,449,2417,1,0,0,0,451,2427,1,0,0,0,453,2435,1,0,0,0,455,2446, - 1,0,0,0,457,2457,1,0,0,0,459,2463,1,0,0,0,461,2471,1,0,0,0,463,2477, - 1,0,0,0,465,2483,1,0,0,0,467,2488,1,0,0,0,469,2501,1,0,0,0,471,2514, - 1,0,0,0,473,2522,1,0,0,0,475,2529,1,0,0,0,477,2540,1,0,0,0,479,2548, - 1,0,0,0,481,2555,1,0,0,0,483,2562,1,0,0,0,485,2573,1,0,0,0,487,2581, - 1,0,0,0,489,2587,1,0,0,0,491,2595,1,0,0,0,493,2604,1,0,0,0,495,2612, - 1,0,0,0,497,2619,1,0,0,0,499,2625,1,0,0,0,501,2631,1,0,0,0,503,2638, - 1,0,0,0,505,2643,1,0,0,0,507,2649,1,0,0,0,509,2658,1,0,0,0,511,2665, - 1,0,0,0,513,2669,1,0,0,0,515,2674,1,0,0,0,517,2681,1,0,0,0,519,2689, - 1,0,0,0,521,2696,1,0,0,0,523,2704,1,0,0,0,525,2711,1,0,0,0,527,2716, - 1,0,0,0,529,2726,1,0,0,0,531,2732,1,0,0,0,533,2748,1,0,0,0,535,2761, - 1,0,0,0,537,2765,1,0,0,0,539,2771,1,0,0,0,541,2776,1,0,0,0,543,2782, - 1,0,0,0,545,2787,1,0,0,0,547,2794,1,0,0,0,549,2801,1,0,0,0,551,2810, - 1,0,0,0,553,2815,1,0,0,0,555,2820,1,0,0,0,557,2827,1,0,0,0,559,2834, - 1,0,0,0,561,2840,1,0,0,0,563,2851,1,0,0,0,565,2858,1,0,0,0,567,2867, - 1,0,0,0,569,2874,1,0,0,0,571,2881,1,0,0,0,573,2888,1,0,0,0,575,2898, - 1,0,0,0,577,2903,1,0,0,0,579,2910,1,0,0,0,581,2922,1,0,0,0,583,2937, - 1,0,0,0,585,2943,1,0,0,0,587,2950,1,0,0,0,589,2962,1,0,0,0,591,2969, - 1,0,0,0,593,2983,1,0,0,0,595,2993,1,0,0,0,597,3004,1,0,0,0,599,3009, - 1,0,0,0,601,3014,1,0,0,0,603,3023,1,0,0,0,605,3033,1,0,0,0,607,3047, - 1,0,0,0,609,3061,1,0,0,0,611,3074,1,0,0,0,613,3088,1,0,0,0,615,3096, - 1,0,0,0,617,3099,1,0,0,0,619,3105,1,0,0,0,621,3114,1,0,0,0,623,3126, - 1,0,0,0,625,3139,1,0,0,0,627,3149,1,0,0,0,629,3154,1,0,0,0,631,3159, - 1,0,0,0,633,3168,1,0,0,0,635,3177,1,0,0,0,637,3182,1,0,0,0,639,3192, - 1,0,0,0,641,3202,1,0,0,0,643,3210,1,0,0,0,645,3216,1,0,0,0,647,3223, - 1,0,0,0,649,3231,1,0,0,0,651,3238,1,0,0,0,653,3246,1,0,0,0,655,3252, - 1,0,0,0,657,3259,1,0,0,0,659,3263,1,0,0,0,661,3268,1,0,0,0,663,3274, - 1,0,0,0,665,3281,1,0,0,0,667,3289,1,0,0,0,669,3293,1,0,0,0,671,3302, - 1,0,0,0,673,3310,1,0,0,0,675,3315,1,0,0,0,677,3321,1,0,0,0,679,3326, - 1,0,0,0,681,3331,1,0,0,0,683,3337,1,0,0,0,685,3342,1,0,0,0,687,3348, - 1,0,0,0,689,3355,1,0,0,0,691,3360,1,0,0,0,693,3367,1,0,0,0,695,3372, - 1,0,0,0,697,3378,1,0,0,0,699,3383,1,0,0,0,701,3393,1,0,0,0,703,3395, - 1,0,0,0,705,3399,1,0,0,0,707,3402,1,0,0,0,709,3405,1,0,0,0,711,3411, - 1,0,0,0,713,3413,1,0,0,0,715,3419,1,0,0,0,717,3421,1,0,0,0,719,3423, - 1,0,0,0,721,3425,1,0,0,0,723,3427,1,0,0,0,725,3429,1,0,0,0,727,3431, - 1,0,0,0,729,3433,1,0,0,0,731,3435,1,0,0,0,733,3437,1,0,0,0,735,3439, - 1,0,0,0,737,3442,1,0,0,0,739,3444,1,0,0,0,741,3446,1,0,0,0,743,3449, - 1,0,0,0,745,3452,1,0,0,0,747,3456,1,0,0,0,749,3459,1,0,0,0,751,3491, - 1,0,0,0,753,3493,1,0,0,0,755,3505,1,0,0,0,757,3512,1,0,0,0,759,3519, - 1,0,0,0,761,3526,1,0,0,0,763,3540,1,0,0,0,765,3542,1,0,0,0,767,3560, - 1,0,0,0,769,3578,1,0,0,0,771,3598,1,0,0,0,773,3603,1,0,0,0,775,3607, - 1,0,0,0,777,3636,1,0,0,0,779,3638,1,0,0,0,781,3647,1,0,0,0,783,3649, - 1,0,0,0,785,3651,1,0,0,0,787,3670,1,0,0,0,789,3689,1,0,0,0,791,3695, - 1,0,0,0,793,794,5,59,0,0,794,2,1,0,0,0,795,796,5,40,0,0,796,4,1, - 0,0,0,797,798,5,41,0,0,798,6,1,0,0,0,799,800,5,44,0,0,800,8,1,0, - 0,0,801,802,5,46,0,0,802,10,1,0,0,0,803,804,5,91,0,0,804,12,1,0, - 0,0,805,806,5,93,0,0,806,14,1,0,0,0,807,808,7,0,0,0,808,809,7,1, - 0,0,809,810,7,1,0,0,810,16,1,0,0,0,811,812,7,0,0,0,812,813,7,2,0, - 0,813,814,7,3,0,0,814,815,7,4,0,0,815,816,7,5,0,0,816,18,1,0,0,0, - 817,818,7,0,0,0,818,819,7,6,0,0,819,820,7,6,0,0,820,20,1,0,0,0,821, - 822,7,0,0,0,822,823,7,6,0,0,823,824,7,3,0,0,824,825,7,4,0,0,825, - 826,7,5,0,0,826,22,1,0,0,0,827,828,7,0,0,0,828,829,7,6,0,0,829,830, - 7,7,0,0,830,831,7,0,0,0,831,832,7,8,0,0,832,833,7,9,0,0,833,24,1, - 0,0,0,834,835,7,0,0,0,835,836,7,10,0,0,836,837,7,0,0,0,837,838,7, - 6,0,0,838,839,7,8,0,0,839,840,7,11,0,0,840,841,7,4,0,0,841,26,1, - 0,0,0,842,843,7,0,0,0,843,844,7,10,0,0,844,845,7,1,0,0,845,28,1, - 0,0,0,846,847,7,0,0,0,847,848,7,10,0,0,848,849,7,3,0,0,849,850,7, - 12,0,0,850,30,1,0,0,0,851,852,7,0,0,0,852,853,7,10,0,0,853,854,7, - 8,0,0,854,32,1,0,0,0,855,856,7,0,0,0,856,857,7,10,0,0,857,858,7, - 8,0,0,858,859,5,95,0,0,859,860,7,13,0,0,860,861,7,0,0,0,861,862, - 7,6,0,0,862,863,7,14,0,0,863,864,7,4,0,0,864,34,1,0,0,0,865,866, - 7,0,0,0,866,867,7,5,0,0,867,868,7,15,0,0,868,869,7,16,0,0,869,870, - 7,12,0,0,870,871,7,13,0,0,871,872,7,4,0,0,872,36,1,0,0,0,873,874, - 7,0,0,0,874,875,7,5,0,0,875,876,7,5,0,0,876,877,7,0,0,0,877,878, - 7,8,0,0,878,38,1,0,0,0,879,880,7,0,0,0,880,881,7,9,0,0,881,40,1, - 0,0,0,882,883,7,0,0,0,883,884,7,9,0,0,884,885,7,15,0,0,885,42,1, - 0,0,0,886,887,7,0,0,0,887,888,7,3,0,0,888,44,1,0,0,0,889,890,7,0, - 0,0,890,891,7,14,0,0,891,892,7,3,0,0,892,893,7,16,0,0,893,894,7, - 17,0,0,894,895,7,5,0,0,895,896,7,12,0,0,896,897,7,11,0,0,897,898, - 7,0,0,0,898,899,7,3,0,0,899,900,7,12,0,0,900,901,7,17,0,0,901,902, - 7,10,0,0,902,46,1,0,0,0,903,904,7,18,0,0,904,905,7,4,0,0,905,906, - 7,3,0,0,906,907,7,7,0,0,907,908,7,4,0,0,908,909,7,4,0,0,909,910, - 7,10,0,0,910,48,1,0,0,0,911,912,7,18,0,0,912,913,7,12,0,0,913,914, - 7,19,0,0,914,915,7,12,0,0,915,916,7,10,0,0,916,917,7,3,0,0,917,50, - 1,0,0,0,918,919,7,18,0,0,919,920,7,12,0,0,920,921,7,10,0,0,921,922, - 7,0,0,0,922,923,7,5,0,0,923,924,7,8,0,0,924,52,1,0,0,0,925,926,7, - 18,0,0,926,927,7,17,0,0,927,928,7,17,0,0,928,929,7,6,0,0,929,930, - 7,4,0,0,930,931,7,0,0,0,931,932,7,10,0,0,932,54,1,0,0,0,933,934, - 7,18,0,0,934,935,7,17,0,0,935,936,7,3,0,0,936,937,7,16,0,0,937,56, - 1,0,0,0,938,939,7,18,0,0,939,940,7,14,0,0,940,941,7,15,0,0,941,942, - 7,20,0,0,942,943,7,4,0,0,943,944,7,3,0,0,944,58,1,0,0,0,945,946, - 7,18,0,0,946,947,7,14,0,0,947,948,7,15,0,0,948,949,7,20,0,0,949, - 950,7,4,0,0,950,951,7,3,0,0,951,952,7,9,0,0,952,60,1,0,0,0,953,954, - 7,18,0,0,954,955,7,8,0,0,955,62,1,0,0,0,956,957,7,18,0,0,957,958, - 7,8,0,0,958,959,7,3,0,0,959,960,7,4,0,0,960,64,1,0,0,0,961,962,7, - 15,0,0,962,963,7,0,0,0,963,964,7,15,0,0,964,965,7,16,0,0,965,966, - 7,4,0,0,966,66,1,0,0,0,967,968,7,15,0,0,968,969,7,0,0,0,969,970, - 7,9,0,0,970,971,7,15,0,0,971,972,7,0,0,0,972,973,7,1,0,0,973,974, - 7,4,0,0,974,68,1,0,0,0,975,976,7,15,0,0,976,977,7,0,0,0,977,978, - 7,9,0,0,978,979,7,4,0,0,979,70,1,0,0,0,980,981,7,15,0,0,981,982, - 7,0,0,0,982,983,7,9,0,0,983,984,7,3,0,0,984,72,1,0,0,0,985,986,7, - 15,0,0,986,987,7,0,0,0,987,988,7,3,0,0,988,989,7,0,0,0,989,990,7, - 6,0,0,990,991,7,17,0,0,991,992,7,19,0,0,992,74,1,0,0,0,993,994,7, - 15,0,0,994,995,7,0,0,0,995,996,7,3,0,0,996,997,7,0,0,0,997,998,7, - 6,0,0,998,999,7,17,0,0,999,1000,7,19,0,0,1000,1001,7,9,0,0,1001, - 76,1,0,0,0,1002,1003,7,15,0,0,1003,1004,7,16,0,0,1004,1005,7,0,0, - 0,1005,1006,7,10,0,0,1006,1007,7,19,0,0,1007,1008,7,4,0,0,1008,78, - 1,0,0,0,1009,1010,7,15,0,0,1010,1011,7,16,0,0,1011,1012,7,0,0,0, - 1012,1013,7,5,0,0,1013,80,1,0,0,0,1014,1015,7,15,0,0,1015,1016,7, - 16,0,0,1016,1017,7,0,0,0,1017,1018,7,5,0,0,1018,1019,7,0,0,0,1019, - 1020,7,15,0,0,1020,1021,7,3,0,0,1021,1022,7,4,0,0,1022,1023,7,5, - 0,0,1023,82,1,0,0,0,1024,1025,7,15,0,0,1025,1026,7,16,0,0,1026,1027, - 7,4,0,0,1027,1028,7,15,0,0,1028,1029,7,20,0,0,1029,84,1,0,0,0,1030, - 1031,7,15,0,0,1031,1032,7,6,0,0,1032,1033,7,4,0,0,1033,1034,7,0, - 0,0,1034,1035,7,5,0,0,1035,86,1,0,0,0,1036,1037,7,15,0,0,1037,1038, - 7,6,0,0,1038,1039,7,14,0,0,1039,1040,7,9,0,0,1040,1041,7,3,0,0,1041, - 1042,7,4,0,0,1042,1043,7,5,0,0,1043,88,1,0,0,0,1044,1045,7,15,0, - 0,1045,1046,7,6,0,0,1046,1047,7,14,0,0,1047,1048,7,9,0,0,1048,1049, - 7,3,0,0,1049,1050,7,4,0,0,1050,1051,7,5,0,0,1051,1052,7,4,0,0,1052, - 1053,7,1,0,0,1053,90,1,0,0,0,1054,1055,7,15,0,0,1055,1056,7,17,0, - 0,1056,1057,7,1,0,0,1057,1058,7,4,0,0,1058,1059,7,19,0,0,1059,1060, - 7,4,0,0,1060,1061,7,10,0,0,1061,92,1,0,0,0,1062,1063,7,15,0,0,1063, - 1064,7,17,0,0,1064,1065,7,6,0,0,1065,1066,7,6,0,0,1066,1067,7,0, - 0,0,1067,1068,7,3,0,0,1068,1069,7,4,0,0,1069,94,1,0,0,0,1070,1071, - 7,15,0,0,1071,1072,7,17,0,0,1072,1073,7,6,0,0,1073,1074,7,6,0,0, - 1074,1075,7,4,0,0,1075,1076,7,15,0,0,1076,1077,7,3,0,0,1077,1078, - 7,12,0,0,1078,1079,7,17,0,0,1079,1080,7,10,0,0,1080,96,1,0,0,0,1081, - 1082,7,15,0,0,1082,1083,7,17,0,0,1083,1084,7,6,0,0,1084,1085,7,14, - 0,0,1085,1086,7,21,0,0,1086,1087,7,10,0,0,1087,98,1,0,0,0,1088,1089, - 7,15,0,0,1089,1090,7,17,0,0,1090,1091,7,6,0,0,1091,1092,7,14,0,0, - 1092,1093,7,21,0,0,1093,1094,7,10,0,0,1094,1095,7,9,0,0,1095,100, - 1,0,0,0,1096,1097,7,15,0,0,1097,1098,7,17,0,0,1098,1099,7,21,0,0, - 1099,1100,7,21,0,0,1100,1101,7,4,0,0,1101,1102,7,10,0,0,1102,1103, - 7,3,0,0,1103,102,1,0,0,0,1104,1105,7,15,0,0,1105,1106,7,17,0,0,1106, - 1107,7,21,0,0,1107,1108,7,21,0,0,1108,1109,7,12,0,0,1109,1110,7, - 3,0,0,1110,104,1,0,0,0,1111,1112,7,15,0,0,1112,1113,7,17,0,0,1113, - 1114,7,21,0,0,1114,1115,7,22,0,0,1115,1116,7,0,0,0,1116,1117,7,15, - 0,0,1117,1118,7,3,0,0,1118,106,1,0,0,0,1119,1120,7,15,0,0,1120,1121, - 7,17,0,0,1121,1122,7,21,0,0,1122,1123,7,22,0,0,1123,1124,7,0,0,0, - 1124,1125,7,15,0,0,1125,1126,7,3,0,0,1126,1127,7,12,0,0,1127,1128, - 7,17,0,0,1128,1129,7,10,0,0,1129,1130,7,9,0,0,1130,108,1,0,0,0,1131, - 1132,7,15,0,0,1132,1133,7,17,0,0,1133,1134,7,21,0,0,1134,1135,7, - 22,0,0,1135,1136,7,14,0,0,1136,1137,7,3,0,0,1137,1138,7,4,0,0,1138, - 110,1,0,0,0,1139,1140,7,15,0,0,1140,1141,7,17,0,0,1141,1142,7,10, - 0,0,1142,1143,7,15,0,0,1143,1144,7,0,0,0,1144,1145,7,3,0,0,1145, - 1146,7,4,0,0,1146,1147,7,10,0,0,1147,1148,7,0,0,0,1148,1149,7,3, - 0,0,1149,1150,7,4,0,0,1150,112,1,0,0,0,1151,1152,7,15,0,0,1152,1153, - 7,17,0,0,1153,1154,7,10,0,0,1154,1155,7,9,0,0,1155,1156,7,3,0,0, - 1156,1157,7,5,0,0,1157,1158,7,0,0,0,1158,1159,7,12,0,0,1159,1160, - 7,10,0,0,1160,1161,7,3,0,0,1161,114,1,0,0,0,1162,1163,7,15,0,0,1163, - 1164,7,17,0,0,1164,1165,7,9,0,0,1165,1166,7,3,0,0,1166,116,1,0,0, - 0,1167,1168,7,15,0,0,1168,1169,7,5,0,0,1169,1170,7,4,0,0,1170,1171, - 7,0,0,0,1171,1172,7,3,0,0,1172,1173,7,4,0,0,1173,118,1,0,0,0,1174, - 1175,7,15,0,0,1175,1176,7,5,0,0,1176,1177,7,17,0,0,1177,1178,7,9, - 0,0,1178,1179,7,9,0,0,1179,120,1,0,0,0,1180,1181,7,15,0,0,1181,1182, - 7,14,0,0,1182,1183,7,18,0,0,1183,1184,7,4,0,0,1184,122,1,0,0,0,1185, - 1186,7,15,0,0,1186,1187,7,14,0,0,1187,1188,7,5,0,0,1188,1189,7,5, - 0,0,1189,1190,7,4,0,0,1190,1191,7,10,0,0,1191,1192,7,3,0,0,1192, - 124,1,0,0,0,1193,1194,7,15,0,0,1194,1195,7,14,0,0,1195,1196,7,5, - 0,0,1196,1197,7,5,0,0,1197,1198,7,4,0,0,1198,1199,7,10,0,0,1199, - 1200,7,3,0,0,1200,1201,5,95,0,0,1201,1202,7,1,0,0,1202,1203,7,0, - 0,0,1203,1204,7,3,0,0,1204,1205,7,4,0,0,1205,126,1,0,0,0,1206,1207, - 7,15,0,0,1207,1208,7,14,0,0,1208,1209,7,5,0,0,1209,1210,7,5,0,0, - 1210,1211,7,4,0,0,1211,1212,7,10,0,0,1212,1213,7,3,0,0,1213,1214, - 5,95,0,0,1214,1215,7,3,0,0,1215,1216,7,12,0,0,1216,1217,7,21,0,0, - 1217,1218,7,4,0,0,1218,128,1,0,0,0,1219,1220,7,15,0,0,1220,1221, - 7,14,0,0,1221,1222,7,5,0,0,1222,1223,7,5,0,0,1223,1224,7,4,0,0,1224, - 1225,7,10,0,0,1225,1226,7,3,0,0,1226,1227,5,95,0,0,1227,1228,7,3, - 0,0,1228,1229,7,12,0,0,1229,1230,7,21,0,0,1230,1231,7,4,0,0,1231, - 1232,7,9,0,0,1232,1233,7,3,0,0,1233,1234,7,0,0,0,1234,1235,7,21, - 0,0,1235,1236,7,22,0,0,1236,130,1,0,0,0,1237,1238,7,15,0,0,1238, - 1239,7,14,0,0,1239,1240,7,5,0,0,1240,1241,7,5,0,0,1241,1242,7,4, - 0,0,1242,1243,7,10,0,0,1243,1244,7,3,0,0,1244,1245,5,95,0,0,1245, - 1246,7,14,0,0,1246,1247,7,9,0,0,1247,1248,7,4,0,0,1248,1249,7,5, - 0,0,1249,132,1,0,0,0,1250,1251,7,1,0,0,1251,1252,7,0,0,0,1252,1253, - 7,8,0,0,1253,134,1,0,0,0,1254,1255,7,1,0,0,1255,1256,7,0,0,0,1256, - 1257,7,8,0,0,1257,1258,7,9,0,0,1258,136,1,0,0,0,1259,1260,7,1,0, - 0,1260,1261,7,0,0,0,1261,1262,7,8,0,0,1262,1263,7,17,0,0,1263,1264, - 7,2,0,0,1264,1265,7,8,0,0,1265,1266,7,4,0,0,1266,1267,7,0,0,0,1267, - 1268,7,5,0,0,1268,138,1,0,0,0,1269,1270,7,1,0,0,1270,1271,7,0,0, - 0,1271,1272,7,3,0,0,1272,1273,7,0,0,0,1273,140,1,0,0,0,1274,1275, - 7,1,0,0,1275,1276,7,0,0,0,1276,1277,7,3,0,0,1277,1278,7,4,0,0,1278, - 142,1,0,0,0,1279,1280,7,1,0,0,1280,1281,7,0,0,0,1281,1282,7,3,0, - 0,1282,1283,7,0,0,0,1283,1284,7,18,0,0,1284,1285,7,0,0,0,1285,1286, - 7,9,0,0,1286,1287,7,4,0,0,1287,144,1,0,0,0,1288,1289,7,1,0,0,1289, - 1290,7,0,0,0,1290,1291,7,3,0,0,1291,1292,7,0,0,0,1292,1293,7,18, - 0,0,1293,1294,7,0,0,0,1294,1295,7,9,0,0,1295,1296,7,4,0,0,1296,1297, - 7,9,0,0,1297,146,1,0,0,0,1298,1299,7,1,0,0,1299,1300,7,0,0,0,1300, - 1301,7,3,0,0,1301,1302,7,4,0,0,1302,1303,7,0,0,0,1303,1304,7,1,0, - 0,1304,1305,7,1,0,0,1305,148,1,0,0,0,1306,1307,7,1,0,0,1307,1308, - 7,0,0,0,1308,1309,7,3,0,0,1309,1310,7,4,0,0,1310,1311,5,95,0,0,1311, - 1312,7,0,0,0,1312,1313,7,1,0,0,1313,1314,7,1,0,0,1314,150,1,0,0, - 0,1315,1316,7,1,0,0,1316,1317,7,0,0,0,1317,1318,7,3,0,0,1318,1319, - 7,4,0,0,1319,1320,7,1,0,0,1320,1321,7,12,0,0,1321,1322,7,2,0,0,1322, - 1323,7,2,0,0,1323,152,1,0,0,0,1324,1325,7,1,0,0,1325,1326,7,0,0, - 0,1326,1327,7,3,0,0,1327,1328,7,4,0,0,1328,1329,5,95,0,0,1329,1330, - 7,1,0,0,1330,1331,7,12,0,0,1331,1332,7,2,0,0,1332,1333,7,2,0,0,1333, - 154,1,0,0,0,1334,1335,7,1,0,0,1335,1336,7,18,0,0,1336,1337,7,22, - 0,0,1337,1338,7,5,0,0,1338,1339,7,17,0,0,1339,1340,7,22,0,0,1340, - 1341,7,4,0,0,1341,1342,7,5,0,0,1342,1343,7,3,0,0,1343,1344,7,12, - 0,0,1344,1345,7,4,0,0,1345,1346,7,9,0,0,1346,156,1,0,0,0,1347,1348, - 7,1,0,0,1348,1349,7,4,0,0,1349,1350,7,15,0,0,1350,158,1,0,0,0,1351, - 1352,7,1,0,0,1352,1353,7,4,0,0,1353,1354,7,15,0,0,1354,1355,7,12, - 0,0,1355,1356,7,21,0,0,1356,1357,7,0,0,0,1357,1358,7,6,0,0,1358, - 160,1,0,0,0,1359,1360,7,1,0,0,1360,1361,7,4,0,0,1361,1362,7,15,0, - 0,1362,1363,7,6,0,0,1363,1364,7,0,0,0,1364,1365,7,5,0,0,1365,1366, - 7,4,0,0,1366,162,1,0,0,0,1367,1368,7,1,0,0,1368,1369,7,4,0,0,1369, - 1370,7,2,0,0,1370,1371,7,0,0,0,1371,1372,7,14,0,0,1372,1373,7,6, - 0,0,1373,1374,7,3,0,0,1374,164,1,0,0,0,1375,1376,7,1,0,0,1376,1377, - 7,4,0,0,1377,1378,7,2,0,0,1378,1379,7,12,0,0,1379,1380,7,10,0,0, - 1380,1381,7,4,0,0,1381,1382,7,1,0,0,1382,166,1,0,0,0,1383,1384,7, - 1,0,0,1384,1385,7,4,0,0,1385,1386,7,6,0,0,1386,1387,7,4,0,0,1387, - 1388,7,3,0,0,1388,1389,7,4,0,0,1389,168,1,0,0,0,1390,1391,7,1,0, - 0,1391,1392,7,4,0,0,1392,1393,7,6,0,0,1393,1394,7,12,0,0,1394,1395, - 7,21,0,0,1395,1396,7,12,0,0,1396,1397,7,3,0,0,1397,1398,7,4,0,0, - 1398,1399,7,1,0,0,1399,170,1,0,0,0,1400,1401,7,1,0,0,1401,1402,7, - 4,0,0,1402,1403,7,9,0,0,1403,1404,7,15,0,0,1404,172,1,0,0,0,1405, - 1406,7,1,0,0,1406,1407,7,4,0,0,1407,1408,7,9,0,0,1408,1409,7,15, - 0,0,1409,1410,7,5,0,0,1410,1411,7,12,0,0,1411,1412,7,18,0,0,1412, - 1413,7,4,0,0,1413,174,1,0,0,0,1414,1415,7,1,0,0,1415,1416,7,2,0, - 0,1416,1417,7,9,0,0,1417,176,1,0,0,0,1418,1419,7,1,0,0,1419,1420, - 7,12,0,0,1420,1421,7,5,0,0,1421,1422,7,4,0,0,1422,1423,7,15,0,0, - 1423,1424,7,3,0,0,1424,1425,7,17,0,0,1425,1426,7,5,0,0,1426,1427, - 7,12,0,0,1427,1428,7,4,0,0,1428,1429,7,9,0,0,1429,178,1,0,0,0,1430, - 1431,7,1,0,0,1431,1432,7,12,0,0,1432,1433,7,5,0,0,1433,1434,7,4, - 0,0,1434,1435,7,15,0,0,1435,1436,7,3,0,0,1436,1437,7,17,0,0,1437, - 1438,7,5,0,0,1438,1439,7,8,0,0,1439,180,1,0,0,0,1440,1441,7,1,0, - 0,1441,1442,7,12,0,0,1442,1443,7,9,0,0,1443,1444,7,0,0,0,1444,1445, - 7,18,0,0,1445,1446,7,6,0,0,1446,1447,7,4,0,0,1447,182,1,0,0,0,1448, - 1449,7,1,0,0,1449,1450,7,12,0,0,1450,1451,7,9,0,0,1451,1452,7,3, - 0,0,1452,1453,7,12,0,0,1453,1454,7,10,0,0,1454,1455,7,15,0,0,1455, - 1456,7,3,0,0,1456,184,1,0,0,0,1457,1458,7,1,0,0,1458,1459,7,12,0, - 0,1459,1460,7,9,0,0,1460,1461,7,3,0,0,1461,1462,7,5,0,0,1462,1463, - 7,12,0,0,1463,1464,7,18,0,0,1464,1465,7,14,0,0,1465,1466,7,3,0,0, - 1466,1467,7,4,0,0,1467,186,1,0,0,0,1468,1469,7,1,0,0,1469,1470,7, - 12,0,0,1470,1471,7,13,0,0,1471,188,1,0,0,0,1472,1473,7,1,0,0,1473, - 1474,7,17,0,0,1474,1475,7,14,0,0,1475,1476,7,18,0,0,1476,1477,7, - 6,0,0,1477,1478,7,4,0,0,1478,190,1,0,0,0,1479,1480,7,1,0,0,1480, - 1481,7,5,0,0,1481,1482,7,17,0,0,1482,1483,7,22,0,0,1483,192,1,0, - 0,0,1484,1485,7,4,0,0,1485,1486,7,6,0,0,1486,1487,7,9,0,0,1487,1488, - 7,4,0,0,1488,194,1,0,0,0,1489,1490,7,4,0,0,1490,1491,7,10,0,0,1491, - 1492,7,0,0,0,1492,1493,7,18,0,0,1493,1494,7,6,0,0,1494,1495,7,4, - 0,0,1495,196,1,0,0,0,1496,1497,7,4,0,0,1497,1498,7,10,0,0,1498,1499, - 7,1,0,0,1499,198,1,0,0,0,1500,1501,7,4,0,0,1501,1502,7,9,0,0,1502, - 1503,7,15,0,0,1503,1504,7,0,0,0,1504,1505,7,22,0,0,1505,1506,7,4, - 0,0,1506,200,1,0,0,0,1507,1508,7,4,0,0,1508,1509,7,9,0,0,1509,1510, - 7,15,0,0,1510,1511,7,0,0,0,1511,1512,7,22,0,0,1512,1513,7,4,0,0, - 1513,1514,7,1,0,0,1514,202,1,0,0,0,1515,1516,7,4,0,0,1516,1517,7, - 23,0,0,1517,1518,7,15,0,0,1518,1519,7,4,0,0,1519,1520,7,22,0,0,1520, - 1521,7,3,0,0,1521,204,1,0,0,0,1522,1523,7,4,0,0,1523,1524,7,23,0, - 0,1524,1525,7,15,0,0,1525,1526,7,16,0,0,1526,1527,7,0,0,0,1527,1528, - 7,10,0,0,1528,1529,7,19,0,0,1529,1530,7,4,0,0,1530,206,1,0,0,0,1531, - 1532,7,4,0,0,1532,1533,7,23,0,0,1533,1534,7,15,0,0,1534,1535,7,6, - 0,0,1535,1536,7,14,0,0,1536,1537,7,1,0,0,1537,1538,7,4,0,0,1538, - 208,1,0,0,0,1539,1540,7,4,0,0,1540,1541,7,23,0,0,1541,1542,7,12, - 0,0,1542,1543,7,9,0,0,1543,1544,7,3,0,0,1544,1545,7,9,0,0,1545,210, - 1,0,0,0,1546,1547,7,4,0,0,1547,1548,7,23,0,0,1548,1549,7,22,0,0, - 1549,1550,7,6,0,0,1550,1551,7,0,0,0,1551,1552,7,12,0,0,1552,1553, - 7,10,0,0,1553,212,1,0,0,0,1554,1555,7,4,0,0,1555,1556,7,23,0,0,1556, - 1557,7,22,0,0,1557,1558,7,17,0,0,1558,1559,7,5,0,0,1559,1560,7,3, - 0,0,1560,214,1,0,0,0,1561,1562,7,4,0,0,1562,1563,7,23,0,0,1563,1564, - 7,3,0,0,1564,1565,7,4,0,0,1565,1566,7,10,0,0,1566,1567,7,1,0,0,1567, - 1568,7,4,0,0,1568,1569,7,1,0,0,1569,216,1,0,0,0,1570,1571,7,4,0, - 0,1571,1572,7,23,0,0,1572,1573,7,3,0,0,1573,1574,7,4,0,0,1574,1575, - 7,5,0,0,1575,1576,7,10,0,0,1576,1577,7,0,0,0,1577,1578,7,6,0,0,1578, - 218,1,0,0,0,1579,1580,7,4,0,0,1580,1581,7,23,0,0,1581,1582,7,3,0, - 0,1582,1583,7,5,0,0,1583,1584,7,0,0,0,1584,1585,7,15,0,0,1585,1586, - 7,3,0,0,1586,220,1,0,0,0,1587,1588,7,2,0,0,1588,1589,7,0,0,0,1589, - 1590,7,6,0,0,1590,1591,7,9,0,0,1591,1592,7,4,0,0,1592,222,1,0,0, - 0,1593,1594,7,2,0,0,1594,1595,7,4,0,0,1595,1596,7,3,0,0,1596,1597, - 7,15,0,0,1597,1598,7,16,0,0,1598,224,1,0,0,0,1599,1600,7,2,0,0,1600, - 1601,7,12,0,0,1601,1602,7,4,0,0,1602,1603,7,6,0,0,1603,1604,7,1, - 0,0,1604,1605,7,9,0,0,1605,226,1,0,0,0,1606,1607,7,2,0,0,1607,1608, - 7,12,0,0,1608,1609,7,6,0,0,1609,1610,7,3,0,0,1610,1611,7,4,0,0,1611, - 1612,7,5,0,0,1612,228,1,0,0,0,1613,1614,7,2,0,0,1614,1615,7,12,0, - 0,1615,1616,7,6,0,0,1616,1617,7,4,0,0,1617,1618,7,2,0,0,1618,1619, - 7,17,0,0,1619,1620,7,5,0,0,1620,1621,7,21,0,0,1621,1622,7,0,0,0, - 1622,1623,7,3,0,0,1623,230,1,0,0,0,1624,1625,7,2,0,0,1625,1626,7, - 12,0,0,1626,1627,7,5,0,0,1627,1628,7,9,0,0,1628,1629,7,3,0,0,1629, - 232,1,0,0,0,1630,1631,7,2,0,0,1631,1632,7,6,0,0,1632,1633,7,17,0, - 0,1633,1634,7,0,0,0,1634,1635,7,3,0,0,1635,234,1,0,0,0,1636,1637, - 7,2,0,0,1637,1638,7,17,0,0,1638,1639,7,6,0,0,1639,1640,7,6,0,0,1640, - 1641,7,17,0,0,1641,1642,7,7,0,0,1642,1643,7,12,0,0,1643,1644,7,10, - 0,0,1644,1645,7,19,0,0,1645,236,1,0,0,0,1646,1647,7,2,0,0,1647,1648, - 7,17,0,0,1648,1649,7,5,0,0,1649,238,1,0,0,0,1650,1651,7,2,0,0,1651, - 1652,7,17,0,0,1652,1653,7,5,0,0,1653,1654,7,4,0,0,1654,1655,7,12, - 0,0,1655,1656,7,19,0,0,1656,1657,7,10,0,0,1657,240,1,0,0,0,1658, - 1659,7,2,0,0,1659,1660,7,17,0,0,1660,1661,7,5,0,0,1661,1662,7,21, - 0,0,1662,1663,7,0,0,0,1663,1664,7,3,0,0,1664,242,1,0,0,0,1665,1666, - 7,2,0,0,1666,1667,7,17,0,0,1667,1668,7,5,0,0,1668,1669,7,21,0,0, - 1669,1670,7,0,0,0,1670,1671,7,3,0,0,1671,1672,7,3,0,0,1672,1673, - 7,4,0,0,1673,1674,7,1,0,0,1674,244,1,0,0,0,1675,1676,7,2,0,0,1676, - 1677,7,5,0,0,1677,1678,7,17,0,0,1678,1679,7,21,0,0,1679,246,1,0, - 0,0,1680,1681,7,2,0,0,1681,1682,7,14,0,0,1682,1683,7,6,0,0,1683, - 1684,7,6,0,0,1684,248,1,0,0,0,1685,1686,7,2,0,0,1686,1687,7,14,0, - 0,1687,1688,7,10,0,0,1688,1689,7,15,0,0,1689,1690,7,3,0,0,1690,1691, - 7,12,0,0,1691,1692,7,17,0,0,1692,1693,7,10,0,0,1693,250,1,0,0,0, - 1694,1695,7,2,0,0,1695,1696,7,14,0,0,1696,1697,7,10,0,0,1697,1698, - 7,15,0,0,1698,1699,7,3,0,0,1699,1700,7,12,0,0,1700,1701,7,17,0,0, - 1701,1702,7,10,0,0,1702,1703,7,9,0,0,1703,252,1,0,0,0,1704,1705, - 7,19,0,0,1705,1706,7,4,0,0,1706,1707,7,10,0,0,1707,1708,7,4,0,0, - 1708,1709,7,5,0,0,1709,1710,7,0,0,0,1710,1711,7,3,0,0,1711,1712, - 7,4,0,0,1712,1713,7,1,0,0,1713,254,1,0,0,0,1714,1715,7,19,0,0,1715, - 1716,7,6,0,0,1716,1717,7,17,0,0,1717,1718,7,18,0,0,1718,1719,7,0, - 0,0,1719,1720,7,6,0,0,1720,256,1,0,0,0,1721,1722,7,19,0,0,1722,1723, - 7,5,0,0,1723,1724,7,0,0,0,1724,1725,7,10,0,0,1725,1726,7,3,0,0,1726, - 258,1,0,0,0,1727,1728,7,19,0,0,1728,1729,7,5,0,0,1729,1730,7,17, - 0,0,1730,1731,7,14,0,0,1731,1732,7,22,0,0,1732,260,1,0,0,0,1733, - 1734,7,19,0,0,1734,1735,7,5,0,0,1735,1736,7,17,0,0,1736,1737,7,14, - 0,0,1737,1738,7,22,0,0,1738,1739,7,12,0,0,1739,1740,7,10,0,0,1740, - 1741,7,19,0,0,1741,262,1,0,0,0,1742,1743,7,16,0,0,1743,1744,7,0, - 0,0,1744,1745,7,13,0,0,1745,1746,7,12,0,0,1746,1747,7,10,0,0,1747, - 1748,7,19,0,0,1748,264,1,0,0,0,1749,1750,7,23,0,0,1750,266,1,0,0, - 0,1751,1752,7,16,0,0,1752,1753,7,17,0,0,1753,1754,7,14,0,0,1754, - 1755,7,5,0,0,1755,268,1,0,0,0,1756,1757,7,16,0,0,1757,1758,7,17, - 0,0,1758,1759,7,14,0,0,1759,1760,7,5,0,0,1760,1761,7,9,0,0,1761, - 270,1,0,0,0,1762,1763,7,12,0,0,1763,1764,7,1,0,0,1764,1765,7,4,0, - 0,1765,1766,7,10,0,0,1766,1767,7,3,0,0,1767,1768,7,12,0,0,1768,1769, - 7,2,0,0,1769,1770,7,12,0,0,1770,1771,7,4,0,0,1771,1772,7,5,0,0,1772, - 272,1,0,0,0,1773,1774,7,12,0,0,1774,1775,7,2,0,0,1775,274,1,0,0, - 0,1776,1777,7,12,0,0,1777,1778,7,19,0,0,1778,1779,7,10,0,0,1779, - 1780,7,17,0,0,1780,1781,7,5,0,0,1781,1782,7,4,0,0,1782,276,1,0,0, - 0,1783,1784,7,12,0,0,1784,1785,7,21,0,0,1785,1786,7,22,0,0,1786, - 1787,7,17,0,0,1787,1788,7,5,0,0,1788,1789,7,3,0,0,1789,278,1,0,0, - 0,1790,1791,7,12,0,0,1791,1792,7,10,0,0,1792,280,1,0,0,0,1793,1794, - 7,12,0,0,1794,1795,7,10,0,0,1795,1796,7,15,0,0,1796,1797,7,6,0,0, - 1797,1798,7,14,0,0,1798,1799,7,1,0,0,1799,1800,7,4,0,0,1800,282, - 1,0,0,0,1801,1802,7,12,0,0,1802,1803,7,10,0,0,1803,1804,7,1,0,0, - 1804,1805,7,4,0,0,1805,1806,7,23,0,0,1806,284,1,0,0,0,1807,1808, - 7,12,0,0,1808,1809,7,10,0,0,1809,1810,7,1,0,0,1810,1811,7,4,0,0, - 1811,1812,7,23,0,0,1812,1813,7,4,0,0,1813,1814,7,9,0,0,1814,286, - 1,0,0,0,1815,1816,7,12,0,0,1816,1817,7,10,0,0,1817,1818,7,10,0,0, - 1818,1819,7,4,0,0,1819,1820,7,5,0,0,1820,288,1,0,0,0,1821,1822,7, - 12,0,0,1822,1823,7,10,0,0,1823,1824,7,22,0,0,1824,1825,7,0,0,0,1825, - 1826,7,3,0,0,1826,1827,7,16,0,0,1827,290,1,0,0,0,1828,1829,7,12, - 0,0,1829,1830,7,10,0,0,1830,1831,7,22,0,0,1831,1832,7,14,0,0,1832, - 1833,7,3,0,0,1833,1834,7,2,0,0,1834,1835,7,17,0,0,1835,1836,7,5, - 0,0,1836,1837,7,21,0,0,1837,1838,7,0,0,0,1838,1839,7,3,0,0,1839, - 292,1,0,0,0,1840,1841,7,12,0,0,1841,1842,7,10,0,0,1842,1843,7,9, - 0,0,1843,1844,7,4,0,0,1844,1845,7,5,0,0,1845,1846,7,3,0,0,1846,294, - 1,0,0,0,1847,1848,7,12,0,0,1848,1849,7,10,0,0,1849,1850,7,3,0,0, - 1850,1851,7,4,0,0,1851,1852,7,5,0,0,1852,1853,7,9,0,0,1853,1854, - 7,4,0,0,1854,1855,7,15,0,0,1855,1856,7,3,0,0,1856,296,1,0,0,0,1857, - 1858,7,12,0,0,1858,1859,7,10,0,0,1859,1860,7,3,0,0,1860,1861,7,4, - 0,0,1861,1862,7,5,0,0,1862,1863,7,13,0,0,1863,1864,7,0,0,0,1864, - 1865,7,6,0,0,1865,298,1,0,0,0,1866,1867,7,12,0,0,1867,1868,7,10, - 0,0,1868,1869,7,3,0,0,1869,300,1,0,0,0,1870,1871,7,12,0,0,1871,1872, - 7,10,0,0,1872,1873,7,3,0,0,1873,1874,7,4,0,0,1874,1875,7,19,0,0, - 1875,1876,7,4,0,0,1876,1877,7,5,0,0,1877,302,1,0,0,0,1878,1879,7, - 12,0,0,1879,1880,7,10,0,0,1880,1881,7,3,0,0,1881,1882,7,17,0,0,1882, - 304,1,0,0,0,1883,1884,7,12,0,0,1884,1885,7,9,0,0,1885,306,1,0,0, - 0,1886,1887,7,12,0,0,1887,1888,7,3,0,0,1888,1889,7,4,0,0,1889,1890, - 7,21,0,0,1890,1891,7,9,0,0,1891,308,1,0,0,0,1892,1893,7,24,0,0,1893, - 1894,7,17,0,0,1894,1895,7,12,0,0,1895,1896,7,10,0,0,1896,310,1,0, - 0,0,1897,1898,7,20,0,0,1898,1899,7,4,0,0,1899,1900,7,8,0,0,1900, - 1901,7,9,0,0,1901,312,1,0,0,0,1902,1903,7,6,0,0,1903,1904,7,0,0, - 0,1904,1905,7,9,0,0,1905,1906,7,3,0,0,1906,314,1,0,0,0,1907,1908, - 7,6,0,0,1908,1909,7,0,0,0,1909,1910,7,3,0,0,1910,1911,7,4,0,0,1911, - 1912,7,5,0,0,1912,1913,7,0,0,0,1913,1914,7,6,0,0,1914,316,1,0,0, - 0,1915,1916,7,6,0,0,1916,1917,7,0,0,0,1917,1918,7,11,0,0,1918,1919, - 7,8,0,0,1919,318,1,0,0,0,1920,1921,7,6,0,0,1921,1922,7,4,0,0,1922, - 1923,7,0,0,0,1923,1924,7,1,0,0,1924,1925,7,12,0,0,1925,1926,7,10, - 0,0,1926,1927,7,19,0,0,1927,320,1,0,0,0,1928,1929,7,6,0,0,1929,1930, - 7,4,0,0,1930,1931,7,2,0,0,1931,1932,7,3,0,0,1932,322,1,0,0,0,1933, - 1934,7,6,0,0,1934,1935,7,12,0,0,1935,1936,7,20,0,0,1936,1937,7,4, - 0,0,1937,324,1,0,0,0,1938,1939,7,12,0,0,1939,1940,7,6,0,0,1940,1941, - 7,12,0,0,1941,1942,7,20,0,0,1942,1943,7,4,0,0,1943,326,1,0,0,0,1944, - 1945,7,6,0,0,1945,1946,7,12,0,0,1946,1947,7,21,0,0,1947,1948,7,12, - 0,0,1948,1949,7,3,0,0,1949,328,1,0,0,0,1950,1951,7,6,0,0,1951,1952, - 7,12,0,0,1952,1953,7,10,0,0,1953,1954,7,4,0,0,1954,1955,7,9,0,0, - 1955,330,1,0,0,0,1956,1957,7,6,0,0,1957,1958,7,12,0,0,1958,1959, - 7,9,0,0,1959,1960,7,3,0,0,1960,332,1,0,0,0,1961,1962,7,6,0,0,1962, - 1963,7,17,0,0,1963,1964,7,0,0,0,1964,1965,7,1,0,0,1965,334,1,0,0, - 0,1966,1967,7,6,0,0,1967,1968,7,17,0,0,1968,1969,7,15,0,0,1969,1970, - 7,0,0,0,1970,1971,7,6,0,0,1971,336,1,0,0,0,1972,1973,7,6,0,0,1973, - 1974,7,17,0,0,1974,1975,7,15,0,0,1975,1976,7,0,0,0,1976,1977,7,3, - 0,0,1977,1978,7,12,0,0,1978,1979,7,17,0,0,1979,1980,7,10,0,0,1980, - 338,1,0,0,0,1981,1982,7,6,0,0,1982,1983,7,17,0,0,1983,1984,7,15, - 0,0,1984,1985,7,20,0,0,1985,340,1,0,0,0,1986,1987,7,6,0,0,1987,1988, - 7,17,0,0,1988,1989,7,15,0,0,1989,1990,7,20,0,0,1990,1991,7,9,0,0, - 1991,342,1,0,0,0,1992,1993,7,6,0,0,1993,1994,7,17,0,0,1994,1995, - 7,19,0,0,1995,1996,7,12,0,0,1996,1997,7,15,0,0,1997,1998,7,0,0,0, - 1998,1999,7,6,0,0,1999,344,1,0,0,0,2000,2001,7,6,0,0,2001,2002,7, - 17,0,0,2002,2003,7,10,0,0,2003,2004,7,19,0,0,2004,346,1,0,0,0,2005, - 2006,7,21,0,0,2006,2007,7,0,0,0,2007,2008,7,15,0,0,2008,2009,7,5, - 0,0,2009,2010,7,17,0,0,2010,348,1,0,0,0,2011,2012,7,21,0,0,2012, - 2013,7,0,0,0,2013,2014,7,3,0,0,2014,2015,7,4,0,0,2015,2016,7,5,0, - 0,2016,2017,7,12,0,0,2017,2018,7,0,0,0,2018,2019,7,6,0,0,2019,2020, - 7,12,0,0,2020,2021,7,11,0,0,2021,2022,7,4,0,0,2022,2023,7,1,0,0, - 2023,350,1,0,0,0,2024,2025,7,21,0,0,2025,2026,7,0,0,0,2026,2027, - 7,22,0,0,2027,352,1,0,0,0,2028,2029,7,21,0,0,2029,2030,7,0,0,0,2030, - 2031,7,3,0,0,2031,2032,7,15,0,0,2032,2033,7,16,0,0,2033,2034,7,4, - 0,0,2034,2035,7,1,0,0,2035,354,1,0,0,0,2036,2037,7,21,0,0,2037,2038, - 7,4,0,0,2038,2039,7,5,0,0,2039,2040,7,19,0,0,2040,2041,7,4,0,0,2041, - 356,1,0,0,0,2042,2043,7,21,0,0,2043,2044,7,12,0,0,2044,2045,7,15, - 0,0,2045,2046,7,5,0,0,2046,2047,7,17,0,0,2047,2048,7,9,0,0,2048, - 2049,7,4,0,0,2049,2050,7,15,0,0,2050,2051,7,17,0,0,2051,2052,7,10, - 0,0,2052,2053,7,1,0,0,2053,358,1,0,0,0,2054,2055,7,21,0,0,2055,2056, - 7,12,0,0,2056,2057,7,15,0,0,2057,2058,7,5,0,0,2058,2059,7,17,0,0, - 2059,2060,7,9,0,0,2060,2061,7,4,0,0,2061,2062,7,15,0,0,2062,2063, - 7,17,0,0,2063,2064,7,10,0,0,2064,2065,7,1,0,0,2065,2066,7,9,0,0, - 2066,360,1,0,0,0,2067,2068,7,21,0,0,2068,2069,7,12,0,0,2069,2070, - 7,6,0,0,2070,2071,7,6,0,0,2071,2072,7,12,0,0,2072,2073,7,9,0,0,2073, - 2074,7,4,0,0,2074,2075,7,15,0,0,2075,2076,7,17,0,0,2076,2077,7,10, - 0,0,2077,2078,7,1,0,0,2078,362,1,0,0,0,2079,2080,7,21,0,0,2080,2081, - 7,12,0,0,2081,2082,7,6,0,0,2082,2083,7,6,0,0,2083,2084,7,12,0,0, - 2084,2085,7,9,0,0,2085,2086,7,4,0,0,2086,2087,7,15,0,0,2087,2088, - 7,17,0,0,2088,2089,7,10,0,0,2089,2090,7,1,0,0,2090,2091,7,9,0,0, - 2091,364,1,0,0,0,2092,2093,7,21,0,0,2093,2094,7,12,0,0,2094,2095, - 7,10,0,0,2095,2096,7,14,0,0,2096,2097,7,3,0,0,2097,2098,7,4,0,0, - 2098,366,1,0,0,0,2099,2100,7,21,0,0,2100,2101,7,12,0,0,2101,2102, - 7,10,0,0,2102,2103,7,14,0,0,2103,2104,7,3,0,0,2104,2105,7,4,0,0, - 2105,2106,7,9,0,0,2106,368,1,0,0,0,2107,2108,7,21,0,0,2108,2109, - 7,17,0,0,2109,2110,7,10,0,0,2110,2111,7,3,0,0,2111,2112,7,16,0,0, - 2112,370,1,0,0,0,2113,2114,7,21,0,0,2114,2115,7,17,0,0,2115,2116, - 7,10,0,0,2116,2117,7,3,0,0,2117,2118,7,16,0,0,2118,2119,7,9,0,0, - 2119,372,1,0,0,0,2120,2121,7,21,0,0,2121,2122,7,9,0,0,2122,2123, - 7,15,0,0,2123,2124,7,20,0,0,2124,374,1,0,0,0,2125,2126,7,10,0,0, - 2126,2127,7,0,0,0,2127,2128,7,21,0,0,2128,2129,7,4,0,0,2129,376, - 1,0,0,0,2130,2131,7,10,0,0,2131,2132,7,0,0,0,2132,2133,7,21,0,0, - 2133,2134,7,4,0,0,2134,2135,7,9,0,0,2135,2136,7,22,0,0,2136,2137, - 7,0,0,0,2137,2138,7,15,0,0,2138,2139,7,4,0,0,2139,378,1,0,0,0,2140, - 2141,7,10,0,0,2141,2142,7,0,0,0,2142,2143,7,21,0,0,2143,2144,7,4, - 0,0,2144,2145,7,9,0,0,2145,2146,7,22,0,0,2146,2147,7,0,0,0,2147, - 2148,7,15,0,0,2148,2149,7,4,0,0,2149,2150,7,9,0,0,2150,380,1,0,0, - 0,2151,2152,7,10,0,0,2152,2153,7,0,0,0,2153,2154,7,10,0,0,2154,2155, - 7,17,0,0,2155,2156,7,9,0,0,2156,2157,7,4,0,0,2157,2158,7,15,0,0, - 2158,2159,7,17,0,0,2159,2160,7,10,0,0,2160,2161,7,1,0,0,2161,382, - 1,0,0,0,2162,2163,7,10,0,0,2163,2164,7,0,0,0,2164,2165,7,10,0,0, - 2165,2166,7,17,0,0,2166,2167,7,9,0,0,2167,2168,7,4,0,0,2168,2169, - 7,15,0,0,2169,2170,7,17,0,0,2170,2171,7,10,0,0,2171,2172,7,1,0,0, - 2172,2173,7,9,0,0,2173,384,1,0,0,0,2174,2175,7,10,0,0,2175,2176, - 7,0,0,0,2176,2177,7,3,0,0,2177,2178,7,14,0,0,2178,2179,7,5,0,0,2179, - 2180,7,0,0,0,2180,2181,7,6,0,0,2181,386,1,0,0,0,2182,2183,7,10,0, - 0,2183,2184,7,17,0,0,2184,388,1,0,0,0,2185,2186,7,10,0,0,2186,2187, - 7,17,0,0,2187,2188,7,9,0,0,2188,2189,7,15,0,0,2189,2190,7,0,0,0, - 2190,2191,7,10,0,0,2191,390,1,0,0,0,2192,2193,7,10,0,0,2193,2194, - 7,17,0,0,2194,2195,7,3,0,0,2195,392,1,0,0,0,2196,2197,7,10,0,0,2197, - 2198,7,14,0,0,2198,2199,7,6,0,0,2199,2200,7,6,0,0,2200,394,1,0,0, - 0,2201,2202,7,10,0,0,2202,2203,7,14,0,0,2203,2204,7,6,0,0,2204,2205, - 7,6,0,0,2205,2206,7,9,0,0,2206,396,1,0,0,0,2207,2208,7,10,0,0,2208, - 2209,7,14,0,0,2209,2210,7,21,0,0,2210,2211,7,4,0,0,2211,2212,7,5, - 0,0,2212,2213,7,12,0,0,2213,2214,7,15,0,0,2214,398,1,0,0,0,2215, - 2216,7,17,0,0,2216,2217,7,2,0,0,2217,400,1,0,0,0,2218,2219,7,17, - 0,0,2219,2220,7,2,0,0,2220,2221,7,2,0,0,2221,2222,7,9,0,0,2222,2223, - 7,4,0,0,2223,2224,7,3,0,0,2224,402,1,0,0,0,2225,2226,7,17,0,0,2226, - 2227,7,10,0,0,2227,404,1,0,0,0,2228,2229,7,17,0,0,2229,2230,7,10, - 0,0,2230,2231,7,6,0,0,2231,2232,7,8,0,0,2232,406,1,0,0,0,2233,2234, - 7,17,0,0,2234,2235,7,22,0,0,2235,2236,7,3,0,0,2236,2237,7,12,0,0, - 2237,2238,7,21,0,0,2238,2239,7,12,0,0,2239,2240,7,11,0,0,2240,2241, - 7,4,0,0,2241,408,1,0,0,0,2242,2243,7,17,0,0,2243,2244,7,22,0,0,2244, - 2245,7,3,0,0,2245,2246,7,12,0,0,2246,2247,7,17,0,0,2247,2248,7,10, - 0,0,2248,410,1,0,0,0,2249,2250,7,17,0,0,2250,2251,7,22,0,0,2251, - 2252,7,3,0,0,2252,2253,7,12,0,0,2253,2254,7,17,0,0,2254,2255,7,10, - 0,0,2255,2256,7,9,0,0,2256,412,1,0,0,0,2257,2258,7,17,0,0,2258,2259, - 7,5,0,0,2259,414,1,0,0,0,2260,2261,7,17,0,0,2261,2262,7,5,0,0,2262, - 2263,7,1,0,0,2263,2264,7,4,0,0,2264,2265,7,5,0,0,2265,416,1,0,0, - 0,2266,2267,7,17,0,0,2267,2268,7,14,0,0,2268,2269,7,3,0,0,2269,418, - 1,0,0,0,2270,2271,7,17,0,0,2271,2272,7,14,0,0,2272,2273,7,3,0,0, - 2273,2274,7,4,0,0,2274,2275,7,5,0,0,2275,420,1,0,0,0,2276,2277,7, - 17,0,0,2277,2278,7,14,0,0,2278,2279,7,3,0,0,2279,2280,7,22,0,0,2280, - 2281,7,14,0,0,2281,2282,7,3,0,0,2282,2283,7,2,0,0,2283,2284,7,17, - 0,0,2284,2285,7,5,0,0,2285,2286,7,21,0,0,2286,2287,7,0,0,0,2287, - 2288,7,3,0,0,2288,422,1,0,0,0,2289,2290,7,17,0,0,2290,2291,7,13, - 0,0,2291,2292,7,4,0,0,2292,2293,7,5,0,0,2293,424,1,0,0,0,2294,2295, - 7,17,0,0,2295,2296,7,13,0,0,2296,2297,7,4,0,0,2297,2298,7,5,0,0, - 2298,2299,7,6,0,0,2299,2300,7,0,0,0,2300,2301,7,22,0,0,2301,2302, - 7,9,0,0,2302,426,1,0,0,0,2303,2304,7,17,0,0,2304,2305,7,13,0,0,2305, - 2306,7,4,0,0,2306,2307,7,5,0,0,2307,2308,7,6,0,0,2308,2309,7,0,0, - 0,2309,2310,7,8,0,0,2310,428,1,0,0,0,2311,2312,7,17,0,0,2312,2313, - 7,13,0,0,2313,2314,7,4,0,0,2314,2315,7,5,0,0,2315,2316,7,7,0,0,2316, - 2317,7,5,0,0,2317,2318,7,12,0,0,2318,2319,7,3,0,0,2319,2320,7,4, - 0,0,2320,430,1,0,0,0,2321,2322,7,22,0,0,2322,2323,7,0,0,0,2323,2324, - 7,5,0,0,2324,2325,7,3,0,0,2325,2326,7,12,0,0,2326,2327,7,3,0,0,2327, - 2328,7,12,0,0,2328,2329,7,17,0,0,2329,2330,7,10,0,0,2330,432,1,0, - 0,0,2331,2332,7,22,0,0,2332,2333,7,0,0,0,2333,2334,7,5,0,0,2334, - 2335,7,3,0,0,2335,2336,7,12,0,0,2336,2337,7,3,0,0,2337,2338,7,12, - 0,0,2338,2339,7,17,0,0,2339,2340,7,10,0,0,2340,2341,7,4,0,0,2341, - 2342,7,1,0,0,2342,434,1,0,0,0,2343,2344,7,22,0,0,2344,2345,7,0,0, - 0,2345,2346,7,5,0,0,2346,2347,7,3,0,0,2347,2348,7,12,0,0,2348,2349, - 7,3,0,0,2349,2350,7,12,0,0,2350,2351,7,17,0,0,2351,2352,7,10,0,0, - 2352,2353,7,9,0,0,2353,436,1,0,0,0,2354,2355,7,22,0,0,2355,2356, - 7,4,0,0,2356,2357,7,5,0,0,2357,2358,7,15,0,0,2358,2359,7,4,0,0,2359, - 2360,7,10,0,0,2360,2361,7,3,0,0,2361,2362,7,12,0,0,2362,2363,7,6, - 0,0,2363,2364,7,4,0,0,2364,2365,5,95,0,0,2365,2366,7,15,0,0,2366, - 2367,7,17,0,0,2367,2368,7,10,0,0,2368,2369,7,3,0,0,2369,438,1,0, - 0,0,2370,2371,7,22,0,0,2371,2372,7,4,0,0,2372,2373,7,5,0,0,2373, - 2374,7,15,0,0,2374,2375,7,4,0,0,2375,2376,7,10,0,0,2376,2377,7,3, - 0,0,2377,2378,7,12,0,0,2378,2379,7,6,0,0,2379,2380,7,4,0,0,2380, - 2381,5,95,0,0,2381,2382,7,1,0,0,2382,2383,7,12,0,0,2383,2384,7,9, - 0,0,2384,2385,7,15,0,0,2385,440,1,0,0,0,2386,2387,7,22,0,0,2387, - 2388,7,4,0,0,2388,2389,7,5,0,0,2389,2390,7,15,0,0,2390,2391,7,4, - 0,0,2391,2392,7,10,0,0,2392,2393,7,3,0,0,2393,442,1,0,0,0,2394,2395, - 7,22,0,0,2395,2396,7,12,0,0,2396,2397,7,13,0,0,2397,2398,7,17,0, - 0,2398,2399,7,3,0,0,2399,444,1,0,0,0,2400,2401,7,22,0,0,2401,2402, - 7,6,0,0,2402,2403,7,0,0,0,2403,2404,7,15,0,0,2404,2405,7,12,0,0, - 2405,2406,7,10,0,0,2406,2407,7,19,0,0,2407,446,1,0,0,0,2408,2409, - 7,22,0,0,2409,2410,7,17,0,0,2410,2411,7,9,0,0,2411,2412,7,12,0,0, - 2412,2413,7,3,0,0,2413,2414,7,12,0,0,2414,2415,7,17,0,0,2415,2416, - 7,10,0,0,2416,448,1,0,0,0,2417,2418,7,22,0,0,2418,2419,7,5,0,0,2419, - 2420,7,4,0,0,2420,2421,7,15,0,0,2421,2422,7,4,0,0,2422,2423,7,1, - 0,0,2423,2424,7,12,0,0,2424,2425,7,10,0,0,2425,2426,7,19,0,0,2426, - 450,1,0,0,0,2427,2428,7,22,0,0,2428,2429,7,5,0,0,2429,2430,7,12, - 0,0,2430,2431,7,21,0,0,2431,2432,7,0,0,0,2432,2433,7,5,0,0,2433, - 2434,7,8,0,0,2434,452,1,0,0,0,2435,2436,7,22,0,0,2436,2437,7,5,0, - 0,2437,2438,7,12,0,0,2438,2439,7,10,0,0,2439,2440,7,15,0,0,2440, - 2441,7,12,0,0,2441,2442,7,22,0,0,2442,2443,7,0,0,0,2443,2444,7,6, - 0,0,2444,2445,7,9,0,0,2445,454,1,0,0,0,2446,2447,7,22,0,0,2447,2448, - 7,5,0,0,2448,2449,7,17,0,0,2449,2450,7,22,0,0,2450,2451,7,4,0,0, - 2451,2452,7,5,0,0,2452,2453,7,3,0,0,2453,2454,7,12,0,0,2454,2455, - 7,4,0,0,2455,2456,7,9,0,0,2456,456,1,0,0,0,2457,2458,7,22,0,0,2458, - 2459,7,14,0,0,2459,2460,7,5,0,0,2460,2461,7,19,0,0,2461,2462,7,4, - 0,0,2462,458,1,0,0,0,2463,2464,7,25,0,0,2464,2465,7,14,0,0,2465, - 2466,7,0,0,0,2466,2467,7,5,0,0,2467,2468,7,3,0,0,2468,2469,7,4,0, - 0,2469,2470,7,5,0,0,2470,460,1,0,0,0,2471,2472,7,25,0,0,2472,2473, - 7,14,0,0,2473,2474,7,4,0,0,2474,2475,7,5,0,0,2475,2476,7,8,0,0,2476, - 462,1,0,0,0,2477,2478,7,5,0,0,2478,2479,7,0,0,0,2479,2480,7,10,0, - 0,2480,2481,7,19,0,0,2481,2482,7,4,0,0,2482,464,1,0,0,0,2483,2484, - 7,5,0,0,2484,2485,7,4,0,0,2485,2486,7,0,0,0,2486,2487,7,6,0,0,2487, - 466,1,0,0,0,2488,2489,7,5,0,0,2489,2490,7,4,0,0,2490,2491,7,15,0, - 0,2491,2492,7,17,0,0,2492,2493,7,5,0,0,2493,2494,7,1,0,0,2494,2495, - 7,5,0,0,2495,2496,7,4,0,0,2496,2497,7,0,0,0,2497,2498,7,1,0,0,2498, - 2499,7,4,0,0,2499,2500,7,5,0,0,2500,468,1,0,0,0,2501,2502,7,5,0, - 0,2502,2503,7,4,0,0,2503,2504,7,15,0,0,2504,2505,7,17,0,0,2505,2506, - 7,5,0,0,2506,2507,7,1,0,0,2507,2508,7,7,0,0,2508,2509,7,5,0,0,2509, - 2510,7,12,0,0,2510,2511,7,3,0,0,2511,2512,7,4,0,0,2512,2513,7,5, - 0,0,2513,470,1,0,0,0,2514,2515,7,5,0,0,2515,2516,7,4,0,0,2516,2517, - 7,15,0,0,2517,2518,7,17,0,0,2518,2519,7,13,0,0,2519,2520,7,4,0,0, - 2520,2521,7,5,0,0,2521,472,1,0,0,0,2522,2523,7,5,0,0,2523,2524,7, - 4,0,0,2524,2525,7,1,0,0,2525,2526,7,14,0,0,2526,2527,7,15,0,0,2527, - 2528,7,4,0,0,2528,474,1,0,0,0,2529,2530,7,5,0,0,2530,2531,7,4,0, - 0,2531,2532,7,2,0,0,2532,2533,7,4,0,0,2533,2534,7,5,0,0,2534,2535, - 7,4,0,0,2535,2536,7,10,0,0,2536,2537,7,15,0,0,2537,2538,7,4,0,0, - 2538,2539,7,9,0,0,2539,476,1,0,0,0,2540,2541,7,5,0,0,2541,2542,7, - 4,0,0,2542,2543,7,2,0,0,2543,2544,7,5,0,0,2544,2545,7,4,0,0,2545, - 2546,7,9,0,0,2546,2547,7,16,0,0,2547,478,1,0,0,0,2548,2549,7,5,0, - 0,2549,2550,7,4,0,0,2550,2551,7,10,0,0,2551,2552,7,0,0,0,2552,2553, - 7,21,0,0,2553,2554,7,4,0,0,2554,480,1,0,0,0,2555,2556,7,5,0,0,2556, - 2557,7,4,0,0,2557,2558,7,22,0,0,2558,2559,7,0,0,0,2559,2560,7,12, - 0,0,2560,2561,7,5,0,0,2561,482,1,0,0,0,2562,2563,7,5,0,0,2563,2564, - 7,4,0,0,2564,2565,7,22,0,0,2565,2566,7,4,0,0,2566,2567,7,0,0,0,2567, - 2568,7,3,0,0,2568,2569,7,0,0,0,2569,2570,7,18,0,0,2570,2571,7,6, - 0,0,2571,2572,7,4,0,0,2572,484,1,0,0,0,2573,2574,7,5,0,0,2574,2575, - 7,4,0,0,2575,2576,7,22,0,0,2576,2577,7,6,0,0,2577,2578,7,0,0,0,2578, - 2579,7,15,0,0,2579,2580,7,4,0,0,2580,486,1,0,0,0,2581,2582,7,5,0, - 0,2582,2583,7,4,0,0,2583,2584,7,9,0,0,2584,2585,7,4,0,0,2585,2586, - 7,3,0,0,2586,488,1,0,0,0,2587,2588,7,5,0,0,2588,2589,7,4,0,0,2589, - 2590,7,9,0,0,2590,2591,7,22,0,0,2591,2592,7,4,0,0,2592,2593,7,15, - 0,0,2593,2594,7,3,0,0,2594,490,1,0,0,0,2595,2596,7,5,0,0,2596,2597, - 7,4,0,0,2597,2598,7,9,0,0,2598,2599,7,3,0,0,2599,2600,7,5,0,0,2600, - 2601,7,12,0,0,2601,2602,7,15,0,0,2602,2603,7,3,0,0,2603,492,1,0, - 0,0,2604,2605,7,5,0,0,2605,2606,7,4,0,0,2606,2607,7,7,0,0,2607,2608, - 7,5,0,0,2608,2609,7,12,0,0,2609,2610,7,3,0,0,2610,2611,7,4,0,0,2611, - 494,1,0,0,0,2612,2613,7,5,0,0,2613,2614,7,4,0,0,2614,2615,7,13,0, - 0,2615,2616,7,17,0,0,2616,2617,7,20,0,0,2617,2618,7,4,0,0,2618,496, - 1,0,0,0,2619,2620,7,5,0,0,2620,2621,7,12,0,0,2621,2622,7,19,0,0, - 2622,2623,7,16,0,0,2623,2624,7,3,0,0,2624,498,1,0,0,0,2625,2626, - 7,5,0,0,2626,2627,7,6,0,0,2627,2628,7,12,0,0,2628,2629,7,20,0,0, - 2629,2630,7,4,0,0,2630,500,1,0,0,0,2631,2632,7,5,0,0,2632,2633,7, - 4,0,0,2633,2634,7,19,0,0,2634,2635,7,4,0,0,2635,2636,7,23,0,0,2636, - 2637,7,22,0,0,2637,502,1,0,0,0,2638,2639,7,5,0,0,2639,2640,7,17, - 0,0,2640,2641,7,6,0,0,2641,2642,7,4,0,0,2642,504,1,0,0,0,2643,2644, - 7,5,0,0,2644,2645,7,17,0,0,2645,2646,7,6,0,0,2646,2647,7,4,0,0,2647, - 2648,7,9,0,0,2648,506,1,0,0,0,2649,2650,7,5,0,0,2650,2651,7,17,0, - 0,2651,2652,7,6,0,0,2652,2653,7,6,0,0,2653,2654,7,18,0,0,2654,2655, - 7,0,0,0,2655,2656,7,15,0,0,2656,2657,7,20,0,0,2657,508,1,0,0,0,2658, - 2659,7,5,0,0,2659,2660,7,17,0,0,2660,2661,7,6,0,0,2661,2662,7,6, - 0,0,2662,2663,7,14,0,0,2663,2664,7,22,0,0,2664,510,1,0,0,0,2665, - 2666,7,5,0,0,2666,2667,7,17,0,0,2667,2668,7,7,0,0,2668,512,1,0,0, - 0,2669,2670,7,5,0,0,2670,2671,7,17,0,0,2671,2672,7,7,0,0,2672,2673, - 7,9,0,0,2673,514,1,0,0,0,2674,2675,7,9,0,0,2675,2676,7,4,0,0,2676, - 2677,7,15,0,0,2677,2678,7,17,0,0,2678,2679,7,10,0,0,2679,2680,7, - 1,0,0,2680,516,1,0,0,0,2681,2682,7,9,0,0,2682,2683,7,4,0,0,2683, - 2684,7,15,0,0,2684,2685,7,17,0,0,2685,2686,7,10,0,0,2686,2687,7, - 1,0,0,2687,2688,7,9,0,0,2688,518,1,0,0,0,2689,2690,7,9,0,0,2690, - 2691,7,15,0,0,2691,2692,7,16,0,0,2692,2693,7,4,0,0,2693,2694,7,21, - 0,0,2694,2695,7,0,0,0,2695,520,1,0,0,0,2696,2697,7,9,0,0,2697,2698, - 7,15,0,0,2698,2699,7,16,0,0,2699,2700,7,4,0,0,2700,2701,7,21,0,0, - 2701,2702,7,0,0,0,2702,2703,7,9,0,0,2703,522,1,0,0,0,2704,2705,7, - 9,0,0,2705,2706,7,4,0,0,2706,2707,7,6,0,0,2707,2708,7,4,0,0,2708, - 2709,7,15,0,0,2709,2710,7,3,0,0,2710,524,1,0,0,0,2711,2712,7,9,0, - 0,2712,2713,7,4,0,0,2713,2714,7,21,0,0,2714,2715,7,12,0,0,2715,526, - 1,0,0,0,2716,2717,7,9,0,0,2717,2718,7,4,0,0,2718,2719,7,22,0,0,2719, - 2720,7,0,0,0,2720,2721,7,5,0,0,2721,2722,7,0,0,0,2722,2723,7,3,0, - 0,2723,2724,7,4,0,0,2724,2725,7,1,0,0,2725,528,1,0,0,0,2726,2727, - 7,9,0,0,2727,2728,7,4,0,0,2728,2729,7,5,0,0,2729,2730,7,1,0,0,2730, - 2731,7,4,0,0,2731,530,1,0,0,0,2732,2733,7,9,0,0,2733,2734,7,4,0, - 0,2734,2735,7,5,0,0,2735,2736,7,1,0,0,2736,2737,7,4,0,0,2737,2738, - 7,22,0,0,2738,2739,7,5,0,0,2739,2740,7,17,0,0,2740,2741,7,22,0,0, - 2741,2742,7,4,0,0,2742,2743,7,5,0,0,2743,2744,7,3,0,0,2744,2745, - 7,12,0,0,2745,2746,7,4,0,0,2746,2747,7,9,0,0,2747,532,1,0,0,0,2748, - 2749,7,9,0,0,2749,2750,7,4,0,0,2750,2751,7,9,0,0,2751,2752,7,9,0, - 0,2752,2753,7,12,0,0,2753,2754,7,17,0,0,2754,2755,7,10,0,0,2755, - 2756,5,95,0,0,2756,2757,7,14,0,0,2757,2758,7,9,0,0,2758,2759,7,4, - 0,0,2759,2760,7,5,0,0,2760,534,1,0,0,0,2761,2762,7,9,0,0,2762,2763, - 7,4,0,0,2763,2764,7,3,0,0,2764,536,1,0,0,0,2765,2766,7,21,0,0,2766, - 2767,7,12,0,0,2767,2768,7,10,0,0,2768,2769,7,14,0,0,2769,2770,7, - 9,0,0,2770,538,1,0,0,0,2771,2772,7,9,0,0,2772,2773,7,4,0,0,2773, - 2774,7,3,0,0,2774,2775,7,9,0,0,2775,540,1,0,0,0,2776,2777,7,9,0, - 0,2777,2778,7,16,0,0,2778,2779,7,17,0,0,2779,2780,7,5,0,0,2780,2781, - 7,3,0,0,2781,542,1,0,0,0,2782,2783,7,9,0,0,2783,2784,7,16,0,0,2784, - 2785,7,17,0,0,2785,2786,7,7,0,0,2786,544,1,0,0,0,2787,2788,7,9,0, - 0,2788,2789,7,12,0,0,2789,2790,7,10,0,0,2790,2791,7,19,0,0,2791, - 2792,7,6,0,0,2792,2793,7,4,0,0,2793,546,1,0,0,0,2794,2795,7,9,0, - 0,2795,2796,7,20,0,0,2796,2797,7,4,0,0,2797,2798,7,7,0,0,2798,2799, - 7,4,0,0,2799,2800,7,1,0,0,2800,548,1,0,0,0,2801,2802,7,9,0,0,2802, - 2803,7,21,0,0,2803,2804,7,0,0,0,2804,2805,7,6,0,0,2805,2806,7,6, - 0,0,2806,2807,7,12,0,0,2807,2808,7,10,0,0,2808,2809,7,3,0,0,2809, - 550,1,0,0,0,2810,2811,7,9,0,0,2811,2812,7,17,0,0,2812,2813,7,21, - 0,0,2813,2814,7,4,0,0,2814,552,1,0,0,0,2815,2816,7,9,0,0,2816,2817, - 7,17,0,0,2817,2818,7,5,0,0,2818,2819,7,3,0,0,2819,554,1,0,0,0,2820, - 2821,7,9,0,0,2821,2822,7,17,0,0,2822,2823,7,5,0,0,2823,2824,7,3, - 0,0,2824,2825,7,4,0,0,2825,2826,7,1,0,0,2826,556,1,0,0,0,2827,2828, - 7,9,0,0,2828,2829,7,17,0,0,2829,2830,7,14,0,0,2830,2831,7,5,0,0, - 2831,2832,7,15,0,0,2832,2833,7,4,0,0,2833,558,1,0,0,0,2834,2835, - 7,9,0,0,2835,2836,7,3,0,0,2836,2837,7,0,0,0,2837,2838,7,5,0,0,2838, - 2839,7,3,0,0,2839,560,1,0,0,0,2840,2841,7,9,0,0,2841,2842,7,3,0, - 0,2842,2843,7,0,0,0,2843,2844,7,3,0,0,2844,2845,7,12,0,0,2845,2846, - 7,9,0,0,2846,2847,7,3,0,0,2847,2848,7,12,0,0,2848,2849,7,15,0,0, - 2849,2850,7,9,0,0,2850,562,1,0,0,0,2851,2852,7,9,0,0,2852,2853,7, - 3,0,0,2853,2854,7,17,0,0,2854,2855,7,5,0,0,2855,2856,7,4,0,0,2856, - 2857,7,1,0,0,2857,564,1,0,0,0,2858,2859,7,9,0,0,2859,2860,7,3,0, - 0,2860,2861,7,5,0,0,2861,2862,7,0,0,0,2862,2863,7,3,0,0,2863,2864, - 7,12,0,0,2864,2865,7,2,0,0,2865,2866,7,8,0,0,2866,566,1,0,0,0,2867, - 2868,7,9,0,0,2868,2869,7,3,0,0,2869,2870,7,5,0,0,2870,2871,7,12, - 0,0,2871,2872,7,10,0,0,2872,2873,7,19,0,0,2873,568,1,0,0,0,2874, - 2875,7,9,0,0,2875,2876,7,3,0,0,2876,2877,7,5,0,0,2877,2878,7,14, - 0,0,2878,2879,7,15,0,0,2879,2880,7,3,0,0,2880,570,1,0,0,0,2881,2882, - 7,9,0,0,2882,2883,7,14,0,0,2883,2884,7,18,0,0,2884,2885,7,9,0,0, - 2885,2886,7,3,0,0,2886,2887,7,5,0,0,2887,572,1,0,0,0,2888,2889,7, - 9,0,0,2889,2890,7,14,0,0,2890,2891,7,18,0,0,2891,2892,7,9,0,0,2892, - 2893,7,3,0,0,2893,2894,7,5,0,0,2894,2895,7,12,0,0,2895,2896,7,10, - 0,0,2896,2897,7,19,0,0,2897,574,1,0,0,0,2898,2899,7,9,0,0,2899,2900, - 7,8,0,0,2900,2901,7,10,0,0,2901,2902,7,15,0,0,2902,576,1,0,0,0,2903, - 2904,7,9,0,0,2904,2905,7,8,0,0,2905,2906,7,9,0,0,2906,2907,7,3,0, - 0,2907,2908,7,4,0,0,2908,2909,7,21,0,0,2909,578,1,0,0,0,2910,2911, - 7,9,0,0,2911,2912,7,8,0,0,2912,2913,7,9,0,0,2913,2914,7,3,0,0,2914, - 2915,7,4,0,0,2915,2916,7,21,0,0,2916,2917,5,95,0,0,2917,2918,7,3, - 0,0,2918,2919,7,12,0,0,2919,2920,7,21,0,0,2920,2921,7,4,0,0,2921, - 580,1,0,0,0,2922,2923,7,9,0,0,2923,2924,7,8,0,0,2924,2925,7,9,0, - 0,2925,2926,7,3,0,0,2926,2927,7,4,0,0,2927,2928,7,21,0,0,2928,2929, - 5,95,0,0,2929,2930,7,13,0,0,2930,2931,7,4,0,0,2931,2932,7,5,0,0, - 2932,2933,7,9,0,0,2933,2934,7,12,0,0,2934,2935,7,17,0,0,2935,2936, - 7,10,0,0,2936,582,1,0,0,0,2937,2938,7,3,0,0,2938,2939,7,0,0,0,2939, - 2940,7,18,0,0,2940,2941,7,6,0,0,2941,2942,7,4,0,0,2942,584,1,0,0, - 0,2943,2944,7,3,0,0,2944,2945,7,0,0,0,2945,2946,7,18,0,0,2946,2947, - 7,6,0,0,2947,2948,7,4,0,0,2948,2949,7,9,0,0,2949,586,1,0,0,0,2950, - 2951,7,3,0,0,2951,2952,7,0,0,0,2952,2953,7,18,0,0,2953,2954,7,6, - 0,0,2954,2955,7,4,0,0,2955,2956,7,9,0,0,2956,2957,7,0,0,0,2957,2958, - 7,21,0,0,2958,2959,7,22,0,0,2959,2960,7,6,0,0,2960,2961,7,4,0,0, - 2961,588,1,0,0,0,2962,2963,7,3,0,0,2963,2964,7,0,0,0,2964,2965,7, - 5,0,0,2965,2966,7,19,0,0,2966,2967,7,4,0,0,2967,2968,7,3,0,0,2968, - 590,1,0,0,0,2969,2970,7,3,0,0,2970,2971,7,18,0,0,2971,2972,7,6,0, - 0,2972,2973,7,22,0,0,2973,2974,7,5,0,0,2974,2975,7,17,0,0,2975,2976, - 7,22,0,0,2976,2977,7,4,0,0,2977,2978,7,5,0,0,2978,2979,7,3,0,0,2979, - 2980,7,12,0,0,2980,2981,7,4,0,0,2981,2982,7,9,0,0,2982,592,1,0,0, - 0,2983,2984,7,3,0,0,2984,2985,7,4,0,0,2985,2986,7,21,0,0,2986,2987, - 7,22,0,0,2987,2988,7,17,0,0,2988,2989,7,5,0,0,2989,2990,7,0,0,0, - 2990,2991,7,5,0,0,2991,2992,7,8,0,0,2992,594,1,0,0,0,2993,2994,7, - 3,0,0,2994,2995,7,4,0,0,2995,2996,7,5,0,0,2996,2997,7,21,0,0,2997, - 2998,7,12,0,0,2998,2999,7,10,0,0,2999,3000,7,0,0,0,3000,3001,7,3, - 0,0,3001,3002,7,4,0,0,3002,3003,7,1,0,0,3003,596,1,0,0,0,3004,3005, - 7,3,0,0,3005,3006,7,16,0,0,3006,3007,7,4,0,0,3007,3008,7,10,0,0, - 3008,598,1,0,0,0,3009,3010,7,3,0,0,3010,3011,7,12,0,0,3011,3012, - 7,21,0,0,3012,3013,7,4,0,0,3013,600,1,0,0,0,3014,3015,7,3,0,0,3015, - 3016,7,12,0,0,3016,3017,7,21,0,0,3017,3018,7,4,0,0,3018,3019,7,1, - 0,0,3019,3020,7,12,0,0,3020,3021,7,2,0,0,3021,3022,7,2,0,0,3022, - 602,1,0,0,0,3023,3024,7,3,0,0,3024,3025,7,12,0,0,3025,3026,7,21, - 0,0,3026,3027,7,4,0,0,3027,3028,7,9,0,0,3028,3029,7,3,0,0,3029,3030, - 7,0,0,0,3030,3031,7,21,0,0,3031,3032,7,22,0,0,3032,604,1,0,0,0,3033, - 3034,7,3,0,0,3034,3035,7,12,0,0,3035,3036,7,21,0,0,3036,3037,7,4, - 0,0,3037,3038,7,9,0,0,3038,3039,7,3,0,0,3039,3040,7,0,0,0,3040,3041, - 7,21,0,0,3041,3042,7,22,0,0,3042,3043,5,95,0,0,3043,3044,7,6,0,0, - 3044,3045,7,3,0,0,3045,3046,7,11,0,0,3046,606,1,0,0,0,3047,3048, - 7,3,0,0,3048,3049,7,12,0,0,3049,3050,7,21,0,0,3050,3051,7,4,0,0, - 3051,3052,7,9,0,0,3052,3053,7,3,0,0,3053,3054,7,0,0,0,3054,3055, - 7,21,0,0,3055,3056,7,22,0,0,3056,3057,5,95,0,0,3057,3058,7,10,0, - 0,3058,3059,7,3,0,0,3059,3060,7,11,0,0,3060,608,1,0,0,0,3061,3062, - 7,3,0,0,3062,3063,7,12,0,0,3063,3064,7,21,0,0,3064,3065,7,4,0,0, - 3065,3066,7,9,0,0,3066,3067,7,3,0,0,3067,3068,7,0,0,0,3068,3069, - 7,21,0,0,3069,3070,7,22,0,0,3070,3071,7,0,0,0,3071,3072,7,1,0,0, - 3072,3073,7,1,0,0,3073,610,1,0,0,0,3074,3075,7,3,0,0,3075,3076,7, - 12,0,0,3076,3077,7,21,0,0,3077,3078,7,4,0,0,3078,3079,7,9,0,0,3079, - 3080,7,3,0,0,3080,3081,7,0,0,0,3081,3082,7,21,0,0,3082,3083,7,22, - 0,0,3083,3084,7,1,0,0,3084,3085,7,12,0,0,3085,3086,7,2,0,0,3086, - 3087,7,2,0,0,3087,612,1,0,0,0,3088,3089,7,3,0,0,3089,3090,7,12,0, - 0,3090,3091,7,10,0,0,3091,3092,7,8,0,0,3092,3093,7,12,0,0,3093,3094, - 7,10,0,0,3094,3095,7,3,0,0,3095,614,1,0,0,0,3096,3097,7,3,0,0,3097, - 3098,7,17,0,0,3098,616,1,0,0,0,3099,3100,7,3,0,0,3100,3101,7,17, - 0,0,3101,3102,7,14,0,0,3102,3103,7,15,0,0,3103,3104,7,16,0,0,3104, - 618,1,0,0,0,3105,3106,7,3,0,0,3106,3107,7,5,0,0,3107,3108,7,0,0, - 0,3108,3109,7,12,0,0,3109,3110,7,6,0,0,3110,3111,7,12,0,0,3111,3112, - 7,10,0,0,3112,3113,7,19,0,0,3113,620,1,0,0,0,3114,3115,7,3,0,0,3115, - 3116,7,5,0,0,3116,3117,7,0,0,0,3117,3118,7,10,0,0,3118,3119,7,9, - 0,0,3119,3120,7,0,0,0,3120,3121,7,15,0,0,3121,3122,7,3,0,0,3122, - 3123,7,12,0,0,3123,3124,7,17,0,0,3124,3125,7,10,0,0,3125,622,1,0, - 0,0,3126,3127,7,3,0,0,3127,3128,7,5,0,0,3128,3129,7,0,0,0,3129,3130, - 7,10,0,0,3130,3131,7,9,0,0,3131,3132,7,0,0,0,3132,3133,7,15,0,0, - 3133,3134,7,3,0,0,3134,3135,7,12,0,0,3135,3136,7,17,0,0,3136,3137, - 7,10,0,0,3137,3138,7,9,0,0,3138,624,1,0,0,0,3139,3140,7,3,0,0,3140, - 3141,7,5,0,0,3141,3142,7,0,0,0,3142,3143,7,10,0,0,3143,3144,7,9, - 0,0,3144,3145,7,2,0,0,3145,3146,7,17,0,0,3146,3147,7,5,0,0,3147, - 3148,7,21,0,0,3148,626,1,0,0,0,3149,3150,7,3,0,0,3150,3151,7,5,0, - 0,3151,3152,7,12,0,0,3152,3153,7,21,0,0,3153,628,1,0,0,0,3154,3155, - 7,3,0,0,3155,3156,7,5,0,0,3156,3157,7,14,0,0,3157,3158,7,4,0,0,3158, - 630,1,0,0,0,3159,3160,7,3,0,0,3160,3161,7,5,0,0,3161,3162,7,14,0, - 0,3162,3163,7,10,0,0,3163,3164,7,15,0,0,3164,3165,7,0,0,0,3165,3166, - 7,3,0,0,3166,3167,7,4,0,0,3167,632,1,0,0,0,3168,3169,7,3,0,0,3169, - 3170,7,5,0,0,3170,3171,7,8,0,0,3171,3172,5,95,0,0,3172,3173,7,15, - 0,0,3173,3174,7,0,0,0,3174,3175,7,9,0,0,3175,3176,7,3,0,0,3176,634, - 1,0,0,0,3177,3178,7,3,0,0,3178,3179,7,8,0,0,3179,3180,7,22,0,0,3180, - 3181,7,4,0,0,3181,636,1,0,0,0,3182,3183,7,14,0,0,3183,3184,7,10, - 0,0,3184,3185,7,0,0,0,3185,3186,7,5,0,0,3186,3187,7,15,0,0,3187, - 3188,7,16,0,0,3188,3189,7,12,0,0,3189,3190,7,13,0,0,3190,3191,7, - 4,0,0,3191,638,1,0,0,0,3192,3193,7,14,0,0,3193,3194,7,10,0,0,3194, - 3195,7,18,0,0,3195,3196,7,17,0,0,3196,3197,7,14,0,0,3197,3198,7, - 10,0,0,3198,3199,7,1,0,0,3199,3200,7,4,0,0,3200,3201,7,1,0,0,3201, - 640,1,0,0,0,3202,3203,7,14,0,0,3203,3204,7,10,0,0,3204,3205,7,15, - 0,0,3205,3206,7,0,0,0,3206,3207,7,15,0,0,3207,3208,7,16,0,0,3208, - 3209,7,4,0,0,3209,642,1,0,0,0,3210,3211,7,14,0,0,3211,3212,7,10, - 0,0,3212,3213,7,12,0,0,3213,3214,7,17,0,0,3214,3215,7,10,0,0,3215, - 644,1,0,0,0,3216,3217,7,14,0,0,3217,3218,7,10,0,0,3218,3219,7,12, - 0,0,3219,3220,7,25,0,0,3220,3221,7,14,0,0,3221,3222,7,4,0,0,3222, - 646,1,0,0,0,3223,3224,7,14,0,0,3224,3225,7,10,0,0,3225,3226,7,20, - 0,0,3226,3227,7,10,0,0,3227,3228,7,17,0,0,3228,3229,7,7,0,0,3229, - 3230,7,10,0,0,3230,648,1,0,0,0,3231,3232,7,14,0,0,3232,3233,7,10, - 0,0,3233,3234,7,6,0,0,3234,3235,7,17,0,0,3235,3236,7,15,0,0,3236, - 3237,7,20,0,0,3237,650,1,0,0,0,3238,3239,7,14,0,0,3239,3240,7,10, - 0,0,3240,3241,7,22,0,0,3241,3242,7,12,0,0,3242,3243,7,13,0,0,3243, - 3244,7,17,0,0,3244,3245,7,3,0,0,3245,652,1,0,0,0,3246,3247,7,14, - 0,0,3247,3248,7,10,0,0,3248,3249,7,9,0,0,3249,3250,7,4,0,0,3250, - 3251,7,3,0,0,3251,654,1,0,0,0,3252,3253,7,14,0,0,3253,3254,7,22, - 0,0,3254,3255,7,1,0,0,3255,3256,7,0,0,0,3256,3257,7,3,0,0,3257,3258, - 7,4,0,0,3258,656,1,0,0,0,3259,3260,7,14,0,0,3260,3261,7,9,0,0,3261, - 3262,7,4,0,0,3262,658,1,0,0,0,3263,3264,7,14,0,0,3264,3265,7,9,0, - 0,3265,3266,7,4,0,0,3266,3267,7,5,0,0,3267,660,1,0,0,0,3268,3269, - 7,14,0,0,3269,3270,7,9,0,0,3270,3271,7,12,0,0,3271,3272,7,10,0,0, - 3272,3273,7,19,0,0,3273,662,1,0,0,0,3274,3275,7,13,0,0,3275,3276, - 7,0,0,0,3276,3277,7,6,0,0,3277,3278,7,14,0,0,3278,3279,7,4,0,0,3279, - 3280,7,9,0,0,3280,664,1,0,0,0,3281,3282,7,13,0,0,3282,3283,7,0,0, - 0,3283,3284,7,5,0,0,3284,3285,7,15,0,0,3285,3286,7,16,0,0,3286,3287, - 7,0,0,0,3287,3288,7,5,0,0,3288,666,1,0,0,0,3289,3290,7,13,0,0,3290, - 3291,7,0,0,0,3291,3292,7,5,0,0,3292,668,1,0,0,0,3293,3294,7,13,0, - 0,3294,3295,7,0,0,0,3295,3296,7,5,0,0,3296,3297,7,12,0,0,3297,3298, - 7,0,0,0,3298,3299,7,18,0,0,3299,3300,7,6,0,0,3300,3301,7,4,0,0,3301, - 670,1,0,0,0,3302,3303,7,13,0,0,3303,3304,7,4,0,0,3304,3305,7,5,0, - 0,3305,3306,7,9,0,0,3306,3307,7,12,0,0,3307,3308,7,17,0,0,3308,3309, - 7,10,0,0,3309,672,1,0,0,0,3310,3311,7,13,0,0,3311,3312,7,12,0,0, - 3312,3313,7,4,0,0,3313,3314,7,7,0,0,3314,674,1,0,0,0,3315,3316,7, - 13,0,0,3316,3317,7,12,0,0,3317,3318,7,4,0,0,3318,3319,7,7,0,0,3319, - 3320,7,9,0,0,3320,676,1,0,0,0,3321,3322,7,13,0,0,3322,3323,7,17, - 0,0,3323,3324,7,12,0,0,3324,3325,7,1,0,0,3325,678,1,0,0,0,3326,3327, - 7,7,0,0,3327,3328,7,4,0,0,3328,3329,7,4,0,0,3329,3330,7,20,0,0,3330, - 680,1,0,0,0,3331,3332,7,7,0,0,3332,3333,7,4,0,0,3333,3334,7,4,0, - 0,3334,3335,7,20,0,0,3335,3336,7,9,0,0,3336,682,1,0,0,0,3337,3338, - 7,7,0,0,3338,3339,7,16,0,0,3339,3340,7,4,0,0,3340,3341,7,10,0,0, - 3341,684,1,0,0,0,3342,3343,7,7,0,0,3343,3344,7,16,0,0,3344,3345, - 7,4,0,0,3345,3346,7,5,0,0,3346,3347,7,4,0,0,3347,686,1,0,0,0,3348, - 3349,7,7,0,0,3349,3350,7,12,0,0,3350,3351,7,10,0,0,3351,3352,7,1, - 0,0,3352,3353,7,17,0,0,3353,3354,7,7,0,0,3354,688,1,0,0,0,3355,3356, - 7,7,0,0,3356,3357,7,12,0,0,3357,3358,7,3,0,0,3358,3359,7,16,0,0, - 3359,690,1,0,0,0,3360,3361,7,7,0,0,3361,3362,7,12,0,0,3362,3363, - 7,3,0,0,3363,3364,7,16,0,0,3364,3365,7,12,0,0,3365,3366,7,10,0,0, - 3366,692,1,0,0,0,3367,3368,7,8,0,0,3368,3369,7,4,0,0,3369,3370,7, - 0,0,0,3370,3371,7,5,0,0,3371,694,1,0,0,0,3372,3373,7,8,0,0,3373, - 3374,7,4,0,0,3374,3375,7,0,0,0,3375,3376,7,5,0,0,3376,3377,7,9,0, - 0,3377,696,1,0,0,0,3378,3379,7,11,0,0,3379,3380,7,17,0,0,3380,3381, - 7,10,0,0,3381,3382,7,4,0,0,3382,698,1,0,0,0,3383,3384,7,11,0,0,3384, - 3385,7,17,0,0,3385,3386,7,5,0,0,3386,3387,7,1,0,0,3387,3388,7,4, - 0,0,3388,3389,7,5,0,0,3389,700,1,0,0,0,3390,3394,5,61,0,0,3391,3392, - 5,61,0,0,3392,3394,5,61,0,0,3393,3390,1,0,0,0,3393,3391,1,0,0,0, - 3394,702,1,0,0,0,3395,3396,5,60,0,0,3396,3397,5,61,0,0,3397,3398, - 5,62,0,0,3398,704,1,0,0,0,3399,3400,5,60,0,0,3400,3401,5,62,0,0, - 3401,706,1,0,0,0,3402,3403,5,33,0,0,3403,3404,5,61,0,0,3404,708, - 1,0,0,0,3405,3406,5,60,0,0,3406,710,1,0,0,0,3407,3408,5,60,0,0,3408, - 3412,5,61,0,0,3409,3410,5,33,0,0,3410,3412,5,62,0,0,3411,3407,1, - 0,0,0,3411,3409,1,0,0,0,3412,712,1,0,0,0,3413,3414,5,62,0,0,3414, - 714,1,0,0,0,3415,3416,5,62,0,0,3416,3420,5,61,0,0,3417,3418,5,33, - 0,0,3418,3420,5,60,0,0,3419,3415,1,0,0,0,3419,3417,1,0,0,0,3420, - 716,1,0,0,0,3421,3422,5,33,0,0,3422,718,1,0,0,0,3423,3424,5,43,0, - 0,3424,720,1,0,0,0,3425,3426,5,45,0,0,3426,722,1,0,0,0,3427,3428, - 5,42,0,0,3428,724,1,0,0,0,3429,3430,5,47,0,0,3430,726,1,0,0,0,3431, - 3432,5,37,0,0,3432,728,1,0,0,0,3433,3434,5,126,0,0,3434,730,1,0, - 0,0,3435,3436,5,38,0,0,3436,732,1,0,0,0,3437,3438,5,124,0,0,3438, - 734,1,0,0,0,3439,3440,5,124,0,0,3440,3441,5,124,0,0,3441,736,1,0, - 0,0,3442,3443,5,94,0,0,3443,738,1,0,0,0,3444,3445,5,58,0,0,3445, - 740,1,0,0,0,3446,3447,5,45,0,0,3447,3448,5,62,0,0,3448,742,1,0,0, - 0,3449,3450,5,61,0,0,3450,3451,5,62,0,0,3451,744,1,0,0,0,3452,3453, - 5,47,0,0,3453,3454,5,42,0,0,3454,3455,5,43,0,0,3455,746,1,0,0,0, - 3456,3457,5,42,0,0,3457,3458,5,47,0,0,3458,748,1,0,0,0,3459,3460, - 5,63,0,0,3460,750,1,0,0,0,3461,3467,5,39,0,0,3462,3466,8,26,0,0, - 3463,3464,5,92,0,0,3464,3466,9,0,0,0,3465,3462,1,0,0,0,3465,3463, - 1,0,0,0,3466,3469,1,0,0,0,3467,3465,1,0,0,0,3467,3468,1,0,0,0,3468, - 3470,1,0,0,0,3469,3467,1,0,0,0,3470,3492,5,39,0,0,3471,3472,7,5, - 0,0,3472,3473,5,39,0,0,3473,3477,1,0,0,0,3474,3476,8,27,0,0,3475, - 3474,1,0,0,0,3476,3479,1,0,0,0,3477,3475,1,0,0,0,3477,3478,1,0,0, - 0,3478,3480,1,0,0,0,3479,3477,1,0,0,0,3480,3492,5,39,0,0,3481,3482, - 7,5,0,0,3482,3483,5,34,0,0,3483,3487,1,0,0,0,3484,3486,8,28,0,0, - 3485,3484,1,0,0,0,3486,3489,1,0,0,0,3487,3485,1,0,0,0,3487,3488, - 1,0,0,0,3488,3490,1,0,0,0,3489,3487,1,0,0,0,3490,3492,5,34,0,0,3491, - 3461,1,0,0,0,3491,3471,1,0,0,0,3491,3481,1,0,0,0,3492,752,1,0,0, - 0,3493,3499,5,34,0,0,3494,3498,8,29,0,0,3495,3496,5,92,0,0,3496, - 3498,9,0,0,0,3497,3494,1,0,0,0,3497,3495,1,0,0,0,3498,3501,1,0,0, - 0,3499,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3502,1,0,0,0,3501,3499, - 1,0,0,0,3502,3503,5,34,0,0,3503,754,1,0,0,0,3504,3506,3,781,390, - 0,3505,3504,1,0,0,0,3506,3507,1,0,0,0,3507,3505,1,0,0,0,3507,3508, - 1,0,0,0,3508,3509,1,0,0,0,3509,3510,7,6,0,0,3510,756,1,0,0,0,3511, - 3513,3,781,390,0,3512,3511,1,0,0,0,3513,3514,1,0,0,0,3514,3512,1, - 0,0,0,3514,3515,1,0,0,0,3515,3516,1,0,0,0,3516,3517,7,9,0,0,3517, - 758,1,0,0,0,3518,3520,3,781,390,0,3519,3518,1,0,0,0,3520,3521,1, - 0,0,0,3521,3519,1,0,0,0,3521,3522,1,0,0,0,3522,3523,1,0,0,0,3523, - 3524,7,8,0,0,3524,760,1,0,0,0,3525,3527,3,781,390,0,3526,3525,1, - 0,0,0,3527,3528,1,0,0,0,3528,3526,1,0,0,0,3528,3529,1,0,0,0,3529, - 762,1,0,0,0,3530,3532,3,781,390,0,3531,3530,1,0,0,0,3532,3533,1, + 1,312,1,312,1,312,1,312,1,312,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,313,1,313, + 1,313,1,314,1,314,1,314,1,314,1,314,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,316,1,316,1,317,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,319,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,320,1,320,1,320,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,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,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,328,1,328,1,328,1,328,1,328,1,328, + 1,328,1,329,1,329,1,329,1,329,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,333,1,334,1,334, + 1,334,1,334,1,335,1,335,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,336,1,337,1,337,1,337, + 1,337,1,337,1,338,1,338,1,338,1,338,1,338,1,338,1,339,1,339,1,339, + 1,339,1,339,1,340,1,340,1,340,1,340,1,340,1,341,1,341,1,341,1,341, + 1,341,1,341,1,342,1,342,1,342,1,342,1,342,1,343,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,345,1,345, + 1,345,1,345,1,345,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,349, + 1,349,1,349,1,349,1,349,1,350,1,350,1,350,1,350,1,350,1,350,1,350, + 1,351,1,351,1,351,3,351,3406,8,351,1,352,1,352,1,352,1,352,1,353, + 1,353,1,353,1,354,1,354,1,354,1,355,1,355,1,356,1,356,1,356,1,356, + 3,356,3424,8,356,1,357,1,357,1,358,1,358,1,358,1,358,3,358,3432, + 8,358,1,359,1,359,1,360,1,360,1,361,1,361,1,362,1,362,1,363,1,363, + 1,364,1,364,1,365,1,365,1,366,1,366,1,367,1,367,1,368,1,368,1,368, + 1,369,1,369,1,370,1,370,1,371,1,371,1,371,1,372,1,372,1,372,1,373, + 1,373,1,373,1,373,1,374,1,374,1,374,1,375,1,375,1,376,1,376,1,376, + 1,376,5,376,3478,8,376,10,376,12,376,3481,9,376,1,376,1,376,1,376, + 1,376,1,376,5,376,3488,8,376,10,376,12,376,3491,9,376,1,376,1,376, + 1,376,1,376,1,376,5,376,3498,8,376,10,376,12,376,3501,9,376,1,376, + 3,376,3504,8,376,1,377,1,377,1,377,1,377,5,377,3510,8,377,10,377, + 12,377,3513,9,377,1,377,1,377,1,378,4,378,3518,8,378,11,378,12,378, + 3519,1,378,1,378,1,379,4,379,3525,8,379,11,379,12,379,3526,1,379, + 1,379,1,380,4,380,3532,8,380,11,380,12,380,3533,1,380,1,380,1,381, + 4,381,3539,8,381,11,381,12,381,3540,1,382,4,382,3544,8,382,11,382, + 12,382,3545,1,382,1,382,1,382,1,382,1,382,3,382,3553,8,382,1,383, + 1,383,1,384,4,384,3558,8,384,11,384,12,384,3559,1,384,3,384,3563, + 8,384,1,384,1,384,1,384,1,384,3,384,3569,8,384,1,384,1,384,3,384, + 3573,8,384,1,385,4,385,3576,8,385,11,385,12,385,3577,1,385,3,385, + 3581,8,385,1,385,1,385,1,385,1,385,3,385,3587,8,385,1,385,1,385, + 3,385,3591,8,385,1,386,4,386,3594,8,386,11,386,12,386,3595,1,386, + 3,386,3599,8,386,1,386,1,386,1,386,1,386,1,386,3,386,3606,8,386, + 1,386,1,386,1,386,3,386,3611,8,386,1,387,1,387,1,387,4,387,3616, + 8,387,11,387,12,387,3617,1,388,1,388,1,388,1,388,5,388,3624,8,388, + 10,388,12,388,3627,9,388,1,388,1,388,1,389,4,389,3632,8,389,11,389, + 12,389,3633,1,389,1,389,5,389,3638,8,389,10,389,12,389,3641,9,389, + 1,389,1,389,4,389,3645,8,389,11,389,12,389,3646,3,389,3649,8,389, + 1,390,1,390,3,390,3653,8,390,1,390,4,390,3656,8,390,11,390,12,390, + 3657,1,391,1,391,1,392,1,392,1,393,1,393,1,393,1,393,1,393,1,393, + 5,393,3670,8,393,10,393,12,393,3673,9,393,1,393,3,393,3676,8,393, + 1,393,3,393,3679,8,393,1,393,1,393,1,394,1,394,1,394,1,394,1,394, + 5,394,3688,8,394,10,394,12,394,3691,9,394,1,394,1,394,1,394,1,394, + 3,394,3697,8,394,1,394,1,394,1,395,4,395,3702,8,395,11,395,12,395, + 3703,1,395,1,395,1,396,1,396,1,3689,0,397,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,0,781,0,783,0,785,0,787,390,789,391, + 791,392,793,393,1,0,36,2,0,65,65,97,97,2,0,68,68,100,100,2,0,70, + 70,102,102,2,0,84,84,116,116,2,0,69,69,101,101,2,0,82,82,114,114, + 2,0,76,76,108,108,2,0,87,87,119,119,2,0,89,89,121,121,2,0,83,83, + 115,115,2,0,78,78,110,110,2,0,90,90,122,122,2,0,73,73,105,105,2, + 0,86,86,118,118,2,0,85,85,117,117,2,0,67,67,99,99,2,0,72,72,104, + 104,2,0,79,79,111,111,2,0,66,66,98,98,2,0,71,71,103,103,2,0,75,75, + 107,107,2,0,77,77,109,109,2,0,80,80,112,112,2,0,88,88,120,120,2, + 0,74,74,106,106,2,0,81,81,113,113,2,0,39,39,92,92,1,0,39,39,1,0, + 34,34,2,0,34,34,92,92,1,0,96,96,2,0,43,43,45,45,1,0,48,57,2,0,65, + 90,97,122,2,0,10,10,13,13,3,0,9,10,13,13,32,32,3752,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,787,1,0,0,0,0,789,1,0,0,0,0,791,1,0, + 0,0,0,793,1,0,0,0,1,795,1,0,0,0,3,797,1,0,0,0,5,799,1,0,0,0,7,801, + 1,0,0,0,9,803,1,0,0,0,11,805,1,0,0,0,13,807,1,0,0,0,15,809,1,0,0, + 0,17,813,1,0,0,0,19,819,1,0,0,0,21,823,1,0,0,0,23,829,1,0,0,0,25, + 836,1,0,0,0,27,844,1,0,0,0,29,848,1,0,0,0,31,853,1,0,0,0,33,857, + 1,0,0,0,35,867,1,0,0,0,37,875,1,0,0,0,39,881,1,0,0,0,41,884,1,0, + 0,0,43,888,1,0,0,0,45,891,1,0,0,0,47,905,1,0,0,0,49,913,1,0,0,0, + 51,920,1,0,0,0,53,927,1,0,0,0,55,935,1,0,0,0,57,940,1,0,0,0,59,947, + 1,0,0,0,61,955,1,0,0,0,63,958,1,0,0,0,65,963,1,0,0,0,67,969,1,0, + 0,0,69,977,1,0,0,0,71,982,1,0,0,0,73,987,1,0,0,0,75,995,1,0,0,0, + 77,1004,1,0,0,0,79,1011,1,0,0,0,81,1016,1,0,0,0,83,1026,1,0,0,0, + 85,1032,1,0,0,0,87,1038,1,0,0,0,89,1046,1,0,0,0,91,1056,1,0,0,0, + 93,1064,1,0,0,0,95,1072,1,0,0,0,97,1083,1,0,0,0,99,1090,1,0,0,0, + 101,1098,1,0,0,0,103,1106,1,0,0,0,105,1113,1,0,0,0,107,1121,1,0, + 0,0,109,1133,1,0,0,0,111,1141,1,0,0,0,113,1153,1,0,0,0,115,1164, + 1,0,0,0,117,1169,1,0,0,0,119,1176,1,0,0,0,121,1182,1,0,0,0,123,1187, + 1,0,0,0,125,1195,1,0,0,0,127,1208,1,0,0,0,129,1221,1,0,0,0,131,1239, + 1,0,0,0,133,1252,1,0,0,0,135,1256,1,0,0,0,137,1261,1,0,0,0,139,1271, + 1,0,0,0,141,1276,1,0,0,0,143,1281,1,0,0,0,145,1290,1,0,0,0,147,1300, + 1,0,0,0,149,1308,1,0,0,0,151,1317,1,0,0,0,153,1326,1,0,0,0,155,1336, + 1,0,0,0,157,1349,1,0,0,0,159,1353,1,0,0,0,161,1361,1,0,0,0,163,1369, + 1,0,0,0,165,1377,1,0,0,0,167,1385,1,0,0,0,169,1392,1,0,0,0,171,1402, + 1,0,0,0,173,1407,1,0,0,0,175,1416,1,0,0,0,177,1420,1,0,0,0,179,1432, + 1,0,0,0,181,1442,1,0,0,0,183,1450,1,0,0,0,185,1459,1,0,0,0,187,1470, + 1,0,0,0,189,1474,1,0,0,0,191,1481,1,0,0,0,193,1486,1,0,0,0,195,1491, + 1,0,0,0,197,1498,1,0,0,0,199,1502,1,0,0,0,201,1509,1,0,0,0,203,1517, + 1,0,0,0,205,1524,1,0,0,0,207,1533,1,0,0,0,209,1541,1,0,0,0,211,1548, + 1,0,0,0,213,1556,1,0,0,0,215,1563,1,0,0,0,217,1572,1,0,0,0,219,1581, + 1,0,0,0,221,1589,1,0,0,0,223,1595,1,0,0,0,225,1601,1,0,0,0,227,1608, + 1,0,0,0,229,1615,1,0,0,0,231,1626,1,0,0,0,233,1632,1,0,0,0,235,1638, + 1,0,0,0,237,1648,1,0,0,0,239,1652,1,0,0,0,241,1660,1,0,0,0,243,1667, + 1,0,0,0,245,1677,1,0,0,0,247,1682,1,0,0,0,249,1687,1,0,0,0,251,1696, + 1,0,0,0,253,1706,1,0,0,0,255,1716,1,0,0,0,257,1723,1,0,0,0,259,1729, + 1,0,0,0,261,1735,1,0,0,0,263,1744,1,0,0,0,265,1751,1,0,0,0,267,1753, + 1,0,0,0,269,1758,1,0,0,0,271,1764,1,0,0,0,273,1775,1,0,0,0,275,1778, + 1,0,0,0,277,1785,1,0,0,0,279,1792,1,0,0,0,281,1795,1,0,0,0,283,1803, + 1,0,0,0,285,1809,1,0,0,0,287,1817,1,0,0,0,289,1823,1,0,0,0,291,1830, + 1,0,0,0,293,1842,1,0,0,0,295,1849,1,0,0,0,297,1859,1,0,0,0,299,1868, + 1,0,0,0,301,1872,1,0,0,0,303,1880,1,0,0,0,305,1885,1,0,0,0,307,1888, + 1,0,0,0,309,1894,1,0,0,0,311,1899,1,0,0,0,313,1904,1,0,0,0,315,1909, + 1,0,0,0,317,1917,1,0,0,0,319,1922,1,0,0,0,321,1930,1,0,0,0,323,1935, + 1,0,0,0,325,1945,1,0,0,0,327,1950,1,0,0,0,329,1956,1,0,0,0,331,1962, + 1,0,0,0,333,1968,1,0,0,0,335,1973,1,0,0,0,337,1978,1,0,0,0,339,1984, + 1,0,0,0,341,1993,1,0,0,0,343,1998,1,0,0,0,345,2004,1,0,0,0,347,2012, + 1,0,0,0,349,2017,1,0,0,0,351,2023,1,0,0,0,353,2036,1,0,0,0,355,2040, + 1,0,0,0,357,2048,1,0,0,0,359,2054,1,0,0,0,361,2066,1,0,0,0,363,2079, + 1,0,0,0,365,2091,1,0,0,0,367,2104,1,0,0,0,369,2111,1,0,0,0,371,2119, + 1,0,0,0,373,2125,1,0,0,0,375,2132,1,0,0,0,377,2137,1,0,0,0,379,2142, + 1,0,0,0,381,2152,1,0,0,0,383,2163,1,0,0,0,385,2174,1,0,0,0,387,2186, + 1,0,0,0,389,2194,1,0,0,0,391,2197,1,0,0,0,393,2204,1,0,0,0,395,2208, + 1,0,0,0,397,2213,1,0,0,0,399,2219,1,0,0,0,401,2227,1,0,0,0,403,2230, + 1,0,0,0,405,2237,1,0,0,0,407,2240,1,0,0,0,409,2245,1,0,0,0,411,2254, + 1,0,0,0,413,2261,1,0,0,0,415,2269,1,0,0,0,417,2272,1,0,0,0,419,2278, + 1,0,0,0,421,2282,1,0,0,0,423,2288,1,0,0,0,425,2301,1,0,0,0,427,2306, + 1,0,0,0,429,2315,1,0,0,0,431,2323,1,0,0,0,433,2333,1,0,0,0,435,2343, + 1,0,0,0,437,2355,1,0,0,0,439,2366,1,0,0,0,441,2382,1,0,0,0,443,2398, + 1,0,0,0,445,2406,1,0,0,0,447,2412,1,0,0,0,449,2420,1,0,0,0,451,2429, + 1,0,0,0,453,2439,1,0,0,0,455,2447,1,0,0,0,457,2458,1,0,0,0,459,2469, + 1,0,0,0,461,2475,1,0,0,0,463,2483,1,0,0,0,465,2489,1,0,0,0,467,2495, + 1,0,0,0,469,2500,1,0,0,0,471,2513,1,0,0,0,473,2526,1,0,0,0,475,2534, + 1,0,0,0,477,2541,1,0,0,0,479,2552,1,0,0,0,481,2560,1,0,0,0,483,2567, + 1,0,0,0,485,2574,1,0,0,0,487,2585,1,0,0,0,489,2593,1,0,0,0,491,2599, + 1,0,0,0,493,2607,1,0,0,0,495,2616,1,0,0,0,497,2624,1,0,0,0,499,2631, + 1,0,0,0,501,2637,1,0,0,0,503,2643,1,0,0,0,505,2650,1,0,0,0,507,2655, + 1,0,0,0,509,2661,1,0,0,0,511,2670,1,0,0,0,513,2677,1,0,0,0,515,2681, + 1,0,0,0,517,2686,1,0,0,0,519,2693,1,0,0,0,521,2701,1,0,0,0,523,2708, + 1,0,0,0,525,2716,1,0,0,0,527,2723,1,0,0,0,529,2728,1,0,0,0,531,2738, + 1,0,0,0,533,2744,1,0,0,0,535,2760,1,0,0,0,537,2773,1,0,0,0,539,2777, + 1,0,0,0,541,2783,1,0,0,0,543,2788,1,0,0,0,545,2794,1,0,0,0,547,2799, + 1,0,0,0,549,2806,1,0,0,0,551,2813,1,0,0,0,553,2822,1,0,0,0,555,2827, + 1,0,0,0,557,2832,1,0,0,0,559,2839,1,0,0,0,561,2846,1,0,0,0,563,2852, + 1,0,0,0,565,2863,1,0,0,0,567,2870,1,0,0,0,569,2879,1,0,0,0,571,2886, + 1,0,0,0,573,2893,1,0,0,0,575,2900,1,0,0,0,577,2910,1,0,0,0,579,2915, + 1,0,0,0,581,2922,1,0,0,0,583,2934,1,0,0,0,585,2949,1,0,0,0,587,2955, + 1,0,0,0,589,2962,1,0,0,0,591,2974,1,0,0,0,593,2981,1,0,0,0,595,2995, + 1,0,0,0,597,3005,1,0,0,0,599,3016,1,0,0,0,601,3021,1,0,0,0,603,3026, + 1,0,0,0,605,3035,1,0,0,0,607,3045,1,0,0,0,609,3059,1,0,0,0,611,3073, + 1,0,0,0,613,3086,1,0,0,0,615,3100,1,0,0,0,617,3108,1,0,0,0,619,3111, + 1,0,0,0,621,3117,1,0,0,0,623,3126,1,0,0,0,625,3138,1,0,0,0,627,3151, + 1,0,0,0,629,3161,1,0,0,0,631,3166,1,0,0,0,633,3171,1,0,0,0,635,3180, + 1,0,0,0,637,3189,1,0,0,0,639,3194,1,0,0,0,641,3204,1,0,0,0,643,3214, + 1,0,0,0,645,3222,1,0,0,0,647,3228,1,0,0,0,649,3235,1,0,0,0,651,3243, + 1,0,0,0,653,3250,1,0,0,0,655,3258,1,0,0,0,657,3264,1,0,0,0,659,3271, + 1,0,0,0,661,3275,1,0,0,0,663,3280,1,0,0,0,665,3286,1,0,0,0,667,3293, + 1,0,0,0,669,3301,1,0,0,0,671,3305,1,0,0,0,673,3314,1,0,0,0,675,3322, + 1,0,0,0,677,3327,1,0,0,0,679,3333,1,0,0,0,681,3338,1,0,0,0,683,3343, + 1,0,0,0,685,3349,1,0,0,0,687,3354,1,0,0,0,689,3360,1,0,0,0,691,3367, + 1,0,0,0,693,3372,1,0,0,0,695,3379,1,0,0,0,697,3384,1,0,0,0,699,3390, + 1,0,0,0,701,3395,1,0,0,0,703,3405,1,0,0,0,705,3407,1,0,0,0,707,3411, + 1,0,0,0,709,3414,1,0,0,0,711,3417,1,0,0,0,713,3423,1,0,0,0,715,3425, + 1,0,0,0,717,3431,1,0,0,0,719,3433,1,0,0,0,721,3435,1,0,0,0,723,3437, + 1,0,0,0,725,3439,1,0,0,0,727,3441,1,0,0,0,729,3443,1,0,0,0,731,3445, + 1,0,0,0,733,3447,1,0,0,0,735,3449,1,0,0,0,737,3451,1,0,0,0,739,3454, + 1,0,0,0,741,3456,1,0,0,0,743,3458,1,0,0,0,745,3461,1,0,0,0,747,3464, + 1,0,0,0,749,3468,1,0,0,0,751,3471,1,0,0,0,753,3503,1,0,0,0,755,3505, + 1,0,0,0,757,3517,1,0,0,0,759,3524,1,0,0,0,761,3531,1,0,0,0,763,3538, + 1,0,0,0,765,3552,1,0,0,0,767,3554,1,0,0,0,769,3572,1,0,0,0,771,3590, + 1,0,0,0,773,3610,1,0,0,0,775,3615,1,0,0,0,777,3619,1,0,0,0,779,3648, + 1,0,0,0,781,3650,1,0,0,0,783,3659,1,0,0,0,785,3661,1,0,0,0,787,3663, + 1,0,0,0,789,3682,1,0,0,0,791,3701,1,0,0,0,793,3707,1,0,0,0,795,796, + 5,59,0,0,796,2,1,0,0,0,797,798,5,40,0,0,798,4,1,0,0,0,799,800,5, + 41,0,0,800,6,1,0,0,0,801,802,5,44,0,0,802,8,1,0,0,0,803,804,5,46, + 0,0,804,10,1,0,0,0,805,806,5,91,0,0,806,12,1,0,0,0,807,808,5,93, + 0,0,808,14,1,0,0,0,809,810,7,0,0,0,810,811,7,1,0,0,811,812,7,1,0, + 0,812,16,1,0,0,0,813,814,7,0,0,0,814,815,7,2,0,0,815,816,7,3,0,0, + 816,817,7,4,0,0,817,818,7,5,0,0,818,18,1,0,0,0,819,820,7,0,0,0,820, + 821,7,6,0,0,821,822,7,6,0,0,822,20,1,0,0,0,823,824,7,0,0,0,824,825, + 7,6,0,0,825,826,7,3,0,0,826,827,7,4,0,0,827,828,7,5,0,0,828,22,1, + 0,0,0,829,830,7,0,0,0,830,831,7,6,0,0,831,832,7,7,0,0,832,833,7, + 0,0,0,833,834,7,8,0,0,834,835,7,9,0,0,835,24,1,0,0,0,836,837,7,0, + 0,0,837,838,7,10,0,0,838,839,7,0,0,0,839,840,7,6,0,0,840,841,7,8, + 0,0,841,842,7,11,0,0,842,843,7,4,0,0,843,26,1,0,0,0,844,845,7,0, + 0,0,845,846,7,10,0,0,846,847,7,1,0,0,847,28,1,0,0,0,848,849,7,0, + 0,0,849,850,7,10,0,0,850,851,7,3,0,0,851,852,7,12,0,0,852,30,1,0, + 0,0,853,854,7,0,0,0,854,855,7,10,0,0,855,856,7,8,0,0,856,32,1,0, + 0,0,857,858,7,0,0,0,858,859,7,10,0,0,859,860,7,8,0,0,860,861,5,95, + 0,0,861,862,7,13,0,0,862,863,7,0,0,0,863,864,7,6,0,0,864,865,7,14, + 0,0,865,866,7,4,0,0,866,34,1,0,0,0,867,868,7,0,0,0,868,869,7,5,0, + 0,869,870,7,15,0,0,870,871,7,16,0,0,871,872,7,12,0,0,872,873,7,13, + 0,0,873,874,7,4,0,0,874,36,1,0,0,0,875,876,7,0,0,0,876,877,7,5,0, + 0,877,878,7,5,0,0,878,879,7,0,0,0,879,880,7,8,0,0,880,38,1,0,0,0, + 881,882,7,0,0,0,882,883,7,9,0,0,883,40,1,0,0,0,884,885,7,0,0,0,885, + 886,7,9,0,0,886,887,7,15,0,0,887,42,1,0,0,0,888,889,7,0,0,0,889, + 890,7,3,0,0,890,44,1,0,0,0,891,892,7,0,0,0,892,893,7,14,0,0,893, + 894,7,3,0,0,894,895,7,16,0,0,895,896,7,17,0,0,896,897,7,5,0,0,897, + 898,7,12,0,0,898,899,7,11,0,0,899,900,7,0,0,0,900,901,7,3,0,0,901, + 902,7,12,0,0,902,903,7,17,0,0,903,904,7,10,0,0,904,46,1,0,0,0,905, + 906,7,18,0,0,906,907,7,4,0,0,907,908,7,3,0,0,908,909,7,7,0,0,909, + 910,7,4,0,0,910,911,7,4,0,0,911,912,7,10,0,0,912,48,1,0,0,0,913, + 914,7,18,0,0,914,915,7,12,0,0,915,916,7,19,0,0,916,917,7,12,0,0, + 917,918,7,10,0,0,918,919,7,3,0,0,919,50,1,0,0,0,920,921,7,18,0,0, + 921,922,7,12,0,0,922,923,7,10,0,0,923,924,7,0,0,0,924,925,7,5,0, + 0,925,926,7,8,0,0,926,52,1,0,0,0,927,928,7,18,0,0,928,929,7,17,0, + 0,929,930,7,17,0,0,930,931,7,6,0,0,931,932,7,4,0,0,932,933,7,0,0, + 0,933,934,7,10,0,0,934,54,1,0,0,0,935,936,7,18,0,0,936,937,7,17, + 0,0,937,938,7,3,0,0,938,939,7,16,0,0,939,56,1,0,0,0,940,941,7,18, + 0,0,941,942,7,14,0,0,942,943,7,15,0,0,943,944,7,20,0,0,944,945,7, + 4,0,0,945,946,7,3,0,0,946,58,1,0,0,0,947,948,7,18,0,0,948,949,7, + 14,0,0,949,950,7,15,0,0,950,951,7,20,0,0,951,952,7,4,0,0,952,953, + 7,3,0,0,953,954,7,9,0,0,954,60,1,0,0,0,955,956,7,18,0,0,956,957, + 7,8,0,0,957,62,1,0,0,0,958,959,7,18,0,0,959,960,7,8,0,0,960,961, + 7,3,0,0,961,962,7,4,0,0,962,64,1,0,0,0,963,964,7,15,0,0,964,965, + 7,0,0,0,965,966,7,15,0,0,966,967,7,16,0,0,967,968,7,4,0,0,968,66, + 1,0,0,0,969,970,7,15,0,0,970,971,7,0,0,0,971,972,7,9,0,0,972,973, + 7,15,0,0,973,974,7,0,0,0,974,975,7,1,0,0,975,976,7,4,0,0,976,68, + 1,0,0,0,977,978,7,15,0,0,978,979,7,0,0,0,979,980,7,9,0,0,980,981, + 7,4,0,0,981,70,1,0,0,0,982,983,7,15,0,0,983,984,7,0,0,0,984,985, + 7,9,0,0,985,986,7,3,0,0,986,72,1,0,0,0,987,988,7,15,0,0,988,989, + 7,0,0,0,989,990,7,3,0,0,990,991,7,0,0,0,991,992,7,6,0,0,992,993, + 7,17,0,0,993,994,7,19,0,0,994,74,1,0,0,0,995,996,7,15,0,0,996,997, + 7,0,0,0,997,998,7,3,0,0,998,999,7,0,0,0,999,1000,7,6,0,0,1000,1001, + 7,17,0,0,1001,1002,7,19,0,0,1002,1003,7,9,0,0,1003,76,1,0,0,0,1004, + 1005,7,15,0,0,1005,1006,7,16,0,0,1006,1007,7,0,0,0,1007,1008,7,10, + 0,0,1008,1009,7,19,0,0,1009,1010,7,4,0,0,1010,78,1,0,0,0,1011,1012, + 7,15,0,0,1012,1013,7,16,0,0,1013,1014,7,0,0,0,1014,1015,7,5,0,0, + 1015,80,1,0,0,0,1016,1017,7,15,0,0,1017,1018,7,16,0,0,1018,1019, + 7,0,0,0,1019,1020,7,5,0,0,1020,1021,7,0,0,0,1021,1022,7,15,0,0,1022, + 1023,7,3,0,0,1023,1024,7,4,0,0,1024,1025,7,5,0,0,1025,82,1,0,0,0, + 1026,1027,7,15,0,0,1027,1028,7,16,0,0,1028,1029,7,4,0,0,1029,1030, + 7,15,0,0,1030,1031,7,20,0,0,1031,84,1,0,0,0,1032,1033,7,15,0,0,1033, + 1034,7,6,0,0,1034,1035,7,4,0,0,1035,1036,7,0,0,0,1036,1037,7,5,0, + 0,1037,86,1,0,0,0,1038,1039,7,15,0,0,1039,1040,7,6,0,0,1040,1041, + 7,14,0,0,1041,1042,7,9,0,0,1042,1043,7,3,0,0,1043,1044,7,4,0,0,1044, + 1045,7,5,0,0,1045,88,1,0,0,0,1046,1047,7,15,0,0,1047,1048,7,6,0, + 0,1048,1049,7,14,0,0,1049,1050,7,9,0,0,1050,1051,7,3,0,0,1051,1052, + 7,4,0,0,1052,1053,7,5,0,0,1053,1054,7,4,0,0,1054,1055,7,1,0,0,1055, + 90,1,0,0,0,1056,1057,7,15,0,0,1057,1058,7,17,0,0,1058,1059,7,1,0, + 0,1059,1060,7,4,0,0,1060,1061,7,19,0,0,1061,1062,7,4,0,0,1062,1063, + 7,10,0,0,1063,92,1,0,0,0,1064,1065,7,15,0,0,1065,1066,7,17,0,0,1066, + 1067,7,6,0,0,1067,1068,7,6,0,0,1068,1069,7,0,0,0,1069,1070,7,3,0, + 0,1070,1071,7,4,0,0,1071,94,1,0,0,0,1072,1073,7,15,0,0,1073,1074, + 7,17,0,0,1074,1075,7,6,0,0,1075,1076,7,6,0,0,1076,1077,7,4,0,0,1077, + 1078,7,15,0,0,1078,1079,7,3,0,0,1079,1080,7,12,0,0,1080,1081,7,17, + 0,0,1081,1082,7,10,0,0,1082,96,1,0,0,0,1083,1084,7,15,0,0,1084,1085, + 7,17,0,0,1085,1086,7,6,0,0,1086,1087,7,14,0,0,1087,1088,7,21,0,0, + 1088,1089,7,10,0,0,1089,98,1,0,0,0,1090,1091,7,15,0,0,1091,1092, + 7,17,0,0,1092,1093,7,6,0,0,1093,1094,7,14,0,0,1094,1095,7,21,0,0, + 1095,1096,7,10,0,0,1096,1097,7,9,0,0,1097,100,1,0,0,0,1098,1099, + 7,15,0,0,1099,1100,7,17,0,0,1100,1101,7,21,0,0,1101,1102,7,21,0, + 0,1102,1103,7,4,0,0,1103,1104,7,10,0,0,1104,1105,7,3,0,0,1105,102, + 1,0,0,0,1106,1107,7,15,0,0,1107,1108,7,17,0,0,1108,1109,7,21,0,0, + 1109,1110,7,21,0,0,1110,1111,7,12,0,0,1111,1112,7,3,0,0,1112,104, + 1,0,0,0,1113,1114,7,15,0,0,1114,1115,7,17,0,0,1115,1116,7,21,0,0, + 1116,1117,7,22,0,0,1117,1118,7,0,0,0,1118,1119,7,15,0,0,1119,1120, + 7,3,0,0,1120,106,1,0,0,0,1121,1122,7,15,0,0,1122,1123,7,17,0,0,1123, + 1124,7,21,0,0,1124,1125,7,22,0,0,1125,1126,7,0,0,0,1126,1127,7,15, + 0,0,1127,1128,7,3,0,0,1128,1129,7,12,0,0,1129,1130,7,17,0,0,1130, + 1131,7,10,0,0,1131,1132,7,9,0,0,1132,108,1,0,0,0,1133,1134,7,15, + 0,0,1134,1135,7,17,0,0,1135,1136,7,21,0,0,1136,1137,7,22,0,0,1137, + 1138,7,14,0,0,1138,1139,7,3,0,0,1139,1140,7,4,0,0,1140,110,1,0,0, + 0,1141,1142,7,15,0,0,1142,1143,7,17,0,0,1143,1144,7,10,0,0,1144, + 1145,7,15,0,0,1145,1146,7,0,0,0,1146,1147,7,3,0,0,1147,1148,7,4, + 0,0,1148,1149,7,10,0,0,1149,1150,7,0,0,0,1150,1151,7,3,0,0,1151, + 1152,7,4,0,0,1152,112,1,0,0,0,1153,1154,7,15,0,0,1154,1155,7,17, + 0,0,1155,1156,7,10,0,0,1156,1157,7,9,0,0,1157,1158,7,3,0,0,1158, + 1159,7,5,0,0,1159,1160,7,0,0,0,1160,1161,7,12,0,0,1161,1162,7,10, + 0,0,1162,1163,7,3,0,0,1163,114,1,0,0,0,1164,1165,7,15,0,0,1165,1166, + 7,17,0,0,1166,1167,7,9,0,0,1167,1168,7,3,0,0,1168,116,1,0,0,0,1169, + 1170,7,15,0,0,1170,1171,7,5,0,0,1171,1172,7,4,0,0,1172,1173,7,0, + 0,0,1173,1174,7,3,0,0,1174,1175,7,4,0,0,1175,118,1,0,0,0,1176,1177, + 7,15,0,0,1177,1178,7,5,0,0,1178,1179,7,17,0,0,1179,1180,7,9,0,0, + 1180,1181,7,9,0,0,1181,120,1,0,0,0,1182,1183,7,15,0,0,1183,1184, + 7,14,0,0,1184,1185,7,18,0,0,1185,1186,7,4,0,0,1186,122,1,0,0,0,1187, + 1188,7,15,0,0,1188,1189,7,14,0,0,1189,1190,7,5,0,0,1190,1191,7,5, + 0,0,1191,1192,7,4,0,0,1192,1193,7,10,0,0,1193,1194,7,3,0,0,1194, + 124,1,0,0,0,1195,1196,7,15,0,0,1196,1197,7,14,0,0,1197,1198,7,5, + 0,0,1198,1199,7,5,0,0,1199,1200,7,4,0,0,1200,1201,7,10,0,0,1201, + 1202,7,3,0,0,1202,1203,5,95,0,0,1203,1204,7,1,0,0,1204,1205,7,0, + 0,0,1205,1206,7,3,0,0,1206,1207,7,4,0,0,1207,126,1,0,0,0,1208,1209, + 7,15,0,0,1209,1210,7,14,0,0,1210,1211,7,5,0,0,1211,1212,7,5,0,0, + 1212,1213,7,4,0,0,1213,1214,7,10,0,0,1214,1215,7,3,0,0,1215,1216, + 5,95,0,0,1216,1217,7,3,0,0,1217,1218,7,12,0,0,1218,1219,7,21,0,0, + 1219,1220,7,4,0,0,1220,128,1,0,0,0,1221,1222,7,15,0,0,1222,1223, + 7,14,0,0,1223,1224,7,5,0,0,1224,1225,7,5,0,0,1225,1226,7,4,0,0,1226, + 1227,7,10,0,0,1227,1228,7,3,0,0,1228,1229,5,95,0,0,1229,1230,7,3, + 0,0,1230,1231,7,12,0,0,1231,1232,7,21,0,0,1232,1233,7,4,0,0,1233, + 1234,7,9,0,0,1234,1235,7,3,0,0,1235,1236,7,0,0,0,1236,1237,7,21, + 0,0,1237,1238,7,22,0,0,1238,130,1,0,0,0,1239,1240,7,15,0,0,1240, + 1241,7,14,0,0,1241,1242,7,5,0,0,1242,1243,7,5,0,0,1243,1244,7,4, + 0,0,1244,1245,7,10,0,0,1245,1246,7,3,0,0,1246,1247,5,95,0,0,1247, + 1248,7,14,0,0,1248,1249,7,9,0,0,1249,1250,7,4,0,0,1250,1251,7,5, + 0,0,1251,132,1,0,0,0,1252,1253,7,1,0,0,1253,1254,7,0,0,0,1254,1255, + 7,8,0,0,1255,134,1,0,0,0,1256,1257,7,1,0,0,1257,1258,7,0,0,0,1258, + 1259,7,8,0,0,1259,1260,7,9,0,0,1260,136,1,0,0,0,1261,1262,7,1,0, + 0,1262,1263,7,0,0,0,1263,1264,7,8,0,0,1264,1265,7,17,0,0,1265,1266, + 7,2,0,0,1266,1267,7,8,0,0,1267,1268,7,4,0,0,1268,1269,7,0,0,0,1269, + 1270,7,5,0,0,1270,138,1,0,0,0,1271,1272,7,1,0,0,1272,1273,7,0,0, + 0,1273,1274,7,3,0,0,1274,1275,7,0,0,0,1275,140,1,0,0,0,1276,1277, + 7,1,0,0,1277,1278,7,0,0,0,1278,1279,7,3,0,0,1279,1280,7,4,0,0,1280, + 142,1,0,0,0,1281,1282,7,1,0,0,1282,1283,7,0,0,0,1283,1284,7,3,0, + 0,1284,1285,7,0,0,0,1285,1286,7,18,0,0,1286,1287,7,0,0,0,1287,1288, + 7,9,0,0,1288,1289,7,4,0,0,1289,144,1,0,0,0,1290,1291,7,1,0,0,1291, + 1292,7,0,0,0,1292,1293,7,3,0,0,1293,1294,7,0,0,0,1294,1295,7,18, + 0,0,1295,1296,7,0,0,0,1296,1297,7,9,0,0,1297,1298,7,4,0,0,1298,1299, + 7,9,0,0,1299,146,1,0,0,0,1300,1301,7,1,0,0,1301,1302,7,0,0,0,1302, + 1303,7,3,0,0,1303,1304,7,4,0,0,1304,1305,7,0,0,0,1305,1306,7,1,0, + 0,1306,1307,7,1,0,0,1307,148,1,0,0,0,1308,1309,7,1,0,0,1309,1310, + 7,0,0,0,1310,1311,7,3,0,0,1311,1312,7,4,0,0,1312,1313,5,95,0,0,1313, + 1314,7,0,0,0,1314,1315,7,1,0,0,1315,1316,7,1,0,0,1316,150,1,0,0, + 0,1317,1318,7,1,0,0,1318,1319,7,0,0,0,1319,1320,7,3,0,0,1320,1321, + 7,4,0,0,1321,1322,7,1,0,0,1322,1323,7,12,0,0,1323,1324,7,2,0,0,1324, + 1325,7,2,0,0,1325,152,1,0,0,0,1326,1327,7,1,0,0,1327,1328,7,0,0, + 0,1328,1329,7,3,0,0,1329,1330,7,4,0,0,1330,1331,5,95,0,0,1331,1332, + 7,1,0,0,1332,1333,7,12,0,0,1333,1334,7,2,0,0,1334,1335,7,2,0,0,1335, + 154,1,0,0,0,1336,1337,7,1,0,0,1337,1338,7,18,0,0,1338,1339,7,22, + 0,0,1339,1340,7,5,0,0,1340,1341,7,17,0,0,1341,1342,7,22,0,0,1342, + 1343,7,4,0,0,1343,1344,7,5,0,0,1344,1345,7,3,0,0,1345,1346,7,12, + 0,0,1346,1347,7,4,0,0,1347,1348,7,9,0,0,1348,156,1,0,0,0,1349,1350, + 7,1,0,0,1350,1351,7,4,0,0,1351,1352,7,15,0,0,1352,158,1,0,0,0,1353, + 1354,7,1,0,0,1354,1355,7,4,0,0,1355,1356,7,15,0,0,1356,1357,7,12, + 0,0,1357,1358,7,21,0,0,1358,1359,7,0,0,0,1359,1360,7,6,0,0,1360, + 160,1,0,0,0,1361,1362,7,1,0,0,1362,1363,7,4,0,0,1363,1364,7,15,0, + 0,1364,1365,7,6,0,0,1365,1366,7,0,0,0,1366,1367,7,5,0,0,1367,1368, + 7,4,0,0,1368,162,1,0,0,0,1369,1370,7,1,0,0,1370,1371,7,4,0,0,1371, + 1372,7,2,0,0,1372,1373,7,0,0,0,1373,1374,7,14,0,0,1374,1375,7,6, + 0,0,1375,1376,7,3,0,0,1376,164,1,0,0,0,1377,1378,7,1,0,0,1378,1379, + 7,4,0,0,1379,1380,7,2,0,0,1380,1381,7,12,0,0,1381,1382,7,10,0,0, + 1382,1383,7,4,0,0,1383,1384,7,1,0,0,1384,166,1,0,0,0,1385,1386,7, + 1,0,0,1386,1387,7,4,0,0,1387,1388,7,6,0,0,1388,1389,7,4,0,0,1389, + 1390,7,3,0,0,1390,1391,7,4,0,0,1391,168,1,0,0,0,1392,1393,7,1,0, + 0,1393,1394,7,4,0,0,1394,1395,7,6,0,0,1395,1396,7,12,0,0,1396,1397, + 7,21,0,0,1397,1398,7,12,0,0,1398,1399,7,3,0,0,1399,1400,7,4,0,0, + 1400,1401,7,1,0,0,1401,170,1,0,0,0,1402,1403,7,1,0,0,1403,1404,7, + 4,0,0,1404,1405,7,9,0,0,1405,1406,7,15,0,0,1406,172,1,0,0,0,1407, + 1408,7,1,0,0,1408,1409,7,4,0,0,1409,1410,7,9,0,0,1410,1411,7,15, + 0,0,1411,1412,7,5,0,0,1412,1413,7,12,0,0,1413,1414,7,18,0,0,1414, + 1415,7,4,0,0,1415,174,1,0,0,0,1416,1417,7,1,0,0,1417,1418,7,2,0, + 0,1418,1419,7,9,0,0,1419,176,1,0,0,0,1420,1421,7,1,0,0,1421,1422, + 7,12,0,0,1422,1423,7,5,0,0,1423,1424,7,4,0,0,1424,1425,7,15,0,0, + 1425,1426,7,3,0,0,1426,1427,7,17,0,0,1427,1428,7,5,0,0,1428,1429, + 7,12,0,0,1429,1430,7,4,0,0,1430,1431,7,9,0,0,1431,178,1,0,0,0,1432, + 1433,7,1,0,0,1433,1434,7,12,0,0,1434,1435,7,5,0,0,1435,1436,7,4, + 0,0,1436,1437,7,15,0,0,1437,1438,7,3,0,0,1438,1439,7,17,0,0,1439, + 1440,7,5,0,0,1440,1441,7,8,0,0,1441,180,1,0,0,0,1442,1443,7,1,0, + 0,1443,1444,7,12,0,0,1444,1445,7,9,0,0,1445,1446,7,0,0,0,1446,1447, + 7,18,0,0,1447,1448,7,6,0,0,1448,1449,7,4,0,0,1449,182,1,0,0,0,1450, + 1451,7,1,0,0,1451,1452,7,12,0,0,1452,1453,7,9,0,0,1453,1454,7,3, + 0,0,1454,1455,7,12,0,0,1455,1456,7,10,0,0,1456,1457,7,15,0,0,1457, + 1458,7,3,0,0,1458,184,1,0,0,0,1459,1460,7,1,0,0,1460,1461,7,12,0, + 0,1461,1462,7,9,0,0,1462,1463,7,3,0,0,1463,1464,7,5,0,0,1464,1465, + 7,12,0,0,1465,1466,7,18,0,0,1466,1467,7,14,0,0,1467,1468,7,3,0,0, + 1468,1469,7,4,0,0,1469,186,1,0,0,0,1470,1471,7,1,0,0,1471,1472,7, + 12,0,0,1472,1473,7,13,0,0,1473,188,1,0,0,0,1474,1475,7,1,0,0,1475, + 1476,7,17,0,0,1476,1477,7,14,0,0,1477,1478,7,18,0,0,1478,1479,7, + 6,0,0,1479,1480,7,4,0,0,1480,190,1,0,0,0,1481,1482,7,1,0,0,1482, + 1483,7,5,0,0,1483,1484,7,17,0,0,1484,1485,7,22,0,0,1485,192,1,0, + 0,0,1486,1487,7,4,0,0,1487,1488,7,6,0,0,1488,1489,7,9,0,0,1489,1490, + 7,4,0,0,1490,194,1,0,0,0,1491,1492,7,4,0,0,1492,1493,7,10,0,0,1493, + 1494,7,0,0,0,1494,1495,7,18,0,0,1495,1496,7,6,0,0,1496,1497,7,4, + 0,0,1497,196,1,0,0,0,1498,1499,7,4,0,0,1499,1500,7,10,0,0,1500,1501, + 7,1,0,0,1501,198,1,0,0,0,1502,1503,7,4,0,0,1503,1504,7,9,0,0,1504, + 1505,7,15,0,0,1505,1506,7,0,0,0,1506,1507,7,22,0,0,1507,1508,7,4, + 0,0,1508,200,1,0,0,0,1509,1510,7,4,0,0,1510,1511,7,9,0,0,1511,1512, + 7,15,0,0,1512,1513,7,0,0,0,1513,1514,7,22,0,0,1514,1515,7,4,0,0, + 1515,1516,7,1,0,0,1516,202,1,0,0,0,1517,1518,7,4,0,0,1518,1519,7, + 23,0,0,1519,1520,7,15,0,0,1520,1521,7,4,0,0,1521,1522,7,22,0,0,1522, + 1523,7,3,0,0,1523,204,1,0,0,0,1524,1525,7,4,0,0,1525,1526,7,23,0, + 0,1526,1527,7,15,0,0,1527,1528,7,16,0,0,1528,1529,7,0,0,0,1529,1530, + 7,10,0,0,1530,1531,7,19,0,0,1531,1532,7,4,0,0,1532,206,1,0,0,0,1533, + 1534,7,4,0,0,1534,1535,7,23,0,0,1535,1536,7,15,0,0,1536,1537,7,6, + 0,0,1537,1538,7,14,0,0,1538,1539,7,1,0,0,1539,1540,7,4,0,0,1540, + 208,1,0,0,0,1541,1542,7,4,0,0,1542,1543,7,23,0,0,1543,1544,7,12, + 0,0,1544,1545,7,9,0,0,1545,1546,7,3,0,0,1546,1547,7,9,0,0,1547,210, + 1,0,0,0,1548,1549,7,4,0,0,1549,1550,7,23,0,0,1550,1551,7,22,0,0, + 1551,1552,7,6,0,0,1552,1553,7,0,0,0,1553,1554,7,12,0,0,1554,1555, + 7,10,0,0,1555,212,1,0,0,0,1556,1557,7,4,0,0,1557,1558,7,23,0,0,1558, + 1559,7,22,0,0,1559,1560,7,17,0,0,1560,1561,7,5,0,0,1561,1562,7,3, + 0,0,1562,214,1,0,0,0,1563,1564,7,4,0,0,1564,1565,7,23,0,0,1565,1566, + 7,3,0,0,1566,1567,7,4,0,0,1567,1568,7,10,0,0,1568,1569,7,1,0,0,1569, + 1570,7,4,0,0,1570,1571,7,1,0,0,1571,216,1,0,0,0,1572,1573,7,4,0, + 0,1573,1574,7,23,0,0,1574,1575,7,3,0,0,1575,1576,7,4,0,0,1576,1577, + 7,5,0,0,1577,1578,7,10,0,0,1578,1579,7,0,0,0,1579,1580,7,6,0,0,1580, + 218,1,0,0,0,1581,1582,7,4,0,0,1582,1583,7,23,0,0,1583,1584,7,3,0, + 0,1584,1585,7,5,0,0,1585,1586,7,0,0,0,1586,1587,7,15,0,0,1587,1588, + 7,3,0,0,1588,220,1,0,0,0,1589,1590,7,2,0,0,1590,1591,7,0,0,0,1591, + 1592,7,6,0,0,1592,1593,7,9,0,0,1593,1594,7,4,0,0,1594,222,1,0,0, + 0,1595,1596,7,2,0,0,1596,1597,7,4,0,0,1597,1598,7,3,0,0,1598,1599, + 7,15,0,0,1599,1600,7,16,0,0,1600,224,1,0,0,0,1601,1602,7,2,0,0,1602, + 1603,7,12,0,0,1603,1604,7,4,0,0,1604,1605,7,6,0,0,1605,1606,7,1, + 0,0,1606,1607,7,9,0,0,1607,226,1,0,0,0,1608,1609,7,2,0,0,1609,1610, + 7,12,0,0,1610,1611,7,6,0,0,1611,1612,7,3,0,0,1612,1613,7,4,0,0,1613, + 1614,7,5,0,0,1614,228,1,0,0,0,1615,1616,7,2,0,0,1616,1617,7,12,0, + 0,1617,1618,7,6,0,0,1618,1619,7,4,0,0,1619,1620,7,2,0,0,1620,1621, + 7,17,0,0,1621,1622,7,5,0,0,1622,1623,7,21,0,0,1623,1624,7,0,0,0, + 1624,1625,7,3,0,0,1625,230,1,0,0,0,1626,1627,7,2,0,0,1627,1628,7, + 12,0,0,1628,1629,7,5,0,0,1629,1630,7,9,0,0,1630,1631,7,3,0,0,1631, + 232,1,0,0,0,1632,1633,7,2,0,0,1633,1634,7,6,0,0,1634,1635,7,17,0, + 0,1635,1636,7,0,0,0,1636,1637,7,3,0,0,1637,234,1,0,0,0,1638,1639, + 7,2,0,0,1639,1640,7,17,0,0,1640,1641,7,6,0,0,1641,1642,7,6,0,0,1642, + 1643,7,17,0,0,1643,1644,7,7,0,0,1644,1645,7,12,0,0,1645,1646,7,10, + 0,0,1646,1647,7,19,0,0,1647,236,1,0,0,0,1648,1649,7,2,0,0,1649,1650, + 7,17,0,0,1650,1651,7,5,0,0,1651,238,1,0,0,0,1652,1653,7,2,0,0,1653, + 1654,7,17,0,0,1654,1655,7,5,0,0,1655,1656,7,4,0,0,1656,1657,7,12, + 0,0,1657,1658,7,19,0,0,1658,1659,7,10,0,0,1659,240,1,0,0,0,1660, + 1661,7,2,0,0,1661,1662,7,17,0,0,1662,1663,7,5,0,0,1663,1664,7,21, + 0,0,1664,1665,7,0,0,0,1665,1666,7,3,0,0,1666,242,1,0,0,0,1667,1668, + 7,2,0,0,1668,1669,7,17,0,0,1669,1670,7,5,0,0,1670,1671,7,21,0,0, + 1671,1672,7,0,0,0,1672,1673,7,3,0,0,1673,1674,7,3,0,0,1674,1675, + 7,4,0,0,1675,1676,7,1,0,0,1676,244,1,0,0,0,1677,1678,7,2,0,0,1678, + 1679,7,5,0,0,1679,1680,7,17,0,0,1680,1681,7,21,0,0,1681,246,1,0, + 0,0,1682,1683,7,2,0,0,1683,1684,7,14,0,0,1684,1685,7,6,0,0,1685, + 1686,7,6,0,0,1686,248,1,0,0,0,1687,1688,7,2,0,0,1688,1689,7,14,0, + 0,1689,1690,7,10,0,0,1690,1691,7,15,0,0,1691,1692,7,3,0,0,1692,1693, + 7,12,0,0,1693,1694,7,17,0,0,1694,1695,7,10,0,0,1695,250,1,0,0,0, + 1696,1697,7,2,0,0,1697,1698,7,14,0,0,1698,1699,7,10,0,0,1699,1700, + 7,15,0,0,1700,1701,7,3,0,0,1701,1702,7,12,0,0,1702,1703,7,17,0,0, + 1703,1704,7,10,0,0,1704,1705,7,9,0,0,1705,252,1,0,0,0,1706,1707, + 7,19,0,0,1707,1708,7,4,0,0,1708,1709,7,10,0,0,1709,1710,7,4,0,0, + 1710,1711,7,5,0,0,1711,1712,7,0,0,0,1712,1713,7,3,0,0,1713,1714, + 7,4,0,0,1714,1715,7,1,0,0,1715,254,1,0,0,0,1716,1717,7,19,0,0,1717, + 1718,7,6,0,0,1718,1719,7,17,0,0,1719,1720,7,18,0,0,1720,1721,7,0, + 0,0,1721,1722,7,6,0,0,1722,256,1,0,0,0,1723,1724,7,19,0,0,1724,1725, + 7,5,0,0,1725,1726,7,0,0,0,1726,1727,7,10,0,0,1727,1728,7,3,0,0,1728, + 258,1,0,0,0,1729,1730,7,19,0,0,1730,1731,7,5,0,0,1731,1732,7,17, + 0,0,1732,1733,7,14,0,0,1733,1734,7,22,0,0,1734,260,1,0,0,0,1735, + 1736,7,19,0,0,1736,1737,7,5,0,0,1737,1738,7,17,0,0,1738,1739,7,14, + 0,0,1739,1740,7,22,0,0,1740,1741,7,12,0,0,1741,1742,7,10,0,0,1742, + 1743,7,19,0,0,1743,262,1,0,0,0,1744,1745,7,16,0,0,1745,1746,7,0, + 0,0,1746,1747,7,13,0,0,1747,1748,7,12,0,0,1748,1749,7,10,0,0,1749, + 1750,7,19,0,0,1750,264,1,0,0,0,1751,1752,7,23,0,0,1752,266,1,0,0, + 0,1753,1754,7,16,0,0,1754,1755,7,17,0,0,1755,1756,7,14,0,0,1756, + 1757,7,5,0,0,1757,268,1,0,0,0,1758,1759,7,16,0,0,1759,1760,7,17, + 0,0,1760,1761,7,14,0,0,1761,1762,7,5,0,0,1762,1763,7,9,0,0,1763, + 270,1,0,0,0,1764,1765,7,12,0,0,1765,1766,7,1,0,0,1766,1767,7,4,0, + 0,1767,1768,7,10,0,0,1768,1769,7,3,0,0,1769,1770,7,12,0,0,1770,1771, + 7,2,0,0,1771,1772,7,12,0,0,1772,1773,7,4,0,0,1773,1774,7,5,0,0,1774, + 272,1,0,0,0,1775,1776,7,12,0,0,1776,1777,7,2,0,0,1777,274,1,0,0, + 0,1778,1779,7,12,0,0,1779,1780,7,19,0,0,1780,1781,7,10,0,0,1781, + 1782,7,17,0,0,1782,1783,7,5,0,0,1783,1784,7,4,0,0,1784,276,1,0,0, + 0,1785,1786,7,12,0,0,1786,1787,7,21,0,0,1787,1788,7,22,0,0,1788, + 1789,7,17,0,0,1789,1790,7,5,0,0,1790,1791,7,3,0,0,1791,278,1,0,0, + 0,1792,1793,7,12,0,0,1793,1794,7,10,0,0,1794,280,1,0,0,0,1795,1796, + 7,12,0,0,1796,1797,7,10,0,0,1797,1798,7,15,0,0,1798,1799,7,6,0,0, + 1799,1800,7,14,0,0,1800,1801,7,1,0,0,1801,1802,7,4,0,0,1802,282, + 1,0,0,0,1803,1804,7,12,0,0,1804,1805,7,10,0,0,1805,1806,7,1,0,0, + 1806,1807,7,4,0,0,1807,1808,7,23,0,0,1808,284,1,0,0,0,1809,1810, + 7,12,0,0,1810,1811,7,10,0,0,1811,1812,7,1,0,0,1812,1813,7,4,0,0, + 1813,1814,7,23,0,0,1814,1815,7,4,0,0,1815,1816,7,9,0,0,1816,286, + 1,0,0,0,1817,1818,7,12,0,0,1818,1819,7,10,0,0,1819,1820,7,10,0,0, + 1820,1821,7,4,0,0,1821,1822,7,5,0,0,1822,288,1,0,0,0,1823,1824,7, + 12,0,0,1824,1825,7,10,0,0,1825,1826,7,22,0,0,1826,1827,7,0,0,0,1827, + 1828,7,3,0,0,1828,1829,7,16,0,0,1829,290,1,0,0,0,1830,1831,7,12, + 0,0,1831,1832,7,10,0,0,1832,1833,7,22,0,0,1833,1834,7,14,0,0,1834, + 1835,7,3,0,0,1835,1836,7,2,0,0,1836,1837,7,17,0,0,1837,1838,7,5, + 0,0,1838,1839,7,21,0,0,1839,1840,7,0,0,0,1840,1841,7,3,0,0,1841, + 292,1,0,0,0,1842,1843,7,12,0,0,1843,1844,7,10,0,0,1844,1845,7,9, + 0,0,1845,1846,7,4,0,0,1846,1847,7,5,0,0,1847,1848,7,3,0,0,1848,294, + 1,0,0,0,1849,1850,7,12,0,0,1850,1851,7,10,0,0,1851,1852,7,3,0,0, + 1852,1853,7,4,0,0,1853,1854,7,5,0,0,1854,1855,7,9,0,0,1855,1856, + 7,4,0,0,1856,1857,7,15,0,0,1857,1858,7,3,0,0,1858,296,1,0,0,0,1859, + 1860,7,12,0,0,1860,1861,7,10,0,0,1861,1862,7,3,0,0,1862,1863,7,4, + 0,0,1863,1864,7,5,0,0,1864,1865,7,13,0,0,1865,1866,7,0,0,0,1866, + 1867,7,6,0,0,1867,298,1,0,0,0,1868,1869,7,12,0,0,1869,1870,7,10, + 0,0,1870,1871,7,3,0,0,1871,300,1,0,0,0,1872,1873,7,12,0,0,1873,1874, + 7,10,0,0,1874,1875,7,3,0,0,1875,1876,7,4,0,0,1876,1877,7,19,0,0, + 1877,1878,7,4,0,0,1878,1879,7,5,0,0,1879,302,1,0,0,0,1880,1881,7, + 12,0,0,1881,1882,7,10,0,0,1882,1883,7,3,0,0,1883,1884,7,17,0,0,1884, + 304,1,0,0,0,1885,1886,7,12,0,0,1886,1887,7,9,0,0,1887,306,1,0,0, + 0,1888,1889,7,12,0,0,1889,1890,7,3,0,0,1890,1891,7,4,0,0,1891,1892, + 7,21,0,0,1892,1893,7,9,0,0,1893,308,1,0,0,0,1894,1895,7,24,0,0,1895, + 1896,7,17,0,0,1896,1897,7,12,0,0,1897,1898,7,10,0,0,1898,310,1,0, + 0,0,1899,1900,7,20,0,0,1900,1901,7,4,0,0,1901,1902,7,8,0,0,1902, + 1903,7,9,0,0,1903,312,1,0,0,0,1904,1905,7,6,0,0,1905,1906,7,0,0, + 0,1906,1907,7,9,0,0,1907,1908,7,3,0,0,1908,314,1,0,0,0,1909,1910, + 7,6,0,0,1910,1911,7,0,0,0,1911,1912,7,3,0,0,1912,1913,7,4,0,0,1913, + 1914,7,5,0,0,1914,1915,7,0,0,0,1915,1916,7,6,0,0,1916,316,1,0,0, + 0,1917,1918,7,6,0,0,1918,1919,7,0,0,0,1919,1920,7,11,0,0,1920,1921, + 7,8,0,0,1921,318,1,0,0,0,1922,1923,7,6,0,0,1923,1924,7,4,0,0,1924, + 1925,7,0,0,0,1925,1926,7,1,0,0,1926,1927,7,12,0,0,1927,1928,7,10, + 0,0,1928,1929,7,19,0,0,1929,320,1,0,0,0,1930,1931,7,6,0,0,1931,1932, + 7,4,0,0,1932,1933,7,2,0,0,1933,1934,7,3,0,0,1934,322,1,0,0,0,1935, + 1936,7,6,0,0,1936,1937,7,12,0,0,1937,1938,7,2,0,0,1938,1939,7,4, + 0,0,1939,1940,7,15,0,0,1940,1941,7,8,0,0,1941,1942,7,15,0,0,1942, + 1943,7,6,0,0,1943,1944,7,4,0,0,1944,324,1,0,0,0,1945,1946,7,6,0, + 0,1946,1947,7,12,0,0,1947,1948,7,20,0,0,1948,1949,7,4,0,0,1949,326, + 1,0,0,0,1950,1951,7,12,0,0,1951,1952,7,6,0,0,1952,1953,7,12,0,0, + 1953,1954,7,20,0,0,1954,1955,7,4,0,0,1955,328,1,0,0,0,1956,1957, + 7,6,0,0,1957,1958,7,12,0,0,1958,1959,7,21,0,0,1959,1960,7,12,0,0, + 1960,1961,7,3,0,0,1961,330,1,0,0,0,1962,1963,7,6,0,0,1963,1964,7, + 12,0,0,1964,1965,7,10,0,0,1965,1966,7,4,0,0,1966,1967,7,9,0,0,1967, + 332,1,0,0,0,1968,1969,7,6,0,0,1969,1970,7,12,0,0,1970,1971,7,9,0, + 0,1971,1972,7,3,0,0,1972,334,1,0,0,0,1973,1974,7,6,0,0,1974,1975, + 7,17,0,0,1975,1976,7,0,0,0,1976,1977,7,1,0,0,1977,336,1,0,0,0,1978, + 1979,7,6,0,0,1979,1980,7,17,0,0,1980,1981,7,15,0,0,1981,1982,7,0, + 0,0,1982,1983,7,6,0,0,1983,338,1,0,0,0,1984,1985,7,6,0,0,1985,1986, + 7,17,0,0,1986,1987,7,15,0,0,1987,1988,7,0,0,0,1988,1989,7,3,0,0, + 1989,1990,7,12,0,0,1990,1991,7,17,0,0,1991,1992,7,10,0,0,1992,340, + 1,0,0,0,1993,1994,7,6,0,0,1994,1995,7,17,0,0,1995,1996,7,15,0,0, + 1996,1997,7,20,0,0,1997,342,1,0,0,0,1998,1999,7,6,0,0,1999,2000, + 7,17,0,0,2000,2001,7,15,0,0,2001,2002,7,20,0,0,2002,2003,7,9,0,0, + 2003,344,1,0,0,0,2004,2005,7,6,0,0,2005,2006,7,17,0,0,2006,2007, + 7,19,0,0,2007,2008,7,12,0,0,2008,2009,7,15,0,0,2009,2010,7,0,0,0, + 2010,2011,7,6,0,0,2011,346,1,0,0,0,2012,2013,7,6,0,0,2013,2014,7, + 17,0,0,2014,2015,7,10,0,0,2015,2016,7,19,0,0,2016,348,1,0,0,0,2017, + 2018,7,21,0,0,2018,2019,7,0,0,0,2019,2020,7,15,0,0,2020,2021,7,5, + 0,0,2021,2022,7,17,0,0,2022,350,1,0,0,0,2023,2024,7,21,0,0,2024, + 2025,7,0,0,0,2025,2026,7,3,0,0,2026,2027,7,4,0,0,2027,2028,7,5,0, + 0,2028,2029,7,12,0,0,2029,2030,7,0,0,0,2030,2031,7,6,0,0,2031,2032, + 7,12,0,0,2032,2033,7,11,0,0,2033,2034,7,4,0,0,2034,2035,7,1,0,0, + 2035,352,1,0,0,0,2036,2037,7,21,0,0,2037,2038,7,0,0,0,2038,2039, + 7,22,0,0,2039,354,1,0,0,0,2040,2041,7,21,0,0,2041,2042,7,0,0,0,2042, + 2043,7,3,0,0,2043,2044,7,15,0,0,2044,2045,7,16,0,0,2045,2046,7,4, + 0,0,2046,2047,7,1,0,0,2047,356,1,0,0,0,2048,2049,7,21,0,0,2049,2050, + 7,4,0,0,2050,2051,7,5,0,0,2051,2052,7,19,0,0,2052,2053,7,4,0,0,2053, + 358,1,0,0,0,2054,2055,7,21,0,0,2055,2056,7,12,0,0,2056,2057,7,15, + 0,0,2057,2058,7,5,0,0,2058,2059,7,17,0,0,2059,2060,7,9,0,0,2060, + 2061,7,4,0,0,2061,2062,7,15,0,0,2062,2063,7,17,0,0,2063,2064,7,10, + 0,0,2064,2065,7,1,0,0,2065,360,1,0,0,0,2066,2067,7,21,0,0,2067,2068, + 7,12,0,0,2068,2069,7,15,0,0,2069,2070,7,5,0,0,2070,2071,7,17,0,0, + 2071,2072,7,9,0,0,2072,2073,7,4,0,0,2073,2074,7,15,0,0,2074,2075, + 7,17,0,0,2075,2076,7,10,0,0,2076,2077,7,1,0,0,2077,2078,7,9,0,0, + 2078,362,1,0,0,0,2079,2080,7,21,0,0,2080,2081,7,12,0,0,2081,2082, + 7,6,0,0,2082,2083,7,6,0,0,2083,2084,7,12,0,0,2084,2085,7,9,0,0,2085, + 2086,7,4,0,0,2086,2087,7,15,0,0,2087,2088,7,17,0,0,2088,2089,7,10, + 0,0,2089,2090,7,1,0,0,2090,364,1,0,0,0,2091,2092,7,21,0,0,2092,2093, + 7,12,0,0,2093,2094,7,6,0,0,2094,2095,7,6,0,0,2095,2096,7,12,0,0, + 2096,2097,7,9,0,0,2097,2098,7,4,0,0,2098,2099,7,15,0,0,2099,2100, + 7,17,0,0,2100,2101,7,10,0,0,2101,2102,7,1,0,0,2102,2103,7,9,0,0, + 2103,366,1,0,0,0,2104,2105,7,21,0,0,2105,2106,7,12,0,0,2106,2107, + 7,10,0,0,2107,2108,7,14,0,0,2108,2109,7,3,0,0,2109,2110,7,4,0,0, + 2110,368,1,0,0,0,2111,2112,7,21,0,0,2112,2113,7,12,0,0,2113,2114, + 7,10,0,0,2114,2115,7,14,0,0,2115,2116,7,3,0,0,2116,2117,7,4,0,0, + 2117,2118,7,9,0,0,2118,370,1,0,0,0,2119,2120,7,21,0,0,2120,2121, + 7,17,0,0,2121,2122,7,10,0,0,2122,2123,7,3,0,0,2123,2124,7,16,0,0, + 2124,372,1,0,0,0,2125,2126,7,21,0,0,2126,2127,7,17,0,0,2127,2128, + 7,10,0,0,2128,2129,7,3,0,0,2129,2130,7,16,0,0,2130,2131,7,9,0,0, + 2131,374,1,0,0,0,2132,2133,7,21,0,0,2133,2134,7,9,0,0,2134,2135, + 7,15,0,0,2135,2136,7,20,0,0,2136,376,1,0,0,0,2137,2138,7,10,0,0, + 2138,2139,7,0,0,0,2139,2140,7,21,0,0,2140,2141,7,4,0,0,2141,378, + 1,0,0,0,2142,2143,7,10,0,0,2143,2144,7,0,0,0,2144,2145,7,21,0,0, + 2145,2146,7,4,0,0,2146,2147,7,9,0,0,2147,2148,7,22,0,0,2148,2149, + 7,0,0,0,2149,2150,7,15,0,0,2150,2151,7,4,0,0,2151,380,1,0,0,0,2152, + 2153,7,10,0,0,2153,2154,7,0,0,0,2154,2155,7,21,0,0,2155,2156,7,4, + 0,0,2156,2157,7,9,0,0,2157,2158,7,22,0,0,2158,2159,7,0,0,0,2159, + 2160,7,15,0,0,2160,2161,7,4,0,0,2161,2162,7,9,0,0,2162,382,1,0,0, + 0,2163,2164,7,10,0,0,2164,2165,7,0,0,0,2165,2166,7,10,0,0,2166,2167, + 7,17,0,0,2167,2168,7,9,0,0,2168,2169,7,4,0,0,2169,2170,7,15,0,0, + 2170,2171,7,17,0,0,2171,2172,7,10,0,0,2172,2173,7,1,0,0,2173,384, + 1,0,0,0,2174,2175,7,10,0,0,2175,2176,7,0,0,0,2176,2177,7,10,0,0, + 2177,2178,7,17,0,0,2178,2179,7,9,0,0,2179,2180,7,4,0,0,2180,2181, + 7,15,0,0,2181,2182,7,17,0,0,2182,2183,7,10,0,0,2183,2184,7,1,0,0, + 2184,2185,7,9,0,0,2185,386,1,0,0,0,2186,2187,7,10,0,0,2187,2188, + 7,0,0,0,2188,2189,7,3,0,0,2189,2190,7,14,0,0,2190,2191,7,5,0,0,2191, + 2192,7,0,0,0,2192,2193,7,6,0,0,2193,388,1,0,0,0,2194,2195,7,10,0, + 0,2195,2196,7,17,0,0,2196,390,1,0,0,0,2197,2198,7,10,0,0,2198,2199, + 7,17,0,0,2199,2200,7,9,0,0,2200,2201,7,15,0,0,2201,2202,7,0,0,0, + 2202,2203,7,10,0,0,2203,392,1,0,0,0,2204,2205,7,10,0,0,2205,2206, + 7,17,0,0,2206,2207,7,3,0,0,2207,394,1,0,0,0,2208,2209,7,10,0,0,2209, + 2210,7,14,0,0,2210,2211,7,6,0,0,2211,2212,7,6,0,0,2212,396,1,0,0, + 0,2213,2214,7,10,0,0,2214,2215,7,14,0,0,2215,2216,7,6,0,0,2216,2217, + 7,6,0,0,2217,2218,7,9,0,0,2218,398,1,0,0,0,2219,2220,7,10,0,0,2220, + 2221,7,14,0,0,2221,2222,7,21,0,0,2222,2223,7,4,0,0,2223,2224,7,5, + 0,0,2224,2225,7,12,0,0,2225,2226,7,15,0,0,2226,400,1,0,0,0,2227, + 2228,7,17,0,0,2228,2229,7,2,0,0,2229,402,1,0,0,0,2230,2231,7,17, + 0,0,2231,2232,7,2,0,0,2232,2233,7,2,0,0,2233,2234,7,9,0,0,2234,2235, + 7,4,0,0,2235,2236,7,3,0,0,2236,404,1,0,0,0,2237,2238,7,17,0,0,2238, + 2239,7,10,0,0,2239,406,1,0,0,0,2240,2241,7,17,0,0,2241,2242,7,10, + 0,0,2242,2243,7,6,0,0,2243,2244,7,8,0,0,2244,408,1,0,0,0,2245,2246, + 7,17,0,0,2246,2247,7,22,0,0,2247,2248,7,3,0,0,2248,2249,7,12,0,0, + 2249,2250,7,21,0,0,2250,2251,7,12,0,0,2251,2252,7,11,0,0,2252,2253, + 7,4,0,0,2253,410,1,0,0,0,2254,2255,7,17,0,0,2255,2256,7,22,0,0,2256, + 2257,7,3,0,0,2257,2258,7,12,0,0,2258,2259,7,17,0,0,2259,2260,7,10, + 0,0,2260,412,1,0,0,0,2261,2262,7,17,0,0,2262,2263,7,22,0,0,2263, + 2264,7,3,0,0,2264,2265,7,12,0,0,2265,2266,7,17,0,0,2266,2267,7,10, + 0,0,2267,2268,7,9,0,0,2268,414,1,0,0,0,2269,2270,7,17,0,0,2270,2271, + 7,5,0,0,2271,416,1,0,0,0,2272,2273,7,17,0,0,2273,2274,7,5,0,0,2274, + 2275,7,1,0,0,2275,2276,7,4,0,0,2276,2277,7,5,0,0,2277,418,1,0,0, + 0,2278,2279,7,17,0,0,2279,2280,7,14,0,0,2280,2281,7,3,0,0,2281,420, + 1,0,0,0,2282,2283,7,17,0,0,2283,2284,7,14,0,0,2284,2285,7,3,0,0, + 2285,2286,7,4,0,0,2286,2287,7,5,0,0,2287,422,1,0,0,0,2288,2289,7, + 17,0,0,2289,2290,7,14,0,0,2290,2291,7,3,0,0,2291,2292,7,22,0,0,2292, + 2293,7,14,0,0,2293,2294,7,3,0,0,2294,2295,7,2,0,0,2295,2296,7,17, + 0,0,2296,2297,7,5,0,0,2297,2298,7,21,0,0,2298,2299,7,0,0,0,2299, + 2300,7,3,0,0,2300,424,1,0,0,0,2301,2302,7,17,0,0,2302,2303,7,13, + 0,0,2303,2304,7,4,0,0,2304,2305,7,5,0,0,2305,426,1,0,0,0,2306,2307, + 7,17,0,0,2307,2308,7,13,0,0,2308,2309,7,4,0,0,2309,2310,7,5,0,0, + 2310,2311,7,6,0,0,2311,2312,7,0,0,0,2312,2313,7,22,0,0,2313,2314, + 7,9,0,0,2314,428,1,0,0,0,2315,2316,7,17,0,0,2316,2317,7,13,0,0,2317, + 2318,7,4,0,0,2318,2319,7,5,0,0,2319,2320,7,6,0,0,2320,2321,7,0,0, + 0,2321,2322,7,8,0,0,2322,430,1,0,0,0,2323,2324,7,17,0,0,2324,2325, + 7,13,0,0,2325,2326,7,4,0,0,2326,2327,7,5,0,0,2327,2328,7,7,0,0,2328, + 2329,7,5,0,0,2329,2330,7,12,0,0,2330,2331,7,3,0,0,2331,2332,7,4, + 0,0,2332,432,1,0,0,0,2333,2334,7,22,0,0,2334,2335,7,0,0,0,2335,2336, + 7,5,0,0,2336,2337,7,3,0,0,2337,2338,7,12,0,0,2338,2339,7,3,0,0,2339, + 2340,7,12,0,0,2340,2341,7,17,0,0,2341,2342,7,10,0,0,2342,434,1,0, + 0,0,2343,2344,7,22,0,0,2344,2345,7,0,0,0,2345,2346,7,5,0,0,2346, + 2347,7,3,0,0,2347,2348,7,12,0,0,2348,2349,7,3,0,0,2349,2350,7,12, + 0,0,2350,2351,7,17,0,0,2351,2352,7,10,0,0,2352,2353,7,4,0,0,2353, + 2354,7,1,0,0,2354,436,1,0,0,0,2355,2356,7,22,0,0,2356,2357,7,0,0, + 0,2357,2358,7,5,0,0,2358,2359,7,3,0,0,2359,2360,7,12,0,0,2360,2361, + 7,3,0,0,2361,2362,7,12,0,0,2362,2363,7,17,0,0,2363,2364,7,10,0,0, + 2364,2365,7,9,0,0,2365,438,1,0,0,0,2366,2367,7,22,0,0,2367,2368, + 7,4,0,0,2368,2369,7,5,0,0,2369,2370,7,15,0,0,2370,2371,7,4,0,0,2371, + 2372,7,10,0,0,2372,2373,7,3,0,0,2373,2374,7,12,0,0,2374,2375,7,6, + 0,0,2375,2376,7,4,0,0,2376,2377,5,95,0,0,2377,2378,7,15,0,0,2378, + 2379,7,17,0,0,2379,2380,7,10,0,0,2380,2381,7,3,0,0,2381,440,1,0, + 0,0,2382,2383,7,22,0,0,2383,2384,7,4,0,0,2384,2385,7,5,0,0,2385, + 2386,7,15,0,0,2386,2387,7,4,0,0,2387,2388,7,10,0,0,2388,2389,7,3, + 0,0,2389,2390,7,12,0,0,2390,2391,7,6,0,0,2391,2392,7,4,0,0,2392, + 2393,5,95,0,0,2393,2394,7,1,0,0,2394,2395,7,12,0,0,2395,2396,7,9, + 0,0,2396,2397,7,15,0,0,2397,442,1,0,0,0,2398,2399,7,22,0,0,2399, + 2400,7,4,0,0,2400,2401,7,5,0,0,2401,2402,7,15,0,0,2402,2403,7,4, + 0,0,2403,2404,7,10,0,0,2404,2405,7,3,0,0,2405,444,1,0,0,0,2406,2407, + 7,22,0,0,2407,2408,7,12,0,0,2408,2409,7,13,0,0,2409,2410,7,17,0, + 0,2410,2411,7,3,0,0,2411,446,1,0,0,0,2412,2413,7,22,0,0,2413,2414, + 7,6,0,0,2414,2415,7,0,0,0,2415,2416,7,15,0,0,2416,2417,7,12,0,0, + 2417,2418,7,10,0,0,2418,2419,7,19,0,0,2419,448,1,0,0,0,2420,2421, + 7,22,0,0,2421,2422,7,17,0,0,2422,2423,7,9,0,0,2423,2424,7,12,0,0, + 2424,2425,7,3,0,0,2425,2426,7,12,0,0,2426,2427,7,17,0,0,2427,2428, + 7,10,0,0,2428,450,1,0,0,0,2429,2430,7,22,0,0,2430,2431,7,5,0,0,2431, + 2432,7,4,0,0,2432,2433,7,15,0,0,2433,2434,7,4,0,0,2434,2435,7,1, + 0,0,2435,2436,7,12,0,0,2436,2437,7,10,0,0,2437,2438,7,19,0,0,2438, + 452,1,0,0,0,2439,2440,7,22,0,0,2440,2441,7,5,0,0,2441,2442,7,12, + 0,0,2442,2443,7,21,0,0,2443,2444,7,0,0,0,2444,2445,7,5,0,0,2445, + 2446,7,8,0,0,2446,454,1,0,0,0,2447,2448,7,22,0,0,2448,2449,7,5,0, + 0,2449,2450,7,12,0,0,2450,2451,7,10,0,0,2451,2452,7,15,0,0,2452, + 2453,7,12,0,0,2453,2454,7,22,0,0,2454,2455,7,0,0,0,2455,2456,7,6, + 0,0,2456,2457,7,9,0,0,2457,456,1,0,0,0,2458,2459,7,22,0,0,2459,2460, + 7,5,0,0,2460,2461,7,17,0,0,2461,2462,7,22,0,0,2462,2463,7,4,0,0, + 2463,2464,7,5,0,0,2464,2465,7,3,0,0,2465,2466,7,12,0,0,2466,2467, + 7,4,0,0,2467,2468,7,9,0,0,2468,458,1,0,0,0,2469,2470,7,22,0,0,2470, + 2471,7,14,0,0,2471,2472,7,5,0,0,2472,2473,7,19,0,0,2473,2474,7,4, + 0,0,2474,460,1,0,0,0,2475,2476,7,25,0,0,2476,2477,7,14,0,0,2477, + 2478,7,0,0,0,2478,2479,7,5,0,0,2479,2480,7,3,0,0,2480,2481,7,4,0, + 0,2481,2482,7,5,0,0,2482,462,1,0,0,0,2483,2484,7,25,0,0,2484,2485, + 7,14,0,0,2485,2486,7,4,0,0,2486,2487,7,5,0,0,2487,2488,7,8,0,0,2488, + 464,1,0,0,0,2489,2490,7,5,0,0,2490,2491,7,0,0,0,2491,2492,7,10,0, + 0,2492,2493,7,19,0,0,2493,2494,7,4,0,0,2494,466,1,0,0,0,2495,2496, + 7,5,0,0,2496,2497,7,4,0,0,2497,2498,7,0,0,0,2498,2499,7,6,0,0,2499, + 468,1,0,0,0,2500,2501,7,5,0,0,2501,2502,7,4,0,0,2502,2503,7,15,0, + 0,2503,2504,7,17,0,0,2504,2505,7,5,0,0,2505,2506,7,1,0,0,2506,2507, + 7,5,0,0,2507,2508,7,4,0,0,2508,2509,7,0,0,0,2509,2510,7,1,0,0,2510, + 2511,7,4,0,0,2511,2512,7,5,0,0,2512,470,1,0,0,0,2513,2514,7,5,0, + 0,2514,2515,7,4,0,0,2515,2516,7,15,0,0,2516,2517,7,17,0,0,2517,2518, + 7,5,0,0,2518,2519,7,1,0,0,2519,2520,7,7,0,0,2520,2521,7,5,0,0,2521, + 2522,7,12,0,0,2522,2523,7,3,0,0,2523,2524,7,4,0,0,2524,2525,7,5, + 0,0,2525,472,1,0,0,0,2526,2527,7,5,0,0,2527,2528,7,4,0,0,2528,2529, + 7,15,0,0,2529,2530,7,17,0,0,2530,2531,7,13,0,0,2531,2532,7,4,0,0, + 2532,2533,7,5,0,0,2533,474,1,0,0,0,2534,2535,7,5,0,0,2535,2536,7, + 4,0,0,2536,2537,7,1,0,0,2537,2538,7,14,0,0,2538,2539,7,15,0,0,2539, + 2540,7,4,0,0,2540,476,1,0,0,0,2541,2542,7,5,0,0,2542,2543,7,4,0, + 0,2543,2544,7,2,0,0,2544,2545,7,4,0,0,2545,2546,7,5,0,0,2546,2547, + 7,4,0,0,2547,2548,7,10,0,0,2548,2549,7,15,0,0,2549,2550,7,4,0,0, + 2550,2551,7,9,0,0,2551,478,1,0,0,0,2552,2553,7,5,0,0,2553,2554,7, + 4,0,0,2554,2555,7,2,0,0,2555,2556,7,5,0,0,2556,2557,7,4,0,0,2557, + 2558,7,9,0,0,2558,2559,7,16,0,0,2559,480,1,0,0,0,2560,2561,7,5,0, + 0,2561,2562,7,4,0,0,2562,2563,7,10,0,0,2563,2564,7,0,0,0,2564,2565, + 7,21,0,0,2565,2566,7,4,0,0,2566,482,1,0,0,0,2567,2568,7,5,0,0,2568, + 2569,7,4,0,0,2569,2570,7,22,0,0,2570,2571,7,0,0,0,2571,2572,7,12, + 0,0,2572,2573,7,5,0,0,2573,484,1,0,0,0,2574,2575,7,5,0,0,2575,2576, + 7,4,0,0,2576,2577,7,22,0,0,2577,2578,7,4,0,0,2578,2579,7,0,0,0,2579, + 2580,7,3,0,0,2580,2581,7,0,0,0,2581,2582,7,18,0,0,2582,2583,7,6, + 0,0,2583,2584,7,4,0,0,2584,486,1,0,0,0,2585,2586,7,5,0,0,2586,2587, + 7,4,0,0,2587,2588,7,22,0,0,2588,2589,7,6,0,0,2589,2590,7,0,0,0,2590, + 2591,7,15,0,0,2591,2592,7,4,0,0,2592,488,1,0,0,0,2593,2594,7,5,0, + 0,2594,2595,7,4,0,0,2595,2596,7,9,0,0,2596,2597,7,4,0,0,2597,2598, + 7,3,0,0,2598,490,1,0,0,0,2599,2600,7,5,0,0,2600,2601,7,4,0,0,2601, + 2602,7,9,0,0,2602,2603,7,22,0,0,2603,2604,7,4,0,0,2604,2605,7,15, + 0,0,2605,2606,7,3,0,0,2606,492,1,0,0,0,2607,2608,7,5,0,0,2608,2609, + 7,4,0,0,2609,2610,7,9,0,0,2610,2611,7,3,0,0,2611,2612,7,5,0,0,2612, + 2613,7,12,0,0,2613,2614,7,15,0,0,2614,2615,7,3,0,0,2615,494,1,0, + 0,0,2616,2617,7,5,0,0,2617,2618,7,4,0,0,2618,2619,7,7,0,0,2619,2620, + 7,5,0,0,2620,2621,7,12,0,0,2621,2622,7,3,0,0,2622,2623,7,4,0,0,2623, + 496,1,0,0,0,2624,2625,7,5,0,0,2625,2626,7,4,0,0,2626,2627,7,13,0, + 0,2627,2628,7,17,0,0,2628,2629,7,20,0,0,2629,2630,7,4,0,0,2630,498, + 1,0,0,0,2631,2632,7,5,0,0,2632,2633,7,12,0,0,2633,2634,7,19,0,0, + 2634,2635,7,16,0,0,2635,2636,7,3,0,0,2636,500,1,0,0,0,2637,2638, + 7,5,0,0,2638,2639,7,6,0,0,2639,2640,7,12,0,0,2640,2641,7,20,0,0, + 2641,2642,7,4,0,0,2642,502,1,0,0,0,2643,2644,7,5,0,0,2644,2645,7, + 4,0,0,2645,2646,7,19,0,0,2646,2647,7,4,0,0,2647,2648,7,23,0,0,2648, + 2649,7,22,0,0,2649,504,1,0,0,0,2650,2651,7,5,0,0,2651,2652,7,17, + 0,0,2652,2653,7,6,0,0,2653,2654,7,4,0,0,2654,506,1,0,0,0,2655,2656, + 7,5,0,0,2656,2657,7,17,0,0,2657,2658,7,6,0,0,2658,2659,7,4,0,0,2659, + 2660,7,9,0,0,2660,508,1,0,0,0,2661,2662,7,5,0,0,2662,2663,7,17,0, + 0,2663,2664,7,6,0,0,2664,2665,7,6,0,0,2665,2666,7,18,0,0,2666,2667, + 7,0,0,0,2667,2668,7,15,0,0,2668,2669,7,20,0,0,2669,510,1,0,0,0,2670, + 2671,7,5,0,0,2671,2672,7,17,0,0,2672,2673,7,6,0,0,2673,2674,7,6, + 0,0,2674,2675,7,14,0,0,2675,2676,7,22,0,0,2676,512,1,0,0,0,2677, + 2678,7,5,0,0,2678,2679,7,17,0,0,2679,2680,7,7,0,0,2680,514,1,0,0, + 0,2681,2682,7,5,0,0,2682,2683,7,17,0,0,2683,2684,7,7,0,0,2684,2685, + 7,9,0,0,2685,516,1,0,0,0,2686,2687,7,9,0,0,2687,2688,7,4,0,0,2688, + 2689,7,15,0,0,2689,2690,7,17,0,0,2690,2691,7,10,0,0,2691,2692,7, + 1,0,0,2692,518,1,0,0,0,2693,2694,7,9,0,0,2694,2695,7,4,0,0,2695, + 2696,7,15,0,0,2696,2697,7,17,0,0,2697,2698,7,10,0,0,2698,2699,7, + 1,0,0,2699,2700,7,9,0,0,2700,520,1,0,0,0,2701,2702,7,9,0,0,2702, + 2703,7,15,0,0,2703,2704,7,16,0,0,2704,2705,7,4,0,0,2705,2706,7,21, + 0,0,2706,2707,7,0,0,0,2707,522,1,0,0,0,2708,2709,7,9,0,0,2709,2710, + 7,15,0,0,2710,2711,7,16,0,0,2711,2712,7,4,0,0,2712,2713,7,21,0,0, + 2713,2714,7,0,0,0,2714,2715,7,9,0,0,2715,524,1,0,0,0,2716,2717,7, + 9,0,0,2717,2718,7,4,0,0,2718,2719,7,6,0,0,2719,2720,7,4,0,0,2720, + 2721,7,15,0,0,2721,2722,7,3,0,0,2722,526,1,0,0,0,2723,2724,7,9,0, + 0,2724,2725,7,4,0,0,2725,2726,7,21,0,0,2726,2727,7,12,0,0,2727,528, + 1,0,0,0,2728,2729,7,9,0,0,2729,2730,7,4,0,0,2730,2731,7,22,0,0,2731, + 2732,7,0,0,0,2732,2733,7,5,0,0,2733,2734,7,0,0,0,2734,2735,7,3,0, + 0,2735,2736,7,4,0,0,2736,2737,7,1,0,0,2737,530,1,0,0,0,2738,2739, + 7,9,0,0,2739,2740,7,4,0,0,2740,2741,7,5,0,0,2741,2742,7,1,0,0,2742, + 2743,7,4,0,0,2743,532,1,0,0,0,2744,2745,7,9,0,0,2745,2746,7,4,0, + 0,2746,2747,7,5,0,0,2747,2748,7,1,0,0,2748,2749,7,4,0,0,2749,2750, + 7,22,0,0,2750,2751,7,5,0,0,2751,2752,7,17,0,0,2752,2753,7,22,0,0, + 2753,2754,7,4,0,0,2754,2755,7,5,0,0,2755,2756,7,3,0,0,2756,2757, + 7,12,0,0,2757,2758,7,4,0,0,2758,2759,7,9,0,0,2759,534,1,0,0,0,2760, + 2761,7,9,0,0,2761,2762,7,4,0,0,2762,2763,7,9,0,0,2763,2764,7,9,0, + 0,2764,2765,7,12,0,0,2765,2766,7,17,0,0,2766,2767,7,10,0,0,2767, + 2768,5,95,0,0,2768,2769,7,14,0,0,2769,2770,7,9,0,0,2770,2771,7,4, + 0,0,2771,2772,7,5,0,0,2772,536,1,0,0,0,2773,2774,7,9,0,0,2774,2775, + 7,4,0,0,2775,2776,7,3,0,0,2776,538,1,0,0,0,2777,2778,7,21,0,0,2778, + 2779,7,12,0,0,2779,2780,7,10,0,0,2780,2781,7,14,0,0,2781,2782,7, + 9,0,0,2782,540,1,0,0,0,2783,2784,7,9,0,0,2784,2785,7,4,0,0,2785, + 2786,7,3,0,0,2786,2787,7,9,0,0,2787,542,1,0,0,0,2788,2789,7,9,0, + 0,2789,2790,7,16,0,0,2790,2791,7,17,0,0,2791,2792,7,5,0,0,2792,2793, + 7,3,0,0,2793,544,1,0,0,0,2794,2795,7,9,0,0,2795,2796,7,16,0,0,2796, + 2797,7,17,0,0,2797,2798,7,7,0,0,2798,546,1,0,0,0,2799,2800,7,9,0, + 0,2800,2801,7,12,0,0,2801,2802,7,10,0,0,2802,2803,7,19,0,0,2803, + 2804,7,6,0,0,2804,2805,7,4,0,0,2805,548,1,0,0,0,2806,2807,7,9,0, + 0,2807,2808,7,20,0,0,2808,2809,7,4,0,0,2809,2810,7,7,0,0,2810,2811, + 7,4,0,0,2811,2812,7,1,0,0,2812,550,1,0,0,0,2813,2814,7,9,0,0,2814, + 2815,7,21,0,0,2815,2816,7,0,0,0,2816,2817,7,6,0,0,2817,2818,7,6, + 0,0,2818,2819,7,12,0,0,2819,2820,7,10,0,0,2820,2821,7,3,0,0,2821, + 552,1,0,0,0,2822,2823,7,9,0,0,2823,2824,7,17,0,0,2824,2825,7,21, + 0,0,2825,2826,7,4,0,0,2826,554,1,0,0,0,2827,2828,7,9,0,0,2828,2829, + 7,17,0,0,2829,2830,7,5,0,0,2830,2831,7,3,0,0,2831,556,1,0,0,0,2832, + 2833,7,9,0,0,2833,2834,7,17,0,0,2834,2835,7,5,0,0,2835,2836,7,3, + 0,0,2836,2837,7,4,0,0,2837,2838,7,1,0,0,2838,558,1,0,0,0,2839,2840, + 7,9,0,0,2840,2841,7,17,0,0,2841,2842,7,14,0,0,2842,2843,7,5,0,0, + 2843,2844,7,15,0,0,2844,2845,7,4,0,0,2845,560,1,0,0,0,2846,2847, + 7,9,0,0,2847,2848,7,3,0,0,2848,2849,7,0,0,0,2849,2850,7,5,0,0,2850, + 2851,7,3,0,0,2851,562,1,0,0,0,2852,2853,7,9,0,0,2853,2854,7,3,0, + 0,2854,2855,7,0,0,0,2855,2856,7,3,0,0,2856,2857,7,12,0,0,2857,2858, + 7,9,0,0,2858,2859,7,3,0,0,2859,2860,7,12,0,0,2860,2861,7,15,0,0, + 2861,2862,7,9,0,0,2862,564,1,0,0,0,2863,2864,7,9,0,0,2864,2865,7, + 3,0,0,2865,2866,7,17,0,0,2866,2867,7,5,0,0,2867,2868,7,4,0,0,2868, + 2869,7,1,0,0,2869,566,1,0,0,0,2870,2871,7,9,0,0,2871,2872,7,3,0, + 0,2872,2873,7,5,0,0,2873,2874,7,0,0,0,2874,2875,7,3,0,0,2875,2876, + 7,12,0,0,2876,2877,7,2,0,0,2877,2878,7,8,0,0,2878,568,1,0,0,0,2879, + 2880,7,9,0,0,2880,2881,7,3,0,0,2881,2882,7,5,0,0,2882,2883,7,12, + 0,0,2883,2884,7,10,0,0,2884,2885,7,19,0,0,2885,570,1,0,0,0,2886, + 2887,7,9,0,0,2887,2888,7,3,0,0,2888,2889,7,5,0,0,2889,2890,7,14, + 0,0,2890,2891,7,15,0,0,2891,2892,7,3,0,0,2892,572,1,0,0,0,2893,2894, + 7,9,0,0,2894,2895,7,14,0,0,2895,2896,7,18,0,0,2896,2897,7,9,0,0, + 2897,2898,7,3,0,0,2898,2899,7,5,0,0,2899,574,1,0,0,0,2900,2901,7, + 9,0,0,2901,2902,7,14,0,0,2902,2903,7,18,0,0,2903,2904,7,9,0,0,2904, + 2905,7,3,0,0,2905,2906,7,5,0,0,2906,2907,7,12,0,0,2907,2908,7,10, + 0,0,2908,2909,7,19,0,0,2909,576,1,0,0,0,2910,2911,7,9,0,0,2911,2912, + 7,8,0,0,2912,2913,7,10,0,0,2913,2914,7,15,0,0,2914,578,1,0,0,0,2915, + 2916,7,9,0,0,2916,2917,7,8,0,0,2917,2918,7,9,0,0,2918,2919,7,3,0, + 0,2919,2920,7,4,0,0,2920,2921,7,21,0,0,2921,580,1,0,0,0,2922,2923, + 7,9,0,0,2923,2924,7,8,0,0,2924,2925,7,9,0,0,2925,2926,7,3,0,0,2926, + 2927,7,4,0,0,2927,2928,7,21,0,0,2928,2929,5,95,0,0,2929,2930,7,3, + 0,0,2930,2931,7,12,0,0,2931,2932,7,21,0,0,2932,2933,7,4,0,0,2933, + 582,1,0,0,0,2934,2935,7,9,0,0,2935,2936,7,8,0,0,2936,2937,7,9,0, + 0,2937,2938,7,3,0,0,2938,2939,7,4,0,0,2939,2940,7,21,0,0,2940,2941, + 5,95,0,0,2941,2942,7,13,0,0,2942,2943,7,4,0,0,2943,2944,7,5,0,0, + 2944,2945,7,9,0,0,2945,2946,7,12,0,0,2946,2947,7,17,0,0,2947,2948, + 7,10,0,0,2948,584,1,0,0,0,2949,2950,7,3,0,0,2950,2951,7,0,0,0,2951, + 2952,7,18,0,0,2952,2953,7,6,0,0,2953,2954,7,4,0,0,2954,586,1,0,0, + 0,2955,2956,7,3,0,0,2956,2957,7,0,0,0,2957,2958,7,18,0,0,2958,2959, + 7,6,0,0,2959,2960,7,4,0,0,2960,2961,7,9,0,0,2961,588,1,0,0,0,2962, + 2963,7,3,0,0,2963,2964,7,0,0,0,2964,2965,7,18,0,0,2965,2966,7,6, + 0,0,2966,2967,7,4,0,0,2967,2968,7,9,0,0,2968,2969,7,0,0,0,2969,2970, + 7,21,0,0,2970,2971,7,22,0,0,2971,2972,7,6,0,0,2972,2973,7,4,0,0, + 2973,590,1,0,0,0,2974,2975,7,3,0,0,2975,2976,7,0,0,0,2976,2977,7, + 5,0,0,2977,2978,7,19,0,0,2978,2979,7,4,0,0,2979,2980,7,3,0,0,2980, + 592,1,0,0,0,2981,2982,7,3,0,0,2982,2983,7,18,0,0,2983,2984,7,6,0, + 0,2984,2985,7,22,0,0,2985,2986,7,5,0,0,2986,2987,7,17,0,0,2987,2988, + 7,22,0,0,2988,2989,7,4,0,0,2989,2990,7,5,0,0,2990,2991,7,3,0,0,2991, + 2992,7,12,0,0,2992,2993,7,4,0,0,2993,2994,7,9,0,0,2994,594,1,0,0, + 0,2995,2996,7,3,0,0,2996,2997,7,4,0,0,2997,2998,7,21,0,0,2998,2999, + 7,22,0,0,2999,3000,7,17,0,0,3000,3001,7,5,0,0,3001,3002,7,0,0,0, + 3002,3003,7,5,0,0,3003,3004,7,8,0,0,3004,596,1,0,0,0,3005,3006,7, + 3,0,0,3006,3007,7,4,0,0,3007,3008,7,5,0,0,3008,3009,7,21,0,0,3009, + 3010,7,12,0,0,3010,3011,7,10,0,0,3011,3012,7,0,0,0,3012,3013,7,3, + 0,0,3013,3014,7,4,0,0,3014,3015,7,1,0,0,3015,598,1,0,0,0,3016,3017, + 7,3,0,0,3017,3018,7,16,0,0,3018,3019,7,4,0,0,3019,3020,7,10,0,0, + 3020,600,1,0,0,0,3021,3022,7,3,0,0,3022,3023,7,12,0,0,3023,3024, + 7,21,0,0,3024,3025,7,4,0,0,3025,602,1,0,0,0,3026,3027,7,3,0,0,3027, + 3028,7,12,0,0,3028,3029,7,21,0,0,3029,3030,7,4,0,0,3030,3031,7,1, + 0,0,3031,3032,7,12,0,0,3032,3033,7,2,0,0,3033,3034,7,2,0,0,3034, + 604,1,0,0,0,3035,3036,7,3,0,0,3036,3037,7,12,0,0,3037,3038,7,21, + 0,0,3038,3039,7,4,0,0,3039,3040,7,9,0,0,3040,3041,7,3,0,0,3041,3042, + 7,0,0,0,3042,3043,7,21,0,0,3043,3044,7,22,0,0,3044,606,1,0,0,0,3045, + 3046,7,3,0,0,3046,3047,7,12,0,0,3047,3048,7,21,0,0,3048,3049,7,4, + 0,0,3049,3050,7,9,0,0,3050,3051,7,3,0,0,3051,3052,7,0,0,0,3052,3053, + 7,21,0,0,3053,3054,7,22,0,0,3054,3055,5,95,0,0,3055,3056,7,6,0,0, + 3056,3057,7,3,0,0,3057,3058,7,11,0,0,3058,608,1,0,0,0,3059,3060, + 7,3,0,0,3060,3061,7,12,0,0,3061,3062,7,21,0,0,3062,3063,7,4,0,0, + 3063,3064,7,9,0,0,3064,3065,7,3,0,0,3065,3066,7,0,0,0,3066,3067, + 7,21,0,0,3067,3068,7,22,0,0,3068,3069,5,95,0,0,3069,3070,7,10,0, + 0,3070,3071,7,3,0,0,3071,3072,7,11,0,0,3072,610,1,0,0,0,3073,3074, + 7,3,0,0,3074,3075,7,12,0,0,3075,3076,7,21,0,0,3076,3077,7,4,0,0, + 3077,3078,7,9,0,0,3078,3079,7,3,0,0,3079,3080,7,0,0,0,3080,3081, + 7,21,0,0,3081,3082,7,22,0,0,3082,3083,7,0,0,0,3083,3084,7,1,0,0, + 3084,3085,7,1,0,0,3085,612,1,0,0,0,3086,3087,7,3,0,0,3087,3088,7, + 12,0,0,3088,3089,7,21,0,0,3089,3090,7,4,0,0,3090,3091,7,9,0,0,3091, + 3092,7,3,0,0,3092,3093,7,0,0,0,3093,3094,7,21,0,0,3094,3095,7,22, + 0,0,3095,3096,7,1,0,0,3096,3097,7,12,0,0,3097,3098,7,2,0,0,3098, + 3099,7,2,0,0,3099,614,1,0,0,0,3100,3101,7,3,0,0,3101,3102,7,12,0, + 0,3102,3103,7,10,0,0,3103,3104,7,8,0,0,3104,3105,7,12,0,0,3105,3106, + 7,10,0,0,3106,3107,7,3,0,0,3107,616,1,0,0,0,3108,3109,7,3,0,0,3109, + 3110,7,17,0,0,3110,618,1,0,0,0,3111,3112,7,3,0,0,3112,3113,7,17, + 0,0,3113,3114,7,14,0,0,3114,3115,7,15,0,0,3115,3116,7,16,0,0,3116, + 620,1,0,0,0,3117,3118,7,3,0,0,3118,3119,7,5,0,0,3119,3120,7,0,0, + 0,3120,3121,7,12,0,0,3121,3122,7,6,0,0,3122,3123,7,12,0,0,3123,3124, + 7,10,0,0,3124,3125,7,19,0,0,3125,622,1,0,0,0,3126,3127,7,3,0,0,3127, + 3128,7,5,0,0,3128,3129,7,0,0,0,3129,3130,7,10,0,0,3130,3131,7,9, + 0,0,3131,3132,7,0,0,0,3132,3133,7,15,0,0,3133,3134,7,3,0,0,3134, + 3135,7,12,0,0,3135,3136,7,17,0,0,3136,3137,7,10,0,0,3137,624,1,0, + 0,0,3138,3139,7,3,0,0,3139,3140,7,5,0,0,3140,3141,7,0,0,0,3141,3142, + 7,10,0,0,3142,3143,7,9,0,0,3143,3144,7,0,0,0,3144,3145,7,15,0,0, + 3145,3146,7,3,0,0,3146,3147,7,12,0,0,3147,3148,7,17,0,0,3148,3149, + 7,10,0,0,3149,3150,7,9,0,0,3150,626,1,0,0,0,3151,3152,7,3,0,0,3152, + 3153,7,5,0,0,3153,3154,7,0,0,0,3154,3155,7,10,0,0,3155,3156,7,9, + 0,0,3156,3157,7,2,0,0,3157,3158,7,17,0,0,3158,3159,7,5,0,0,3159, + 3160,7,21,0,0,3160,628,1,0,0,0,3161,3162,7,3,0,0,3162,3163,7,5,0, + 0,3163,3164,7,12,0,0,3164,3165,7,21,0,0,3165,630,1,0,0,0,3166,3167, + 7,3,0,0,3167,3168,7,5,0,0,3168,3169,7,14,0,0,3169,3170,7,4,0,0,3170, + 632,1,0,0,0,3171,3172,7,3,0,0,3172,3173,7,5,0,0,3173,3174,7,14,0, + 0,3174,3175,7,10,0,0,3175,3176,7,15,0,0,3176,3177,7,0,0,0,3177,3178, + 7,3,0,0,3178,3179,7,4,0,0,3179,634,1,0,0,0,3180,3181,7,3,0,0,3181, + 3182,7,5,0,0,3182,3183,7,8,0,0,3183,3184,5,95,0,0,3184,3185,7,15, + 0,0,3185,3186,7,0,0,0,3186,3187,7,9,0,0,3187,3188,7,3,0,0,3188,636, + 1,0,0,0,3189,3190,7,3,0,0,3190,3191,7,8,0,0,3191,3192,7,22,0,0,3192, + 3193,7,4,0,0,3193,638,1,0,0,0,3194,3195,7,14,0,0,3195,3196,7,10, + 0,0,3196,3197,7,0,0,0,3197,3198,7,5,0,0,3198,3199,7,15,0,0,3199, + 3200,7,16,0,0,3200,3201,7,12,0,0,3201,3202,7,13,0,0,3202,3203,7, + 4,0,0,3203,640,1,0,0,0,3204,3205,7,14,0,0,3205,3206,7,10,0,0,3206, + 3207,7,18,0,0,3207,3208,7,17,0,0,3208,3209,7,14,0,0,3209,3210,7, + 10,0,0,3210,3211,7,1,0,0,3211,3212,7,4,0,0,3212,3213,7,1,0,0,3213, + 642,1,0,0,0,3214,3215,7,14,0,0,3215,3216,7,10,0,0,3216,3217,7,15, + 0,0,3217,3218,7,0,0,0,3218,3219,7,15,0,0,3219,3220,7,16,0,0,3220, + 3221,7,4,0,0,3221,644,1,0,0,0,3222,3223,7,14,0,0,3223,3224,7,10, + 0,0,3224,3225,7,12,0,0,3225,3226,7,17,0,0,3226,3227,7,10,0,0,3227, + 646,1,0,0,0,3228,3229,7,14,0,0,3229,3230,7,10,0,0,3230,3231,7,12, + 0,0,3231,3232,7,25,0,0,3232,3233,7,14,0,0,3233,3234,7,4,0,0,3234, + 648,1,0,0,0,3235,3236,7,14,0,0,3236,3237,7,10,0,0,3237,3238,7,20, + 0,0,3238,3239,7,10,0,0,3239,3240,7,17,0,0,3240,3241,7,7,0,0,3241, + 3242,7,10,0,0,3242,650,1,0,0,0,3243,3244,7,14,0,0,3244,3245,7,10, + 0,0,3245,3246,7,6,0,0,3246,3247,7,17,0,0,3247,3248,7,15,0,0,3248, + 3249,7,20,0,0,3249,652,1,0,0,0,3250,3251,7,14,0,0,3251,3252,7,10, + 0,0,3252,3253,7,22,0,0,3253,3254,7,12,0,0,3254,3255,7,13,0,0,3255, + 3256,7,17,0,0,3256,3257,7,3,0,0,3257,654,1,0,0,0,3258,3259,7,14, + 0,0,3259,3260,7,10,0,0,3260,3261,7,9,0,0,3261,3262,7,4,0,0,3262, + 3263,7,3,0,0,3263,656,1,0,0,0,3264,3265,7,14,0,0,3265,3266,7,22, + 0,0,3266,3267,7,1,0,0,3267,3268,7,0,0,0,3268,3269,7,3,0,0,3269,3270, + 7,4,0,0,3270,658,1,0,0,0,3271,3272,7,14,0,0,3272,3273,7,9,0,0,3273, + 3274,7,4,0,0,3274,660,1,0,0,0,3275,3276,7,14,0,0,3276,3277,7,9,0, + 0,3277,3278,7,4,0,0,3278,3279,7,5,0,0,3279,662,1,0,0,0,3280,3281, + 7,14,0,0,3281,3282,7,9,0,0,3282,3283,7,12,0,0,3283,3284,7,10,0,0, + 3284,3285,7,19,0,0,3285,664,1,0,0,0,3286,3287,7,13,0,0,3287,3288, + 7,0,0,0,3288,3289,7,6,0,0,3289,3290,7,14,0,0,3290,3291,7,4,0,0,3291, + 3292,7,9,0,0,3292,666,1,0,0,0,3293,3294,7,13,0,0,3294,3295,7,0,0, + 0,3295,3296,7,5,0,0,3296,3297,7,15,0,0,3297,3298,7,16,0,0,3298,3299, + 7,0,0,0,3299,3300,7,5,0,0,3300,668,1,0,0,0,3301,3302,7,13,0,0,3302, + 3303,7,0,0,0,3303,3304,7,5,0,0,3304,670,1,0,0,0,3305,3306,7,13,0, + 0,3306,3307,7,0,0,0,3307,3308,7,5,0,0,3308,3309,7,12,0,0,3309,3310, + 7,0,0,0,3310,3311,7,18,0,0,3311,3312,7,6,0,0,3312,3313,7,4,0,0,3313, + 672,1,0,0,0,3314,3315,7,13,0,0,3315,3316,7,4,0,0,3316,3317,7,5,0, + 0,3317,3318,7,9,0,0,3318,3319,7,12,0,0,3319,3320,7,17,0,0,3320,3321, + 7,10,0,0,3321,674,1,0,0,0,3322,3323,7,13,0,0,3323,3324,7,12,0,0, + 3324,3325,7,4,0,0,3325,3326,7,7,0,0,3326,676,1,0,0,0,3327,3328,7, + 13,0,0,3328,3329,7,12,0,0,3329,3330,7,4,0,0,3330,3331,7,7,0,0,3331, + 3332,7,9,0,0,3332,678,1,0,0,0,3333,3334,7,13,0,0,3334,3335,7,17, + 0,0,3335,3336,7,12,0,0,3336,3337,7,1,0,0,3337,680,1,0,0,0,3338,3339, + 7,7,0,0,3339,3340,7,4,0,0,3340,3341,7,4,0,0,3341,3342,7,20,0,0,3342, + 682,1,0,0,0,3343,3344,7,7,0,0,3344,3345,7,4,0,0,3345,3346,7,4,0, + 0,3346,3347,7,20,0,0,3347,3348,7,9,0,0,3348,684,1,0,0,0,3349,3350, + 7,7,0,0,3350,3351,7,16,0,0,3351,3352,7,4,0,0,3352,3353,7,10,0,0, + 3353,686,1,0,0,0,3354,3355,7,7,0,0,3355,3356,7,16,0,0,3356,3357, + 7,4,0,0,3357,3358,7,5,0,0,3358,3359,7,4,0,0,3359,688,1,0,0,0,3360, + 3361,7,7,0,0,3361,3362,7,12,0,0,3362,3363,7,10,0,0,3363,3364,7,1, + 0,0,3364,3365,7,17,0,0,3365,3366,7,7,0,0,3366,690,1,0,0,0,3367,3368, + 7,7,0,0,3368,3369,7,12,0,0,3369,3370,7,3,0,0,3370,3371,7,16,0,0, + 3371,692,1,0,0,0,3372,3373,7,7,0,0,3373,3374,7,12,0,0,3374,3375, + 7,3,0,0,3375,3376,7,16,0,0,3376,3377,7,12,0,0,3377,3378,7,10,0,0, + 3378,694,1,0,0,0,3379,3380,7,8,0,0,3380,3381,7,4,0,0,3381,3382,7, + 0,0,0,3382,3383,7,5,0,0,3383,696,1,0,0,0,3384,3385,7,8,0,0,3385, + 3386,7,4,0,0,3386,3387,7,0,0,0,3387,3388,7,5,0,0,3388,3389,7,9,0, + 0,3389,698,1,0,0,0,3390,3391,7,11,0,0,3391,3392,7,17,0,0,3392,3393, + 7,10,0,0,3393,3394,7,4,0,0,3394,700,1,0,0,0,3395,3396,7,11,0,0,3396, + 3397,7,17,0,0,3397,3398,7,5,0,0,3398,3399,7,1,0,0,3399,3400,7,4, + 0,0,3400,3401,7,5,0,0,3401,702,1,0,0,0,3402,3406,5,61,0,0,3403,3404, + 5,61,0,0,3404,3406,5,61,0,0,3405,3402,1,0,0,0,3405,3403,1,0,0,0, + 3406,704,1,0,0,0,3407,3408,5,60,0,0,3408,3409,5,61,0,0,3409,3410, + 5,62,0,0,3410,706,1,0,0,0,3411,3412,5,60,0,0,3412,3413,5,62,0,0, + 3413,708,1,0,0,0,3414,3415,5,33,0,0,3415,3416,5,61,0,0,3416,710, + 1,0,0,0,3417,3418,5,60,0,0,3418,712,1,0,0,0,3419,3420,5,60,0,0,3420, + 3424,5,61,0,0,3421,3422,5,33,0,0,3422,3424,5,62,0,0,3423,3419,1, + 0,0,0,3423,3421,1,0,0,0,3424,714,1,0,0,0,3425,3426,5,62,0,0,3426, + 716,1,0,0,0,3427,3428,5,62,0,0,3428,3432,5,61,0,0,3429,3430,5,33, + 0,0,3430,3432,5,60,0,0,3431,3427,1,0,0,0,3431,3429,1,0,0,0,3432, + 718,1,0,0,0,3433,3434,5,33,0,0,3434,720,1,0,0,0,3435,3436,5,43,0, + 0,3436,722,1,0,0,0,3437,3438,5,45,0,0,3438,724,1,0,0,0,3439,3440, + 5,42,0,0,3440,726,1,0,0,0,3441,3442,5,47,0,0,3442,728,1,0,0,0,3443, + 3444,5,37,0,0,3444,730,1,0,0,0,3445,3446,5,126,0,0,3446,732,1,0, + 0,0,3447,3448,5,38,0,0,3448,734,1,0,0,0,3449,3450,5,124,0,0,3450, + 736,1,0,0,0,3451,3452,5,124,0,0,3452,3453,5,124,0,0,3453,738,1,0, + 0,0,3454,3455,5,94,0,0,3455,740,1,0,0,0,3456,3457,5,58,0,0,3457, + 742,1,0,0,0,3458,3459,5,45,0,0,3459,3460,5,62,0,0,3460,744,1,0,0, + 0,3461,3462,5,61,0,0,3462,3463,5,62,0,0,3463,746,1,0,0,0,3464,3465, + 5,47,0,0,3465,3466,5,42,0,0,3466,3467,5,43,0,0,3467,748,1,0,0,0, + 3468,3469,5,42,0,0,3469,3470,5,47,0,0,3470,750,1,0,0,0,3471,3472, + 5,63,0,0,3472,752,1,0,0,0,3473,3479,5,39,0,0,3474,3478,8,26,0,0, + 3475,3476,5,92,0,0,3476,3478,9,0,0,0,3477,3474,1,0,0,0,3477,3475, + 1,0,0,0,3478,3481,1,0,0,0,3479,3477,1,0,0,0,3479,3480,1,0,0,0,3480, + 3482,1,0,0,0,3481,3479,1,0,0,0,3482,3504,5,39,0,0,3483,3484,7,5, + 0,0,3484,3485,5,39,0,0,3485,3489,1,0,0,0,3486,3488,8,27,0,0,3487, + 3486,1,0,0,0,3488,3491,1,0,0,0,3489,3487,1,0,0,0,3489,3490,1,0,0, + 0,3490,3492,1,0,0,0,3491,3489,1,0,0,0,3492,3504,5,39,0,0,3493,3494, + 7,5,0,0,3494,3495,5,34,0,0,3495,3499,1,0,0,0,3496,3498,8,28,0,0, + 3497,3496,1,0,0,0,3498,3501,1,0,0,0,3499,3497,1,0,0,0,3499,3500, + 1,0,0,0,3500,3502,1,0,0,0,3501,3499,1,0,0,0,3502,3504,5,34,0,0,3503, + 3473,1,0,0,0,3503,3483,1,0,0,0,3503,3493,1,0,0,0,3504,754,1,0,0, + 0,3505,3511,5,34,0,0,3506,3510,8,29,0,0,3507,3508,5,92,0,0,3508, + 3510,9,0,0,0,3509,3506,1,0,0,0,3509,3507,1,0,0,0,3510,3513,1,0,0, + 0,3511,3509,1,0,0,0,3511,3512,1,0,0,0,3512,3514,1,0,0,0,3513,3511, + 1,0,0,0,3514,3515,5,34,0,0,3515,756,1,0,0,0,3516,3518,3,783,391, + 0,3517,3516,1,0,0,0,3518,3519,1,0,0,0,3519,3517,1,0,0,0,3519,3520, + 1,0,0,0,3520,3521,1,0,0,0,3521,3522,7,6,0,0,3522,758,1,0,0,0,3523, + 3525,3,783,391,0,3524,3523,1,0,0,0,3525,3526,1,0,0,0,3526,3524,1, + 0,0,0,3526,3527,1,0,0,0,3527,3528,1,0,0,0,3528,3529,7,9,0,0,3529, + 760,1,0,0,0,3530,3532,3,783,391,0,3531,3530,1,0,0,0,3532,3533,1, 0,0,0,3533,3531,1,0,0,0,3533,3534,1,0,0,0,3534,3535,1,0,0,0,3535, - 3536,3,779,389,0,3536,3541,1,0,0,0,3537,3538,3,777,388,0,3538,3539, - 3,779,389,0,3539,3541,1,0,0,0,3540,3531,1,0,0,0,3540,3537,1,0,0, - 0,3541,764,1,0,0,0,3542,3543,3,777,388,0,3543,766,1,0,0,0,3544,3546, - 3,781,390,0,3545,3544,1,0,0,0,3546,3547,1,0,0,0,3547,3545,1,0,0, - 0,3547,3548,1,0,0,0,3548,3550,1,0,0,0,3549,3551,3,779,389,0,3550, - 3549,1,0,0,0,3550,3551,1,0,0,0,3551,3552,1,0,0,0,3552,3553,7,2,0, - 0,3553,3561,1,0,0,0,3554,3556,3,777,388,0,3555,3557,3,779,389,0, - 3556,3555,1,0,0,0,3556,3557,1,0,0,0,3557,3558,1,0,0,0,3558,3559, - 7,2,0,0,3559,3561,1,0,0,0,3560,3545,1,0,0,0,3560,3554,1,0,0,0,3561, - 768,1,0,0,0,3562,3564,3,781,390,0,3563,3562,1,0,0,0,3564,3565,1, - 0,0,0,3565,3563,1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567, - 3569,3,779,389,0,3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3570,1, - 0,0,0,3570,3571,7,1,0,0,3571,3579,1,0,0,0,3572,3574,3,777,388,0, - 3573,3575,3,779,389,0,3574,3573,1,0,0,0,3574,3575,1,0,0,0,3575,3576, - 1,0,0,0,3576,3577,7,1,0,0,3577,3579,1,0,0,0,3578,3563,1,0,0,0,3578, - 3572,1,0,0,0,3579,770,1,0,0,0,3580,3582,3,781,390,0,3581,3580,1, - 0,0,0,3582,3583,1,0,0,0,3583,3581,1,0,0,0,3583,3584,1,0,0,0,3584, - 3586,1,0,0,0,3585,3587,3,779,389,0,3586,3585,1,0,0,0,3586,3587,1, - 0,0,0,3587,3588,1,0,0,0,3588,3589,7,18,0,0,3589,3590,7,1,0,0,3590, - 3599,1,0,0,0,3591,3593,3,777,388,0,3592,3594,3,779,389,0,3593,3592, - 1,0,0,0,3593,3594,1,0,0,0,3594,3595,1,0,0,0,3595,3596,7,18,0,0,3596, - 3597,7,1,0,0,3597,3599,1,0,0,0,3598,3581,1,0,0,0,3598,3591,1,0,0, - 0,3599,772,1,0,0,0,3600,3604,3,783,391,0,3601,3604,3,781,390,0,3602, - 3604,5,95,0,0,3603,3600,1,0,0,0,3603,3601,1,0,0,0,3603,3602,1,0, - 0,0,3604,3605,1,0,0,0,3605,3603,1,0,0,0,3605,3606,1,0,0,0,3606,774, - 1,0,0,0,3607,3613,5,96,0,0,3608,3612,8,30,0,0,3609,3610,5,96,0,0, - 3610,3612,5,96,0,0,3611,3608,1,0,0,0,3611,3609,1,0,0,0,3612,3615, - 1,0,0,0,3613,3611,1,0,0,0,3613,3614,1,0,0,0,3614,3616,1,0,0,0,3615, - 3613,1,0,0,0,3616,3617,5,96,0,0,3617,776,1,0,0,0,3618,3620,3,781, - 390,0,3619,3618,1,0,0,0,3620,3621,1,0,0,0,3621,3619,1,0,0,0,3621, - 3622,1,0,0,0,3622,3623,1,0,0,0,3623,3627,5,46,0,0,3624,3626,3,781, - 390,0,3625,3624,1,0,0,0,3626,3629,1,0,0,0,3627,3625,1,0,0,0,3627, - 3628,1,0,0,0,3628,3637,1,0,0,0,3629,3627,1,0,0,0,3630,3632,5,46, - 0,0,3631,3633,3,781,390,0,3632,3631,1,0,0,0,3633,3634,1,0,0,0,3634, - 3632,1,0,0,0,3634,3635,1,0,0,0,3635,3637,1,0,0,0,3636,3619,1,0,0, - 0,3636,3630,1,0,0,0,3637,778,1,0,0,0,3638,3640,7,4,0,0,3639,3641, - 7,31,0,0,3640,3639,1,0,0,0,3640,3641,1,0,0,0,3641,3643,1,0,0,0,3642, - 3644,3,781,390,0,3643,3642,1,0,0,0,3644,3645,1,0,0,0,3645,3643,1, - 0,0,0,3645,3646,1,0,0,0,3646,780,1,0,0,0,3647,3648,7,32,0,0,3648, - 782,1,0,0,0,3649,3650,7,33,0,0,3650,784,1,0,0,0,3651,3652,5,45,0, - 0,3652,3653,5,45,0,0,3653,3659,1,0,0,0,3654,3655,5,92,0,0,3655,3658, - 5,10,0,0,3656,3658,8,34,0,0,3657,3654,1,0,0,0,3657,3656,1,0,0,0, - 3658,3661,1,0,0,0,3659,3657,1,0,0,0,3659,3660,1,0,0,0,3660,3663, - 1,0,0,0,3661,3659,1,0,0,0,3662,3664,5,13,0,0,3663,3662,1,0,0,0,3663, - 3664,1,0,0,0,3664,3666,1,0,0,0,3665,3667,5,10,0,0,3666,3665,1,0, - 0,0,3666,3667,1,0,0,0,3667,3668,1,0,0,0,3668,3669,6,392,0,0,3669, - 786,1,0,0,0,3670,3671,5,47,0,0,3671,3672,5,42,0,0,3672,3677,1,0, - 0,0,3673,3676,3,787,393,0,3674,3676,9,0,0,0,3675,3673,1,0,0,0,3675, - 3674,1,0,0,0,3676,3679,1,0,0,0,3677,3678,1,0,0,0,3677,3675,1,0,0, - 0,3678,3684,1,0,0,0,3679,3677,1,0,0,0,3680,3681,5,42,0,0,3681,3685, - 5,47,0,0,3682,3683,6,393,1,0,3683,3685,5,0,0,1,3684,3680,1,0,0,0, - 3684,3682,1,0,0,0,3685,3686,1,0,0,0,3686,3687,6,393,0,0,3687,788, - 1,0,0,0,3688,3690,7,35,0,0,3689,3688,1,0,0,0,3690,3691,1,0,0,0,3691, - 3689,1,0,0,0,3691,3692,1,0,0,0,3692,3693,1,0,0,0,3693,3694,6,394, - 0,0,3694,790,1,0,0,0,3695,3696,9,0,0,0,3696,792,1,0,0,0,47,0,3393, - 3411,3419,3465,3467,3477,3487,3491,3497,3499,3507,3514,3521,3528, - 3533,3540,3547,3550,3556,3560,3565,3568,3574,3578,3583,3586,3593, - 3598,3603,3605,3611,3613,3621,3627,3634,3636,3640,3645,3657,3659, - 3663,3666,3675,3677,3684,3691,2,0,1,0,1,393,0 + 3536,7,8,0,0,3536,762,1,0,0,0,3537,3539,3,783,391,0,3538,3537,1, + 0,0,0,3539,3540,1,0,0,0,3540,3538,1,0,0,0,3540,3541,1,0,0,0,3541, + 764,1,0,0,0,3542,3544,3,783,391,0,3543,3542,1,0,0,0,3544,3545,1, + 0,0,0,3545,3543,1,0,0,0,3545,3546,1,0,0,0,3546,3547,1,0,0,0,3547, + 3548,3,781,390,0,3548,3553,1,0,0,0,3549,3550,3,779,389,0,3550,3551, + 3,781,390,0,3551,3553,1,0,0,0,3552,3543,1,0,0,0,3552,3549,1,0,0, + 0,3553,766,1,0,0,0,3554,3555,3,779,389,0,3555,768,1,0,0,0,3556,3558, + 3,783,391,0,3557,3556,1,0,0,0,3558,3559,1,0,0,0,3559,3557,1,0,0, + 0,3559,3560,1,0,0,0,3560,3562,1,0,0,0,3561,3563,3,781,390,0,3562, + 3561,1,0,0,0,3562,3563,1,0,0,0,3563,3564,1,0,0,0,3564,3565,7,2,0, + 0,3565,3573,1,0,0,0,3566,3568,3,779,389,0,3567,3569,3,781,390,0, + 3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3570,1,0,0,0,3570,3571, + 7,2,0,0,3571,3573,1,0,0,0,3572,3557,1,0,0,0,3572,3566,1,0,0,0,3573, + 770,1,0,0,0,3574,3576,3,783,391,0,3575,3574,1,0,0,0,3576,3577,1, + 0,0,0,3577,3575,1,0,0,0,3577,3578,1,0,0,0,3578,3580,1,0,0,0,3579, + 3581,3,781,390,0,3580,3579,1,0,0,0,3580,3581,1,0,0,0,3581,3582,1, + 0,0,0,3582,3583,7,1,0,0,3583,3591,1,0,0,0,3584,3586,3,779,389,0, + 3585,3587,3,781,390,0,3586,3585,1,0,0,0,3586,3587,1,0,0,0,3587,3588, + 1,0,0,0,3588,3589,7,1,0,0,3589,3591,1,0,0,0,3590,3575,1,0,0,0,3590, + 3584,1,0,0,0,3591,772,1,0,0,0,3592,3594,3,783,391,0,3593,3592,1, + 0,0,0,3594,3595,1,0,0,0,3595,3593,1,0,0,0,3595,3596,1,0,0,0,3596, + 3598,1,0,0,0,3597,3599,3,781,390,0,3598,3597,1,0,0,0,3598,3599,1, + 0,0,0,3599,3600,1,0,0,0,3600,3601,7,18,0,0,3601,3602,7,1,0,0,3602, + 3611,1,0,0,0,3603,3605,3,779,389,0,3604,3606,3,781,390,0,3605,3604, + 1,0,0,0,3605,3606,1,0,0,0,3606,3607,1,0,0,0,3607,3608,7,18,0,0,3608, + 3609,7,1,0,0,3609,3611,1,0,0,0,3610,3593,1,0,0,0,3610,3603,1,0,0, + 0,3611,774,1,0,0,0,3612,3616,3,785,392,0,3613,3616,3,783,391,0,3614, + 3616,5,95,0,0,3615,3612,1,0,0,0,3615,3613,1,0,0,0,3615,3614,1,0, + 0,0,3616,3617,1,0,0,0,3617,3615,1,0,0,0,3617,3618,1,0,0,0,3618,776, + 1,0,0,0,3619,3625,5,96,0,0,3620,3624,8,30,0,0,3621,3622,5,96,0,0, + 3622,3624,5,96,0,0,3623,3620,1,0,0,0,3623,3621,1,0,0,0,3624,3627, + 1,0,0,0,3625,3623,1,0,0,0,3625,3626,1,0,0,0,3626,3628,1,0,0,0,3627, + 3625,1,0,0,0,3628,3629,5,96,0,0,3629,778,1,0,0,0,3630,3632,3,783, + 391,0,3631,3630,1,0,0,0,3632,3633,1,0,0,0,3633,3631,1,0,0,0,3633, + 3634,1,0,0,0,3634,3635,1,0,0,0,3635,3639,5,46,0,0,3636,3638,3,783, + 391,0,3637,3636,1,0,0,0,3638,3641,1,0,0,0,3639,3637,1,0,0,0,3639, + 3640,1,0,0,0,3640,3649,1,0,0,0,3641,3639,1,0,0,0,3642,3644,5,46, + 0,0,3643,3645,3,783,391,0,3644,3643,1,0,0,0,3645,3646,1,0,0,0,3646, + 3644,1,0,0,0,3646,3647,1,0,0,0,3647,3649,1,0,0,0,3648,3631,1,0,0, + 0,3648,3642,1,0,0,0,3649,780,1,0,0,0,3650,3652,7,4,0,0,3651,3653, + 7,31,0,0,3652,3651,1,0,0,0,3652,3653,1,0,0,0,3653,3655,1,0,0,0,3654, + 3656,3,783,391,0,3655,3654,1,0,0,0,3656,3657,1,0,0,0,3657,3655,1, + 0,0,0,3657,3658,1,0,0,0,3658,782,1,0,0,0,3659,3660,7,32,0,0,3660, + 784,1,0,0,0,3661,3662,7,33,0,0,3662,786,1,0,0,0,3663,3664,5,45,0, + 0,3664,3665,5,45,0,0,3665,3671,1,0,0,0,3666,3667,5,92,0,0,3667,3670, + 5,10,0,0,3668,3670,8,34,0,0,3669,3666,1,0,0,0,3669,3668,1,0,0,0, + 3670,3673,1,0,0,0,3671,3669,1,0,0,0,3671,3672,1,0,0,0,3672,3675, + 1,0,0,0,3673,3671,1,0,0,0,3674,3676,5,13,0,0,3675,3674,1,0,0,0,3675, + 3676,1,0,0,0,3676,3678,1,0,0,0,3677,3679,5,10,0,0,3678,3677,1,0, + 0,0,3678,3679,1,0,0,0,3679,3680,1,0,0,0,3680,3681,6,393,0,0,3681, + 788,1,0,0,0,3682,3683,5,47,0,0,3683,3684,5,42,0,0,3684,3689,1,0, + 0,0,3685,3688,3,789,394,0,3686,3688,9,0,0,0,3687,3685,1,0,0,0,3687, + 3686,1,0,0,0,3688,3691,1,0,0,0,3689,3690,1,0,0,0,3689,3687,1,0,0, + 0,3690,3696,1,0,0,0,3691,3689,1,0,0,0,3692,3693,5,42,0,0,3693,3697, + 5,47,0,0,3694,3695,6,394,1,0,3695,3697,5,0,0,1,3696,3692,1,0,0,0, + 3696,3694,1,0,0,0,3697,3698,1,0,0,0,3698,3699,6,394,0,0,3699,790, + 1,0,0,0,3700,3702,7,35,0,0,3701,3700,1,0,0,0,3702,3703,1,0,0,0,3703, + 3701,1,0,0,0,3703,3704,1,0,0,0,3704,3705,1,0,0,0,3705,3706,6,395, + 0,0,3706,792,1,0,0,0,3707,3708,9,0,0,0,3708,794,1,0,0,0,47,0,3405, + 3423,3431,3477,3479,3489,3499,3503,3509,3511,3519,3526,3533,3540, + 3545,3552,3559,3562,3568,3572,3577,3580,3586,3590,3595,3598,3605, + 3610,3615,3617,3623,3625,3633,3639,3646,3648,3652,3657,3669,3671, + 3675,3678,3687,3689,3696,3703,2,0,1,0,1,394,0 ]; private static __ATN: antlr.ATN; diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 0e1f916..71336af 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -161,6 +161,7 @@ null 'LAZY' 'LEADING' 'LEFT' +'LIFECYCLE' 'LIKE' 'ILIKE' 'LIMIT' @@ -556,6 +557,7 @@ KW_LATERAL KW_LAZY KW_LEADING KW_LEFT +KW_LIFECYCLE KW_LIKE KW_ILIKE KW_LIMIT @@ -815,6 +817,7 @@ ctes namedQuery tableProvider createTableClauses +tableLifecycle propertyList property propertyKey @@ -991,4 +994,4 @@ nonReserved atn: -[4, 1, 392, 3964, 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, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 418, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 425, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 430, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 438, 8, 2, 10, 2, 12, 2, 441, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 459, 8, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 469, 8, 2, 1, 2, 3, 2, 472, 8, 2, 1, 2, 3, 2, 475, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 482, 8, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 3, 2, 489, 8, 2, 1, 2, 3, 2, 492, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 497, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 508, 8, 2, 10, 2, 12, 2, 511, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 518, 8, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 1, 2, 3, 2, 525, 8, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 534, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 545, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 551, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 556, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 589, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 599, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 610, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 621, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 632, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 637, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 3, 2, 650, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 656, 8, 2, 1, 2, 1, 2, 3, 2, 660, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 683, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 691, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 697, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 1, 2, 3, 2, 712, 8, 2, 1, 2, 4, 2, 715, 8, 2, 11, 2, 12, 2, 716, 1, 2, 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, 732, 8, 2, 1, 2, 1, 2, 3, 2, 736, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 741, 8, 2, 10, 2, 12, 2, 744, 9, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 753, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 782, 8, 2, 1, 2, 1, 2, 3, 2, 786, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 791, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 798, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 804, 8, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 1, 2, 3, 2, 814, 8, 2, 1, 2, 1, 2, 3, 2, 818, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 826, 8, 2, 10, 2, 12, 2, 829, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 837, 8, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 849, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 854, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 860, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 867, 8, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 1, 2, 3, 2, 874, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 883, 8, 2, 10, 2, 12, 2, 886, 9, 2, 3, 2, 888, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 894, 8, 2, 1, 2, 1, 2, 3, 2, 898, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 913, 8, 2, 10, 2, 12, 2, 916, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 923, 8, 2, 1, 2, 1, 2, 3, 2, 927, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 933, 8, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 949, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 954, 8, 2, 1, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 965, 8, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 978, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 983, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 992, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1000, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1006, 8, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1018, 8, 2, 1, 2, 1, 2, 3, 2, 1022, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1027, 8, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 1, 2, 3, 2, 1034, 8, 2, 3, 2, 1036, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1044, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1052, 8, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1062, 8, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1077, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1082, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1088, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1093, 8, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 1, 2, 3, 2, 1100, 8, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1133, 8, 2, 10, 2, 12, 2, 1136, 9, 2, 3, 2, 1138, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1146, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1152, 8, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1163, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1171, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1176, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1182, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1188, 8, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1198, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1203, 8, 2, 10, 2, 12, 2, 1206, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1211, 8, 2, 10, 2, 12, 2, 1214, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1228, 8, 2, 10, 2, 12, 2, 1231, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1255, 8, 2, 10, 2, 12, 2, 1258, 9, 2, 3, 2, 1260, 8, 2, 1, 2, 1, 2, 5, 2, 1264, 8, 2, 10, 2, 12, 2, 1267, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1273, 8, 2, 10, 2, 12, 2, 1276, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1282, 8, 2, 10, 2, 12, 2, 1285, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1290, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1295, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1300, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1307, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1312, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1317, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1324, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1330, 8, 2, 10, 2, 12, 2, 1333, 9, 2, 3, 2, 1335, 8, 2, 1, 3, 1, 3, 3, 3, 1339, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1351, 8, 6, 1, 6, 1, 6, 3, 6, 1355, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1362, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1478, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1486, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1494, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1503, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1513, 8, 6, 1, 7, 1, 7, 3, 7, 1517, 8, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 1, 7, 3, 7, 1524, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1542, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1554, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1559, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1568, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1576, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1581, 8, 14, 3, 14, 1583, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1591, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1596, 8, 14, 1, 14, 1, 14, 3, 14, 1600, 8, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1616, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1625, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1630, 8, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1638, 8, 14, 1, 14, 1, 14, 3, 14, 1642, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1647, 8, 14, 3, 14, 1649, 8, 14, 1, 15, 1, 15, 3, 15, 1653, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1660, 8, 16, 10, 16, 12, 16, 1663, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1670, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1676, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1687, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1692, 8, 21, 10, 21, 12, 21, 1695, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1701, 8, 22, 10, 22, 12, 22, 1704, 9, 22, 1, 23, 1, 23, 3, 23, 1708, 8, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1733, 8, 25, 10, 25, 12, 25, 1736, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1742, 8, 26, 10, 26, 12, 26, 1745, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 1751, 8, 27, 1, 27, 3, 27, 1754, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 1759, 8, 28, 10, 28, 12, 28, 1762, 9, 28, 1, 28, 3, 28, 1765, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1771, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1777, 8, 30, 10, 30, 12, 30, 1780, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 1786, 8, 31, 1, 31, 3, 31, 1789, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1795, 8, 32, 10, 32, 12, 32, 1798, 9, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1806, 8, 33, 10, 33, 12, 33, 1809, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1819, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1827, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1833, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 4, 38, 1843, 8, 38, 11, 38, 12, 38, 1844, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1852, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1859, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1871, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1877, 8, 38, 10, 38, 12, 38, 1880, 9, 38, 1, 38, 5, 38, 1883, 8, 38, 10, 38, 12, 38, 1886, 9, 38, 1, 38, 5, 38, 1889, 8, 38, 10, 38, 12, 38, 1892, 9, 38, 3, 38, 1894, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 3, 45, 1910, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 1915, 8, 46, 10, 46, 12, 46, 1918, 9, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1928, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1935, 8, 49, 10, 49, 12, 49, 1938, 9, 49, 3, 49, 1940, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1947, 8, 49, 10, 49, 12, 49, 1950, 9, 49, 3, 49, 1952, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1959, 8, 49, 10, 49, 12, 49, 1962, 9, 49, 3, 49, 1964, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1971, 8, 49, 10, 49, 12, 49, 1974, 9, 49, 3, 49, 1976, 8, 49, 1, 49, 3, 49, 1979, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1984, 8, 49, 3, 49, 1986, 8, 49, 1, 49, 1, 49, 3, 49, 1990, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2001, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2007, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2013, 8, 51, 1, 51, 5, 51, 2016, 8, 51, 10, 51, 12, 51, 2019, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2030, 8, 52, 1, 53, 1, 53, 3, 53, 2034, 8, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 53, 1, 53, 3, 53, 2041, 8, 53, 1, 54, 1, 54, 4, 54, 2045, 8, 54, 11, 54, 12, 54, 2046, 1, 55, 1, 55, 3, 55, 2051, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2057, 8, 55, 10, 55, 12, 55, 2060, 9, 55, 1, 55, 3, 55, 2063, 8, 55, 1, 55, 3, 55, 2066, 8, 55, 1, 55, 3, 55, 2069, 8, 55, 1, 55, 3, 55, 2072, 8, 55, 1, 55, 1, 55, 3, 55, 2076, 8, 55, 1, 56, 1, 56, 3, 56, 2080, 8, 56, 1, 56, 5, 56, 2083, 8, 56, 10, 56, 12, 56, 2086, 9, 56, 1, 56, 3, 56, 2089, 8, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 3, 56, 2098, 8, 56, 1, 56, 1, 56, 3, 56, 2102, 8, 56, 1, 56, 5, 56, 2105, 8, 56, 10, 56, 12, 56, 2108, 9, 56, 1, 56, 3, 56, 2111, 8, 56, 1, 56, 3, 56, 2114, 8, 56, 1, 56, 3, 56, 2117, 8, 56, 1, 56, 3, 56, 2120, 8, 56, 3, 56, 2122, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2128, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 1, 57, 3, 57, 2150, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2160, 8, 57, 1, 57, 1, 57, 3, 57, 2164, 8, 57, 3, 57, 2166, 8, 57, 1, 57, 3, 57, 2169, 8, 57, 1, 57, 1, 57, 3, 57, 2173, 8, 57, 1, 58, 1, 58, 5, 58, 2177, 8, 58, 10, 58, 12, 58, 2180, 9, 58, 1, 58, 3, 58, 2183, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2194, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2204, 8, 61, 1, 61, 1, 61, 3, 61, 2208, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2220, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2232, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2245, 8, 64, 10, 64, 12, 64, 2248, 9, 64, 1, 64, 1, 64, 3, 64, 2252, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2258, 8, 65, 1, 66, 1, 66, 1, 66, 5, 66, 2263, 8, 66, 10, 66, 12, 66, 2266, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 3, 70, 2281, 8, 70, 1, 70, 5, 70, 2284, 8, 70, 10, 70, 12, 70, 2287, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2297, 8, 71, 10, 71, 12, 71, 2300, 9, 71, 1, 71, 1, 71, 3, 71, 2304, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2310, 8, 72, 10, 72, 12, 72, 2313, 9, 72, 1, 72, 5, 72, 2316, 8, 72, 10, 72, 12, 72, 2319, 9, 72, 1, 72, 3, 72, 2322, 8, 72, 1, 72, 3, 72, 2325, 8, 72, 1, 73, 1, 73, 1, 74, 3, 74, 2330, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2337, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2343, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2350, 8, 75, 10, 75, 12, 75, 2353, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2360, 8, 75, 10, 75, 12, 75, 2363, 9, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2375, 8, 75, 10, 75, 12, 75, 2378, 9, 75, 1, 75, 1, 75, 3, 75, 2382, 8, 75, 3, 75, 2384, 8, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2396, 8, 77, 10, 77, 12, 77, 2399, 9, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2409, 8, 77, 10, 77, 12, 77, 2412, 9, 77, 1, 77, 1, 77, 3, 77, 2416, 8, 77, 1, 78, 1, 78, 3, 78, 2420, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2432, 8, 79, 5, 79, 2434, 8, 79, 10, 79, 12, 79, 2437, 9, 79, 3, 79, 2439, 8, 79, 1, 79, 3, 79, 2442, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2454, 8, 80, 10, 80, 12, 80, 2457, 9, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2467, 8, 81, 10, 81, 12, 81, 2470, 9, 81, 1, 81, 1, 81, 3, 81, 2474, 8, 81, 1, 82, 1, 82, 3, 82, 2478, 8, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2491, 8, 83, 1, 83, 3, 83, 2494, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2501, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2511, 8, 86, 10, 86, 12, 86, 2514, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2522, 8, 87, 10, 87, 12, 87, 2525, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2535, 8, 87, 10, 87, 12, 87, 2538, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2546, 8, 88, 10, 88, 12, 88, 2549, 9, 88, 1, 88, 1, 88, 3, 88, 2553, 8, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 2561, 8, 91, 1, 92, 1, 92, 1, 93, 3, 93, 2566, 8, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2580, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2587, 8, 96, 10, 96, 12, 96, 2590, 9, 96, 3, 96, 2592, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2597, 8, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2602, 8, 96, 10, 96, 12, 96, 2605, 9, 96, 3, 96, 2607, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2613, 8, 98, 1, 98, 1, 98, 5, 98, 2617, 8, 98, 10, 98, 12, 98, 2620, 9, 98, 3, 98, 2622, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2627, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2632, 8, 100, 1, 100, 1, 100, 3, 100, 2636, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2642, 8, 100, 1, 100, 1, 100, 3, 100, 2646, 8, 100, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2654, 8, 101, 1, 101, 3, 101, 2657, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2662, 8, 101, 1, 101, 1, 101, 3, 101, 2666, 8, 101, 1, 101, 3, 101, 2669, 8, 101, 1, 101, 3, 101, 2672, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2678, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2683, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2690, 8, 103, 1, 104, 3, 104, 2693, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2711, 8, 104, 3, 104, 2713, 8, 104, 1, 104, 3, 104, 2716, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 5, 106, 2725, 8, 106, 10, 106, 12, 106, 2728, 9, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2734, 8, 107, 10, 107, 12, 107, 2737, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 3, 108, 2743, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 2749, 8, 109, 10, 109, 12, 109, 2752, 9, 109, 1, 109, 1, 109, 1, 110, 1, 110, 3, 110, 2758, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2763, 8, 111, 1, 111, 3, 111, 2766, 8, 111, 1, 111, 3, 111, 2769, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2777, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2785, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2791, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 2797, 8, 112, 10, 112, 12, 112, 2800, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2807, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2814, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2821, 8, 113, 3, 113, 2823, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2834, 8, 114, 10, 114, 12, 114, 2837, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2842, 8, 114, 3, 114, 2844, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2852, 8, 114, 10, 114, 12, 114, 2855, 9, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2860, 8, 114, 3, 114, 2862, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 3, 116, 2870, 8, 116, 1, 117, 1, 117, 3, 117, 2874, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 2881, 8, 118, 10, 118, 12, 118, 2884, 9, 118, 3, 118, 2886, 8, 118, 1, 118, 1, 118, 1, 118, 1, 119, 3, 119, 2892, 8, 119, 1, 119, 1, 119, 3, 119, 2896, 8, 119, 3, 119, 2898, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2907, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2919, 8, 120, 3, 120, 2921, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2928, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2935, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2941, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 2947, 8, 120, 3, 120, 2949, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2954, 8, 121, 10, 121, 12, 121, 2957, 9, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2962, 8, 122, 10, 122, 12, 122, 2965, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2970, 8, 123, 10, 123, 12, 123, 2973, 9, 123, 1, 124, 1, 124, 1, 124, 3, 124, 2978, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2983, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 2996, 8, 127, 1, 127, 3, 127, 2999, 8, 127, 1, 127, 1, 127, 3, 127, 3003, 8, 127, 3, 127, 3005, 8, 127, 1, 128, 1, 128, 1, 128, 5, 128, 3010, 8, 128, 10, 128, 12, 128, 3013, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3019, 8, 129, 10, 129, 12, 129, 3022, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 3028, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3036, 8, 131, 10, 131, 12, 131, 3039, 9, 131, 1, 131, 1, 131, 3, 131, 3043, 8, 131, 1, 132, 1, 132, 3, 132, 3047, 8, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 3057, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3062, 8, 136, 10, 136, 12, 136, 3065, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3077, 8, 137, 3, 137, 3079, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3087, 8, 137, 10, 137, 12, 137, 3090, 9, 137, 1, 138, 3, 138, 3093, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3101, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3108, 8, 138, 10, 138, 12, 138, 3111, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3116, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3124, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3129, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3139, 8, 138, 10, 138, 12, 138, 3142, 9, 138, 1, 138, 1, 138, 3, 138, 3146, 8, 138, 1, 138, 3, 138, 3149, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3155, 8, 138, 1, 138, 1, 138, 3, 138, 3159, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3164, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3169, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3174, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3180, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3201, 8, 139, 10, 139, 12, 139, 3204, 9, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3214, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3226, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3236, 8, 141, 11, 141, 12, 141, 3237, 1, 141, 1, 141, 3, 141, 3242, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3249, 8, 141, 11, 141, 12, 141, 3250, 1, 141, 1, 141, 3, 141, 3255, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3271, 8, 141, 10, 141, 12, 141, 3274, 9, 141, 3, 141, 3276, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3284, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3293, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3302, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3323, 8, 141, 11, 141, 12, 141, 3324, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3341, 8, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3346, 8, 141, 10, 141, 12, 141, 3349, 9, 141, 3, 141, 3351, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3360, 8, 141, 1, 141, 1, 141, 3, 141, 3364, 8, 141, 1, 141, 1, 141, 3, 141, 3368, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 4, 141, 3378, 8, 141, 11, 141, 12, 141, 3379, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3405, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3412, 8, 141, 1, 141, 3, 141, 3415, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3430, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3451, 8, 141, 1, 141, 1, 141, 3, 141, 3455, 8, 141, 3, 141, 3457, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3467, 8, 141, 10, 141, 12, 141, 3470, 9, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3479, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 3492, 8, 143, 11, 143, 12, 143, 3493, 3, 143, 3496, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 3509, 8, 148, 1, 149, 1, 149, 3, 149, 3513, 8, 149, 1, 150, 1, 150, 1, 150, 4, 150, 3518, 8, 150, 11, 150, 12, 150, 3519, 1, 151, 1, 151, 1, 151, 3, 151, 3525, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 3, 153, 3533, 8, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3538, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3547, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3579, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3596, 8, 158, 1, 158, 1, 158, 3, 158, 3600, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3606, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3612, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 3619, 8, 158, 10, 158, 12, 158, 3622, 9, 158, 1, 158, 3, 158, 3625, 8, 158, 3, 158, 3627, 8, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3632, 8, 159, 10, 159, 12, 159, 3635, 9, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3640, 8, 160, 10, 160, 12, 160, 3643, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3648, 8, 161, 10, 161, 12, 161, 3651, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3656, 8, 162, 10, 162, 12, 162, 3659, 9, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3666, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3677, 8, 166, 10, 166, 12, 166, 3680, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 3686, 8, 167, 1, 167, 3, 167, 3689, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3694, 8, 168, 10, 168, 12, 168, 3697, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3702, 8, 169, 10, 169, 12, 169, 3705, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3712, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3724, 8, 172, 10, 172, 12, 172, 3727, 9, 172, 1, 173, 1, 173, 3, 173, 3731, 8, 173, 1, 173, 1, 173, 1, 173, 3, 173, 3736, 8, 173, 1, 173, 3, 173, 3739, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 5, 175, 3750, 8, 175, 10, 175, 12, 175, 3753, 9, 175, 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, 178, 1, 178, 1, 178, 5, 178, 3774, 8, 178, 10, 178, 12, 178, 3777, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3784, 8, 178, 10, 178, 12, 178, 3787, 9, 178, 3, 178, 3789, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 3796, 8, 178, 10, 178, 12, 178, 3799, 9, 178, 3, 178, 3801, 8, 178, 3, 178, 3803, 8, 178, 1, 178, 3, 178, 3806, 8, 178, 1, 178, 3, 178, 3809, 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, 1, 179, 1, 179, 3, 179, 3827, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3836, 8, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3841, 8, 181, 10, 181, 12, 181, 3844, 9, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 3855, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 3862, 8, 184, 10, 184, 12, 184, 3865, 9, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 4, 186, 3872, 8, 186, 11, 186, 12, 186, 3873, 1, 186, 3, 186, 3877, 8, 186, 1, 187, 1, 187, 3, 187, 3881, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3887, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 3, 191, 3894, 8, 191, 1, 191, 1, 191, 3, 191, 3898, 8, 191, 1, 191, 1, 191, 3, 191, 3902, 8, 191, 1, 191, 1, 191, 3, 191, 3906, 8, 191, 1, 191, 1, 191, 3, 191, 3910, 8, 191, 1, 191, 1, 191, 3, 191, 3914, 8, 191, 1, 191, 1, 191, 3, 191, 3918, 8, 191, 1, 191, 1, 191, 3, 191, 3922, 8, 191, 1, 191, 1, 191, 3, 191, 3926, 8, 191, 1, 191, 1, 191, 3, 191, 3930, 8, 191, 1, 191, 3, 191, 3933, 8, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3946, 8, 192, 1, 193, 1, 193, 1, 194, 1, 194, 3, 194, 3952, 8, 194, 1, 195, 1, 195, 3, 195, 3956, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 9, 1134, 1204, 1212, 1229, 1256, 1265, 1274, 1283, 1331, 4, 102, 274, 278, 282, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 64, 2, 0, 78, 78, 228, 228, 2, 0, 34, 34, 246, 246, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 172, 172, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 288, 288, 2, 0, 8, 8, 166, 166, 1, 0, 334, 335, 3, 0, 72, 72, 189, 189, 260, 260, 3, 0, 73, 73, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 269, 269, 322, 322, 3, 0, 102, 102, 269, 269, 322, 322, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 289, 289, 330, 330, 2, 0, 291, 291, 336, 336, 2, 0, 290, 290, 302, 302, 2, 0, 61, 61, 255, 255, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 381, 381, 383, 383, 2, 0, 93, 93, 216, 216, 2, 0, 208, 208, 277, 277, 2, 0, 196, 196, 359, 359, 1, 0, 250, 251, 1, 0, 162, 163, 3, 0, 10, 10, 16, 16, 276, 276, 3, 0, 111, 111, 315, 315, 324, 324, 2, 0, 360, 361, 365, 365, 2, 0, 94, 94, 362, 364, 2, 0, 360, 361, 368, 368, 11, 0, 67, 67, 69, 69, 134, 134, 179, 179, 181, 181, 183, 183, 185, 185, 230, 230, 258, 258, 340, 340, 347, 347, 4, 0, 63, 63, 65, 66, 267, 267, 330, 330, 2, 0, 74, 75, 305, 305, 3, 0, 76, 77, 301, 301, 306, 306, 2, 0, 36, 36, 317, 317, 2, 0, 138, 138, 245, 245, 1, 0, 286, 287, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 310, 310, 1, 0, 219, 220, 1, 0, 351, 358, 2, 0, 94, 94, 360, 369, 4, 0, 14, 14, 140, 140, 196, 196, 207, 207, 2, 0, 111, 111, 315, 315, 1, 0, 360, 361, 7, 0, 67, 68, 134, 135, 179, 186, 191, 192, 258, 259, 340, 341, 347, 348, 6, 0, 67, 67, 134, 134, 183, 183, 185, 185, 258, 258, 347, 347, 2, 0, 185, 185, 347, 347, 4, 0, 67, 67, 134, 134, 183, 183, 258, 258, 3, 0, 134, 134, 183, 183, 258, 258, 2, 0, 82, 82, 351, 351, 2, 0, 118, 118, 225, 225, 2, 0, 377, 377, 388, 388, 1, 0, 382, 383, 2, 0, 96, 96, 268, 268, 1, 0, 376, 377, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 162, 192, 194, 194, 198, 200, 204, 206, 209, 209, 211, 212, 214, 218, 221, 225, 227, 237, 239, 248, 250, 261, 263, 266, 268, 275, 277, 291, 293, 298, 301, 307, 309, 309, 311, 321, 325, 329, 332, 341, 344, 344, 347, 350, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 193, 193, 202, 202, 249, 249, 263, 263, 269, 269, 322, 322, 331, 331, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 192, 194, 194, 196, 201, 203, 248, 250, 261, 264, 268, 270, 291, 293, 321, 323, 330, 332, 350, 4578, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 1334, 1, 0, 0, 0, 6, 1338, 1, 0, 0, 0, 8, 1340, 1, 0, 0, 0, 10, 1342, 1, 0, 0, 0, 12, 1512, 1, 0, 0, 0, 14, 1514, 1, 0, 0, 0, 16, 1529, 1, 0, 0, 0, 18, 1535, 1, 0, 0, 0, 20, 1547, 1, 0, 0, 0, 22, 1560, 1, 0, 0, 0, 24, 1563, 1, 0, 0, 0, 26, 1567, 1, 0, 0, 0, 28, 1648, 1, 0, 0, 0, 30, 1650, 1, 0, 0, 0, 32, 1654, 1, 0, 0, 0, 34, 1675, 1, 0, 0, 0, 36, 1677, 1, 0, 0, 0, 38, 1679, 1, 0, 0, 0, 40, 1686, 1, 0, 0, 0, 42, 1688, 1, 0, 0, 0, 44, 1696, 1, 0, 0, 0, 46, 1705, 1, 0, 0, 0, 48, 1716, 1, 0, 0, 0, 50, 1734, 1, 0, 0, 0, 52, 1737, 1, 0, 0, 0, 54, 1748, 1, 0, 0, 0, 56, 1764, 1, 0, 0, 0, 58, 1770, 1, 0, 0, 0, 60, 1772, 1, 0, 0, 0, 62, 1783, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1801, 1, 0, 0, 0, 68, 1818, 1, 0, 0, 0, 70, 1826, 1, 0, 0, 0, 72, 1828, 1, 0, 0, 0, 74, 1834, 1, 0, 0, 0, 76, 1893, 1, 0, 0, 0, 78, 1895, 1, 0, 0, 0, 80, 1897, 1, 0, 0, 0, 82, 1899, 1, 0, 0, 0, 84, 1901, 1, 0, 0, 0, 86, 1903, 1, 0, 0, 0, 88, 1905, 1, 0, 0, 0, 90, 1909, 1, 0, 0, 0, 92, 1911, 1, 0, 0, 0, 94, 1919, 1, 0, 0, 0, 96, 1927, 1, 0, 0, 0, 98, 1939, 1, 0, 0, 0, 100, 1991, 1, 0, 0, 0, 102, 1994, 1, 0, 0, 0, 104, 2029, 1, 0, 0, 0, 106, 2033, 1, 0, 0, 0, 108, 2042, 1, 0, 0, 0, 110, 2075, 1, 0, 0, 0, 112, 2121, 1, 0, 0, 0, 114, 2142, 1, 0, 0, 0, 116, 2174, 1, 0, 0, 0, 118, 2186, 1, 0, 0, 0, 120, 2189, 1, 0, 0, 0, 122, 2198, 1, 0, 0, 0, 124, 2212, 1, 0, 0, 0, 126, 2231, 1, 0, 0, 0, 128, 2251, 1, 0, 0, 0, 130, 2257, 1, 0, 0, 0, 132, 2259, 1, 0, 0, 0, 134, 2267, 1, 0, 0, 0, 136, 2271, 1, 0, 0, 0, 138, 2274, 1, 0, 0, 0, 140, 2277, 1, 0, 0, 0, 142, 2303, 1, 0, 0, 0, 144, 2305, 1, 0, 0, 0, 146, 2326, 1, 0, 0, 0, 148, 2342, 1, 0, 0, 0, 150, 2383, 1, 0, 0, 0, 152, 2388, 1, 0, 0, 0, 154, 2415, 1, 0, 0, 0, 156, 2419, 1, 0, 0, 0, 158, 2441, 1, 0, 0, 0, 160, 2443, 1, 0, 0, 0, 162, 2473, 1, 0, 0, 0, 164, 2475, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2495, 1, 0, 0, 0, 170, 2500, 1, 0, 0, 0, 172, 2502, 1, 0, 0, 0, 174, 2517, 1, 0, 0, 0, 176, 2541, 1, 0, 0, 0, 178, 2554, 1, 0, 0, 0, 180, 2556, 1, 0, 0, 0, 182, 2558, 1, 0, 0, 0, 184, 2562, 1, 0, 0, 0, 186, 2565, 1, 0, 0, 0, 188, 2569, 1, 0, 0, 0, 190, 2573, 1, 0, 0, 0, 192, 2576, 1, 0, 0, 0, 194, 2608, 1, 0, 0, 0, 196, 2621, 1, 0, 0, 0, 198, 2626, 1, 0, 0, 0, 200, 2645, 1, 0, 0, 0, 202, 2671, 1, 0, 0, 0, 204, 2677, 1, 0, 0, 0, 206, 2679, 1, 0, 0, 0, 208, 2715, 1, 0, 0, 0, 210, 2717, 1, 0, 0, 0, 212, 2721, 1, 0, 0, 0, 214, 2729, 1, 0, 0, 0, 216, 2740, 1, 0, 0, 0, 218, 2744, 1, 0, 0, 0, 220, 2755, 1, 0, 0, 0, 222, 2790, 1, 0, 0, 0, 224, 2792, 1, 0, 0, 0, 226, 2822, 1, 0, 0, 0, 228, 2843, 1, 0, 0, 0, 230, 2863, 1, 0, 0, 0, 232, 2869, 1, 0, 0, 0, 234, 2873, 1, 0, 0, 0, 236, 2875, 1, 0, 0, 0, 238, 2897, 1, 0, 0, 0, 240, 2948, 1, 0, 0, 0, 242, 2950, 1, 0, 0, 0, 244, 2958, 1, 0, 0, 0, 246, 2966, 1, 0, 0, 0, 248, 2974, 1, 0, 0, 0, 250, 2982, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2995, 1, 0, 0, 0, 256, 3006, 1, 0, 0, 0, 258, 3014, 1, 0, 0, 0, 260, 3027, 1, 0, 0, 0, 262, 3042, 1, 0, 0, 0, 264, 3046, 1, 0, 0, 0, 266, 3048, 1, 0, 0, 0, 268, 3050, 1, 0, 0, 0, 270, 3056, 1, 0, 0, 0, 272, 3058, 1, 0, 0, 0, 274, 3078, 1, 0, 0, 0, 276, 3173, 1, 0, 0, 0, 278, 3179, 1, 0, 0, 0, 280, 3205, 1, 0, 0, 0, 282, 3456, 1, 0, 0, 0, 284, 3478, 1, 0, 0, 0, 286, 3495, 1, 0, 0, 0, 288, 3497, 1, 0, 0, 0, 290, 3499, 1, 0, 0, 0, 292, 3501, 1, 0, 0, 0, 294, 3503, 1, 0, 0, 0, 296, 3505, 1, 0, 0, 0, 298, 3510, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3521, 1, 0, 0, 0, 304, 3526, 1, 0, 0, 0, 306, 3532, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3541, 1, 0, 0, 0, 312, 3546, 1, 0, 0, 0, 314, 3578, 1, 0, 0, 0, 316, 3626, 1, 0, 0, 0, 318, 3628, 1, 0, 0, 0, 320, 3636, 1, 0, 0, 0, 322, 3644, 1, 0, 0, 0, 324, 3652, 1, 0, 0, 0, 326, 3665, 1, 0, 0, 0, 328, 3667, 1, 0, 0, 0, 330, 3670, 1, 0, 0, 0, 332, 3673, 1, 0, 0, 0, 334, 3681, 1, 0, 0, 0, 336, 3690, 1, 0, 0, 0, 338, 3698, 1, 0, 0, 0, 340, 3711, 1, 0, 0, 0, 342, 3713, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3728, 1, 0, 0, 0, 348, 3740, 1, 0, 0, 0, 350, 3745, 1, 0, 0, 0, 352, 3754, 1, 0, 0, 0, 354, 3758, 1, 0, 0, 0, 356, 3808, 1, 0, 0, 0, 358, 3826, 1, 0, 0, 0, 360, 3835, 1, 0, 0, 0, 362, 3837, 1, 0, 0, 0, 364, 3854, 1, 0, 0, 0, 366, 3856, 1, 0, 0, 0, 368, 3858, 1, 0, 0, 0, 370, 3866, 1, 0, 0, 0, 372, 3876, 1, 0, 0, 0, 374, 3880, 1, 0, 0, 0, 376, 3886, 1, 0, 0, 0, 378, 3888, 1, 0, 0, 0, 380, 3890, 1, 0, 0, 0, 382, 3932, 1, 0, 0, 0, 384, 3945, 1, 0, 0, 0, 386, 3947, 1, 0, 0, 0, 388, 3951, 1, 0, 0, 0, 390, 3955, 1, 0, 0, 0, 392, 3957, 1, 0, 0, 0, 394, 3959, 1, 0, 0, 0, 396, 3961, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 1, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 1335, 3, 26, 13, 0, 411, 413, 3, 44, 22, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 1335, 3, 76, 38, 0, 415, 417, 5, 329, 0, 0, 416, 418, 3, 36, 18, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 1335, 3, 78, 39, 0, 420, 421, 5, 268, 0, 0, 421, 424, 5, 37, 0, 0, 422, 425, 3, 374, 187, 0, 423, 425, 3, 386, 193, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 425, 1335, 1, 0, 0, 0, 426, 427, 5, 59, 0, 0, 427, 429, 3, 36, 18, 0, 428, 430, 3, 188, 94, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 439, 3, 80, 40, 0, 432, 438, 3, 24, 12, 0, 433, 438, 3, 22, 11, 0, 434, 435, 5, 345, 0, 0, 435, 436, 7, 0, 0, 0, 436, 438, 3, 52, 26, 0, 437, 432, 1, 0, 0, 0, 437, 433, 1, 0, 0, 0, 437, 434, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 1335, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 443, 5, 11, 0, 0, 443, 444, 3, 36, 18, 0, 444, 445, 3, 78, 39, 0, 445, 446, 5, 268, 0, 0, 446, 447, 7, 0, 0, 0, 447, 448, 3, 52, 26, 0, 448, 1335, 1, 0, 0, 0, 449, 450, 5, 11, 0, 0, 450, 451, 3, 36, 18, 0, 451, 452, 3, 78, 39, 0, 452, 453, 5, 268, 0, 0, 453, 454, 3, 22, 11, 0, 454, 1335, 1, 0, 0, 0, 455, 456, 5, 96, 0, 0, 456, 458, 3, 36, 18, 0, 457, 459, 3, 190, 95, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 3, 78, 39, 0, 461, 463, 7, 1, 0, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 1335, 1, 0, 0, 0, 464, 465, 5, 272, 0, 0, 465, 468, 3, 38, 19, 0, 466, 467, 7, 2, 0, 0, 467, 469, 3, 244, 122, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 474, 1, 0, 0, 0, 470, 472, 5, 162, 0, 0, 471, 470, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 475, 3, 386, 193, 0, 474, 471, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 1335, 1, 0, 0, 0, 476, 481, 3, 14, 7, 0, 477, 478, 5, 2, 0, 0, 478, 479, 3, 336, 168, 0, 479, 480, 5, 3, 0, 0, 480, 482, 1, 0, 0, 0, 481, 477, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 484, 1, 0, 0, 0, 483, 485, 3, 48, 24, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 491, 3, 50, 25, 0, 487, 489, 5, 20, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 3, 26, 13, 0, 491, 488, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 1335, 1, 0, 0, 0, 493, 494, 5, 59, 0, 0, 494, 496, 5, 292, 0, 0, 495, 497, 3, 188, 94, 0, 496, 495, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 3, 82, 41, 0, 499, 500, 5, 162, 0, 0, 500, 509, 3, 84, 42, 0, 501, 508, 3, 48, 24, 0, 502, 508, 3, 240, 120, 0, 503, 508, 3, 68, 34, 0, 504, 508, 3, 22, 11, 0, 505, 506, 5, 296, 0, 0, 506, 508, 3, 52, 26, 0, 507, 501, 1, 0, 0, 0, 507, 502, 1, 0, 0, 0, 507, 503, 1, 0, 0, 0, 507, 504, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 511, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 1335, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 512, 517, 3, 16, 8, 0, 513, 514, 5, 2, 0, 0, 514, 515, 3, 336, 168, 0, 515, 516, 5, 3, 0, 0, 516, 518, 1, 0, 0, 0, 517, 513, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 520, 1, 0, 0, 0, 519, 521, 3, 48, 24, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 527, 3, 50, 25, 0, 523, 525, 5, 20, 0, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 528, 3, 26, 13, 0, 527, 524, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 1335, 1, 0, 0, 0, 529, 530, 5, 13, 0, 0, 530, 531, 5, 292, 0, 0, 531, 533, 3, 84, 42, 0, 532, 534, 3, 32, 16, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 5, 55, 0, 0, 536, 544, 5, 281, 0, 0, 537, 545, 5, 195, 0, 0, 538, 539, 5, 119, 0, 0, 539, 540, 5, 50, 0, 0, 540, 545, 3, 92, 46, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 10, 0, 0, 543, 545, 5, 50, 0, 0, 544, 537, 1, 0, 0, 0, 544, 538, 1, 0, 0, 0, 544, 541, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 1335, 1, 0, 0, 0, 546, 547, 5, 13, 0, 0, 547, 550, 5, 293, 0, 0, 548, 549, 7, 2, 0, 0, 549, 551, 3, 78, 39, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 55, 0, 0, 553, 555, 5, 281, 0, 0, 554, 556, 5, 195, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 1335, 1, 0, 0, 0, 557, 558, 5, 11, 0, 0, 558, 559, 5, 292, 0, 0, 559, 560, 3, 84, 42, 0, 560, 561, 5, 8, 0, 0, 561, 562, 5, 49, 0, 0, 562, 563, 3, 320, 160, 0, 563, 1335, 1, 0, 0, 0, 564, 565, 5, 11, 0, 0, 565, 566, 5, 292, 0, 0, 566, 567, 3, 84, 42, 0, 567, 568, 5, 8, 0, 0, 568, 569, 5, 50, 0, 0, 569, 570, 5, 2, 0, 0, 570, 571, 3, 318, 159, 0, 571, 572, 5, 3, 0, 0, 572, 1335, 1, 0, 0, 0, 573, 574, 5, 11, 0, 0, 574, 575, 5, 292, 0, 0, 575, 576, 3, 84, 42, 0, 576, 577, 5, 240, 0, 0, 577, 578, 5, 49, 0, 0, 578, 579, 3, 90, 45, 0, 579, 580, 5, 308, 0, 0, 580, 581, 3, 94, 47, 0, 581, 1335, 1, 0, 0, 0, 582, 583, 5, 11, 0, 0, 583, 584, 5, 292, 0, 0, 584, 585, 3, 84, 42, 0, 585, 586, 5, 96, 0, 0, 586, 588, 5, 49, 0, 0, 587, 589, 3, 190, 95, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 3, 90, 45, 0, 591, 1335, 1, 0, 0, 0, 592, 593, 5, 11, 0, 0, 593, 594, 5, 292, 0, 0, 594, 595, 3, 84, 42, 0, 595, 596, 5, 96, 0, 0, 596, 598, 5, 50, 0, 0, 597, 599, 3, 190, 95, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 5, 2, 0, 0, 601, 602, 3, 92, 46, 0, 602, 603, 5, 3, 0, 0, 603, 1335, 1, 0, 0, 0, 604, 609, 5, 11, 0, 0, 605, 606, 5, 292, 0, 0, 606, 610, 3, 84, 42, 0, 607, 608, 5, 337, 0, 0, 608, 610, 3, 88, 44, 0, 609, 605, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 240, 0, 0, 612, 613, 5, 308, 0, 0, 613, 614, 3, 244, 122, 0, 614, 1335, 1, 0, 0, 0, 615, 620, 5, 11, 0, 0, 616, 617, 5, 292, 0, 0, 617, 621, 3, 84, 42, 0, 618, 619, 5, 337, 0, 0, 619, 621, 3, 88, 44, 0, 620, 616, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 5, 268, 0, 0, 623, 624, 5, 296, 0, 0, 624, 625, 3, 52, 26, 0, 625, 1335, 1, 0, 0, 0, 626, 631, 5, 11, 0, 0, 627, 628, 5, 292, 0, 0, 628, 632, 3, 84, 42, 0, 629, 630, 5, 337, 0, 0, 630, 632, 3, 88, 44, 0, 631, 627, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 327, 0, 0, 634, 636, 5, 296, 0, 0, 635, 637, 3, 190, 95, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 3, 52, 26, 0, 639, 1335, 1, 0, 0, 0, 640, 641, 5, 11, 0, 0, 641, 642, 5, 292, 0, 0, 642, 643, 3, 84, 42, 0, 643, 645, 7, 3, 0, 0, 644, 646, 5, 49, 0, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 3, 90, 45, 0, 648, 650, 3, 384, 192, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 1335, 1, 0, 0, 0, 651, 652, 5, 11, 0, 0, 652, 653, 5, 292, 0, 0, 653, 655, 3, 84, 42, 0, 654, 656, 3, 32, 16, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 5, 39, 0, 0, 658, 660, 5, 49, 0, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 3, 90, 45, 0, 662, 664, 3, 334, 167, 0, 663, 665, 3, 312, 156, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1335, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 292, 0, 0, 668, 670, 3, 84, 42, 0, 669, 671, 3, 32, 16, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 243, 0, 0, 673, 674, 5, 50, 0, 0, 674, 675, 5, 2, 0, 0, 675, 676, 3, 322, 161, 0, 676, 677, 5, 3, 0, 0, 677, 1335, 1, 0, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 5, 292, 0, 0, 680, 682, 3, 84, 42, 0, 681, 683, 3, 32, 16, 0, 682, 681, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 268, 0, 0, 685, 686, 5, 265, 0, 0, 686, 690, 3, 386, 193, 0, 687, 688, 5, 345, 0, 0, 688, 689, 5, 266, 0, 0, 689, 691, 3, 52, 26, 0, 690, 687, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 1335, 1, 0, 0, 0, 692, 693, 5, 11, 0, 0, 693, 694, 5, 292, 0, 0, 694, 696, 3, 84, 42, 0, 695, 697, 3, 32, 16, 0, 696, 695, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 5, 268, 0, 0, 699, 700, 5, 266, 0, 0, 700, 701, 3, 52, 26, 0, 701, 1335, 1, 0, 0, 0, 702, 707, 5, 11, 0, 0, 703, 704, 5, 292, 0, 0, 704, 708, 3, 84, 42, 0, 705, 706, 5, 337, 0, 0, 706, 708, 3, 88, 44, 0, 707, 703, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 711, 5, 8, 0, 0, 710, 712, 3, 188, 94, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 1, 0, 0, 0, 713, 715, 3, 30, 15, 0, 714, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 1335, 1, 0, 0, 0, 718, 719, 5, 11, 0, 0, 719, 720, 5, 292, 0, 0, 720, 721, 3, 84, 42, 0, 721, 722, 3, 32, 16, 0, 722, 723, 5, 240, 0, 0, 723, 724, 5, 308, 0, 0, 724, 725, 3, 32, 16, 0, 725, 1335, 1, 0, 0, 0, 726, 731, 5, 11, 0, 0, 727, 728, 5, 292, 0, 0, 728, 732, 3, 84, 42, 0, 729, 730, 5, 337, 0, 0, 730, 732, 3, 88, 44, 0, 731, 727, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 735, 5, 96, 0, 0, 734, 736, 3, 190, 95, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 742, 3, 32, 16, 0, 738, 739, 5, 4, 0, 0, 739, 741, 3, 32, 16, 0, 740, 738, 1, 0, 0, 0, 741, 744, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 746, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 745, 747, 5, 229, 0, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 1335, 1, 0, 0, 0, 748, 749, 5, 11, 0, 0, 749, 750, 5, 292, 0, 0, 750, 752, 3, 84, 42, 0, 751, 753, 3, 32, 16, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 5, 268, 0, 0, 755, 756, 3, 22, 11, 0, 756, 1335, 1, 0, 0, 0, 757, 758, 5, 11, 0, 0, 758, 759, 5, 292, 0, 0, 759, 760, 3, 84, 42, 0, 760, 761, 5, 236, 0, 0, 761, 762, 5, 218, 0, 0, 762, 1335, 1, 0, 0, 0, 763, 764, 5, 11, 0, 0, 764, 765, 5, 175, 0, 0, 765, 766, 5, 337, 0, 0, 766, 767, 3, 88, 44, 0, 767, 768, 7, 4, 0, 0, 768, 769, 5, 247, 0, 0, 769, 1335, 1, 0, 0, 0, 770, 771, 5, 11, 0, 0, 771, 772, 5, 175, 0, 0, 772, 773, 5, 337, 0, 0, 773, 774, 3, 88, 44, 0, 774, 775, 5, 268, 0, 0, 775, 776, 5, 296, 0, 0, 776, 777, 3, 52, 26, 0, 777, 1335, 1, 0, 0, 0, 778, 779, 5, 96, 0, 0, 779, 781, 5, 292, 0, 0, 780, 782, 3, 190, 95, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 785, 3, 84, 42, 0, 784, 786, 5, 229, 0, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 1335, 1, 0, 0, 0, 787, 788, 5, 96, 0, 0, 788, 790, 5, 337, 0, 0, 789, 791, 3, 190, 95, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 1335, 3, 88, 44, 0, 793, 794, 5, 96, 0, 0, 794, 795, 5, 175, 0, 0, 795, 797, 5, 337, 0, 0, 796, 798, 3, 190, 95, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 1335, 3, 88, 44, 0, 800, 803, 5, 59, 0, 0, 801, 802, 5, 207, 0, 0, 802, 804, 5, 243, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 809, 1, 0, 0, 0, 805, 807, 5, 128, 0, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 5, 297, 0, 0, 809, 806, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 337, 0, 0, 812, 814, 3, 188, 94, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 817, 3, 86, 43, 0, 816, 818, 3, 218, 109, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 827, 1, 0, 0, 0, 819, 826, 3, 24, 12, 0, 820, 821, 5, 217, 0, 0, 821, 822, 5, 202, 0, 0, 822, 826, 3, 210, 105, 0, 823, 824, 5, 296, 0, 0, 824, 826, 3, 52, 26, 0, 825, 819, 1, 0, 0, 0, 825, 820, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 5, 20, 0, 0, 831, 832, 3, 26, 13, 0, 832, 1335, 1, 0, 0, 0, 833, 836, 5, 59, 0, 0, 834, 835, 5, 207, 0, 0, 835, 837, 5, 243, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 840, 5, 128, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 297, 0, 0, 842, 843, 5, 337, 0, 0, 843, 848, 3, 86, 43, 0, 844, 845, 5, 2, 0, 0, 845, 846, 3, 332, 166, 0, 846, 847, 5, 3, 0, 0, 847, 849, 1, 0, 0, 0, 848, 844, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 853, 3, 48, 24, 0, 851, 852, 5, 206, 0, 0, 852, 854, 3, 52, 26, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 1335, 1, 0, 0, 0, 855, 856, 5, 11, 0, 0, 856, 857, 5, 337, 0, 0, 857, 859, 3, 88, 44, 0, 858, 860, 5, 20, 0, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 3, 26, 13, 0, 862, 1335, 1, 0, 0, 0, 863, 866, 5, 59, 0, 0, 864, 865, 5, 207, 0, 0, 865, 867, 5, 243, 0, 0, 866, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 869, 1, 0, 0, 0, 868, 870, 5, 297, 0, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 873, 5, 125, 0, 0, 872, 874, 3, 188, 94, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 3, 366, 183, 0, 876, 877, 5, 20, 0, 0, 877, 887, 3, 386, 193, 0, 878, 879, 5, 331, 0, 0, 879, 884, 3, 74, 37, 0, 880, 881, 5, 4, 0, 0, 881, 883, 3, 74, 37, 0, 882, 880, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 878, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 1335, 1, 0, 0, 0, 889, 890, 5, 59, 0, 0, 890, 891, 5, 175, 0, 0, 891, 893, 5, 337, 0, 0, 892, 894, 3, 188, 94, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 897, 3, 86, 43, 0, 896, 898, 3, 48, 24, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 914, 1, 0, 0, 0, 899, 900, 5, 206, 0, 0, 900, 913, 3, 52, 26, 0, 901, 902, 5, 217, 0, 0, 902, 903, 5, 31, 0, 0, 903, 913, 3, 258, 129, 0, 904, 913, 3, 20, 10, 0, 905, 913, 3, 18, 9, 0, 906, 913, 3, 240, 120, 0, 907, 913, 3, 68, 34, 0, 908, 913, 3, 22, 11, 0, 909, 913, 3, 24, 12, 0, 910, 911, 5, 296, 0, 0, 911, 913, 3, 52, 26, 0, 912, 899, 1, 0, 0, 0, 912, 901, 1, 0, 0, 0, 912, 904, 1, 0, 0, 0, 912, 905, 1, 0, 0, 0, 912, 906, 1, 0, 0, 0, 912, 907, 1, 0, 0, 0, 912, 908, 1, 0, 0, 0, 912, 909, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 913, 916, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 918, 5, 20, 0, 0, 918, 919, 3, 26, 13, 0, 919, 1335, 1, 0, 0, 0, 920, 922, 5, 96, 0, 0, 921, 923, 5, 297, 0, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 926, 5, 125, 0, 0, 925, 927, 3, 190, 95, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 1335, 3, 364, 182, 0, 929, 932, 5, 81, 0, 0, 930, 931, 5, 207, 0, 0, 931, 933, 5, 243, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 1, 0, 0, 0, 934, 936, 5, 335, 0, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 3, 364, 182, 0, 938, 940, 3, 316, 158, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 1, 0, 0, 0, 941, 943, 3, 330, 165, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1335, 1, 0, 0, 0, 944, 945, 5, 96, 0, 0, 945, 946, 5, 297, 0, 0, 946, 948, 5, 335, 0, 0, 947, 949, 3, 190, 95, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 953, 1, 0, 0, 0, 950, 954, 3, 84, 42, 0, 951, 954, 3, 88, 44, 0, 952, 954, 3, 364, 182, 0, 953, 950, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 952, 1, 0, 0, 0, 954, 1335, 1, 0, 0, 0, 955, 957, 5, 106, 0, 0, 956, 958, 7, 5, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 1335, 3, 4, 2, 0, 960, 961, 5, 272, 0, 0, 961, 964, 5, 293, 0, 0, 962, 963, 7, 2, 0, 0, 963, 965, 3, 78, 39, 0, 964, 962, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 970, 1, 0, 0, 0, 966, 968, 5, 162, 0, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 971, 3, 386, 193, 0, 970, 967, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 1335, 1, 0, 0, 0, 972, 973, 5, 272, 0, 0, 973, 974, 5, 292, 0, 0, 974, 977, 5, 108, 0, 0, 975, 976, 7, 2, 0, 0, 976, 978, 3, 78, 39, 0, 977, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 5, 162, 0, 0, 980, 982, 3, 386, 193, 0, 981, 983, 3, 32, 16, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 1335, 1, 0, 0, 0, 984, 985, 5, 272, 0, 0, 985, 986, 5, 296, 0, 0, 986, 991, 3, 84, 42, 0, 987, 988, 5, 2, 0, 0, 988, 989, 3, 56, 28, 0, 989, 990, 5, 3, 0, 0, 990, 992, 1, 0, 0, 0, 991, 987, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 1335, 1, 0, 0, 0, 993, 994, 5, 272, 0, 0, 994, 995, 5, 50, 0, 0, 995, 996, 7, 2, 0, 0, 996, 999, 3, 84, 42, 0, 997, 998, 7, 2, 0, 0, 998, 1000, 3, 78, 39, 0, 999, 997, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1335, 1, 0, 0, 0, 1001, 1002, 5, 272, 0, 0, 1002, 1005, 5, 338, 0, 0, 1003, 1004, 7, 2, 0, 0, 1004, 1006, 3, 78, 39, 0, 1005, 1003, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1011, 1, 0, 0, 0, 1007, 1009, 5, 162, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1012, 3, 386, 193, 0, 1011, 1008, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1335, 1, 0, 0, 0, 1013, 1014, 5, 272, 0, 0, 1014, 1015, 5, 218, 0, 0, 1015, 1017, 3, 84, 42, 0, 1016, 1018, 3, 32, 16, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1335, 1, 0, 0, 0, 1019, 1021, 5, 272, 0, 0, 1020, 1022, 3, 146, 73, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1026, 5, 126, 0, 0, 1024, 1025, 7, 2, 0, 0, 1025, 1027, 3, 78, 39, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1035, 1, 0, 0, 0, 1028, 1030, 5, 162, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1033, 1, 0, 0, 0, 1031, 1034, 3, 244, 122, 0, 1032, 1034, 3, 386, 193, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1032, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 1029, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1335, 1, 0, 0, 0, 1037, 1038, 5, 272, 0, 0, 1038, 1039, 5, 59, 0, 0, 1039, 1040, 5, 292, 0, 0, 1040, 1043, 3, 84, 42, 0, 1041, 1042, 5, 20, 0, 0, 1042, 1044, 5, 265, 0, 0, 1043, 1041, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1335, 1, 0, 0, 0, 1045, 1046, 5, 272, 0, 0, 1046, 1047, 5, 62, 0, 0, 1047, 1335, 3, 36, 18, 0, 1048, 1049, 5, 272, 0, 0, 1049, 1054, 5, 38, 0, 0, 1050, 1052, 5, 162, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1055, 3, 386, 193, 0, 1054, 1051, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1335, 1, 0, 0, 0, 1056, 1057, 5, 272, 0, 0, 1057, 1058, 5, 175, 0, 0, 1058, 1061, 5, 338, 0, 0, 1059, 1060, 7, 2, 0, 0, 1060, 1062, 3, 78, 39, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1067, 1, 0, 0, 0, 1063, 1065, 5, 162, 0, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 3, 386, 193, 0, 1067, 1064, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1335, 1, 0, 0, 0, 1069, 1070, 5, 272, 0, 0, 1070, 1071, 5, 59, 0, 0, 1071, 1072, 5, 175, 0, 0, 1072, 1073, 5, 337, 0, 0, 1073, 1076, 3, 88, 44, 0, 1074, 1075, 5, 20, 0, 0, 1075, 1077, 5, 265, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1335, 1, 0, 0, 0, 1078, 1079, 7, 6, 0, 0, 1079, 1081, 5, 125, 0, 0, 1080, 1082, 5, 108, 0, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1335, 3, 40, 20, 0, 1084, 1085, 7, 6, 0, 0, 1085, 1087, 5, 72, 0, 0, 1086, 1088, 5, 108, 0, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1335, 3, 78, 39, 0, 1090, 1092, 7, 6, 0, 0, 1091, 1093, 5, 292, 0, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1096, 7, 7, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 3, 84, 42, 0, 1098, 1100, 3, 32, 16, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 1103, 3, 42, 21, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1335, 1, 0, 0, 0, 1104, 1106, 7, 6, 0, 0, 1105, 1107, 5, 231, 0, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1335, 3, 26, 13, 0, 1109, 1110, 5, 51, 0, 0, 1110, 1111, 5, 202, 0, 0, 1111, 1112, 3, 36, 18, 0, 1112, 1113, 3, 78, 39, 0, 1113, 1114, 5, 153, 0, 0, 1114, 1115, 3, 388, 194, 0, 1115, 1335, 1, 0, 0, 0, 1116, 1117, 5, 51, 0, 0, 1117, 1118, 5, 202, 0, 0, 1118, 1119, 5, 292, 0, 0, 1119, 1120, 3, 84, 42, 0, 1120, 1121, 5, 153, 0, 0, 1121, 1122, 3, 388, 194, 0, 1122, 1335, 1, 0, 0, 0, 1123, 1124, 5, 239, 0, 0, 1124, 1125, 5, 292, 0, 0, 1125, 1335, 3, 84, 42, 0, 1126, 1127, 5, 239, 0, 0, 1127, 1128, 5, 125, 0, 0, 1128, 1335, 3, 364, 182, 0, 1129, 1137, 5, 239, 0, 0, 1130, 1138, 3, 386, 193, 0, 1131, 1133, 9, 0, 0, 0, 1132, 1131, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1130, 1, 0, 0, 0, 1137, 1134, 1, 0, 0, 0, 1138, 1335, 1, 0, 0, 0, 1139, 1140, 5, 239, 0, 0, 1140, 1141, 5, 175, 0, 0, 1141, 1142, 5, 337, 0, 0, 1142, 1335, 3, 88, 44, 0, 1143, 1145, 5, 33, 0, 0, 1144, 1146, 5, 159, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 5, 292, 0, 0, 1148, 1151, 3, 84, 42, 0, 1149, 1150, 5, 206, 0, 0, 1150, 1152, 3, 52, 26, 0, 1151, 1149, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1157, 1, 0, 0, 0, 1153, 1155, 5, 20, 0, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1158, 3, 26, 13, 0, 1157, 1154, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1335, 1, 0, 0, 0, 1159, 1160, 5, 321, 0, 0, 1160, 1162, 5, 292, 0, 0, 1161, 1163, 3, 190, 95, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1335, 3, 84, 42, 0, 1165, 1166, 5, 43, 0, 0, 1166, 1335, 5, 33, 0, 0, 1167, 1168, 5, 167, 0, 0, 1168, 1170, 5, 70, 0, 0, 1169, 1171, 5, 168, 0, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 145, 0, 0, 1173, 1175, 3, 386, 193, 0, 1174, 1176, 5, 215, 0, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 5, 152, 0, 0, 1178, 1179, 5, 292, 0, 0, 1179, 1181, 3, 84, 42, 0, 1180, 1182, 3, 32, 16, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1335, 1, 0, 0, 0, 1183, 1184, 5, 316, 0, 0, 1184, 1185, 5, 292, 0, 0, 1185, 1187, 3, 84, 42, 0, 1186, 1188, 3, 32, 16, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1335, 1, 0, 0, 0, 1189, 1191, 5, 187, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 241, 0, 0, 1193, 1194, 5, 292, 0, 0, 1194, 1197, 3, 84, 42, 0, 1195, 1196, 7, 8, 0, 0, 1196, 1198, 5, 218, 0, 0, 1197, 1195, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1335, 1, 0, 0, 0, 1199, 1200, 7, 9, 0, 0, 1200, 1204, 3, 374, 187, 0, 1201, 1203, 9, 0, 0, 0, 1202, 1201, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1335, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1208, 5, 268, 0, 0, 1208, 1212, 5, 252, 0, 0, 1209, 1211, 9, 0, 0, 0, 1210, 1209, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1335, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1216, 5, 268, 0, 0, 1216, 1217, 5, 300, 0, 0, 1217, 1218, 5, 349, 0, 0, 1218, 1335, 3, 296, 148, 0, 1219, 1220, 5, 268, 0, 0, 1220, 1221, 5, 300, 0, 0, 1221, 1222, 5, 349, 0, 0, 1222, 1335, 3, 6, 3, 0, 1223, 1224, 5, 268, 0, 0, 1224, 1225, 5, 300, 0, 0, 1225, 1229, 5, 349, 0, 0, 1226, 1228, 9, 0, 0, 0, 1227, 1226, 1, 0, 0, 0, 1228, 1231, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1335, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1232, 1233, 5, 268, 0, 0, 1233, 1234, 7, 10, 0, 0, 1234, 1335, 3, 132, 66, 0, 1235, 1236, 5, 268, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1238, 5, 2, 0, 0, 1238, 1239, 3, 242, 121, 0, 1239, 1240, 5, 3, 0, 0, 1240, 1241, 5, 351, 0, 0, 1241, 1242, 5, 2, 0, 0, 1242, 1243, 3, 26, 13, 0, 1243, 1244, 5, 3, 0, 0, 1244, 1335, 1, 0, 0, 0, 1245, 1246, 5, 268, 0, 0, 1246, 1247, 3, 8, 4, 0, 1247, 1248, 5, 351, 0, 0, 1248, 1249, 3, 10, 5, 0, 1249, 1335, 1, 0, 0, 0, 1250, 1251, 5, 268, 0, 0, 1251, 1259, 3, 8, 4, 0, 1252, 1256, 5, 351, 0, 0, 1253, 1255, 9, 0, 0, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1258, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1260, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1252, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1335, 1, 0, 0, 0, 1261, 1265, 5, 268, 0, 0, 1262, 1264, 9, 0, 0, 0, 1263, 1262, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1268, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1269, 5, 351, 0, 0, 1269, 1335, 3, 10, 5, 0, 1270, 1274, 5, 268, 0, 0, 1271, 1273, 9, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1335, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 244, 0, 0, 1278, 1335, 3, 8, 4, 0, 1279, 1283, 5, 244, 0, 0, 1280, 1282, 9, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1335, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1287, 5, 59, 0, 0, 1287, 1289, 5, 142, 0, 0, 1288, 1290, 3, 188, 94, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 374, 187, 0, 1292, 1294, 5, 202, 0, 0, 1293, 1295, 5, 292, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 3, 84, 42, 0, 1297, 1298, 5, 331, 0, 0, 1298, 1300, 3, 374, 187, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 5, 2, 0, 0, 1302, 1303, 3, 246, 123, 0, 1303, 1306, 5, 3, 0, 0, 1304, 1305, 5, 206, 0, 0, 1305, 1307, 3, 52, 26, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1335, 1, 0, 0, 0, 1308, 1309, 5, 96, 0, 0, 1309, 1311, 5, 142, 0, 0, 1310, 1312, 3, 190, 95, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 3, 374, 187, 0, 1314, 1316, 5, 202, 0, 0, 1315, 1317, 5, 292, 0, 0, 1316, 1315, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 3, 84, 42, 0, 1319, 1335, 1, 0, 0, 0, 1320, 1321, 5, 204, 0, 0, 1321, 1323, 3, 84, 42, 0, 1322, 1324, 3, 136, 68, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 352, 176, 0, 1326, 1335, 1, 0, 0, 0, 1327, 1331, 3, 12, 6, 0, 1328, 1330, 9, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1332, 1335, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1334, 410, 1, 0, 0, 0, 1334, 412, 1, 0, 0, 0, 1334, 415, 1, 0, 0, 0, 1334, 420, 1, 0, 0, 0, 1334, 426, 1, 0, 0, 0, 1334, 442, 1, 0, 0, 0, 1334, 449, 1, 0, 0, 0, 1334, 455, 1, 0, 0, 0, 1334, 464, 1, 0, 0, 0, 1334, 476, 1, 0, 0, 0, 1334, 493, 1, 0, 0, 0, 1334, 512, 1, 0, 0, 0, 1334, 529, 1, 0, 0, 0, 1334, 546, 1, 0, 0, 0, 1334, 557, 1, 0, 0, 0, 1334, 564, 1, 0, 0, 0, 1334, 573, 1, 0, 0, 0, 1334, 582, 1, 0, 0, 0, 1334, 592, 1, 0, 0, 0, 1334, 604, 1, 0, 0, 0, 1334, 615, 1, 0, 0, 0, 1334, 626, 1, 0, 0, 0, 1334, 640, 1, 0, 0, 0, 1334, 651, 1, 0, 0, 0, 1334, 666, 1, 0, 0, 0, 1334, 678, 1, 0, 0, 0, 1334, 692, 1, 0, 0, 0, 1334, 702, 1, 0, 0, 0, 1334, 718, 1, 0, 0, 0, 1334, 726, 1, 0, 0, 0, 1334, 748, 1, 0, 0, 0, 1334, 757, 1, 0, 0, 0, 1334, 763, 1, 0, 0, 0, 1334, 770, 1, 0, 0, 0, 1334, 778, 1, 0, 0, 0, 1334, 787, 1, 0, 0, 0, 1334, 793, 1, 0, 0, 0, 1334, 800, 1, 0, 0, 0, 1334, 833, 1, 0, 0, 0, 1334, 855, 1, 0, 0, 0, 1334, 863, 1, 0, 0, 0, 1334, 889, 1, 0, 0, 0, 1334, 920, 1, 0, 0, 0, 1334, 929, 1, 0, 0, 0, 1334, 944, 1, 0, 0, 0, 1334, 955, 1, 0, 0, 0, 1334, 960, 1, 0, 0, 0, 1334, 972, 1, 0, 0, 0, 1334, 984, 1, 0, 0, 0, 1334, 993, 1, 0, 0, 0, 1334, 1001, 1, 0, 0, 0, 1334, 1013, 1, 0, 0, 0, 1334, 1019, 1, 0, 0, 0, 1334, 1037, 1, 0, 0, 0, 1334, 1045, 1, 0, 0, 0, 1334, 1048, 1, 0, 0, 0, 1334, 1056, 1, 0, 0, 0, 1334, 1069, 1, 0, 0, 0, 1334, 1078, 1, 0, 0, 0, 1334, 1084, 1, 0, 0, 0, 1334, 1090, 1, 0, 0, 0, 1334, 1104, 1, 0, 0, 0, 1334, 1109, 1, 0, 0, 0, 1334, 1116, 1, 0, 0, 0, 1334, 1123, 1, 0, 0, 0, 1334, 1126, 1, 0, 0, 0, 1334, 1129, 1, 0, 0, 0, 1334, 1139, 1, 0, 0, 0, 1334, 1143, 1, 0, 0, 0, 1334, 1159, 1, 0, 0, 0, 1334, 1165, 1, 0, 0, 0, 1334, 1167, 1, 0, 0, 0, 1334, 1183, 1, 0, 0, 0, 1334, 1190, 1, 0, 0, 0, 1334, 1199, 1, 0, 0, 0, 1334, 1207, 1, 0, 0, 0, 1334, 1215, 1, 0, 0, 0, 1334, 1219, 1, 0, 0, 0, 1334, 1223, 1, 0, 0, 0, 1334, 1232, 1, 0, 0, 0, 1334, 1235, 1, 0, 0, 0, 1334, 1245, 1, 0, 0, 0, 1334, 1250, 1, 0, 0, 0, 1334, 1261, 1, 0, 0, 0, 1334, 1270, 1, 0, 0, 0, 1334, 1277, 1, 0, 0, 0, 1334, 1279, 1, 0, 0, 0, 1334, 1286, 1, 0, 0, 0, 1334, 1308, 1, 0, 0, 0, 1334, 1320, 1, 0, 0, 0, 1334, 1327, 1, 0, 0, 0, 1335, 5, 1, 0, 0, 0, 1336, 1339, 3, 386, 193, 0, 1337, 1339, 5, 168, 0, 0, 1338, 1336, 1, 0, 0, 0, 1338, 1337, 1, 0, 0, 0, 1339, 7, 1, 0, 0, 0, 1340, 1341, 3, 378, 189, 0, 1341, 9, 1, 0, 0, 0, 1342, 1343, 3, 380, 190, 0, 1343, 11, 1, 0, 0, 0, 1344, 1345, 5, 59, 0, 0, 1345, 1513, 5, 252, 0, 0, 1346, 1347, 5, 96, 0, 0, 1347, 1513, 5, 252, 0, 0, 1348, 1350, 5, 129, 0, 0, 1349, 1351, 5, 252, 0, 0, 1350, 1349, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1513, 1, 0, 0, 0, 1352, 1354, 5, 248, 0, 0, 1353, 1355, 5, 252, 0, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1513, 1, 0, 0, 0, 1356, 1357, 5, 272, 0, 0, 1357, 1513, 5, 129, 0, 0, 1358, 1359, 5, 272, 0, 0, 1359, 1361, 5, 252, 0, 0, 1360, 1362, 5, 129, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1513, 1, 0, 0, 0, 1363, 1364, 5, 272, 0, 0, 1364, 1513, 5, 227, 0, 0, 1365, 1366, 5, 272, 0, 0, 1366, 1513, 5, 253, 0, 0, 1367, 1368, 5, 272, 0, 0, 1368, 1369, 5, 62, 0, 0, 1369, 1513, 5, 253, 0, 0, 1370, 1371, 5, 107, 0, 0, 1371, 1513, 5, 292, 0, 0, 1372, 1373, 5, 139, 0, 0, 1373, 1513, 5, 292, 0, 0, 1374, 1375, 5, 272, 0, 0, 1375, 1513, 5, 54, 0, 0, 1376, 1377, 5, 272, 0, 0, 1377, 1378, 5, 59, 0, 0, 1378, 1513, 5, 292, 0, 0, 1379, 1380, 5, 272, 0, 0, 1380, 1513, 5, 312, 0, 0, 1381, 1382, 5, 272, 0, 0, 1382, 1513, 5, 143, 0, 0, 1383, 1384, 5, 272, 0, 0, 1384, 1513, 5, 171, 0, 0, 1385, 1386, 5, 59, 0, 0, 1386, 1513, 5, 142, 0, 0, 1387, 1388, 5, 96, 0, 0, 1388, 1513, 5, 142, 0, 0, 1389, 1390, 5, 11, 0, 0, 1390, 1513, 5, 142, 0, 0, 1391, 1392, 5, 170, 0, 0, 1392, 1513, 5, 292, 0, 0, 1393, 1394, 5, 170, 0, 0, 1394, 1513, 5, 72, 0, 0, 1395, 1396, 5, 325, 0, 0, 1396, 1513, 5, 292, 0, 0, 1397, 1398, 5, 325, 0, 0, 1398, 1513, 5, 72, 0, 0, 1399, 1400, 5, 59, 0, 0, 1400, 1401, 5, 297, 0, 0, 1401, 1513, 5, 174, 0, 0, 1402, 1403, 5, 96, 0, 0, 1403, 1404, 5, 297, 0, 0, 1404, 1513, 5, 174, 0, 0, 1405, 1406, 5, 11, 0, 0, 1406, 1407, 5, 292, 0, 0, 1407, 1408, 3, 84, 42, 0, 1408, 1409, 5, 196, 0, 0, 1409, 1410, 5, 45, 0, 0, 1410, 1513, 1, 0, 0, 0, 1411, 1412, 5, 11, 0, 0, 1412, 1413, 5, 292, 0, 0, 1413, 1414, 3, 84, 42, 0, 1414, 1415, 5, 45, 0, 0, 1415, 1416, 5, 31, 0, 0, 1416, 1513, 1, 0, 0, 0, 1417, 1418, 5, 11, 0, 0, 1418, 1419, 5, 292, 0, 0, 1419, 1420, 3, 84, 42, 0, 1420, 1421, 5, 196, 0, 0, 1421, 1422, 5, 278, 0, 0, 1422, 1513, 1, 0, 0, 0, 1423, 1424, 5, 11, 0, 0, 1424, 1425, 5, 292, 0, 0, 1425, 1426, 3, 84, 42, 0, 1426, 1427, 5, 274, 0, 0, 1427, 1428, 5, 31, 0, 0, 1428, 1513, 1, 0, 0, 0, 1429, 1430, 5, 11, 0, 0, 1430, 1431, 5, 292, 0, 0, 1431, 1432, 3, 84, 42, 0, 1432, 1433, 5, 196, 0, 0, 1433, 1434, 5, 274, 0, 0, 1434, 1513, 1, 0, 0, 0, 1435, 1436, 5, 11, 0, 0, 1436, 1437, 5, 292, 0, 0, 1437, 1438, 3, 84, 42, 0, 1438, 1439, 5, 196, 0, 0, 1439, 1440, 5, 282, 0, 0, 1440, 1441, 5, 20, 0, 0, 1441, 1442, 5, 89, 0, 0, 1442, 1513, 1, 0, 0, 0, 1443, 1444, 5, 11, 0, 0, 1444, 1445, 5, 292, 0, 0, 1445, 1446, 3, 84, 42, 0, 1446, 1447, 5, 268, 0, 0, 1447, 1448, 5, 274, 0, 0, 1448, 1449, 5, 169, 0, 0, 1449, 1513, 1, 0, 0, 0, 1450, 1451, 5, 11, 0, 0, 1451, 1452, 5, 292, 0, 0, 1452, 1453, 3, 84, 42, 0, 1453, 1454, 5, 103, 0, 0, 1454, 1455, 5, 216, 0, 0, 1455, 1513, 1, 0, 0, 0, 1456, 1457, 5, 11, 0, 0, 1457, 1458, 5, 292, 0, 0, 1458, 1459, 3, 84, 42, 0, 1459, 1460, 5, 18, 0, 0, 1460, 1461, 5, 216, 0, 0, 1461, 1513, 1, 0, 0, 0, 1462, 1463, 5, 11, 0, 0, 1463, 1464, 5, 292, 0, 0, 1464, 1465, 3, 84, 42, 0, 1465, 1466, 5, 319, 0, 0, 1466, 1467, 5, 216, 0, 0, 1467, 1513, 1, 0, 0, 0, 1468, 1469, 5, 11, 0, 0, 1469, 1470, 5, 292, 0, 0, 1470, 1471, 3, 84, 42, 0, 1471, 1472, 5, 309, 0, 0, 1472, 1513, 1, 0, 0, 0, 1473, 1474, 5, 11, 0, 0, 1474, 1475, 5, 292, 0, 0, 1475, 1477, 3, 84, 42, 0, 1476, 1478, 3, 32, 16, 0, 1477, 1476, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 5, 53, 0, 0, 1480, 1513, 1, 0, 0, 0, 1481, 1482, 5, 11, 0, 0, 1482, 1483, 5, 292, 0, 0, 1483, 1485, 3, 84, 42, 0, 1484, 1486, 3, 32, 16, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 5, 56, 0, 0, 1488, 1513, 1, 0, 0, 0, 1489, 1490, 5, 11, 0, 0, 1490, 1491, 5, 292, 0, 0, 1491, 1493, 3, 84, 42, 0, 1492, 1494, 3, 32, 16, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 5, 268, 0, 0, 1496, 1497, 5, 115, 0, 0, 1497, 1513, 1, 0, 0, 0, 1498, 1499, 5, 11, 0, 0, 1499, 1500, 5, 292, 0, 0, 1500, 1502, 3, 84, 42, 0, 1501, 1503, 3, 32, 16, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 5, 243, 0, 0, 1505, 1506, 5, 50, 0, 0, 1506, 1513, 1, 0, 0, 0, 1507, 1508, 5, 280, 0, 0, 1508, 1513, 5, 311, 0, 0, 1509, 1513, 5, 52, 0, 0, 1510, 1513, 5, 254, 0, 0, 1511, 1513, 5, 88, 0, 0, 1512, 1344, 1, 0, 0, 0, 1512, 1346, 1, 0, 0, 0, 1512, 1348, 1, 0, 0, 0, 1512, 1352, 1, 0, 0, 0, 1512, 1356, 1, 0, 0, 0, 1512, 1358, 1, 0, 0, 0, 1512, 1363, 1, 0, 0, 0, 1512, 1365, 1, 0, 0, 0, 1512, 1367, 1, 0, 0, 0, 1512, 1370, 1, 0, 0, 0, 1512, 1372, 1, 0, 0, 0, 1512, 1374, 1, 0, 0, 0, 1512, 1376, 1, 0, 0, 0, 1512, 1379, 1, 0, 0, 0, 1512, 1381, 1, 0, 0, 0, 1512, 1383, 1, 0, 0, 0, 1512, 1385, 1, 0, 0, 0, 1512, 1387, 1, 0, 0, 0, 1512, 1389, 1, 0, 0, 0, 1512, 1391, 1, 0, 0, 0, 1512, 1393, 1, 0, 0, 0, 1512, 1395, 1, 0, 0, 0, 1512, 1397, 1, 0, 0, 0, 1512, 1399, 1, 0, 0, 0, 1512, 1402, 1, 0, 0, 0, 1512, 1405, 1, 0, 0, 0, 1512, 1411, 1, 0, 0, 0, 1512, 1417, 1, 0, 0, 0, 1512, 1423, 1, 0, 0, 0, 1512, 1429, 1, 0, 0, 0, 1512, 1435, 1, 0, 0, 0, 1512, 1443, 1, 0, 0, 0, 1512, 1450, 1, 0, 0, 0, 1512, 1456, 1, 0, 0, 0, 1512, 1462, 1, 0, 0, 0, 1512, 1468, 1, 0, 0, 0, 1512, 1473, 1, 0, 0, 0, 1512, 1481, 1, 0, 0, 0, 1512, 1489, 1, 0, 0, 0, 1512, 1498, 1, 0, 0, 0, 1512, 1507, 1, 0, 0, 0, 1512, 1509, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1511, 1, 0, 0, 0, 1513, 13, 1, 0, 0, 0, 1514, 1516, 5, 59, 0, 0, 1515, 1517, 5, 297, 0, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1519, 1, 0, 0, 0, 1518, 1520, 5, 109, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1523, 5, 292, 0, 0, 1522, 1524, 3, 188, 94, 0, 1523, 1522, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 3, 82, 41, 0, 1526, 15, 1, 0, 0, 0, 1527, 1528, 5, 59, 0, 0, 1528, 1530, 5, 207, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 5, 243, 0, 0, 1532, 1533, 5, 292, 0, 0, 1533, 1534, 3, 82, 41, 0, 1534, 17, 1, 0, 0, 0, 1535, 1536, 5, 45, 0, 0, 1536, 1537, 5, 31, 0, 0, 1537, 1541, 3, 210, 105, 0, 1538, 1539, 5, 278, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1542, 3, 214, 107, 0, 1541, 1538, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 5, 152, 0, 0, 1544, 1545, 5, 381, 0, 0, 1545, 1546, 5, 30, 0, 0, 1546, 19, 1, 0, 0, 0, 1547, 1548, 5, 274, 0, 0, 1548, 1549, 5, 31, 0, 0, 1549, 1550, 3, 210, 105, 0, 1550, 1553, 5, 202, 0, 0, 1551, 1554, 3, 64, 32, 0, 1552, 1554, 3, 66, 33, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 1558, 1, 0, 0, 0, 1555, 1556, 5, 282, 0, 0, 1556, 1557, 5, 20, 0, 0, 1557, 1559, 5, 89, 0, 0, 1558, 1555, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 21, 1, 0, 0, 0, 1560, 1561, 5, 169, 0, 0, 1561, 1562, 3, 386, 193, 0, 1562, 23, 1, 0, 0, 0, 1563, 1564, 5, 51, 0, 0, 1564, 1565, 3, 386, 193, 0, 1565, 25, 1, 0, 0, 0, 1566, 1568, 3, 44, 22, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 3, 102, 51, 0, 1570, 1571, 3, 98, 49, 0, 1571, 27, 1, 0, 0, 0, 1572, 1573, 5, 147, 0, 0, 1573, 1575, 5, 215, 0, 0, 1574, 1576, 5, 292, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1582, 3, 84, 42, 0, 1578, 1580, 3, 32, 16, 0, 1579, 1581, 3, 188, 94, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1578, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1590, 1, 0, 0, 0, 1584, 1585, 5, 31, 0, 0, 1585, 1591, 5, 188, 0, 0, 1586, 1587, 5, 2, 0, 0, 1587, 1588, 3, 92, 46, 0, 1588, 1589, 5, 3, 0, 0, 1589, 1591, 1, 0, 0, 0, 1590, 1584, 1, 0, 0, 0, 1590, 1586, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1649, 1, 0, 0, 0, 1592, 1593, 5, 147, 0, 0, 1593, 1595, 5, 152, 0, 0, 1594, 1596, 5, 292, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1599, 3, 84, 42, 0, 1598, 1600, 3, 32, 16, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1603, 3, 188, 94, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1610, 1, 0, 0, 0, 1604, 1605, 5, 31, 0, 0, 1605, 1611, 5, 188, 0, 0, 1606, 1607, 5, 2, 0, 0, 1607, 1608, 3, 92, 46, 0, 1608, 1609, 5, 3, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1604, 1, 0, 0, 0, 1610, 1606, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1649, 1, 0, 0, 0, 1612, 1613, 5, 147, 0, 0, 1613, 1615, 5, 152, 0, 0, 1614, 1616, 5, 292, 0, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 3, 84, 42, 0, 1618, 1619, 5, 243, 0, 0, 1619, 1620, 3, 136, 68, 0, 1620, 1649, 1, 0, 0, 0, 1621, 1622, 5, 147, 0, 0, 1622, 1624, 5, 215, 0, 0, 1623, 1625, 5, 168, 0, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 5, 90, 0, 0, 1627, 1629, 3, 386, 193, 0, 1628, 1630, 3, 240, 120, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1632, 1, 0, 0, 0, 1631, 1633, 3, 68, 34, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1649, 1, 0, 0, 0, 1634, 1635, 5, 147, 0, 0, 1635, 1637, 5, 215, 0, 0, 1636, 1638, 5, 168, 0, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1641, 5, 90, 0, 0, 1640, 1642, 3, 386, 193, 0, 1641, 1640, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1646, 3, 48, 24, 0, 1644, 1645, 5, 206, 0, 0, 1645, 1647, 3, 52, 26, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1572, 1, 0, 0, 0, 1648, 1592, 1, 0, 0, 0, 1648, 1612, 1, 0, 0, 0, 1648, 1621, 1, 0, 0, 0, 1648, 1634, 1, 0, 0, 0, 1649, 29, 1, 0, 0, 0, 1650, 1652, 3, 32, 16, 0, 1651, 1653, 3, 22, 11, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 31, 1, 0, 0, 0, 1654, 1655, 5, 216, 0, 0, 1655, 1656, 5, 2, 0, 0, 1656, 1661, 3, 34, 17, 0, 1657, 1658, 5, 4, 0, 0, 1658, 1660, 3, 34, 17, 0, 1659, 1657, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1664, 1665, 5, 3, 0, 0, 1665, 33, 1, 0, 0, 0, 1666, 1669, 3, 374, 187, 0, 1667, 1668, 5, 351, 0, 0, 1668, 1670, 3, 286, 143, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1676, 1, 0, 0, 0, 1671, 1672, 3, 374, 187, 0, 1672, 1673, 5, 351, 0, 0, 1673, 1674, 5, 82, 0, 0, 1674, 1676, 1, 0, 0, 0, 1675, 1666, 1, 0, 0, 0, 1675, 1671, 1, 0, 0, 0, 1676, 35, 1, 0, 0, 0, 1677, 1678, 7, 11, 0, 0, 1678, 37, 1, 0, 0, 0, 1679, 1680, 7, 12, 0, 0, 1680, 39, 1, 0, 0, 0, 1681, 1687, 3, 96, 48, 0, 1682, 1687, 3, 386, 193, 0, 1683, 1687, 3, 288, 144, 0, 1684, 1687, 3, 290, 145, 0, 1685, 1687, 3, 292, 146, 0, 1686, 1681, 1, 0, 0, 0, 1686, 1682, 1, 0, 0, 0, 1686, 1683, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1685, 1, 0, 0, 0, 1687, 41, 1, 0, 0, 0, 1688, 1693, 3, 374, 187, 0, 1689, 1690, 5, 5, 0, 0, 1690, 1692, 3, 374, 187, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 43, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1697, 5, 345, 0, 0, 1697, 1702, 3, 46, 23, 0, 1698, 1699, 5, 4, 0, 0, 1699, 1701, 3, 46, 23, 0, 1700, 1698, 1, 0, 0, 0, 1701, 1704, 1, 0, 0, 0, 1702, 1700, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 45, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1705, 1707, 3, 370, 185, 0, 1706, 1708, 3, 210, 105, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1711, 5, 20, 0, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 5, 2, 0, 0, 1713, 1714, 3, 26, 13, 0, 1714, 1715, 5, 3, 0, 0, 1715, 47, 1, 0, 0, 0, 1716, 1717, 5, 331, 0, 0, 1717, 1718, 3, 244, 122, 0, 1718, 49, 1, 0, 0, 0, 1719, 1720, 5, 206, 0, 0, 1720, 1733, 3, 60, 30, 0, 1721, 1722, 5, 217, 0, 0, 1722, 1723, 5, 31, 0, 0, 1723, 1733, 3, 258, 129, 0, 1724, 1733, 3, 20, 10, 0, 1725, 1733, 3, 18, 9, 0, 1726, 1733, 3, 240, 120, 0, 1727, 1733, 3, 68, 34, 0, 1728, 1733, 3, 22, 11, 0, 1729, 1733, 3, 24, 12, 0, 1730, 1731, 5, 296, 0, 0, 1731, 1733, 3, 52, 26, 0, 1732, 1719, 1, 0, 0, 0, 1732, 1721, 1, 0, 0, 0, 1732, 1724, 1, 0, 0, 0, 1732, 1725, 1, 0, 0, 0, 1732, 1726, 1, 0, 0, 0, 1732, 1727, 1, 0, 0, 0, 1732, 1728, 1, 0, 0, 0, 1732, 1729, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 51, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1738, 5, 2, 0, 0, 1738, 1743, 3, 54, 27, 0, 1739, 1740, 5, 4, 0, 0, 1740, 1742, 3, 54, 27, 0, 1741, 1739, 1, 0, 0, 0, 1742, 1745, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1746, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1747, 5, 3, 0, 0, 1747, 53, 1, 0, 0, 0, 1748, 1753, 3, 56, 28, 0, 1749, 1751, 5, 351, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 3, 58, 29, 0, 1753, 1750, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 374, 187, 0, 1756, 1757, 5, 5, 0, 0, 1757, 1759, 3, 374, 187, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1762, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1765, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1765, 3, 386, 193, 0, 1764, 1755, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 57, 1, 0, 0, 0, 1766, 1771, 5, 381, 0, 0, 1767, 1771, 5, 383, 0, 0, 1768, 1771, 3, 294, 147, 0, 1769, 1771, 3, 386, 193, 0, 1770, 1766, 1, 0, 0, 0, 1770, 1767, 1, 0, 0, 0, 1770, 1768, 1, 0, 0, 0, 1770, 1769, 1, 0, 0, 0, 1771, 59, 1, 0, 0, 0, 1772, 1773, 5, 2, 0, 0, 1773, 1778, 3, 62, 31, 0, 1774, 1775, 5, 4, 0, 0, 1775, 1777, 3, 62, 31, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1780, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1782, 5, 3, 0, 0, 1782, 61, 1, 0, 0, 0, 1783, 1788, 3, 56, 28, 0, 1784, 1786, 5, 351, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 266, 133, 0, 1788, 1785, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1791, 5, 2, 0, 0, 1791, 1796, 3, 286, 143, 0, 1792, 1793, 5, 4, 0, 0, 1793, 1795, 3, 286, 143, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1799, 1, 0, 0, 0, 1798, 1796, 1, 0, 0, 0, 1799, 1800, 5, 3, 0, 0, 1800, 65, 1, 0, 0, 0, 1801, 1802, 5, 2, 0, 0, 1802, 1807, 3, 64, 32, 0, 1803, 1804, 5, 4, 0, 0, 1804, 1806, 3, 64, 32, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1809, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1810, 1, 0, 0, 0, 1809, 1807, 1, 0, 0, 0, 1810, 1811, 5, 3, 0, 0, 1811, 67, 1, 0, 0, 0, 1812, 1813, 5, 282, 0, 0, 1813, 1814, 5, 20, 0, 0, 1814, 1819, 3, 70, 35, 0, 1815, 1816, 5, 282, 0, 0, 1816, 1817, 5, 31, 0, 0, 1817, 1819, 3, 72, 36, 0, 1818, 1812, 1, 0, 0, 0, 1818, 1815, 1, 0, 0, 0, 1819, 69, 1, 0, 0, 0, 1820, 1821, 5, 146, 0, 0, 1821, 1822, 3, 386, 193, 0, 1822, 1823, 5, 211, 0, 0, 1823, 1824, 3, 386, 193, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1827, 3, 374, 187, 0, 1826, 1820, 1, 0, 0, 0, 1826, 1825, 1, 0, 0, 0, 1827, 71, 1, 0, 0, 0, 1828, 1832, 3, 386, 193, 0, 1829, 1830, 5, 345, 0, 0, 1830, 1831, 5, 266, 0, 0, 1831, 1833, 3, 52, 26, 0, 1832, 1829, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 73, 1, 0, 0, 0, 1834, 1835, 3, 374, 187, 0, 1835, 1836, 3, 386, 193, 0, 1836, 75, 1, 0, 0, 0, 1837, 1838, 3, 28, 14, 0, 1838, 1839, 3, 26, 13, 0, 1839, 1894, 1, 0, 0, 0, 1840, 1842, 3, 144, 72, 0, 1841, 1843, 3, 100, 50, 0, 1842, 1841, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1894, 1, 0, 0, 0, 1846, 1847, 5, 84, 0, 0, 1847, 1848, 5, 123, 0, 0, 1848, 1849, 3, 84, 42, 0, 1849, 1851, 3, 238, 119, 0, 1850, 1852, 3, 136, 68, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1894, 1, 0, 0, 0, 1853, 1854, 5, 328, 0, 0, 1854, 1855, 3, 84, 42, 0, 1855, 1856, 3, 238, 119, 0, 1856, 1858, 3, 118, 59, 0, 1857, 1859, 3, 136, 68, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1894, 1, 0, 0, 0, 1860, 1861, 5, 178, 0, 0, 1861, 1862, 5, 152, 0, 0, 1862, 1863, 3, 84, 42, 0, 1863, 1864, 3, 238, 119, 0, 1864, 1870, 5, 331, 0, 0, 1865, 1871, 3, 96, 48, 0, 1866, 1867, 5, 2, 0, 0, 1867, 1868, 3, 26, 13, 0, 1868, 1869, 5, 3, 0, 0, 1869, 1871, 1, 0, 0, 0, 1870, 1865, 1, 0, 0, 0, 1870, 1866, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1873, 3, 238, 119, 0, 1873, 1874, 5, 202, 0, 0, 1874, 1878, 3, 274, 137, 0, 1875, 1877, 3, 120, 60, 0, 1876, 1875, 1, 0, 0, 0, 1877, 1880, 1, 0, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1884, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1883, 3, 122, 61, 0, 1882, 1881, 1, 0, 0, 0, 1883, 1886, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1890, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1887, 1889, 3, 124, 62, 0, 1888, 1887, 1, 0, 0, 0, 1889, 1892, 1, 0, 0, 0, 1890, 1888, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1837, 1, 0, 0, 0, 1893, 1840, 1, 0, 0, 0, 1893, 1846, 1, 0, 0, 0, 1893, 1853, 1, 0, 0, 0, 1893, 1860, 1, 0, 0, 0, 1894, 77, 1, 0, 0, 0, 1895, 1896, 3, 96, 48, 0, 1896, 79, 1, 0, 0, 0, 1897, 1898, 3, 96, 48, 0, 1898, 81, 1, 0, 0, 0, 1899, 1900, 3, 250, 125, 0, 1900, 83, 1, 0, 0, 0, 1901, 1902, 3, 250, 125, 0, 1902, 85, 1, 0, 0, 0, 1903, 1904, 3, 252, 126, 0, 1904, 87, 1, 0, 0, 0, 1905, 1906, 3, 252, 126, 0, 1906, 89, 1, 0, 0, 0, 1907, 1910, 3, 244, 122, 0, 1908, 1910, 4, 45, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 91, 1, 0, 0, 0, 1911, 1916, 3, 90, 45, 0, 1912, 1913, 5, 4, 0, 0, 1913, 1915, 3, 90, 45, 0, 1914, 1912, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1919, 1920, 3, 370, 185, 0, 1920, 95, 1, 0, 0, 0, 1921, 1922, 5, 136, 0, 0, 1922, 1923, 5, 2, 0, 0, 1923, 1924, 3, 266, 133, 0, 1924, 1925, 5, 3, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1928, 3, 244, 122, 0, 1927, 1921, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1928, 97, 1, 0, 0, 0, 1929, 1930, 5, 208, 0, 0, 1930, 1931, 5, 31, 0, 0, 1931, 1936, 3, 106, 53, 0, 1932, 1933, 5, 4, 0, 0, 1933, 1935, 3, 106, 53, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1938, 1, 0, 0, 0, 1936, 1934, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1929, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1951, 1, 0, 0, 0, 1941, 1942, 5, 44, 0, 0, 1942, 1943, 5, 31, 0, 0, 1943, 1948, 3, 266, 133, 0, 1944, 1945, 5, 4, 0, 0, 1945, 1947, 3, 266, 133, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1950, 1, 0, 0, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1952, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1951, 1941, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1963, 1, 0, 0, 0, 1953, 1954, 5, 93, 0, 0, 1954, 1955, 5, 31, 0, 0, 1955, 1960, 3, 266, 133, 0, 1956, 1957, 5, 4, 0, 0, 1957, 1959, 3, 266, 133, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1964, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1963, 1953, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1975, 1, 0, 0, 0, 1965, 1966, 5, 277, 0, 0, 1966, 1967, 5, 31, 0, 0, 1967, 1972, 3, 106, 53, 0, 1968, 1969, 5, 4, 0, 0, 1969, 1971, 3, 106, 53, 0, 1970, 1968, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1976, 1, 0, 0, 0, 1974, 1972, 1, 0, 0, 0, 1975, 1965, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 350, 175, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1985, 1, 0, 0, 0, 1980, 1983, 5, 164, 0, 0, 1981, 1984, 5, 10, 0, 0, 1982, 1984, 3, 266, 133, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1982, 1, 0, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1980, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 1, 0, 0, 0, 1987, 1988, 5, 201, 0, 0, 1988, 1990, 3, 266, 133, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 99, 1, 0, 0, 0, 1991, 1992, 3, 28, 14, 0, 1992, 1993, 3, 110, 55, 0, 1993, 101, 1, 0, 0, 0, 1994, 1995, 6, 51, -1, 0, 1995, 1996, 3, 104, 52, 0, 1996, 2017, 1, 0, 0, 0, 1997, 1998, 10, 3, 0, 0, 1998, 2000, 7, 13, 0, 0, 1999, 2001, 3, 194, 97, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2016, 3, 102, 51, 4, 2003, 2004, 10, 2, 0, 0, 2004, 2006, 5, 148, 0, 0, 2005, 2007, 3, 194, 97, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2016, 3, 102, 51, 3, 2009, 2010, 10, 1, 0, 0, 2010, 2012, 7, 14, 0, 0, 2011, 2013, 3, 194, 97, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2016, 3, 102, 51, 2, 2015, 1997, 1, 0, 0, 0, 2015, 2003, 1, 0, 0, 0, 2015, 2009, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 103, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2030, 3, 112, 56, 0, 2021, 2030, 3, 108, 54, 0, 2022, 2023, 5, 292, 0, 0, 2023, 2030, 3, 84, 42, 0, 2024, 2030, 3, 224, 112, 0, 2025, 2026, 5, 2, 0, 0, 2026, 2027, 3, 26, 13, 0, 2027, 2028, 5, 3, 0, 0, 2028, 2030, 1, 0, 0, 0, 2029, 2020, 1, 0, 0, 0, 2029, 2021, 1, 0, 0, 0, 2029, 2022, 1, 0, 0, 0, 2029, 2024, 1, 0, 0, 0, 2029, 2025, 1, 0, 0, 0, 2030, 105, 1, 0, 0, 0, 2031, 2034, 3, 90, 45, 0, 2032, 2034, 3, 266, 133, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2032, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2037, 7, 15, 0, 0, 2036, 2035, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2039, 5, 198, 0, 0, 2039, 2041, 7, 16, 0, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 107, 1, 0, 0, 0, 2042, 2044, 3, 144, 72, 0, 2043, 2045, 3, 110, 55, 0, 2044, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 109, 1, 0, 0, 0, 2048, 2050, 3, 114, 57, 0, 2049, 2051, 3, 136, 68, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 3, 98, 49, 0, 2053, 2076, 1, 0, 0, 0, 2054, 2058, 3, 116, 58, 0, 2055, 2057, 3, 192, 96, 0, 2056, 2055, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2063, 3, 136, 68, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2066, 3, 150, 75, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2069, 3, 138, 69, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 2072, 3, 350, 175, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 3, 98, 49, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2048, 1, 0, 0, 0, 2075, 2054, 1, 0, 0, 0, 2076, 111, 1, 0, 0, 0, 2077, 2079, 3, 114, 57, 0, 2078, 2080, 3, 144, 72, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2083, 3, 192, 96, 0, 2082, 2081, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2088, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2087, 2089, 3, 136, 68, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2092, 3, 150, 75, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 138, 69, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 350, 175, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2122, 1, 0, 0, 0, 2099, 2101, 3, 116, 58, 0, 2100, 2102, 3, 144, 72, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2106, 1, 0, 0, 0, 2103, 2105, 3, 192, 96, 0, 2104, 2103, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2111, 3, 136, 68, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 150, 75, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 138, 69, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 350, 175, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2077, 1, 0, 0, 0, 2121, 2099, 1, 0, 0, 0, 2122, 113, 1, 0, 0, 0, 2123, 2124, 5, 262, 0, 0, 2124, 2125, 5, 313, 0, 0, 2125, 2127, 5, 2, 0, 0, 2126, 2128, 3, 194, 97, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2130, 3, 272, 136, 0, 2130, 2131, 5, 3, 0, 0, 2131, 2143, 1, 0, 0, 0, 2132, 2134, 5, 176, 0, 0, 2133, 2135, 3, 194, 97, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2143, 3, 272, 136, 0, 2137, 2139, 5, 237, 0, 0, 2138, 2140, 3, 194, 97, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 3, 272, 136, 0, 2142, 2123, 1, 0, 0, 0, 2142, 2132, 1, 0, 0, 0, 2142, 2137, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 240, 120, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2149, 1, 0, 0, 0, 2147, 2148, 5, 235, 0, 0, 2148, 2150, 3, 386, 193, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 5, 331, 0, 0, 2152, 2165, 3, 386, 193, 0, 2153, 2163, 5, 20, 0, 0, 2154, 2164, 3, 212, 106, 0, 2155, 2164, 3, 332, 166, 0, 2156, 2159, 5, 2, 0, 0, 2157, 2160, 3, 212, 106, 0, 2158, 2160, 3, 332, 166, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2162, 5, 3, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2154, 1, 0, 0, 0, 2163, 2155, 1, 0, 0, 0, 2163, 2156, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2153, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2169, 3, 240, 120, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2172, 1, 0, 0, 0, 2170, 2171, 5, 234, 0, 0, 2171, 2173, 3, 386, 193, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 115, 1, 0, 0, 0, 2174, 2178, 5, 262, 0, 0, 2175, 2177, 3, 140, 70, 0, 2176, 2175, 1, 0, 0, 0, 2177, 2180, 1, 0, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2181, 2183, 3, 194, 97, 0, 2182, 2181, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 3, 256, 128, 0, 2185, 117, 1, 0, 0, 0, 2186, 2187, 5, 268, 0, 0, 2187, 2188, 3, 132, 66, 0, 2188, 119, 1, 0, 0, 0, 2189, 2190, 5, 342, 0, 0, 2190, 2193, 5, 177, 0, 0, 2191, 2192, 5, 14, 0, 0, 2192, 2194, 3, 274, 137, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 5, 299, 0, 0, 2196, 2197, 3, 126, 63, 0, 2197, 121, 1, 0, 0, 0, 2198, 2199, 5, 342, 0, 0, 2199, 2200, 5, 196, 0, 0, 2200, 2203, 5, 177, 0, 0, 2201, 2202, 5, 31, 0, 0, 2202, 2204, 5, 295, 0, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2206, 5, 14, 0, 0, 2206, 2208, 3, 274, 137, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2210, 5, 299, 0, 0, 2210, 2211, 3, 128, 64, 0, 2211, 123, 1, 0, 0, 0, 2212, 2213, 5, 342, 0, 0, 2213, 2214, 5, 196, 0, 0, 2214, 2215, 5, 177, 0, 0, 2215, 2216, 5, 31, 0, 0, 2216, 2219, 5, 279, 0, 0, 2217, 2218, 5, 14, 0, 0, 2218, 2220, 3, 274, 137, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 5, 299, 0, 0, 2222, 2223, 3, 130, 65, 0, 2223, 125, 1, 0, 0, 0, 2224, 2232, 5, 84, 0, 0, 2225, 2226, 5, 328, 0, 0, 2226, 2227, 5, 268, 0, 0, 2227, 2232, 5, 362, 0, 0, 2228, 2229, 5, 328, 0, 0, 2229, 2230, 5, 268, 0, 0, 2230, 2232, 3, 132, 66, 0, 2231, 2224, 1, 0, 0, 0, 2231, 2225, 1, 0, 0, 0, 2231, 2228, 1, 0, 0, 0, 2232, 127, 1, 0, 0, 0, 2233, 2234, 5, 147, 0, 0, 2234, 2252, 5, 362, 0, 0, 2235, 2236, 5, 147, 0, 0, 2236, 2237, 5, 2, 0, 0, 2237, 2238, 3, 242, 121, 0, 2238, 2239, 5, 3, 0, 0, 2239, 2240, 5, 332, 0, 0, 2240, 2241, 5, 2, 0, 0, 2241, 2246, 3, 266, 133, 0, 2242, 2243, 5, 4, 0, 0, 2243, 2245, 3, 266, 133, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2250, 5, 3, 0, 0, 2250, 2252, 1, 0, 0, 0, 2251, 2233, 1, 0, 0, 0, 2251, 2235, 1, 0, 0, 0, 2252, 129, 1, 0, 0, 0, 2253, 2258, 5, 84, 0, 0, 2254, 2255, 5, 328, 0, 0, 2255, 2256, 5, 268, 0, 0, 2256, 2258, 3, 132, 66, 0, 2257, 2253, 1, 0, 0, 0, 2257, 2254, 1, 0, 0, 0, 2258, 131, 1, 0, 0, 0, 2259, 2264, 3, 134, 67, 0, 2260, 2261, 5, 4, 0, 0, 2261, 2263, 3, 134, 67, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2268, 3, 244, 122, 0, 2268, 2269, 5, 351, 0, 0, 2269, 2270, 3, 266, 133, 0, 2270, 135, 1, 0, 0, 0, 2271, 2272, 5, 343, 0, 0, 2272, 2273, 3, 274, 137, 0, 2273, 137, 1, 0, 0, 0, 2274, 2275, 5, 132, 0, 0, 2275, 2276, 3, 274, 137, 0, 2276, 139, 1, 0, 0, 0, 2277, 2278, 5, 373, 0, 0, 2278, 2285, 3, 142, 71, 0, 2279, 2281, 5, 4, 0, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2284, 3, 142, 71, 0, 2283, 2280, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 374, 0, 0, 2289, 141, 1, 0, 0, 0, 2290, 2304, 3, 374, 187, 0, 2291, 2292, 3, 374, 187, 0, 2292, 2293, 5, 2, 0, 0, 2293, 2298, 3, 282, 141, 0, 2294, 2295, 5, 4, 0, 0, 2295, 2297, 3, 282, 141, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2300, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2302, 5, 3, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2290, 1, 0, 0, 0, 2303, 2291, 1, 0, 0, 0, 2304, 143, 1, 0, 0, 0, 2305, 2306, 5, 123, 0, 0, 2306, 2311, 3, 196, 98, 0, 2307, 2308, 5, 4, 0, 0, 2308, 2310, 3, 196, 98, 0, 2309, 2307, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2317, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2316, 3, 192, 96, 0, 2315, 2314, 1, 0, 0, 0, 2316, 2319, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2321, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2322, 3, 160, 80, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2325, 3, 166, 83, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 145, 1, 0, 0, 0, 2326, 2327, 7, 17, 0, 0, 2327, 147, 1, 0, 0, 0, 2328, 2330, 5, 119, 0, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 7, 18, 0, 0, 2332, 2333, 5, 20, 0, 0, 2333, 2334, 5, 200, 0, 0, 2334, 2343, 3, 390, 195, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 19, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 200, 0, 0, 2341, 2343, 3, 278, 139, 0, 2342, 2329, 1, 0, 0, 0, 2342, 2336, 1, 0, 0, 0, 2343, 149, 1, 0, 0, 0, 2344, 2345, 5, 130, 0, 0, 2345, 2346, 5, 31, 0, 0, 2346, 2351, 3, 152, 76, 0, 2347, 2348, 5, 4, 0, 0, 2348, 2350, 3, 152, 76, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2384, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2355, 5, 130, 0, 0, 2355, 2356, 5, 31, 0, 0, 2356, 2361, 3, 266, 133, 0, 2357, 2358, 5, 4, 0, 0, 2358, 2360, 3, 266, 133, 0, 2359, 2357, 1, 0, 0, 0, 2360, 2363, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2381, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2365, 5, 345, 0, 0, 2365, 2382, 5, 255, 0, 0, 2366, 2367, 5, 345, 0, 0, 2367, 2382, 5, 61, 0, 0, 2368, 2369, 5, 131, 0, 0, 2369, 2370, 5, 270, 0, 0, 2370, 2371, 5, 2, 0, 0, 2371, 2376, 3, 158, 79, 0, 2372, 2373, 5, 4, 0, 0, 2373, 2375, 3, 158, 79, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2380, 5, 3, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2364, 1, 0, 0, 0, 2381, 2366, 1, 0, 0, 0, 2381, 2368, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2384, 1, 0, 0, 0, 2383, 2344, 1, 0, 0, 0, 2383, 2354, 1, 0, 0, 0, 2384, 151, 1, 0, 0, 0, 2385, 2389, 3, 90, 45, 0, 2386, 2389, 3, 154, 77, 0, 2387, 2389, 3, 266, 133, 0, 2388, 2385, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2388, 2387, 1, 0, 0, 0, 2389, 153, 1, 0, 0, 0, 2390, 2391, 7, 20, 0, 0, 2391, 2392, 5, 2, 0, 0, 2392, 2397, 3, 158, 79, 0, 2393, 2394, 5, 4, 0, 0, 2394, 2396, 3, 158, 79, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2401, 5, 3, 0, 0, 2401, 2416, 1, 0, 0, 0, 2402, 2403, 5, 131, 0, 0, 2403, 2404, 5, 270, 0, 0, 2404, 2405, 5, 2, 0, 0, 2405, 2410, 3, 156, 78, 0, 2406, 2407, 5, 4, 0, 0, 2407, 2409, 3, 156, 78, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2412, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2414, 5, 3, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2390, 1, 0, 0, 0, 2415, 2402, 1, 0, 0, 0, 2416, 155, 1, 0, 0, 0, 2417, 2420, 3, 154, 77, 0, 2418, 2420, 3, 158, 79, 0, 2419, 2417, 1, 0, 0, 0, 2419, 2418, 1, 0, 0, 0, 2420, 157, 1, 0, 0, 0, 2421, 2442, 3, 90, 45, 0, 2422, 2442, 3, 266, 133, 0, 2423, 2438, 5, 2, 0, 0, 2424, 2427, 3, 90, 45, 0, 2425, 2427, 3, 266, 133, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 2435, 1, 0, 0, 0, 2428, 2431, 5, 4, 0, 0, 2429, 2432, 3, 90, 45, 0, 2430, 2432, 3, 266, 133, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2430, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2428, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2426, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 5, 3, 0, 0, 2441, 2421, 1, 0, 0, 0, 2441, 2422, 1, 0, 0, 0, 2441, 2423, 1, 0, 0, 0, 2442, 159, 1, 0, 0, 0, 2443, 2444, 5, 222, 0, 0, 2444, 2445, 5, 2, 0, 0, 2445, 2446, 3, 256, 128, 0, 2446, 2447, 5, 119, 0, 0, 2447, 2448, 3, 162, 81, 0, 2448, 2449, 5, 140, 0, 0, 2449, 2450, 5, 2, 0, 0, 2450, 2455, 3, 164, 82, 0, 2451, 2452, 5, 4, 0, 0, 2452, 2454, 3, 164, 82, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2460, 5, 3, 0, 0, 2460, 161, 1, 0, 0, 0, 2461, 2474, 3, 374, 187, 0, 2462, 2463, 5, 2, 0, 0, 2463, 2468, 3, 374, 187, 0, 2464, 2465, 5, 4, 0, 0, 2465, 2467, 3, 374, 187, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2471, 2472, 5, 3, 0, 0, 2472, 2474, 1, 0, 0, 0, 2473, 2461, 1, 0, 0, 0, 2473, 2462, 1, 0, 0, 0, 2474, 163, 1, 0, 0, 0, 2475, 2480, 3, 266, 133, 0, 2476, 2478, 5, 20, 0, 0, 2477, 2476, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2481, 3, 374, 187, 0, 2480, 2477, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2484, 5, 326, 0, 0, 2483, 2485, 3, 168, 84, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 2, 0, 0, 2487, 2488, 3, 170, 85, 0, 2488, 2493, 5, 3, 0, 0, 2489, 2491, 5, 20, 0, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 3, 374, 187, 0, 2493, 2490, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 167, 1, 0, 0, 0, 2495, 2496, 7, 21, 0, 0, 2496, 2497, 5, 198, 0, 0, 2497, 169, 1, 0, 0, 0, 2498, 2501, 3, 172, 86, 0, 2499, 2501, 3, 174, 87, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2499, 1, 0, 0, 0, 2501, 171, 1, 0, 0, 0, 2502, 2503, 3, 178, 89, 0, 2503, 2504, 5, 119, 0, 0, 2504, 2505, 3, 180, 90, 0, 2505, 2506, 5, 140, 0, 0, 2506, 2507, 5, 2, 0, 0, 2507, 2512, 3, 182, 91, 0, 2508, 2509, 5, 4, 0, 0, 2509, 2511, 3, 182, 91, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2514, 1, 0, 0, 0, 2512, 2510, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 1, 0, 0, 0, 2514, 2512, 1, 0, 0, 0, 2515, 2516, 5, 3, 0, 0, 2516, 173, 1, 0, 0, 0, 2517, 2518, 5, 2, 0, 0, 2518, 2523, 3, 178, 89, 0, 2519, 2520, 5, 4, 0, 0, 2520, 2522, 3, 178, 89, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2527, 5, 3, 0, 0, 2527, 2528, 5, 119, 0, 0, 2528, 2529, 3, 180, 90, 0, 2529, 2530, 5, 140, 0, 0, 2530, 2531, 5, 2, 0, 0, 2531, 2536, 3, 176, 88, 0, 2532, 2533, 5, 4, 0, 0, 2533, 2535, 3, 176, 88, 0, 2534, 2532, 1, 0, 0, 0, 2535, 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2540, 5, 3, 0, 0, 2540, 175, 1, 0, 0, 0, 2541, 2542, 5, 2, 0, 0, 2542, 2547, 3, 184, 92, 0, 2543, 2544, 5, 4, 0, 0, 2544, 2546, 3, 184, 92, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2549, 1, 0, 0, 0, 2547, 2545, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2550, 2552, 5, 3, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 177, 1, 0, 0, 0, 2554, 2555, 3, 374, 187, 0, 2555, 179, 1, 0, 0, 0, 2556, 2557, 3, 374, 187, 0, 2557, 181, 1, 0, 0, 0, 2558, 2560, 3, 184, 92, 0, 2559, 2561, 3, 186, 93, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 183, 1, 0, 0, 0, 2562, 2563, 3, 244, 122, 0, 2563, 185, 1, 0, 0, 0, 2564, 2566, 5, 20, 0, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2568, 3, 374, 187, 0, 2568, 187, 1, 0, 0, 0, 2569, 2570, 5, 137, 0, 0, 2570, 2571, 5, 196, 0, 0, 2571, 2572, 5, 105, 0, 0, 2572, 189, 1, 0, 0, 0, 2573, 2574, 5, 137, 0, 0, 2574, 2575, 5, 105, 0, 0, 2575, 191, 1, 0, 0, 0, 2576, 2577, 5, 158, 0, 0, 2577, 2579, 5, 337, 0, 0, 2578, 2580, 5, 210, 0, 0, 2579, 2578, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2582, 3, 88, 44, 0, 2582, 2591, 5, 2, 0, 0, 2583, 2588, 3, 266, 133, 0, 2584, 2585, 5, 4, 0, 0, 2585, 2587, 3, 266, 133, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2592, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2583, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2594, 5, 3, 0, 0, 2594, 2606, 3, 238, 119, 0, 2595, 2597, 5, 20, 0, 0, 2596, 2595, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2603, 3, 374, 187, 0, 2599, 2600, 5, 4, 0, 0, 2600, 2602, 3, 374, 187, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2596, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 193, 1, 0, 0, 0, 2608, 2609, 7, 22, 0, 0, 2609, 195, 1, 0, 0, 0, 2610, 2622, 3, 84, 42, 0, 2611, 2613, 5, 158, 0, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2618, 3, 222, 111, 0, 2615, 2617, 3, 198, 99, 0, 2616, 2615, 1, 0, 0, 0, 2617, 2620, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2622, 1, 0, 0, 0, 2620, 2618, 1, 0, 0, 0, 2621, 2610, 1, 0, 0, 0, 2621, 2612, 1, 0, 0, 0, 2622, 197, 1, 0, 0, 0, 2623, 2627, 3, 200, 100, 0, 2624, 2627, 3, 160, 80, 0, 2625, 2627, 3, 166, 83, 0, 2626, 2623, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2625, 1, 0, 0, 0, 2627, 199, 1, 0, 0, 0, 2628, 2629, 3, 202, 101, 0, 2629, 2631, 5, 155, 0, 0, 2630, 2632, 5, 158, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2635, 3, 222, 111, 0, 2634, 2636, 3, 204, 102, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2646, 1, 0, 0, 0, 2637, 2638, 5, 193, 0, 0, 2638, 2639, 3, 202, 101, 0, 2639, 2641, 5, 155, 0, 0, 2640, 2642, 5, 158, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2644, 3, 222, 111, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2628, 1, 0, 0, 0, 2645, 2637, 1, 0, 0, 0, 2646, 201, 1, 0, 0, 0, 2647, 2649, 5, 144, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2672, 1, 0, 0, 0, 2650, 2672, 5, 60, 0, 0, 2651, 2653, 5, 161, 0, 0, 2652, 2654, 5, 210, 0, 0, 2653, 2652, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2672, 1, 0, 0, 0, 2655, 2657, 5, 161, 0, 0, 2656, 2655, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2672, 5, 263, 0, 0, 2659, 2661, 5, 249, 0, 0, 2660, 2662, 5, 210, 0, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2672, 1, 0, 0, 0, 2663, 2665, 5, 124, 0, 0, 2664, 2666, 5, 210, 0, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2672, 1, 0, 0, 0, 2667, 2669, 5, 161, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 5, 15, 0, 0, 2671, 2648, 1, 0, 0, 0, 2671, 2650, 1, 0, 0, 0, 2671, 2651, 1, 0, 0, 0, 2671, 2656, 1, 0, 0, 0, 2671, 2659, 1, 0, 0, 0, 2671, 2663, 1, 0, 0, 0, 2671, 2668, 1, 0, 0, 0, 2672, 203, 1, 0, 0, 0, 2673, 2674, 5, 202, 0, 0, 2674, 2678, 3, 274, 137, 0, 2675, 2676, 5, 331, 0, 0, 2676, 2678, 3, 210, 105, 0, 2677, 2673, 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2678, 205, 1, 0, 0, 0, 2679, 2680, 5, 294, 0, 0, 2680, 2682, 5, 2, 0, 0, 2681, 2683, 3, 208, 104, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2689, 5, 3, 0, 0, 2685, 2686, 5, 242, 0, 0, 2686, 2687, 5, 2, 0, 0, 2687, 2688, 5, 381, 0, 0, 2688, 2690, 5, 3, 0, 0, 2689, 2685, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 207, 1, 0, 0, 0, 2691, 2693, 5, 361, 0, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2695, 7, 23, 0, 0, 2695, 2716, 5, 221, 0, 0, 2696, 2697, 3, 266, 133, 0, 2697, 2698, 5, 257, 0, 0, 2698, 2716, 1, 0, 0, 0, 2699, 2700, 5, 29, 0, 0, 2700, 2701, 5, 381, 0, 0, 2701, 2702, 5, 209, 0, 0, 2702, 2703, 5, 200, 0, 0, 2703, 2712, 5, 381, 0, 0, 2704, 2710, 5, 202, 0, 0, 2705, 2711, 3, 374, 187, 0, 2706, 2707, 3, 368, 184, 0, 2707, 2708, 5, 2, 0, 0, 2708, 2709, 5, 3, 0, 0, 2709, 2711, 1, 0, 0, 0, 2710, 2705, 1, 0, 0, 0, 2710, 2706, 1, 0, 0, 0, 2711, 2713, 1, 0, 0, 0, 2712, 2704, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2716, 1, 0, 0, 0, 2714, 2716, 3, 266, 133, 0, 2715, 2692, 1, 0, 0, 0, 2715, 2696, 1, 0, 0, 0, 2715, 2699, 1, 0, 0, 0, 2715, 2714, 1, 0, 0, 0, 2716, 209, 1, 0, 0, 0, 2717, 2718, 5, 2, 0, 0, 2718, 2719, 3, 212, 106, 0, 2719, 2720, 5, 3, 0, 0, 2720, 211, 1, 0, 0, 0, 2721, 2726, 3, 370, 185, 0, 2722, 2723, 5, 4, 0, 0, 2723, 2725, 3, 370, 185, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2728, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2729, 2730, 5, 2, 0, 0, 2730, 2735, 3, 216, 108, 0, 2731, 2732, 5, 4, 0, 0, 2732, 2734, 3, 216, 108, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2738, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 3, 0, 0, 2739, 215, 1, 0, 0, 0, 2740, 2742, 3, 370, 185, 0, 2741, 2743, 7, 15, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 217, 1, 0, 0, 0, 2744, 2745, 5, 2, 0, 0, 2745, 2750, 3, 220, 110, 0, 2746, 2747, 5, 4, 0, 0, 2747, 2749, 3, 220, 110, 0, 2748, 2746, 1, 0, 0, 0, 2749, 2752, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2753, 2754, 5, 3, 0, 0, 2754, 219, 1, 0, 0, 0, 2755, 2757, 3, 94, 47, 0, 2756, 2758, 3, 24, 12, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 221, 1, 0, 0, 0, 2759, 2763, 3, 84, 42, 0, 2760, 2763, 3, 88, 44, 0, 2761, 2763, 3, 96, 48, 0, 2762, 2759, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2761, 1, 0, 0, 0, 2763, 2765, 1, 0, 0, 0, 2764, 2766, 3, 148, 74, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 1, 0, 0, 0, 2767, 2769, 3, 206, 103, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 3, 238, 119, 0, 2771, 2791, 1, 0, 0, 0, 2772, 2773, 5, 2, 0, 0, 2773, 2774, 3, 26, 13, 0, 2774, 2776, 5, 3, 0, 0, 2775, 2777, 3, 206, 103, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 3, 238, 119, 0, 2779, 2791, 1, 0, 0, 0, 2780, 2781, 5, 2, 0, 0, 2781, 2782, 3, 196, 98, 0, 2782, 2784, 5, 3, 0, 0, 2783, 2785, 3, 206, 103, 0, 2784, 2783, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2787, 3, 238, 119, 0, 2787, 2791, 1, 0, 0, 0, 2788, 2791, 3, 224, 112, 0, 2789, 2791, 3, 236, 118, 0, 2790, 2762, 1, 0, 0, 0, 2790, 2772, 1, 0, 0, 0, 2790, 2780, 1, 0, 0, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2789, 1, 0, 0, 0, 2791, 223, 1, 0, 0, 0, 2792, 2793, 5, 332, 0, 0, 2793, 2798, 3, 266, 133, 0, 2794, 2795, 5, 4, 0, 0, 2795, 2797, 3, 266, 133, 0, 2796, 2794, 1, 0, 0, 0, 2797, 2800, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2801, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2802, 3, 238, 119, 0, 2802, 225, 1, 0, 0, 0, 2803, 2804, 5, 292, 0, 0, 2804, 2806, 3, 84, 42, 0, 2805, 2807, 3, 228, 114, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2823, 1, 0, 0, 0, 2808, 2809, 5, 292, 0, 0, 2809, 2810, 5, 2, 0, 0, 2810, 2811, 3, 84, 42, 0, 2811, 2813, 5, 3, 0, 0, 2812, 2814, 3, 228, 114, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2823, 1, 0, 0, 0, 2815, 2816, 5, 292, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 26, 13, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 228, 114, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2823, 1, 0, 0, 0, 2822, 2803, 1, 0, 0, 0, 2822, 2808, 1, 0, 0, 0, 2822, 2815, 1, 0, 0, 0, 2823, 227, 1, 0, 0, 0, 2824, 2825, 5, 345, 0, 0, 2825, 2826, 5, 273, 0, 0, 2826, 2844, 5, 216, 0, 0, 2827, 2828, 7, 24, 0, 0, 2828, 2841, 5, 31, 0, 0, 2829, 2830, 5, 2, 0, 0, 2830, 2835, 3, 266, 133, 0, 2831, 2832, 5, 4, 0, 0, 2832, 2834, 3, 266, 133, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2833, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2835, 1, 0, 0, 0, 2838, 2839, 5, 3, 0, 0, 2839, 2842, 1, 0, 0, 0, 2840, 2842, 3, 266, 133, 0, 2841, 2829, 1, 0, 0, 0, 2841, 2840, 1, 0, 0, 0, 2842, 2844, 1, 0, 0, 0, 2843, 2824, 1, 0, 0, 0, 2843, 2827, 1, 0, 0, 0, 2844, 2861, 1, 0, 0, 0, 2845, 2846, 7, 25, 0, 0, 2846, 2859, 5, 31, 0, 0, 2847, 2848, 5, 2, 0, 0, 2848, 2853, 3, 106, 53, 0, 2849, 2850, 5, 4, 0, 0, 2850, 2852, 3, 106, 53, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2856, 2857, 5, 3, 0, 0, 2857, 2860, 1, 0, 0, 0, 2858, 2860, 3, 106, 53, 0, 2859, 2847, 1, 0, 0, 0, 2859, 2858, 1, 0, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2845, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 229, 1, 0, 0, 0, 2863, 2864, 3, 374, 187, 0, 2864, 2865, 5, 372, 0, 0, 2865, 2866, 3, 226, 113, 0, 2866, 231, 1, 0, 0, 0, 2867, 2870, 3, 226, 113, 0, 2868, 2870, 3, 230, 115, 0, 2869, 2867, 1, 0, 0, 0, 2869, 2868, 1, 0, 0, 0, 2870, 233, 1, 0, 0, 0, 2871, 2874, 3, 232, 116, 0, 2872, 2874, 3, 270, 135, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2872, 1, 0, 0, 0, 2874, 235, 1, 0, 0, 0, 2875, 2876, 3, 364, 182, 0, 2876, 2885, 5, 2, 0, 0, 2877, 2882, 3, 234, 117, 0, 2878, 2879, 5, 4, 0, 0, 2879, 2881, 3, 234, 117, 0, 2880, 2878, 1, 0, 0, 0, 2881, 2884, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2886, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2885, 2877, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 5, 3, 0, 0, 2888, 2889, 3, 238, 119, 0, 2889, 237, 1, 0, 0, 0, 2890, 2892, 5, 20, 0, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2895, 3, 376, 188, 0, 2894, 2896, 3, 210, 105, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2898, 1, 0, 0, 0, 2897, 2891, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 239, 1, 0, 0, 0, 2899, 2900, 5, 256, 0, 0, 2900, 2901, 5, 121, 0, 0, 2901, 2902, 5, 265, 0, 0, 2902, 2906, 3, 386, 193, 0, 2903, 2904, 5, 345, 0, 0, 2904, 2905, 5, 266, 0, 0, 2905, 2907, 3, 52, 26, 0, 2906, 2903, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2949, 1, 0, 0, 0, 2908, 2909, 5, 256, 0, 0, 2909, 2910, 5, 121, 0, 0, 2910, 2920, 5, 85, 0, 0, 2911, 2912, 5, 113, 0, 0, 2912, 2913, 5, 298, 0, 0, 2913, 2914, 5, 31, 0, 0, 2914, 2918, 3, 386, 193, 0, 2915, 2916, 5, 101, 0, 0, 2916, 2917, 5, 31, 0, 0, 2917, 2919, 3, 386, 193, 0, 2918, 2915, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2911, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2927, 1, 0, 0, 0, 2922, 2923, 5, 48, 0, 0, 2923, 2924, 5, 154, 0, 0, 2924, 2925, 5, 298, 0, 0, 2925, 2926, 5, 31, 0, 0, 2926, 2928, 3, 386, 193, 0, 2927, 2922, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 176, 0, 0, 2930, 2931, 5, 156, 0, 0, 2931, 2932, 5, 298, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 386, 193, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2940, 1, 0, 0, 0, 2936, 2937, 5, 165, 0, 0, 2937, 2938, 5, 298, 0, 0, 2938, 2939, 5, 31, 0, 0, 2939, 2941, 3, 386, 193, 0, 2940, 2936, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2946, 1, 0, 0, 0, 2942, 2943, 5, 197, 0, 0, 2943, 2944, 5, 83, 0, 0, 2944, 2945, 5, 20, 0, 0, 2945, 2947, 3, 386, 193, 0, 2946, 2942, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2899, 1, 0, 0, 0, 2948, 2908, 1, 0, 0, 0, 2949, 241, 1, 0, 0, 0, 2950, 2955, 3, 244, 122, 0, 2951, 2952, 5, 4, 0, 0, 2952, 2954, 3, 244, 122, 0, 2953, 2951, 1, 0, 0, 0, 2954, 2957, 1, 0, 0, 0, 2955, 2953, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2955, 1, 0, 0, 0, 2958, 2963, 3, 370, 185, 0, 2959, 2960, 5, 5, 0, 0, 2960, 2962, 3, 370, 185, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2965, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 245, 1, 0, 0, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2971, 3, 248, 124, 0, 2967, 2968, 5, 4, 0, 0, 2968, 2970, 3, 248, 124, 0, 2969, 2967, 1, 0, 0, 0, 2970, 2973, 1, 0, 0, 0, 2971, 2969, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 247, 1, 0, 0, 0, 2973, 2971, 1, 0, 0, 0, 2974, 2977, 3, 244, 122, 0, 2975, 2976, 5, 206, 0, 0, 2976, 2978, 3, 52, 26, 0, 2977, 2975, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 249, 1, 0, 0, 0, 2979, 2980, 3, 370, 185, 0, 2980, 2981, 5, 5, 0, 0, 2981, 2983, 1, 0, 0, 0, 2982, 2979, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 3, 370, 185, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 370, 185, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 370, 185, 0, 2992, 253, 1, 0, 0, 0, 2993, 2996, 3, 90, 45, 0, 2994, 2996, 3, 266, 133, 0, 2995, 2993, 1, 0, 0, 0, 2995, 2994, 1, 0, 0, 0, 2996, 3004, 1, 0, 0, 0, 2997, 2999, 5, 20, 0, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3002, 1, 0, 0, 0, 3000, 3003, 3, 370, 185, 0, 3001, 3003, 3, 210, 105, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2998, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 255, 1, 0, 0, 0, 3006, 3011, 3, 254, 127, 0, 3007, 3008, 5, 4, 0, 0, 3008, 3010, 3, 254, 127, 0, 3009, 3007, 1, 0, 0, 0, 3010, 3013, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3015, 5, 2, 0, 0, 3015, 3020, 3, 260, 130, 0, 3016, 3017, 5, 4, 0, 0, 3017, 3019, 3, 260, 130, 0, 3018, 3016, 1, 0, 0, 0, 3019, 3022, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3020, 1, 0, 0, 0, 3023, 3024, 5, 3, 0, 0, 3024, 259, 1, 0, 0, 0, 3025, 3028, 3, 262, 131, 0, 3026, 3028, 3, 334, 167, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3026, 1, 0, 0, 0, 3028, 261, 1, 0, 0, 0, 3029, 3043, 3, 368, 184, 0, 3030, 3031, 3, 374, 187, 0, 3031, 3032, 5, 2, 0, 0, 3032, 3037, 3, 264, 132, 0, 3033, 3034, 5, 4, 0, 0, 3034, 3036, 3, 264, 132, 0, 3035, 3033, 1, 0, 0, 0, 3036, 3039, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3040, 1, 0, 0, 0, 3039, 3037, 1, 0, 0, 0, 3040, 3041, 5, 3, 0, 0, 3041, 3043, 1, 0, 0, 0, 3042, 3029, 1, 0, 0, 0, 3042, 3030, 1, 0, 0, 0, 3043, 263, 1, 0, 0, 0, 3044, 3047, 3, 368, 184, 0, 3045, 3047, 3, 286, 143, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 265, 1, 0, 0, 0, 3048, 3049, 3, 274, 137, 0, 3049, 267, 1, 0, 0, 0, 3050, 3051, 3, 374, 187, 0, 3051, 3052, 5, 372, 0, 0, 3052, 3053, 3, 266, 133, 0, 3053, 269, 1, 0, 0, 0, 3054, 3057, 3, 266, 133, 0, 3055, 3057, 3, 268, 134, 0, 3056, 3054, 1, 0, 0, 0, 3056, 3055, 1, 0, 0, 0, 3057, 271, 1, 0, 0, 0, 3058, 3063, 3, 266, 133, 0, 3059, 3060, 5, 4, 0, 0, 3060, 3062, 3, 266, 133, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3065, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3063, 1, 0, 0, 0, 3066, 3067, 6, 137, -1, 0, 3067, 3068, 7, 26, 0, 0, 3068, 3079, 3, 274, 137, 5, 3069, 3070, 5, 105, 0, 0, 3070, 3071, 5, 2, 0, 0, 3071, 3072, 3, 26, 13, 0, 3072, 3073, 5, 3, 0, 0, 3073, 3079, 1, 0, 0, 0, 3074, 3076, 3, 278, 139, 0, 3075, 3077, 3, 276, 138, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3079, 1, 0, 0, 0, 3078, 3066, 1, 0, 0, 0, 3078, 3069, 1, 0, 0, 0, 3078, 3074, 1, 0, 0, 0, 3079, 3088, 1, 0, 0, 0, 3080, 3081, 10, 2, 0, 0, 3081, 3082, 5, 14, 0, 0, 3082, 3087, 3, 274, 137, 3, 3083, 3084, 10, 1, 0, 0, 3084, 3085, 5, 207, 0, 0, 3085, 3087, 3, 274, 137, 2, 3086, 3080, 1, 0, 0, 0, 3086, 3083, 1, 0, 0, 0, 3087, 3090, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 275, 1, 0, 0, 0, 3090, 3088, 1, 0, 0, 0, 3091, 3093, 5, 196, 0, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 5, 24, 0, 0, 3095, 3096, 3, 278, 139, 0, 3096, 3097, 5, 14, 0, 0, 3097, 3098, 3, 278, 139, 0, 3098, 3174, 1, 0, 0, 0, 3099, 3101, 5, 196, 0, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3103, 5, 140, 0, 0, 3103, 3104, 5, 2, 0, 0, 3104, 3109, 3, 266, 133, 0, 3105, 3106, 5, 4, 0, 0, 3106, 3108, 3, 266, 133, 0, 3107, 3105, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3107, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3112, 1, 0, 0, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3113, 5, 3, 0, 0, 3113, 3174, 1, 0, 0, 0, 3114, 3116, 5, 196, 0, 0, 3115, 3114, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 5, 140, 0, 0, 3118, 3119, 5, 2, 0, 0, 3119, 3120, 3, 26, 13, 0, 3120, 3121, 5, 3, 0, 0, 3121, 3174, 1, 0, 0, 0, 3122, 3124, 5, 196, 0, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 7, 27, 0, 0, 3126, 3174, 3, 278, 139, 0, 3127, 3129, 5, 196, 0, 0, 3128, 3127, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 7, 28, 0, 0, 3131, 3145, 7, 29, 0, 0, 3132, 3133, 5, 2, 0, 0, 3133, 3146, 5, 3, 0, 0, 3134, 3135, 5, 2, 0, 0, 3135, 3140, 3, 266, 133, 0, 3136, 3137, 5, 4, 0, 0, 3137, 3139, 3, 266, 133, 0, 3138, 3136, 1, 0, 0, 0, 3139, 3142, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3143, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3143, 3144, 5, 3, 0, 0, 3144, 3146, 1, 0, 0, 0, 3145, 3132, 1, 0, 0, 0, 3145, 3134, 1, 0, 0, 0, 3146, 3174, 1, 0, 0, 0, 3147, 3149, 5, 196, 0, 0, 3148, 3147, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 7, 28, 0, 0, 3151, 3154, 3, 278, 139, 0, 3152, 3153, 5, 100, 0, 0, 3153, 3155, 3, 386, 193, 0, 3154, 3152, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3174, 1, 0, 0, 0, 3156, 3158, 5, 153, 0, 0, 3157, 3159, 5, 196, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3174, 5, 197, 0, 0, 3161, 3163, 5, 153, 0, 0, 3162, 3164, 5, 196, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3174, 7, 30, 0, 0, 3166, 3168, 5, 153, 0, 0, 3167, 3169, 5, 196, 0, 0, 3168, 3167, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3171, 5, 92, 0, 0, 3171, 3172, 5, 123, 0, 0, 3172, 3174, 3, 278, 139, 0, 3173, 3092, 1, 0, 0, 0, 3173, 3100, 1, 0, 0, 0, 3173, 3115, 1, 0, 0, 0, 3173, 3123, 1, 0, 0, 0, 3173, 3128, 1, 0, 0, 0, 3173, 3148, 1, 0, 0, 0, 3173, 3156, 1, 0, 0, 0, 3173, 3161, 1, 0, 0, 0, 3173, 3166, 1, 0, 0, 0, 3174, 277, 1, 0, 0, 0, 3175, 3176, 6, 139, -1, 0, 3176, 3180, 3, 282, 141, 0, 3177, 3178, 7, 31, 0, 0, 3178, 3180, 3, 278, 139, 7, 3179, 3175, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3180, 3202, 1, 0, 0, 0, 3181, 3182, 10, 6, 0, 0, 3182, 3183, 7, 32, 0, 0, 3183, 3201, 3, 278, 139, 7, 3184, 3185, 10, 5, 0, 0, 3185, 3186, 7, 33, 0, 0, 3186, 3201, 3, 278, 139, 6, 3187, 3188, 10, 4, 0, 0, 3188, 3189, 5, 366, 0, 0, 3189, 3201, 3, 278, 139, 5, 3190, 3191, 10, 3, 0, 0, 3191, 3192, 5, 369, 0, 0, 3192, 3201, 3, 278, 139, 4, 3193, 3194, 10, 2, 0, 0, 3194, 3195, 5, 367, 0, 0, 3195, 3201, 3, 278, 139, 3, 3196, 3197, 10, 1, 0, 0, 3197, 3198, 3, 288, 144, 0, 3198, 3199, 3, 278, 139, 2, 3199, 3201, 1, 0, 0, 0, 3200, 3181, 1, 0, 0, 0, 3200, 3184, 1, 0, 0, 0, 3200, 3187, 1, 0, 0, 0, 3200, 3190, 1, 0, 0, 0, 3200, 3193, 1, 0, 0, 0, 3200, 3196, 1, 0, 0, 0, 3201, 3204, 1, 0, 0, 0, 3202, 3200, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 279, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3206, 7, 34, 0, 0, 3206, 281, 1, 0, 0, 0, 3207, 3208, 6, 141, -1, 0, 3208, 3457, 7, 35, 0, 0, 3209, 3210, 7, 36, 0, 0, 3210, 3213, 5, 2, 0, 0, 3211, 3214, 3, 280, 140, 0, 3212, 3214, 3, 386, 193, 0, 3213, 3211, 1, 0, 0, 0, 3213, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 5, 4, 0, 0, 3216, 3217, 3, 278, 139, 0, 3217, 3218, 5, 4, 0, 0, 3218, 3219, 3, 278, 139, 0, 3219, 3220, 5, 3, 0, 0, 3220, 3457, 1, 0, 0, 0, 3221, 3222, 7, 37, 0, 0, 3222, 3225, 5, 2, 0, 0, 3223, 3226, 3, 280, 140, 0, 3224, 3226, 3, 386, 193, 0, 3225, 3223, 1, 0, 0, 0, 3225, 3224, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3228, 5, 4, 0, 0, 3228, 3229, 3, 278, 139, 0, 3229, 3230, 5, 4, 0, 0, 3230, 3231, 3, 278, 139, 0, 3231, 3232, 5, 3, 0, 0, 3232, 3457, 1, 0, 0, 0, 3233, 3235, 5, 35, 0, 0, 3234, 3236, 3, 348, 174, 0, 3235, 3234, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3235, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3241, 1, 0, 0, 0, 3239, 3240, 5, 97, 0, 0, 3240, 3242, 3, 266, 133, 0, 3241, 3239, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3244, 5, 99, 0, 0, 3244, 3457, 1, 0, 0, 0, 3245, 3246, 5, 35, 0, 0, 3246, 3248, 3, 266, 133, 0, 3247, 3249, 3, 348, 174, 0, 3248, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3248, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3253, 5, 97, 0, 0, 3253, 3255, 3, 266, 133, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 5, 99, 0, 0, 3257, 3457, 1, 0, 0, 0, 3258, 3259, 7, 38, 0, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 266, 133, 0, 3261, 3262, 5, 20, 0, 0, 3262, 3263, 3, 316, 158, 0, 3263, 3264, 5, 3, 0, 0, 3264, 3457, 1, 0, 0, 0, 3265, 3266, 5, 285, 0, 0, 3266, 3275, 5, 2, 0, 0, 3267, 3272, 3, 254, 127, 0, 3268, 3269, 5, 4, 0, 0, 3269, 3271, 3, 254, 127, 0, 3270, 3268, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3270, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3276, 1, 0, 0, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3267, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3457, 5, 3, 0, 0, 3278, 3279, 5, 116, 0, 0, 3279, 3280, 5, 2, 0, 0, 3280, 3283, 3, 266, 133, 0, 3281, 3282, 5, 138, 0, 0, 3282, 3284, 5, 198, 0, 0, 3283, 3281, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3286, 5, 3, 0, 0, 3286, 3457, 1, 0, 0, 0, 3287, 3288, 5, 17, 0, 0, 3288, 3289, 5, 2, 0, 0, 3289, 3292, 3, 266, 133, 0, 3290, 3291, 5, 138, 0, 0, 3291, 3293, 5, 198, 0, 0, 3292, 3290, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3295, 5, 3, 0, 0, 3295, 3457, 1, 0, 0, 0, 3296, 3297, 5, 157, 0, 0, 3297, 3298, 5, 2, 0, 0, 3298, 3301, 3, 266, 133, 0, 3299, 3300, 5, 138, 0, 0, 3300, 3302, 5, 198, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 5, 3, 0, 0, 3304, 3457, 1, 0, 0, 0, 3305, 3306, 5, 224, 0, 0, 3306, 3307, 5, 2, 0, 0, 3307, 3308, 3, 278, 139, 0, 3308, 3309, 5, 140, 0, 0, 3309, 3310, 3, 278, 139, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3457, 1, 0, 0, 0, 3312, 3457, 3, 286, 143, 0, 3313, 3457, 5, 362, 0, 0, 3314, 3315, 3, 368, 184, 0, 3315, 3316, 5, 5, 0, 0, 3316, 3317, 5, 362, 0, 0, 3317, 3457, 1, 0, 0, 0, 3318, 3319, 5, 2, 0, 0, 3319, 3322, 3, 254, 127, 0, 3320, 3321, 5, 4, 0, 0, 3321, 3323, 3, 254, 127, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3327, 5, 3, 0, 0, 3327, 3457, 1, 0, 0, 0, 3328, 3329, 5, 2, 0, 0, 3329, 3330, 3, 26, 13, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3457, 1, 0, 0, 0, 3332, 3333, 5, 136, 0, 0, 3333, 3334, 5, 2, 0, 0, 3334, 3335, 3, 266, 133, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3457, 1, 0, 0, 0, 3337, 3338, 3, 364, 182, 0, 3338, 3350, 5, 2, 0, 0, 3339, 3341, 3, 194, 97, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3347, 3, 270, 135, 0, 3343, 3344, 5, 4, 0, 0, 3344, 3346, 3, 270, 135, 0, 3345, 3343, 1, 0, 0, 0, 3346, 3349, 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3350, 3340, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3359, 5, 3, 0, 0, 3353, 3354, 5, 114, 0, 0, 3354, 3355, 5, 2, 0, 0, 3355, 3356, 5, 343, 0, 0, 3356, 3357, 3, 274, 137, 0, 3357, 3358, 5, 3, 0, 0, 3358, 3360, 1, 0, 0, 0, 3359, 3353, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3362, 7, 39, 0, 0, 3362, 3364, 5, 198, 0, 0, 3363, 3361, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3366, 5, 212, 0, 0, 3366, 3368, 3, 356, 178, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3457, 1, 0, 0, 0, 3369, 3370, 3, 374, 187, 0, 3370, 3371, 5, 371, 0, 0, 3371, 3372, 3, 266, 133, 0, 3372, 3457, 1, 0, 0, 0, 3373, 3374, 5, 2, 0, 0, 3374, 3377, 3, 374, 187, 0, 3375, 3376, 5, 4, 0, 0, 3376, 3378, 3, 374, 187, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 5, 3, 0, 0, 3382, 3383, 5, 371, 0, 0, 3383, 3384, 3, 266, 133, 0, 3384, 3457, 1, 0, 0, 0, 3385, 3457, 3, 374, 187, 0, 3386, 3387, 5, 2, 0, 0, 3387, 3388, 3, 266, 133, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3457, 1, 0, 0, 0, 3390, 3391, 5, 110, 0, 0, 3391, 3392, 5, 2, 0, 0, 3392, 3393, 3, 374, 187, 0, 3393, 3394, 5, 123, 0, 0, 3394, 3395, 3, 278, 139, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3457, 1, 0, 0, 0, 3397, 3398, 7, 40, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 278, 139, 0, 3400, 3401, 7, 41, 0, 0, 3401, 3404, 3, 278, 139, 0, 3402, 3403, 7, 42, 0, 0, 3403, 3405, 3, 278, 139, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3407, 5, 3, 0, 0, 3407, 3457, 1, 0, 0, 0, 3408, 3409, 5, 314, 0, 0, 3409, 3411, 5, 2, 0, 0, 3410, 3412, 7, 43, 0, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 3, 278, 139, 0, 3414, 3413, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 5, 123, 0, 0, 3417, 3418, 3, 278, 139, 0, 3418, 3419, 5, 3, 0, 0, 3419, 3457, 1, 0, 0, 0, 3420, 3421, 5, 214, 0, 0, 3421, 3422, 5, 2, 0, 0, 3422, 3423, 3, 278, 139, 0, 3423, 3424, 5, 223, 0, 0, 3424, 3425, 3, 278, 139, 0, 3425, 3426, 5, 123, 0, 0, 3426, 3429, 3, 278, 139, 0, 3427, 3428, 5, 119, 0, 0, 3428, 3430, 3, 278, 139, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3457, 1, 0, 0, 0, 3433, 3434, 7, 44, 0, 0, 3434, 3435, 5, 2, 0, 0, 3435, 3436, 3, 278, 139, 0, 3436, 3437, 5, 3, 0, 0, 3437, 3438, 5, 346, 0, 0, 3438, 3439, 5, 130, 0, 0, 3439, 3440, 5, 2, 0, 0, 3440, 3441, 5, 208, 0, 0, 3441, 3442, 5, 31, 0, 0, 3442, 3443, 3, 106, 53, 0, 3443, 3450, 5, 3, 0, 0, 3444, 3445, 5, 114, 0, 0, 3445, 3446, 5, 2, 0, 0, 3446, 3447, 5, 343, 0, 0, 3447, 3448, 3, 274, 137, 0, 3448, 3449, 5, 3, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3444, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3454, 1, 0, 0, 0, 3452, 3453, 5, 212, 0, 0, 3453, 3455, 3, 356, 178, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3207, 1, 0, 0, 0, 3456, 3209, 1, 0, 0, 0, 3456, 3221, 1, 0, 0, 0, 3456, 3233, 1, 0, 0, 0, 3456, 3245, 1, 0, 0, 0, 3456, 3258, 1, 0, 0, 0, 3456, 3265, 1, 0, 0, 0, 3456, 3278, 1, 0, 0, 0, 3456, 3287, 1, 0, 0, 0, 3456, 3296, 1, 0, 0, 0, 3456, 3305, 1, 0, 0, 0, 3456, 3312, 1, 0, 0, 0, 3456, 3313, 1, 0, 0, 0, 3456, 3314, 1, 0, 0, 0, 3456, 3318, 1, 0, 0, 0, 3456, 3328, 1, 0, 0, 0, 3456, 3332, 1, 0, 0, 0, 3456, 3337, 1, 0, 0, 0, 3456, 3369, 1, 0, 0, 0, 3456, 3373, 1, 0, 0, 0, 3456, 3385, 1, 0, 0, 0, 3456, 3386, 1, 0, 0, 0, 3456, 3390, 1, 0, 0, 0, 3456, 3397, 1, 0, 0, 0, 3456, 3408, 1, 0, 0, 0, 3456, 3420, 1, 0, 0, 0, 3456, 3433, 1, 0, 0, 0, 3457, 3468, 1, 0, 0, 0, 3458, 3459, 10, 9, 0, 0, 3459, 3460, 5, 6, 0, 0, 3460, 3461, 3, 278, 139, 0, 3461, 3462, 5, 7, 0, 0, 3462, 3467, 1, 0, 0, 0, 3463, 3464, 10, 7, 0, 0, 3464, 3465, 5, 5, 0, 0, 3465, 3467, 3, 374, 187, 0, 3466, 3458, 1, 0, 0, 0, 3466, 3463, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 283, 1, 0, 0, 0, 3470, 3468, 1, 0, 0, 0, 3471, 3479, 5, 71, 0, 0, 3472, 3479, 5, 302, 0, 0, 3473, 3479, 5, 303, 0, 0, 3474, 3479, 5, 304, 0, 0, 3475, 3479, 5, 149, 0, 0, 3476, 3479, 5, 133, 0, 0, 3477, 3479, 3, 374, 187, 0, 3478, 3471, 1, 0, 0, 0, 3478, 3472, 1, 0, 0, 0, 3478, 3473, 1, 0, 0, 0, 3478, 3474, 1, 0, 0, 0, 3478, 3475, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3478, 3477, 1, 0, 0, 0, 3479, 285, 1, 0, 0, 0, 3480, 3496, 5, 197, 0, 0, 3481, 3496, 5, 375, 0, 0, 3482, 3483, 5, 370, 0, 0, 3483, 3496, 3, 374, 187, 0, 3484, 3496, 3, 296, 148, 0, 3485, 3486, 3, 284, 142, 0, 3486, 3487, 3, 386, 193, 0, 3487, 3496, 1, 0, 0, 0, 3488, 3496, 3, 382, 191, 0, 3489, 3496, 3, 294, 147, 0, 3490, 3492, 3, 386, 193, 0, 3491, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3496, 1, 0, 0, 0, 3495, 3480, 1, 0, 0, 0, 3495, 3481, 1, 0, 0, 0, 3495, 3482, 1, 0, 0, 0, 3495, 3484, 1, 0, 0, 0, 3495, 3485, 1, 0, 0, 0, 3495, 3488, 1, 0, 0, 0, 3495, 3489, 1, 0, 0, 0, 3495, 3491, 1, 0, 0, 0, 3496, 287, 1, 0, 0, 0, 3497, 3498, 7, 45, 0, 0, 3498, 289, 1, 0, 0, 0, 3499, 3500, 7, 46, 0, 0, 3500, 291, 1, 0, 0, 0, 3501, 3502, 7, 47, 0, 0, 3502, 293, 1, 0, 0, 0, 3503, 3504, 7, 48, 0, 0, 3504, 295, 1, 0, 0, 0, 3505, 3508, 5, 149, 0, 0, 3506, 3509, 3, 298, 149, 0, 3507, 3509, 3, 302, 151, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3507, 1, 0, 0, 0, 3509, 297, 1, 0, 0, 0, 3510, 3512, 3, 300, 150, 0, 3511, 3513, 3, 304, 152, 0, 3512, 3511, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 299, 1, 0, 0, 0, 3514, 3515, 3, 306, 153, 0, 3515, 3516, 3, 308, 154, 0, 3516, 3518, 1, 0, 0, 0, 3517, 3514, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3517, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3524, 3, 304, 152, 0, 3522, 3525, 3, 300, 150, 0, 3523, 3525, 3, 304, 152, 0, 3524, 3522, 1, 0, 0, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 303, 1, 0, 0, 0, 3526, 3527, 3, 306, 153, 0, 3527, 3528, 3, 310, 155, 0, 3528, 3529, 5, 308, 0, 0, 3529, 3530, 3, 310, 155, 0, 3530, 305, 1, 0, 0, 0, 3531, 3533, 7, 49, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3537, 1, 0, 0, 0, 3534, 3538, 5, 381, 0, 0, 3535, 3538, 5, 383, 0, 0, 3536, 3538, 3, 386, 193, 0, 3537, 3534, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3537, 3536, 1, 0, 0, 0, 3538, 307, 1, 0, 0, 0, 3539, 3540, 7, 50, 0, 0, 3540, 309, 1, 0, 0, 0, 3541, 3542, 7, 51, 0, 0, 3542, 311, 1, 0, 0, 0, 3543, 3547, 5, 116, 0, 0, 3544, 3545, 5, 9, 0, 0, 3545, 3547, 3, 370, 185, 0, 3546, 3543, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 313, 1, 0, 0, 0, 3548, 3579, 5, 27, 0, 0, 3549, 3579, 5, 307, 0, 0, 3550, 3579, 5, 32, 0, 0, 3551, 3579, 5, 275, 0, 0, 3552, 3579, 5, 271, 0, 0, 3553, 3579, 5, 150, 0, 0, 3554, 3579, 5, 151, 0, 0, 3555, 3579, 5, 25, 0, 0, 3556, 3579, 5, 173, 0, 0, 3557, 3579, 5, 117, 0, 0, 3558, 3579, 5, 233, 0, 0, 3559, 3579, 5, 95, 0, 0, 3560, 3579, 5, 71, 0, 0, 3561, 3579, 5, 302, 0, 0, 3562, 3579, 5, 304, 0, 0, 3563, 3579, 5, 303, 0, 0, 3564, 3579, 5, 284, 0, 0, 3565, 3579, 5, 41, 0, 0, 3566, 3579, 5, 40, 0, 0, 3567, 3579, 5, 333, 0, 0, 3568, 3579, 5, 26, 0, 0, 3569, 3579, 5, 80, 0, 0, 3570, 3579, 5, 79, 0, 0, 3571, 3579, 5, 199, 0, 0, 3572, 3579, 5, 339, 0, 0, 3573, 3579, 5, 149, 0, 0, 3574, 3579, 5, 19, 0, 0, 3575, 3579, 5, 285, 0, 0, 3576, 3579, 5, 176, 0, 0, 3577, 3579, 3, 374, 187, 0, 3578, 3548, 1, 0, 0, 0, 3578, 3549, 1, 0, 0, 0, 3578, 3550, 1, 0, 0, 0, 3578, 3551, 1, 0, 0, 0, 3578, 3552, 1, 0, 0, 0, 3578, 3553, 1, 0, 0, 0, 3578, 3554, 1, 0, 0, 0, 3578, 3555, 1, 0, 0, 0, 3578, 3556, 1, 0, 0, 0, 3578, 3557, 1, 0, 0, 0, 3578, 3558, 1, 0, 0, 0, 3578, 3559, 1, 0, 0, 0, 3578, 3560, 1, 0, 0, 0, 3578, 3561, 1, 0, 0, 0, 3578, 3562, 1, 0, 0, 0, 3578, 3563, 1, 0, 0, 0, 3578, 3564, 1, 0, 0, 0, 3578, 3565, 1, 0, 0, 0, 3578, 3566, 1, 0, 0, 0, 3578, 3567, 1, 0, 0, 0, 3578, 3568, 1, 0, 0, 0, 3578, 3569, 1, 0, 0, 0, 3578, 3570, 1, 0, 0, 0, 3578, 3571, 1, 0, 0, 0, 3578, 3572, 1, 0, 0, 0, 3578, 3573, 1, 0, 0, 0, 3578, 3574, 1, 0, 0, 0, 3578, 3575, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3578, 3577, 1, 0, 0, 0, 3579, 315, 1, 0, 0, 0, 3580, 3581, 5, 19, 0, 0, 3581, 3582, 5, 355, 0, 0, 3582, 3583, 3, 316, 158, 0, 3583, 3584, 5, 357, 0, 0, 3584, 3627, 1, 0, 0, 0, 3585, 3586, 5, 176, 0, 0, 3586, 3587, 5, 355, 0, 0, 3587, 3588, 3, 316, 158, 0, 3588, 3589, 5, 4, 0, 0, 3589, 3590, 3, 316, 158, 0, 3590, 3591, 5, 357, 0, 0, 3591, 3627, 1, 0, 0, 0, 3592, 3599, 5, 285, 0, 0, 3593, 3595, 5, 355, 0, 0, 3594, 3596, 3, 344, 172, 0, 3595, 3594, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3597, 1, 0, 0, 0, 3597, 3600, 5, 357, 0, 0, 3598, 3600, 5, 353, 0, 0, 3599, 3593, 1, 0, 0, 0, 3599, 3598, 1, 0, 0, 0, 3600, 3627, 1, 0, 0, 0, 3601, 3602, 5, 149, 0, 0, 3602, 3605, 7, 52, 0, 0, 3603, 3604, 5, 308, 0, 0, 3604, 3606, 5, 185, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3627, 1, 0, 0, 0, 3607, 3608, 5, 149, 0, 0, 3608, 3611, 7, 53, 0, 0, 3609, 3610, 5, 308, 0, 0, 3610, 3612, 7, 54, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3627, 1, 0, 0, 0, 3613, 3624, 3, 314, 157, 0, 3614, 3615, 5, 2, 0, 0, 3615, 3620, 5, 381, 0, 0, 3616, 3617, 5, 4, 0, 0, 3617, 3619, 5, 381, 0, 0, 3618, 3616, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3618, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3623, 1, 0, 0, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3625, 5, 3, 0, 0, 3624, 3614, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3580, 1, 0, 0, 0, 3626, 3585, 1, 0, 0, 0, 3626, 3592, 1, 0, 0, 0, 3626, 3601, 1, 0, 0, 0, 3626, 3607, 1, 0, 0, 0, 3626, 3613, 1, 0, 0, 0, 3627, 317, 1, 0, 0, 0, 3628, 3633, 3, 320, 160, 0, 3629, 3630, 5, 4, 0, 0, 3630, 3632, 3, 320, 160, 0, 3631, 3629, 1, 0, 0, 0, 3632, 3635, 1, 0, 0, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3633, 1, 0, 0, 0, 3636, 3637, 3, 94, 47, 0, 3637, 3641, 3, 316, 158, 0, 3638, 3640, 3, 326, 163, 0, 3639, 3638, 1, 0, 0, 0, 3640, 3643, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 321, 1, 0, 0, 0, 3643, 3641, 1, 0, 0, 0, 3644, 3649, 3, 324, 162, 0, 3645, 3646, 5, 4, 0, 0, 3646, 3648, 3, 324, 162, 0, 3647, 3645, 1, 0, 0, 0, 3648, 3651, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 323, 1, 0, 0, 0, 3651, 3649, 1, 0, 0, 0, 3652, 3653, 3, 90, 45, 0, 3653, 3657, 3, 316, 158, 0, 3654, 3656, 3, 326, 163, 0, 3655, 3654, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 325, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3660, 3661, 5, 196, 0, 0, 3661, 3666, 5, 197, 0, 0, 3662, 3666, 3, 328, 164, 0, 3663, 3666, 3, 24, 12, 0, 3664, 3666, 3, 312, 156, 0, 3665, 3660, 1, 0, 0, 0, 3665, 3662, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3664, 1, 0, 0, 0, 3666, 327, 1, 0, 0, 0, 3667, 3668, 5, 82, 0, 0, 3668, 3669, 3, 266, 133, 0, 3669, 329, 1, 0, 0, 0, 3670, 3671, 7, 55, 0, 0, 3671, 3672, 3, 266, 133, 0, 3672, 331, 1, 0, 0, 0, 3673, 3678, 3, 334, 167, 0, 3674, 3675, 5, 4, 0, 0, 3675, 3677, 3, 334, 167, 0, 3676, 3674, 1, 0, 0, 0, 3677, 3680, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 333, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3681, 3682, 3, 370, 185, 0, 3682, 3685, 3, 316, 158, 0, 3683, 3684, 5, 196, 0, 0, 3684, 3686, 5, 197, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 1, 0, 0, 0, 3687, 3689, 3, 24, 12, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 335, 1, 0, 0, 0, 3690, 3695, 3, 338, 169, 0, 3691, 3692, 5, 4, 0, 0, 3692, 3694, 3, 338, 169, 0, 3693, 3691, 1, 0, 0, 0, 3694, 3697, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3699, 3, 94, 47, 0, 3699, 3703, 3, 316, 158, 0, 3700, 3702, 3, 340, 170, 0, 3701, 3700, 1, 0, 0, 0, 3702, 3705, 1, 0, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 339, 1, 0, 0, 0, 3705, 3703, 1, 0, 0, 0, 3706, 3707, 5, 196, 0, 0, 3707, 3712, 5, 197, 0, 0, 3708, 3712, 3, 328, 164, 0, 3709, 3712, 3, 342, 171, 0, 3710, 3712, 3, 24, 12, 0, 3711, 3706, 1, 0, 0, 0, 3711, 3708, 1, 0, 0, 0, 3711, 3709, 1, 0, 0, 0, 3711, 3710, 1, 0, 0, 0, 3712, 341, 1, 0, 0, 0, 3713, 3714, 5, 127, 0, 0, 3714, 3715, 5, 12, 0, 0, 3715, 3716, 5, 20, 0, 0, 3716, 3717, 5, 2, 0, 0, 3717, 3718, 3, 266, 133, 0, 3718, 3719, 5, 3, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3725, 3, 346, 173, 0, 3721, 3722, 5, 4, 0, 0, 3722, 3724, 3, 346, 173, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3727, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3728, 3730, 3, 374, 187, 0, 3729, 3731, 5, 370, 0, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 3, 316, 158, 0, 3733, 3734, 5, 196, 0, 0, 3734, 3736, 5, 197, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 24, 12, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 347, 1, 0, 0, 0, 3740, 3741, 5, 342, 0, 0, 3741, 3742, 3, 266, 133, 0, 3742, 3743, 5, 299, 0, 0, 3743, 3744, 3, 266, 133, 0, 3744, 349, 1, 0, 0, 0, 3745, 3746, 5, 344, 0, 0, 3746, 3751, 3, 354, 177, 0, 3747, 3748, 5, 4, 0, 0, 3748, 3750, 3, 354, 177, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 351, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3755, 5, 350, 0, 0, 3755, 3756, 5, 31, 0, 0, 3756, 3757, 3, 92, 46, 0, 3757, 353, 1, 0, 0, 0, 3758, 3759, 3, 370, 185, 0, 3759, 3760, 5, 20, 0, 0, 3760, 3761, 3, 356, 178, 0, 3761, 355, 1, 0, 0, 0, 3762, 3809, 3, 370, 185, 0, 3763, 3764, 5, 2, 0, 0, 3764, 3765, 3, 370, 185, 0, 3765, 3766, 5, 3, 0, 0, 3766, 3809, 1, 0, 0, 0, 3767, 3802, 5, 2, 0, 0, 3768, 3769, 5, 44, 0, 0, 3769, 3770, 5, 31, 0, 0, 3770, 3775, 3, 266, 133, 0, 3771, 3772, 5, 4, 0, 0, 3772, 3774, 3, 266, 133, 0, 3773, 3771, 1, 0, 0, 0, 3774, 3777, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3803, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3778, 3779, 7, 24, 0, 0, 3779, 3780, 5, 31, 0, 0, 3780, 3785, 3, 266, 133, 0, 3781, 3782, 5, 4, 0, 0, 3782, 3784, 3, 266, 133, 0, 3783, 3781, 1, 0, 0, 0, 3784, 3787, 1, 0, 0, 0, 3785, 3783, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3778, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3800, 1, 0, 0, 0, 3790, 3791, 7, 25, 0, 0, 3791, 3792, 5, 31, 0, 0, 3792, 3797, 3, 106, 53, 0, 3793, 3794, 5, 4, 0, 0, 3794, 3796, 3, 106, 53, 0, 3795, 3793, 1, 0, 0, 0, 3796, 3799, 1, 0, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3801, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3790, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3768, 1, 0, 0, 0, 3802, 3788, 1, 0, 0, 0, 3803, 3805, 1, 0, 0, 0, 3804, 3806, 3, 358, 179, 0, 3805, 3804, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3809, 5, 3, 0, 0, 3808, 3762, 1, 0, 0, 0, 3808, 3763, 1, 0, 0, 0, 3808, 3767, 1, 0, 0, 0, 3809, 357, 1, 0, 0, 0, 3810, 3811, 5, 232, 0, 0, 3811, 3827, 3, 360, 180, 0, 3812, 3813, 5, 257, 0, 0, 3813, 3827, 3, 360, 180, 0, 3814, 3815, 5, 232, 0, 0, 3815, 3816, 5, 24, 0, 0, 3816, 3817, 3, 360, 180, 0, 3817, 3818, 5, 14, 0, 0, 3818, 3819, 3, 360, 180, 0, 3819, 3827, 1, 0, 0, 0, 3820, 3821, 5, 257, 0, 0, 3821, 3822, 5, 24, 0, 0, 3822, 3823, 3, 360, 180, 0, 3823, 3824, 5, 14, 0, 0, 3824, 3825, 3, 360, 180, 0, 3825, 3827, 1, 0, 0, 0, 3826, 3810, 1, 0, 0, 0, 3826, 3812, 1, 0, 0, 0, 3826, 3814, 1, 0, 0, 0, 3826, 3820, 1, 0, 0, 0, 3827, 359, 1, 0, 0, 0, 3828, 3829, 5, 320, 0, 0, 3829, 3836, 7, 56, 0, 0, 3830, 3831, 5, 62, 0, 0, 3831, 3836, 5, 256, 0, 0, 3832, 3833, 3, 266, 133, 0, 3833, 3834, 7, 56, 0, 0, 3834, 3836, 1, 0, 0, 0, 3835, 3828, 1, 0, 0, 0, 3835, 3830, 1, 0, 0, 0, 3835, 3832, 1, 0, 0, 0, 3836, 361, 1, 0, 0, 0, 3837, 3842, 3, 368, 184, 0, 3838, 3839, 5, 4, 0, 0, 3839, 3841, 3, 368, 184, 0, 3840, 3838, 1, 0, 0, 0, 3841, 3844, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3845, 3846, 5, 136, 0, 0, 3846, 3847, 5, 2, 0, 0, 3847, 3848, 3, 266, 133, 0, 3848, 3849, 5, 3, 0, 0, 3849, 3855, 1, 0, 0, 0, 3850, 3855, 3, 368, 184, 0, 3851, 3855, 5, 114, 0, 0, 3852, 3855, 5, 161, 0, 0, 3853, 3855, 5, 249, 0, 0, 3854, 3845, 1, 0, 0, 0, 3854, 3850, 1, 0, 0, 0, 3854, 3851, 1, 0, 0, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3853, 1, 0, 0, 0, 3855, 365, 1, 0, 0, 0, 3856, 3857, 3, 368, 184, 0, 3857, 367, 1, 0, 0, 0, 3858, 3863, 3, 374, 187, 0, 3859, 3860, 5, 5, 0, 0, 3860, 3862, 3, 374, 187, 0, 3861, 3859, 1, 0, 0, 0, 3862, 3865, 1, 0, 0, 0, 3863, 3861, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 369, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3866, 3867, 3, 374, 187, 0, 3867, 3868, 3, 372, 186, 0, 3868, 371, 1, 0, 0, 0, 3869, 3870, 5, 361, 0, 0, 3870, 3872, 3, 374, 187, 0, 3871, 3869, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3871, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3877, 1, 0, 0, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3871, 1, 0, 0, 0, 3876, 3875, 1, 0, 0, 0, 3877, 373, 1, 0, 0, 0, 3878, 3881, 3, 376, 188, 0, 3879, 3881, 3, 394, 197, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 375, 1, 0, 0, 0, 3882, 3887, 5, 387, 0, 0, 3883, 3887, 3, 378, 189, 0, 3884, 3887, 3, 392, 196, 0, 3885, 3887, 3, 396, 198, 0, 3886, 3882, 1, 0, 0, 0, 3886, 3883, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3886, 3885, 1, 0, 0, 0, 3887, 377, 1, 0, 0, 0, 3888, 3889, 7, 57, 0, 0, 3889, 379, 1, 0, 0, 0, 3890, 3891, 5, 388, 0, 0, 3891, 381, 1, 0, 0, 0, 3892, 3894, 5, 361, 0, 0, 3893, 3892, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3933, 5, 382, 0, 0, 3896, 3898, 5, 361, 0, 0, 3897, 3896, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3933, 5, 383, 0, 0, 3900, 3902, 5, 361, 0, 0, 3901, 3900, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3933, 7, 58, 0, 0, 3904, 3906, 5, 361, 0, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3933, 5, 381, 0, 0, 3908, 3910, 5, 361, 0, 0, 3909, 3908, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3933, 5, 378, 0, 0, 3912, 3914, 5, 361, 0, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3933, 5, 379, 0, 0, 3916, 3918, 5, 361, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3933, 5, 380, 0, 0, 3920, 3922, 5, 361, 0, 0, 3921, 3920, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3933, 5, 385, 0, 0, 3924, 3926, 5, 361, 0, 0, 3925, 3924, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3933, 5, 384, 0, 0, 3928, 3930, 5, 361, 0, 0, 3929, 3928, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3933, 5, 386, 0, 0, 3932, 3893, 1, 0, 0, 0, 3932, 3897, 1, 0, 0, 0, 3932, 3901, 1, 0, 0, 0, 3932, 3905, 1, 0, 0, 0, 3932, 3909, 1, 0, 0, 0, 3932, 3913, 1, 0, 0, 0, 3932, 3917, 1, 0, 0, 0, 3932, 3921, 1, 0, 0, 0, 3932, 3925, 1, 0, 0, 0, 3932, 3929, 1, 0, 0, 0, 3933, 383, 1, 0, 0, 0, 3934, 3935, 5, 318, 0, 0, 3935, 3946, 3, 316, 158, 0, 3936, 3946, 3, 24, 12, 0, 3937, 3946, 3, 312, 156, 0, 3938, 3939, 7, 59, 0, 0, 3939, 3940, 5, 196, 0, 0, 3940, 3946, 5, 197, 0, 0, 3941, 3942, 5, 268, 0, 0, 3942, 3946, 3, 328, 164, 0, 3943, 3944, 5, 96, 0, 0, 3944, 3946, 5, 82, 0, 0, 3945, 3934, 1, 0, 0, 0, 3945, 3936, 1, 0, 0, 0, 3945, 3937, 1, 0, 0, 0, 3945, 3938, 1, 0, 0, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3946, 385, 1, 0, 0, 0, 3947, 3948, 7, 60, 0, 0, 3948, 387, 1, 0, 0, 0, 3949, 3952, 3, 386, 193, 0, 3950, 3952, 5, 197, 0, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 389, 1, 0, 0, 0, 3953, 3956, 5, 381, 0, 0, 3954, 3956, 3, 386, 193, 0, 3955, 3953, 1, 0, 0, 0, 3955, 3954, 1, 0, 0, 0, 3956, 391, 1, 0, 0, 0, 3957, 3958, 7, 61, 0, 0, 3958, 393, 1, 0, 0, 0, 3959, 3960, 7, 62, 0, 0, 3960, 395, 1, 0, 0, 0, 3961, 3962, 7, 63, 0, 0, 3962, 397, 1, 0, 0, 0, 517, 401, 408, 412, 417, 424, 429, 437, 439, 458, 462, 468, 471, 474, 481, 484, 488, 491, 496, 507, 509, 517, 520, 524, 527, 533, 544, 550, 555, 588, 598, 609, 620, 631, 636, 645, 649, 655, 659, 664, 670, 682, 690, 696, 707, 711, 716, 731, 735, 742, 746, 752, 781, 785, 790, 797, 803, 806, 809, 813, 817, 825, 827, 836, 839, 848, 853, 859, 866, 869, 873, 884, 887, 893, 897, 912, 914, 922, 926, 932, 935, 939, 942, 948, 953, 957, 964, 967, 970, 977, 982, 991, 999, 1005, 1008, 1011, 1017, 1021, 1026, 1029, 1033, 1035, 1043, 1051, 1054, 1061, 1064, 1067, 1076, 1081, 1087, 1092, 1095, 1099, 1102, 1106, 1134, 1137, 1145, 1151, 1154, 1157, 1162, 1170, 1175, 1181, 1187, 1190, 1197, 1204, 1212, 1229, 1256, 1259, 1265, 1274, 1283, 1289, 1294, 1299, 1306, 1311, 1316, 1323, 1331, 1334, 1338, 1350, 1354, 1361, 1477, 1485, 1493, 1502, 1512, 1516, 1519, 1523, 1529, 1541, 1553, 1558, 1567, 1575, 1580, 1582, 1590, 1595, 1599, 1602, 1610, 1615, 1624, 1629, 1632, 1637, 1641, 1646, 1648, 1652, 1661, 1669, 1675, 1686, 1693, 1702, 1707, 1710, 1732, 1734, 1743, 1750, 1753, 1760, 1764, 1770, 1778, 1785, 1788, 1796, 1807, 1818, 1826, 1832, 1844, 1851, 1858, 1870, 1878, 1884, 1890, 1893, 1909, 1916, 1927, 1936, 1939, 1948, 1951, 1960, 1963, 1972, 1975, 1978, 1983, 1985, 1989, 2000, 2006, 2012, 2015, 2017, 2029, 2033, 2036, 2040, 2046, 2050, 2058, 2062, 2065, 2068, 2071, 2075, 2079, 2084, 2088, 2091, 2094, 2097, 2101, 2106, 2110, 2113, 2116, 2119, 2121, 2127, 2134, 2139, 2142, 2145, 2149, 2159, 2163, 2165, 2168, 2172, 2178, 2182, 2193, 2203, 2207, 2219, 2231, 2246, 2251, 2257, 2264, 2280, 2285, 2298, 2303, 2311, 2317, 2321, 2324, 2329, 2336, 2342, 2351, 2361, 2376, 2381, 2383, 2388, 2397, 2410, 2415, 2419, 2426, 2431, 2435, 2438, 2441, 2455, 2468, 2473, 2477, 2480, 2484, 2490, 2493, 2500, 2512, 2523, 2536, 2547, 2552, 2560, 2565, 2579, 2588, 2591, 2596, 2603, 2606, 2612, 2618, 2621, 2626, 2631, 2635, 2641, 2645, 2648, 2653, 2656, 2661, 2665, 2668, 2671, 2677, 2682, 2689, 2692, 2710, 2712, 2715, 2726, 2735, 2742, 2750, 2757, 2762, 2765, 2768, 2776, 2784, 2790, 2798, 2806, 2813, 2820, 2822, 2835, 2841, 2843, 2853, 2859, 2861, 2869, 2873, 2882, 2885, 2891, 2895, 2897, 2906, 2918, 2920, 2927, 2934, 2940, 2946, 2948, 2955, 2963, 2971, 2977, 2982, 2989, 2995, 2998, 3002, 3004, 3011, 3020, 3027, 3037, 3042, 3046, 3056, 3063, 3076, 3078, 3086, 3088, 3092, 3100, 3109, 3115, 3123, 3128, 3140, 3145, 3148, 3154, 3158, 3163, 3168, 3173, 3179, 3200, 3202, 3213, 3225, 3237, 3241, 3250, 3254, 3272, 3275, 3283, 3292, 3301, 3324, 3340, 3347, 3350, 3359, 3363, 3367, 3379, 3404, 3411, 3414, 3429, 3450, 3454, 3456, 3466, 3468, 3478, 3493, 3495, 3508, 3512, 3519, 3524, 3532, 3537, 3546, 3578, 3595, 3599, 3605, 3611, 3620, 3624, 3626, 3633, 3641, 3649, 3657, 3665, 3678, 3685, 3688, 3695, 3703, 3711, 3725, 3730, 3735, 3738, 3751, 3775, 3785, 3788, 3797, 3800, 3802, 3805, 3808, 3826, 3835, 3842, 3854, 3863, 3873, 3876, 3880, 3886, 3893, 3897, 3901, 3905, 3909, 3913, 3917, 3921, 3925, 3929, 3932, 3945, 3951, 3955] \ No newline at end of file +[4, 1, 393, 3971, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 1, 0, 5, 0, 402, 8, 0, 10, 0, 12, 0, 405, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 411, 8, 1, 1, 2, 1, 2, 3, 2, 415, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 440, 8, 2, 10, 2, 12, 2, 443, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 461, 8, 2, 1, 2, 1, 2, 3, 2, 465, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 484, 8, 2, 1, 2, 3, 2, 487, 8, 2, 1, 2, 1, 2, 3, 2, 491, 8, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 511, 8, 2, 10, 2, 12, 2, 514, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 3, 2, 531, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 537, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 548, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 554, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 592, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 602, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 613, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 635, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 649, 8, 2, 1, 2, 1, 2, 3, 2, 653, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 659, 8, 2, 1, 2, 1, 2, 3, 2, 663, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 674, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 700, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 711, 8, 2, 1, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 4, 2, 718, 8, 2, 11, 2, 12, 2, 719, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 735, 8, 2, 1, 2, 1, 2, 3, 2, 739, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 744, 8, 2, 10, 2, 12, 2, 747, 9, 2, 1, 2, 3, 2, 750, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 756, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 794, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 3, 2, 817, 8, 2, 1, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 829, 8, 2, 10, 2, 12, 2, 832, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 886, 8, 2, 10, 2, 12, 2, 889, 9, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 897, 8, 2, 1, 2, 1, 2, 3, 2, 901, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 916, 8, 2, 10, 2, 12, 2, 919, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 3, 2, 930, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 957, 8, 2, 1, 2, 1, 2, 3, 2, 961, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 3, 2, 1039, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 3, 2, 1058, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 3, 2, 1110, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1136, 8, 2, 10, 2, 12, 2, 1139, 9, 2, 3, 2, 1141, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1179, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1185, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 3, 2, 1194, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1201, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1206, 8, 2, 10, 2, 12, 2, 1209, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1231, 8, 2, 10, 2, 12, 2, 1234, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 3, 2, 1263, 8, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1276, 8, 2, 10, 2, 12, 2, 1279, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1285, 8, 2, 10, 2, 12, 2, 1288, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1293, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1298, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1303, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1320, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1333, 8, 2, 10, 2, 12, 2, 1336, 9, 2, 3, 2, 1338, 8, 2, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1354, 8, 6, 1, 6, 1, 6, 3, 6, 1358, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1365, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1481, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1506, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1516, 8, 6, 1, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 3, 7, 1523, 8, 7, 1, 7, 1, 7, 3, 7, 1527, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1533, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1562, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1571, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1579, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1584, 8, 14, 3, 14, 1586, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1599, 8, 14, 1, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1619, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1628, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1650, 8, 14, 3, 14, 1652, 8, 14, 1, 15, 1, 15, 3, 15, 1656, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1663, 8, 16, 10, 16, 12, 16, 1666, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1673, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1679, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1690, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1695, 8, 21, 10, 21, 12, 21, 1698, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1704, 8, 22, 10, 22, 12, 22, 1707, 9, 22, 1, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 3, 23, 1714, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1737, 8, 25, 10, 25, 12, 25, 1740, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1749, 8, 27, 10, 27, 12, 27, 1752, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1758, 8, 28, 1, 28, 3, 28, 1761, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1766, 8, 29, 10, 29, 12, 29, 1769, 9, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1778, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1784, 8, 31, 10, 31, 12, 31, 1787, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1793, 8, 32, 1, 32, 3, 32, 1796, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1802, 8, 33, 10, 33, 12, 33, 1805, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1813, 8, 34, 10, 34, 12, 34, 1816, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1826, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1840, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1850, 8, 39, 11, 39, 12, 39, 1851, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1859, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1866, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1884, 8, 39, 10, 39, 12, 39, 1887, 9, 39, 1, 39, 5, 39, 1890, 8, 39, 10, 39, 12, 39, 1893, 9, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 3, 39, 1901, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1917, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1922, 8, 47, 10, 47, 12, 47, 1925, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1942, 8, 50, 10, 50, 12, 50, 1945, 9, 50, 3, 50, 1947, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 3, 50, 1986, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1991, 8, 50, 3, 50, 1993, 8, 50, 1, 50, 1, 50, 3, 50, 1997, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2014, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 5, 52, 2023, 8, 52, 10, 52, 12, 52, 2026, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 54, 1, 54, 3, 54, 2041, 8, 54, 1, 54, 3, 54, 2044, 8, 54, 1, 54, 1, 54, 3, 54, 2048, 8, 54, 1, 55, 1, 55, 4, 55, 2052, 8, 55, 11, 55, 12, 55, 2053, 1, 56, 1, 56, 3, 56, 2058, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2064, 8, 56, 10, 56, 12, 56, 2067, 9, 56, 1, 56, 3, 56, 2070, 8, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 5, 57, 2090, 8, 57, 10, 57, 12, 57, 2093, 9, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 3, 57, 2129, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2135, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2142, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2147, 8, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 3, 58, 2153, 8, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2167, 8, 58, 1, 58, 1, 58, 3, 58, 2171, 8, 58, 3, 58, 2173, 8, 58, 1, 58, 3, 58, 2176, 8, 58, 1, 58, 1, 58, 3, 58, 2180, 8, 58, 1, 59, 1, 59, 5, 59, 2184, 8, 59, 10, 59, 12, 59, 2187, 9, 59, 1, 59, 3, 59, 2190, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2201, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2211, 8, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2239, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2252, 8, 65, 10, 65, 12, 65, 2255, 9, 65, 1, 65, 1, 65, 3, 65, 2259, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2265, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2270, 8, 67, 10, 67, 12, 67, 2273, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2288, 8, 71, 1, 71, 5, 71, 2291, 8, 71, 10, 71, 12, 71, 2294, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2304, 8, 72, 10, 72, 12, 72, 2307, 9, 72, 1, 72, 1, 72, 3, 72, 2311, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2317, 8, 73, 10, 73, 12, 73, 2320, 9, 73, 1, 73, 5, 73, 2323, 8, 73, 10, 73, 12, 73, 2326, 9, 73, 1, 73, 3, 73, 2329, 8, 73, 1, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2337, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2344, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2350, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2357, 8, 76, 10, 76, 12, 76, 2360, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2367, 8, 76, 10, 76, 12, 76, 2370, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2382, 8, 76, 10, 76, 12, 76, 2385, 9, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 3, 76, 2391, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2403, 8, 78, 10, 78, 12, 78, 2406, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2416, 8, 78, 10, 78, 12, 78, 2419, 9, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2434, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2439, 8, 80, 5, 80, 2441, 8, 80, 10, 80, 12, 80, 2444, 9, 80, 3, 80, 2446, 8, 80, 1, 80, 3, 80, 2449, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2461, 8, 81, 10, 81, 12, 81, 2464, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2474, 8, 82, 10, 82, 12, 82, 2477, 9, 82, 1, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 84, 1, 84, 3, 84, 2492, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2498, 8, 84, 1, 84, 3, 84, 2501, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2508, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2518, 8, 87, 10, 87, 12, 87, 2521, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2529, 8, 88, 10, 88, 12, 88, 2532, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2542, 8, 88, 10, 88, 12, 88, 2545, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2553, 8, 89, 10, 89, 12, 89, 2556, 9, 89, 1, 89, 1, 89, 3, 89, 2560, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2568, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2573, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2587, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2594, 8, 97, 10, 97, 12, 97, 2597, 9, 97, 3, 97, 2599, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2604, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2609, 8, 97, 10, 97, 12, 97, 2612, 9, 97, 3, 97, 2614, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2620, 8, 99, 1, 99, 1, 99, 5, 99, 2624, 8, 99, 10, 99, 12, 99, 2627, 9, 99, 3, 99, 2629, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2634, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2639, 8, 101, 1, 101, 1, 101, 3, 101, 2643, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 102, 3, 102, 2656, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2661, 8, 102, 1, 102, 3, 102, 2664, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2669, 8, 102, 1, 102, 1, 102, 3, 102, 2673, 8, 102, 1, 102, 3, 102, 2676, 8, 102, 1, 102, 3, 102, 2679, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2685, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2690, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2697, 8, 104, 1, 105, 3, 105, 2700, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2718, 8, 105, 3, 105, 2720, 8, 105, 1, 105, 3, 105, 2723, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2732, 8, 107, 10, 107, 12, 107, 2735, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2741, 8, 108, 10, 108, 12, 108, 2744, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2750, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2756, 8, 110, 10, 110, 12, 110, 2759, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2765, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2770, 8, 112, 1, 112, 3, 112, 2773, 8, 112, 1, 112, 3, 112, 2776, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2784, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2804, 8, 113, 10, 113, 12, 113, 2807, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2814, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2821, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2828, 8, 114, 3, 114, 2830, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2841, 8, 115, 10, 115, 12, 115, 2844, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2849, 8, 115, 3, 115, 2851, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2859, 8, 115, 10, 115, 12, 115, 2862, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2867, 8, 115, 3, 115, 2869, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 2877, 8, 117, 1, 118, 1, 118, 3, 118, 2881, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2888, 8, 119, 10, 119, 12, 119, 2891, 9, 119, 3, 119, 2893, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 3, 120, 2899, 8, 120, 1, 120, 1, 120, 3, 120, 2903, 8, 120, 3, 120, 2905, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2914, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2926, 8, 121, 3, 121, 2928, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2935, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2942, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2948, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2954, 8, 121, 3, 121, 2956, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2961, 8, 122, 10, 122, 12, 122, 2964, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2969, 8, 123, 10, 123, 12, 123, 2972, 9, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2977, 8, 124, 10, 124, 12, 124, 2980, 9, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2985, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 3, 127, 2997, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3003, 8, 128, 1, 128, 3, 128, 3006, 8, 128, 1, 128, 1, 128, 3, 128, 3010, 8, 128, 3, 128, 3012, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 3017, 8, 129, 10, 129, 12, 129, 3020, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3026, 8, 130, 10, 130, 12, 130, 3029, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 3, 131, 3035, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3043, 8, 132, 10, 132, 12, 132, 3046, 9, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 133, 1, 133, 3, 133, 3054, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3064, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3069, 8, 137, 10, 137, 12, 137, 3072, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3084, 8, 138, 3, 138, 3086, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3094, 8, 138, 10, 138, 12, 138, 3097, 9, 138, 1, 139, 3, 139, 3100, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3108, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3115, 8, 139, 10, 139, 12, 139, 3118, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3123, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3131, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3136, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3146, 8, 139, 10, 139, 12, 139, 3149, 9, 139, 1, 139, 1, 139, 3, 139, 3153, 8, 139, 1, 139, 3, 139, 3156, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3162, 8, 139, 1, 139, 1, 139, 3, 139, 3166, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3171, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3176, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3181, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3187, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3208, 8, 140, 10, 140, 12, 140, 3211, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3221, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3233, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3243, 8, 142, 11, 142, 12, 142, 3244, 1, 142, 1, 142, 3, 142, 3249, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3256, 8, 142, 11, 142, 12, 142, 3257, 1, 142, 1, 142, 3, 142, 3262, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3278, 8, 142, 10, 142, 12, 142, 3281, 9, 142, 3, 142, 3283, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3291, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3300, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3309, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3330, 8, 142, 11, 142, 12, 142, 3331, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3348, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3353, 8, 142, 10, 142, 12, 142, 3356, 9, 142, 3, 142, 3358, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3367, 8, 142, 1, 142, 1, 142, 3, 142, 3371, 8, 142, 1, 142, 1, 142, 3, 142, 3375, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3385, 8, 142, 11, 142, 12, 142, 3386, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3412, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3419, 8, 142, 1, 142, 3, 142, 3422, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3437, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3458, 8, 142, 1, 142, 1, 142, 3, 142, 3462, 8, 142, 3, 142, 3464, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3474, 8, 142, 10, 142, 12, 142, 3477, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3486, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 4, 144, 3499, 8, 144, 11, 144, 12, 144, 3500, 3, 144, 3503, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3516, 8, 149, 1, 150, 1, 150, 3, 150, 3520, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 3525, 8, 151, 11, 151, 12, 151, 3526, 1, 152, 1, 152, 1, 152, 3, 152, 3532, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 3540, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3545, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 3554, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3586, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3603, 8, 159, 1, 159, 1, 159, 3, 159, 3607, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3613, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3619, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 3626, 8, 159, 10, 159, 12, 159, 3629, 9, 159, 1, 159, 3, 159, 3632, 8, 159, 3, 159, 3634, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3639, 8, 160, 10, 160, 12, 160, 3642, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3647, 8, 161, 10, 161, 12, 161, 3650, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3655, 8, 162, 10, 162, 12, 162, 3658, 9, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3663, 8, 163, 10, 163, 12, 163, 3666, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3673, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3684, 8, 167, 10, 167, 12, 167, 3687, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3693, 8, 168, 1, 168, 3, 168, 3696, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3701, 8, 169, 10, 169, 12, 169, 3704, 9, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3709, 8, 170, 10, 170, 12, 170, 3712, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 3719, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3731, 8, 173, 10, 173, 12, 173, 3734, 9, 173, 1, 174, 1, 174, 3, 174, 3738, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3743, 8, 174, 1, 174, 3, 174, 3746, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 3757, 8, 176, 10, 176, 12, 176, 3760, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3781, 8, 179, 10, 179, 12, 179, 3784, 9, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3791, 8, 179, 10, 179, 12, 179, 3794, 9, 179, 3, 179, 3796, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3803, 8, 179, 10, 179, 12, 179, 3806, 9, 179, 3, 179, 3808, 8, 179, 3, 179, 3810, 8, 179, 1, 179, 3, 179, 3813, 8, 179, 1, 179, 3, 179, 3816, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3834, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3843, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3848, 8, 182, 10, 182, 12, 182, 3851, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3862, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 3869, 8, 185, 10, 185, 12, 185, 3872, 9, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 4, 187, 3879, 8, 187, 11, 187, 12, 187, 3880, 1, 187, 3, 187, 3884, 8, 187, 1, 188, 1, 188, 3, 188, 3888, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3894, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 3, 192, 3901, 8, 192, 1, 192, 1, 192, 3, 192, 3905, 8, 192, 1, 192, 1, 192, 3, 192, 3909, 8, 192, 1, 192, 1, 192, 3, 192, 3913, 8, 192, 1, 192, 1, 192, 3, 192, 3917, 8, 192, 1, 192, 1, 192, 3, 192, 3921, 8, 192, 1, 192, 1, 192, 3, 192, 3925, 8, 192, 1, 192, 1, 192, 3, 192, 3929, 8, 192, 1, 192, 1, 192, 3, 192, 3933, 8, 192, 1, 192, 1, 192, 3, 192, 3937, 8, 192, 1, 192, 3, 192, 3940, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3953, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3959, 8, 195, 1, 196, 1, 196, 3, 196, 3963, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 9, 1137, 1207, 1215, 1232, 1259, 1268, 1277, 1286, 1334, 4, 104, 276, 280, 284, 200, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4586, 0, 403, 1, 0, 0, 0, 2, 408, 1, 0, 0, 0, 4, 1337, 1, 0, 0, 0, 6, 1341, 1, 0, 0, 0, 8, 1343, 1, 0, 0, 0, 10, 1345, 1, 0, 0, 0, 12, 1515, 1, 0, 0, 0, 14, 1517, 1, 0, 0, 0, 16, 1532, 1, 0, 0, 0, 18, 1538, 1, 0, 0, 0, 20, 1550, 1, 0, 0, 0, 22, 1563, 1, 0, 0, 0, 24, 1566, 1, 0, 0, 0, 26, 1570, 1, 0, 0, 0, 28, 1651, 1, 0, 0, 0, 30, 1653, 1, 0, 0, 0, 32, 1657, 1, 0, 0, 0, 34, 1678, 1, 0, 0, 0, 36, 1680, 1, 0, 0, 0, 38, 1682, 1, 0, 0, 0, 40, 1689, 1, 0, 0, 0, 42, 1691, 1, 0, 0, 0, 44, 1699, 1, 0, 0, 0, 46, 1708, 1, 0, 0, 0, 48, 1719, 1, 0, 0, 0, 50, 1738, 1, 0, 0, 0, 52, 1741, 1, 0, 0, 0, 54, 1744, 1, 0, 0, 0, 56, 1755, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1777, 1, 0, 0, 0, 62, 1779, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1797, 1, 0, 0, 0, 68, 1808, 1, 0, 0, 0, 70, 1825, 1, 0, 0, 0, 72, 1833, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1841, 1, 0, 0, 0, 78, 1900, 1, 0, 0, 0, 80, 1902, 1, 0, 0, 0, 82, 1904, 1, 0, 0, 0, 84, 1906, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1910, 1, 0, 0, 0, 90, 1912, 1, 0, 0, 0, 92, 1916, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1934, 1, 0, 0, 0, 100, 1946, 1, 0, 0, 0, 102, 1998, 1, 0, 0, 0, 104, 2001, 1, 0, 0, 0, 106, 2036, 1, 0, 0, 0, 108, 2040, 1, 0, 0, 0, 110, 2049, 1, 0, 0, 0, 112, 2082, 1, 0, 0, 0, 114, 2128, 1, 0, 0, 0, 116, 2149, 1, 0, 0, 0, 118, 2181, 1, 0, 0, 0, 120, 2193, 1, 0, 0, 0, 122, 2196, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2238, 1, 0, 0, 0, 130, 2258, 1, 0, 0, 0, 132, 2264, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2274, 1, 0, 0, 0, 138, 2278, 1, 0, 0, 0, 140, 2281, 1, 0, 0, 0, 142, 2284, 1, 0, 0, 0, 144, 2310, 1, 0, 0, 0, 146, 2312, 1, 0, 0, 0, 148, 2333, 1, 0, 0, 0, 150, 2349, 1, 0, 0, 0, 152, 2390, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2422, 1, 0, 0, 0, 158, 2426, 1, 0, 0, 0, 160, 2448, 1, 0, 0, 0, 162, 2450, 1, 0, 0, 0, 164, 2480, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2489, 1, 0, 0, 0, 170, 2502, 1, 0, 0, 0, 172, 2507, 1, 0, 0, 0, 174, 2509, 1, 0, 0, 0, 176, 2524, 1, 0, 0, 0, 178, 2548, 1, 0, 0, 0, 180, 2561, 1, 0, 0, 0, 182, 2563, 1, 0, 0, 0, 184, 2565, 1, 0, 0, 0, 186, 2569, 1, 0, 0, 0, 188, 2572, 1, 0, 0, 0, 190, 2576, 1, 0, 0, 0, 192, 2580, 1, 0, 0, 0, 194, 2583, 1, 0, 0, 0, 196, 2615, 1, 0, 0, 0, 198, 2628, 1, 0, 0, 0, 200, 2633, 1, 0, 0, 0, 202, 2652, 1, 0, 0, 0, 204, 2678, 1, 0, 0, 0, 206, 2684, 1, 0, 0, 0, 208, 2686, 1, 0, 0, 0, 210, 2722, 1, 0, 0, 0, 212, 2724, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2736, 1, 0, 0, 0, 218, 2747, 1, 0, 0, 0, 220, 2751, 1, 0, 0, 0, 222, 2762, 1, 0, 0, 0, 224, 2797, 1, 0, 0, 0, 226, 2799, 1, 0, 0, 0, 228, 2829, 1, 0, 0, 0, 230, 2850, 1, 0, 0, 0, 232, 2870, 1, 0, 0, 0, 234, 2876, 1, 0, 0, 0, 236, 2880, 1, 0, 0, 0, 238, 2882, 1, 0, 0, 0, 240, 2904, 1, 0, 0, 0, 242, 2955, 1, 0, 0, 0, 244, 2957, 1, 0, 0, 0, 246, 2965, 1, 0, 0, 0, 248, 2973, 1, 0, 0, 0, 250, 2981, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2996, 1, 0, 0, 0, 256, 3002, 1, 0, 0, 0, 258, 3013, 1, 0, 0, 0, 260, 3021, 1, 0, 0, 0, 262, 3034, 1, 0, 0, 0, 264, 3049, 1, 0, 0, 0, 266, 3053, 1, 0, 0, 0, 268, 3055, 1, 0, 0, 0, 270, 3057, 1, 0, 0, 0, 272, 3063, 1, 0, 0, 0, 274, 3065, 1, 0, 0, 0, 276, 3085, 1, 0, 0, 0, 278, 3180, 1, 0, 0, 0, 280, 3186, 1, 0, 0, 0, 282, 3212, 1, 0, 0, 0, 284, 3463, 1, 0, 0, 0, 286, 3485, 1, 0, 0, 0, 288, 3502, 1, 0, 0, 0, 290, 3504, 1, 0, 0, 0, 292, 3506, 1, 0, 0, 0, 294, 3508, 1, 0, 0, 0, 296, 3510, 1, 0, 0, 0, 298, 3512, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3524, 1, 0, 0, 0, 304, 3528, 1, 0, 0, 0, 306, 3533, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3546, 1, 0, 0, 0, 312, 3548, 1, 0, 0, 0, 314, 3553, 1, 0, 0, 0, 316, 3585, 1, 0, 0, 0, 318, 3633, 1, 0, 0, 0, 320, 3635, 1, 0, 0, 0, 322, 3643, 1, 0, 0, 0, 324, 3651, 1, 0, 0, 0, 326, 3659, 1, 0, 0, 0, 328, 3672, 1, 0, 0, 0, 330, 3674, 1, 0, 0, 0, 332, 3677, 1, 0, 0, 0, 334, 3680, 1, 0, 0, 0, 336, 3688, 1, 0, 0, 0, 338, 3697, 1, 0, 0, 0, 340, 3705, 1, 0, 0, 0, 342, 3718, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3727, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3747, 1, 0, 0, 0, 352, 3752, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3765, 1, 0, 0, 0, 358, 3815, 1, 0, 0, 0, 360, 3833, 1, 0, 0, 0, 362, 3842, 1, 0, 0, 0, 364, 3844, 1, 0, 0, 0, 366, 3861, 1, 0, 0, 0, 368, 3863, 1, 0, 0, 0, 370, 3865, 1, 0, 0, 0, 372, 3873, 1, 0, 0, 0, 374, 3883, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3893, 1, 0, 0, 0, 380, 3895, 1, 0, 0, 0, 382, 3897, 1, 0, 0, 0, 384, 3939, 1, 0, 0, 0, 386, 3952, 1, 0, 0, 0, 388, 3954, 1, 0, 0, 0, 390, 3958, 1, 0, 0, 0, 392, 3962, 1, 0, 0, 0, 394, 3964, 1, 0, 0, 0, 396, 3966, 1, 0, 0, 0, 398, 3968, 1, 0, 0, 0, 400, 402, 3, 2, 1, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 5, 0, 0, 1, 407, 1, 1, 0, 0, 0, 408, 410, 3, 4, 2, 0, 409, 411, 5, 1, 0, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 3, 1, 0, 0, 0, 412, 1338, 3, 26, 13, 0, 413, 415, 3, 44, 22, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1338, 3, 78, 39, 0, 417, 419, 5, 330, 0, 0, 418, 420, 3, 36, 18, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1338, 3, 80, 40, 0, 422, 423, 5, 269, 0, 0, 423, 426, 5, 37, 0, 0, 424, 427, 3, 376, 188, 0, 425, 427, 3, 388, 194, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 1338, 1, 0, 0, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 36, 18, 0, 430, 432, 3, 190, 95, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 441, 3, 82, 41, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 22, 11, 0, 436, 437, 5, 346, 0, 0, 437, 438, 7, 0, 0, 0, 438, 440, 3, 54, 27, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 1338, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 444, 445, 5, 11, 0, 0, 445, 446, 3, 36, 18, 0, 446, 447, 3, 80, 40, 0, 447, 448, 5, 269, 0, 0, 448, 449, 7, 0, 0, 0, 449, 450, 3, 54, 27, 0, 450, 1338, 1, 0, 0, 0, 451, 452, 5, 11, 0, 0, 452, 453, 3, 36, 18, 0, 453, 454, 3, 80, 40, 0, 454, 455, 5, 269, 0, 0, 455, 456, 3, 22, 11, 0, 456, 1338, 1, 0, 0, 0, 457, 458, 5, 96, 0, 0, 458, 460, 3, 36, 18, 0, 459, 461, 3, 192, 96, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 3, 80, 40, 0, 463, 465, 7, 1, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 1338, 1, 0, 0, 0, 466, 467, 5, 273, 0, 0, 467, 470, 3, 38, 19, 0, 468, 469, 7, 2, 0, 0, 469, 471, 3, 246, 123, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 476, 1, 0, 0, 0, 472, 474, 5, 163, 0, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 3, 388, 194, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1338, 1, 0, 0, 0, 478, 483, 3, 14, 7, 0, 479, 480, 5, 2, 0, 0, 480, 481, 3, 338, 169, 0, 481, 482, 5, 3, 0, 0, 482, 484, 1, 0, 0, 0, 483, 479, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 487, 3, 48, 24, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 493, 3, 50, 25, 0, 489, 491, 5, 20, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 3, 26, 13, 0, 493, 490, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1338, 1, 0, 0, 0, 495, 496, 5, 59, 0, 0, 496, 498, 5, 293, 0, 0, 497, 499, 3, 190, 95, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 84, 42, 0, 501, 502, 5, 163, 0, 0, 502, 512, 3, 86, 43, 0, 503, 511, 3, 48, 24, 0, 504, 511, 3, 242, 121, 0, 505, 511, 3, 70, 35, 0, 506, 511, 3, 22, 11, 0, 507, 508, 5, 297, 0, 0, 508, 511, 3, 54, 27, 0, 509, 511, 3, 52, 26, 0, 510, 503, 1, 0, 0, 0, 510, 504, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 510, 506, 1, 0, 0, 0, 510, 507, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 1338, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 520, 3, 16, 8, 0, 516, 517, 5, 2, 0, 0, 517, 518, 3, 338, 169, 0, 518, 519, 5, 3, 0, 0, 519, 521, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 524, 3, 48, 24, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 530, 3, 50, 25, 0, 526, 528, 5, 20, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 3, 26, 13, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 1338, 1, 0, 0, 0, 532, 533, 5, 13, 0, 0, 533, 534, 5, 293, 0, 0, 534, 536, 3, 86, 43, 0, 535, 537, 3, 32, 16, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 5, 55, 0, 0, 539, 547, 5, 282, 0, 0, 540, 548, 5, 196, 0, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 50, 0, 0, 543, 548, 3, 94, 47, 0, 544, 545, 5, 119, 0, 0, 545, 546, 5, 10, 0, 0, 546, 548, 5, 50, 0, 0, 547, 540, 1, 0, 0, 0, 547, 541, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 1338, 1, 0, 0, 0, 549, 550, 5, 13, 0, 0, 550, 553, 5, 294, 0, 0, 551, 552, 7, 2, 0, 0, 552, 554, 3, 80, 40, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 55, 0, 0, 556, 558, 5, 282, 0, 0, 557, 559, 5, 196, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 1338, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 86, 43, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 49, 0, 0, 565, 566, 3, 322, 161, 0, 566, 1338, 1, 0, 0, 0, 567, 568, 5, 11, 0, 0, 568, 569, 5, 293, 0, 0, 569, 570, 3, 86, 43, 0, 570, 571, 5, 8, 0, 0, 571, 572, 5, 50, 0, 0, 572, 573, 5, 2, 0, 0, 573, 574, 3, 320, 160, 0, 574, 575, 5, 3, 0, 0, 575, 1338, 1, 0, 0, 0, 576, 577, 5, 11, 0, 0, 577, 578, 5, 293, 0, 0, 578, 579, 3, 86, 43, 0, 579, 580, 5, 241, 0, 0, 580, 581, 5, 49, 0, 0, 581, 582, 3, 92, 46, 0, 582, 583, 5, 309, 0, 0, 583, 584, 3, 96, 48, 0, 584, 1338, 1, 0, 0, 0, 585, 586, 5, 11, 0, 0, 586, 587, 5, 293, 0, 0, 587, 588, 3, 86, 43, 0, 588, 589, 5, 96, 0, 0, 589, 591, 5, 49, 0, 0, 590, 592, 3, 192, 96, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 3, 92, 46, 0, 594, 1338, 1, 0, 0, 0, 595, 596, 5, 11, 0, 0, 596, 597, 5, 293, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 96, 0, 0, 599, 601, 5, 50, 0, 0, 600, 602, 3, 192, 96, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 2, 0, 0, 604, 605, 3, 94, 47, 0, 605, 606, 5, 3, 0, 0, 606, 1338, 1, 0, 0, 0, 607, 612, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 613, 3, 86, 43, 0, 610, 611, 5, 338, 0, 0, 611, 613, 3, 90, 45, 0, 612, 608, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 241, 0, 0, 615, 616, 5, 309, 0, 0, 616, 617, 3, 246, 123, 0, 617, 1338, 1, 0, 0, 0, 618, 623, 5, 11, 0, 0, 619, 620, 5, 293, 0, 0, 620, 624, 3, 86, 43, 0, 621, 622, 5, 338, 0, 0, 622, 624, 3, 90, 45, 0, 623, 619, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 269, 0, 0, 626, 627, 5, 297, 0, 0, 627, 628, 3, 54, 27, 0, 628, 1338, 1, 0, 0, 0, 629, 634, 5, 11, 0, 0, 630, 631, 5, 293, 0, 0, 631, 635, 3, 86, 43, 0, 632, 633, 5, 338, 0, 0, 633, 635, 3, 90, 45, 0, 634, 630, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 5, 328, 0, 0, 637, 639, 5, 297, 0, 0, 638, 640, 3, 192, 96, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 54, 27, 0, 642, 1338, 1, 0, 0, 0, 643, 644, 5, 11, 0, 0, 644, 645, 5, 293, 0, 0, 645, 646, 3, 86, 43, 0, 646, 648, 7, 3, 0, 0, 647, 649, 5, 49, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 92, 46, 0, 651, 653, 3, 386, 193, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 1338, 1, 0, 0, 0, 654, 655, 5, 11, 0, 0, 655, 656, 5, 293, 0, 0, 656, 658, 3, 86, 43, 0, 657, 659, 3, 32, 16, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 39, 0, 0, 661, 663, 5, 49, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 92, 46, 0, 665, 667, 3, 336, 168, 0, 666, 668, 3, 314, 157, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 1338, 1, 0, 0, 0, 669, 670, 5, 11, 0, 0, 670, 671, 5, 293, 0, 0, 671, 673, 3, 86, 43, 0, 672, 674, 3, 32, 16, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 244, 0, 0, 676, 677, 5, 50, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 3, 324, 162, 0, 679, 680, 5, 3, 0, 0, 680, 1338, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 269, 0, 0, 688, 689, 5, 266, 0, 0, 689, 693, 3, 388, 194, 0, 690, 691, 5, 346, 0, 0, 691, 692, 5, 267, 0, 0, 692, 694, 3, 54, 27, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 1338, 1, 0, 0, 0, 695, 696, 5, 11, 0, 0, 696, 697, 5, 293, 0, 0, 697, 699, 3, 86, 43, 0, 698, 700, 3, 32, 16, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 269, 0, 0, 702, 703, 5, 267, 0, 0, 703, 704, 3, 54, 27, 0, 704, 1338, 1, 0, 0, 0, 705, 710, 5, 11, 0, 0, 706, 707, 5, 293, 0, 0, 707, 711, 3, 86, 43, 0, 708, 709, 5, 338, 0, 0, 709, 711, 3, 90, 45, 0, 710, 706, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 5, 8, 0, 0, 713, 715, 3, 190, 95, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 30, 15, 0, 717, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 1338, 1, 0, 0, 0, 721, 722, 5, 11, 0, 0, 722, 723, 5, 293, 0, 0, 723, 724, 3, 86, 43, 0, 724, 725, 3, 32, 16, 0, 725, 726, 5, 241, 0, 0, 726, 727, 5, 309, 0, 0, 727, 728, 3, 32, 16, 0, 728, 1338, 1, 0, 0, 0, 729, 734, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 735, 3, 86, 43, 0, 732, 733, 5, 338, 0, 0, 733, 735, 3, 90, 45, 0, 734, 730, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 5, 96, 0, 0, 737, 739, 3, 192, 96, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 745, 3, 32, 16, 0, 741, 742, 5, 4, 0, 0, 742, 744, 3, 32, 16, 0, 743, 741, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 5, 230, 0, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1338, 1, 0, 0, 0, 751, 752, 5, 11, 0, 0, 752, 753, 5, 293, 0, 0, 753, 755, 3, 86, 43, 0, 754, 756, 3, 32, 16, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 22, 11, 0, 759, 1338, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 293, 0, 0, 762, 763, 3, 86, 43, 0, 763, 764, 5, 237, 0, 0, 764, 765, 5, 219, 0, 0, 765, 1338, 1, 0, 0, 0, 766, 767, 5, 11, 0, 0, 767, 768, 5, 176, 0, 0, 768, 769, 5, 338, 0, 0, 769, 770, 3, 90, 45, 0, 770, 771, 7, 4, 0, 0, 771, 772, 5, 248, 0, 0, 772, 1338, 1, 0, 0, 0, 773, 774, 5, 11, 0, 0, 774, 775, 5, 176, 0, 0, 775, 776, 5, 338, 0, 0, 776, 777, 3, 90, 45, 0, 777, 778, 5, 269, 0, 0, 778, 779, 5, 297, 0, 0, 779, 780, 3, 54, 27, 0, 780, 1338, 1, 0, 0, 0, 781, 782, 5, 96, 0, 0, 782, 784, 5, 293, 0, 0, 783, 785, 3, 192, 96, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 3, 86, 43, 0, 787, 789, 5, 230, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1338, 1, 0, 0, 0, 790, 791, 5, 96, 0, 0, 791, 793, 5, 338, 0, 0, 792, 794, 3, 192, 96, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 1338, 3, 90, 45, 0, 796, 797, 5, 96, 0, 0, 797, 798, 5, 176, 0, 0, 798, 800, 5, 338, 0, 0, 799, 801, 3, 192, 96, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 1338, 3, 90, 45, 0, 803, 806, 5, 59, 0, 0, 804, 805, 5, 208, 0, 0, 805, 807, 5, 244, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 812, 1, 0, 0, 0, 808, 810, 5, 128, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 298, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 5, 338, 0, 0, 815, 817, 3, 190, 95, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 3, 88, 44, 0, 819, 821, 3, 220, 110, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 1, 0, 0, 0, 822, 829, 3, 24, 12, 0, 823, 824, 5, 218, 0, 0, 824, 825, 5, 203, 0, 0, 825, 829, 3, 212, 106, 0, 826, 827, 5, 297, 0, 0, 827, 829, 3, 54, 27, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 20, 0, 0, 834, 835, 3, 26, 13, 0, 835, 1338, 1, 0, 0, 0, 836, 839, 5, 59, 0, 0, 837, 838, 5, 208, 0, 0, 838, 840, 5, 244, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 128, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 5, 298, 0, 0, 845, 846, 5, 338, 0, 0, 846, 851, 3, 88, 44, 0, 847, 848, 5, 2, 0, 0, 848, 849, 3, 334, 167, 0, 849, 850, 5, 3, 0, 0, 850, 852, 1, 0, 0, 0, 851, 847, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 856, 3, 48, 24, 0, 854, 855, 5, 207, 0, 0, 855, 857, 3, 54, 27, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 1338, 1, 0, 0, 0, 858, 859, 5, 11, 0, 0, 859, 860, 5, 338, 0, 0, 860, 862, 3, 90, 45, 0, 861, 863, 5, 20, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 26, 13, 0, 865, 1338, 1, 0, 0, 0, 866, 869, 5, 59, 0, 0, 867, 868, 5, 208, 0, 0, 868, 870, 5, 244, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 873, 5, 298, 0, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 125, 0, 0, 875, 877, 3, 190, 95, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 368, 184, 0, 879, 880, 5, 20, 0, 0, 880, 890, 3, 388, 194, 0, 881, 882, 5, 332, 0, 0, 882, 887, 3, 76, 38, 0, 883, 884, 5, 4, 0, 0, 884, 886, 3, 76, 38, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 881, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 1338, 1, 0, 0, 0, 892, 893, 5, 59, 0, 0, 893, 894, 5, 176, 0, 0, 894, 896, 5, 338, 0, 0, 895, 897, 3, 190, 95, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 3, 88, 44, 0, 899, 901, 3, 48, 24, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 917, 1, 0, 0, 0, 902, 903, 5, 207, 0, 0, 903, 916, 3, 54, 27, 0, 904, 905, 5, 218, 0, 0, 905, 906, 5, 31, 0, 0, 906, 916, 3, 260, 130, 0, 907, 916, 3, 20, 10, 0, 908, 916, 3, 18, 9, 0, 909, 916, 3, 242, 121, 0, 910, 916, 3, 70, 35, 0, 911, 916, 3, 22, 11, 0, 912, 916, 3, 24, 12, 0, 913, 914, 5, 297, 0, 0, 914, 916, 3, 54, 27, 0, 915, 902, 1, 0, 0, 0, 915, 904, 1, 0, 0, 0, 915, 907, 1, 0, 0, 0, 915, 908, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 910, 1, 0, 0, 0, 915, 911, 1, 0, 0, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 920, 921, 5, 20, 0, 0, 921, 922, 3, 26, 13, 0, 922, 1338, 1, 0, 0, 0, 923, 925, 5, 96, 0, 0, 924, 926, 5, 298, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 5, 125, 0, 0, 928, 930, 3, 192, 96, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 1338, 3, 366, 183, 0, 932, 935, 5, 81, 0, 0, 933, 934, 5, 208, 0, 0, 934, 936, 5, 244, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 5, 336, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 3, 366, 183, 0, 941, 943, 3, 318, 159, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 946, 3, 332, 166, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 1338, 1, 0, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 298, 0, 0, 949, 951, 5, 336, 0, 0, 950, 952, 3, 192, 96, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 956, 1, 0, 0, 0, 953, 957, 3, 86, 43, 0, 954, 957, 3, 90, 45, 0, 955, 957, 3, 366, 183, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 1338, 1, 0, 0, 0, 958, 960, 5, 106, 0, 0, 959, 961, 7, 5, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 1338, 3, 4, 2, 0, 963, 964, 5, 273, 0, 0, 964, 967, 5, 294, 0, 0, 965, 966, 7, 2, 0, 0, 966, 968, 3, 80, 40, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 973, 1, 0, 0, 0, 969, 971, 5, 163, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 388, 194, 0, 973, 970, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1338, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 293, 0, 0, 977, 980, 5, 108, 0, 0, 978, 979, 7, 2, 0, 0, 979, 981, 3, 80, 40, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 5, 163, 0, 0, 983, 985, 3, 388, 194, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1338, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 297, 0, 0, 989, 994, 3, 86, 43, 0, 990, 991, 5, 2, 0, 0, 991, 992, 3, 58, 29, 0, 992, 993, 5, 3, 0, 0, 993, 995, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1338, 1, 0, 0, 0, 996, 997, 5, 273, 0, 0, 997, 998, 5, 50, 0, 0, 998, 999, 7, 2, 0, 0, 999, 1002, 3, 86, 43, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 80, 40, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1338, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1008, 5, 339, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 80, 40, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1014, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 3, 388, 194, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1338, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1018, 5, 219, 0, 0, 1018, 1020, 3, 86, 43, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1338, 1, 0, 0, 0, 1022, 1024, 5, 273, 0, 0, 1023, 1025, 3, 148, 74, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1029, 5, 126, 0, 0, 1027, 1028, 7, 2, 0, 0, 1028, 1030, 3, 80, 40, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1038, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1036, 1, 0, 0, 0, 1034, 1037, 3, 246, 123, 0, 1035, 1037, 3, 388, 194, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1032, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1338, 1, 0, 0, 0, 1040, 1041, 5, 273, 0, 0, 1041, 1042, 5, 59, 0, 0, 1042, 1043, 5, 293, 0, 0, 1043, 1046, 3, 86, 43, 0, 1044, 1045, 5, 20, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1338, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 62, 0, 0, 1050, 1338, 3, 36, 18, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1057, 5, 38, 0, 0, 1053, 1055, 5, 163, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 3, 388, 194, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1338, 1, 0, 0, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1061, 5, 176, 0, 0, 1061, 1064, 5, 339, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1065, 3, 80, 40, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1070, 1, 0, 0, 0, 1066, 1068, 5, 163, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 388, 194, 0, 1070, 1067, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1338, 1, 0, 0, 0, 1072, 1073, 5, 273, 0, 0, 1073, 1074, 5, 59, 0, 0, 1074, 1075, 5, 176, 0, 0, 1075, 1076, 5, 338, 0, 0, 1076, 1079, 3, 90, 45, 0, 1077, 1078, 5, 20, 0, 0, 1078, 1080, 5, 266, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1338, 1, 0, 0, 0, 1081, 1082, 7, 6, 0, 0, 1082, 1084, 5, 125, 0, 0, 1083, 1085, 5, 108, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1338, 3, 40, 20, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1090, 5, 72, 0, 0, 1089, 1091, 5, 108, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1338, 3, 80, 40, 0, 1093, 1095, 7, 6, 0, 0, 1094, 1096, 5, 293, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1099, 7, 7, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 3, 86, 43, 0, 1101, 1103, 3, 32, 16, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 1106, 3, 42, 21, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1338, 1, 0, 0, 0, 1107, 1109, 7, 6, 0, 0, 1108, 1110, 5, 232, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1338, 3, 26, 13, 0, 1112, 1113, 5, 51, 0, 0, 1113, 1114, 5, 203, 0, 0, 1114, 1115, 3, 36, 18, 0, 1115, 1116, 3, 80, 40, 0, 1116, 1117, 5, 153, 0, 0, 1117, 1118, 3, 390, 195, 0, 1118, 1338, 1, 0, 0, 0, 1119, 1120, 5, 51, 0, 0, 1120, 1121, 5, 203, 0, 0, 1121, 1122, 5, 293, 0, 0, 1122, 1123, 3, 86, 43, 0, 1123, 1124, 5, 153, 0, 0, 1124, 1125, 3, 390, 195, 0, 1125, 1338, 1, 0, 0, 0, 1126, 1127, 5, 240, 0, 0, 1127, 1128, 5, 293, 0, 0, 1128, 1338, 3, 86, 43, 0, 1129, 1130, 5, 240, 0, 0, 1130, 1131, 5, 125, 0, 0, 1131, 1338, 3, 366, 183, 0, 1132, 1140, 5, 240, 0, 0, 1133, 1141, 3, 388, 194, 0, 1134, 1136, 9, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1133, 1, 0, 0, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1338, 1, 0, 0, 0, 1142, 1143, 5, 240, 0, 0, 1143, 1144, 5, 176, 0, 0, 1144, 1145, 5, 338, 0, 0, 1145, 1338, 3, 90, 45, 0, 1146, 1148, 5, 33, 0, 0, 1147, 1149, 5, 159, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 293, 0, 0, 1151, 1154, 3, 86, 43, 0, 1152, 1153, 5, 207, 0, 0, 1153, 1155, 3, 54, 27, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1158, 5, 20, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 3, 26, 13, 0, 1160, 1157, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1338, 1, 0, 0, 0, 1162, 1163, 5, 322, 0, 0, 1163, 1165, 5, 293, 0, 0, 1164, 1166, 3, 192, 96, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1338, 3, 86, 43, 0, 1168, 1169, 5, 43, 0, 0, 1169, 1338, 5, 33, 0, 0, 1170, 1171, 5, 168, 0, 0, 1171, 1173, 5, 70, 0, 0, 1172, 1174, 5, 169, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 145, 0, 0, 1176, 1178, 3, 388, 194, 0, 1177, 1179, 5, 216, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 152, 0, 0, 1181, 1182, 5, 293, 0, 0, 1182, 1184, 3, 86, 43, 0, 1183, 1185, 3, 32, 16, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1338, 1, 0, 0, 0, 1186, 1187, 5, 317, 0, 0, 1187, 1188, 5, 293, 0, 0, 1188, 1190, 3, 86, 43, 0, 1189, 1191, 3, 32, 16, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1338, 1, 0, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 242, 0, 0, 1196, 1197, 5, 293, 0, 0, 1197, 1200, 3, 86, 43, 0, 1198, 1199, 7, 8, 0, 0, 1199, 1201, 5, 219, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1338, 1, 0, 0, 0, 1202, 1203, 7, 9, 0, 0, 1203, 1207, 3, 376, 188, 0, 1204, 1206, 9, 0, 0, 0, 1205, 1204, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1338, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 269, 0, 0, 1211, 1215, 5, 253, 0, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1338, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1220, 5, 301, 0, 0, 1220, 1221, 5, 350, 0, 0, 1221, 1338, 3, 298, 149, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1224, 5, 301, 0, 0, 1224, 1225, 5, 350, 0, 0, 1225, 1338, 3, 6, 3, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1232, 5, 350, 0, 0, 1229, 1231, 9, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1338, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1338, 3, 134, 67, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 7, 10, 0, 0, 1240, 1241, 5, 2, 0, 0, 1241, 1242, 3, 244, 122, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1244, 5, 352, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 26, 13, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1338, 1, 0, 0, 0, 1248, 1249, 5, 269, 0, 0, 1249, 1250, 3, 8, 4, 0, 1250, 1251, 5, 352, 0, 0, 1251, 1252, 3, 10, 5, 0, 1252, 1338, 1, 0, 0, 0, 1253, 1254, 5, 269, 0, 0, 1254, 1262, 3, 8, 4, 0, 1255, 1259, 5, 352, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1255, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1338, 1, 0, 0, 0, 1264, 1268, 5, 269, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 352, 0, 0, 1272, 1338, 3, 10, 5, 0, 1273, 1277, 5, 269, 0, 0, 1274, 1276, 9, 0, 0, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1338, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1281, 5, 245, 0, 0, 1281, 1338, 3, 8, 4, 0, 1282, 1286, 5, 245, 0, 0, 1283, 1285, 9, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1338, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1290, 5, 59, 0, 0, 1290, 1292, 5, 142, 0, 0, 1291, 1293, 3, 190, 95, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 3, 376, 188, 0, 1295, 1297, 5, 203, 0, 0, 1296, 1298, 5, 293, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1302, 3, 86, 43, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1303, 3, 376, 188, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 2, 0, 0, 1305, 1306, 3, 248, 124, 0, 1306, 1309, 5, 3, 0, 0, 1307, 1308, 5, 207, 0, 0, 1308, 1310, 3, 54, 27, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 96, 0, 0, 1312, 1314, 5, 142, 0, 0, 1313, 1315, 3, 192, 96, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 3, 376, 188, 0, 1317, 1319, 5, 203, 0, 0, 1318, 1320, 5, 293, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 86, 43, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 205, 0, 0, 1324, 1326, 3, 86, 43, 0, 1325, 1327, 3, 138, 69, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 354, 177, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1334, 3, 12, 6, 0, 1331, 1333, 9, 0, 0, 0, 1332, 1331, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 412, 1, 0, 0, 0, 1337, 414, 1, 0, 0, 0, 1337, 417, 1, 0, 0, 0, 1337, 422, 1, 0, 0, 0, 1337, 428, 1, 0, 0, 0, 1337, 444, 1, 0, 0, 0, 1337, 451, 1, 0, 0, 0, 1337, 457, 1, 0, 0, 0, 1337, 466, 1, 0, 0, 0, 1337, 478, 1, 0, 0, 0, 1337, 495, 1, 0, 0, 0, 1337, 515, 1, 0, 0, 0, 1337, 532, 1, 0, 0, 0, 1337, 549, 1, 0, 0, 0, 1337, 560, 1, 0, 0, 0, 1337, 567, 1, 0, 0, 0, 1337, 576, 1, 0, 0, 0, 1337, 585, 1, 0, 0, 0, 1337, 595, 1, 0, 0, 0, 1337, 607, 1, 0, 0, 0, 1337, 618, 1, 0, 0, 0, 1337, 629, 1, 0, 0, 0, 1337, 643, 1, 0, 0, 0, 1337, 654, 1, 0, 0, 0, 1337, 669, 1, 0, 0, 0, 1337, 681, 1, 0, 0, 0, 1337, 695, 1, 0, 0, 0, 1337, 705, 1, 0, 0, 0, 1337, 721, 1, 0, 0, 0, 1337, 729, 1, 0, 0, 0, 1337, 751, 1, 0, 0, 0, 1337, 760, 1, 0, 0, 0, 1337, 766, 1, 0, 0, 0, 1337, 773, 1, 0, 0, 0, 1337, 781, 1, 0, 0, 0, 1337, 790, 1, 0, 0, 0, 1337, 796, 1, 0, 0, 0, 1337, 803, 1, 0, 0, 0, 1337, 836, 1, 0, 0, 0, 1337, 858, 1, 0, 0, 0, 1337, 866, 1, 0, 0, 0, 1337, 892, 1, 0, 0, 0, 1337, 923, 1, 0, 0, 0, 1337, 932, 1, 0, 0, 0, 1337, 947, 1, 0, 0, 0, 1337, 958, 1, 0, 0, 0, 1337, 963, 1, 0, 0, 0, 1337, 975, 1, 0, 0, 0, 1337, 987, 1, 0, 0, 0, 1337, 996, 1, 0, 0, 0, 1337, 1004, 1, 0, 0, 0, 1337, 1016, 1, 0, 0, 0, 1337, 1022, 1, 0, 0, 0, 1337, 1040, 1, 0, 0, 0, 1337, 1048, 1, 0, 0, 0, 1337, 1051, 1, 0, 0, 0, 1337, 1059, 1, 0, 0, 0, 1337, 1072, 1, 0, 0, 0, 1337, 1081, 1, 0, 0, 0, 1337, 1087, 1, 0, 0, 0, 1337, 1093, 1, 0, 0, 0, 1337, 1107, 1, 0, 0, 0, 1337, 1112, 1, 0, 0, 0, 1337, 1119, 1, 0, 0, 0, 1337, 1126, 1, 0, 0, 0, 1337, 1129, 1, 0, 0, 0, 1337, 1132, 1, 0, 0, 0, 1337, 1142, 1, 0, 0, 0, 1337, 1146, 1, 0, 0, 0, 1337, 1162, 1, 0, 0, 0, 1337, 1168, 1, 0, 0, 0, 1337, 1170, 1, 0, 0, 0, 1337, 1186, 1, 0, 0, 0, 1337, 1193, 1, 0, 0, 0, 1337, 1202, 1, 0, 0, 0, 1337, 1210, 1, 0, 0, 0, 1337, 1218, 1, 0, 0, 0, 1337, 1222, 1, 0, 0, 0, 1337, 1226, 1, 0, 0, 0, 1337, 1235, 1, 0, 0, 0, 1337, 1238, 1, 0, 0, 0, 1337, 1248, 1, 0, 0, 0, 1337, 1253, 1, 0, 0, 0, 1337, 1264, 1, 0, 0, 0, 1337, 1273, 1, 0, 0, 0, 1337, 1280, 1, 0, 0, 0, 1337, 1282, 1, 0, 0, 0, 1337, 1289, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 5, 1, 0, 0, 0, 1339, 1342, 3, 388, 194, 0, 1340, 1342, 5, 169, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 7, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 9, 1, 0, 0, 0, 1345, 1346, 3, 382, 191, 0, 1346, 11, 1, 0, 0, 0, 1347, 1348, 5, 59, 0, 0, 1348, 1516, 5, 253, 0, 0, 1349, 1350, 5, 96, 0, 0, 1350, 1516, 5, 253, 0, 0, 1351, 1353, 5, 129, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1516, 1, 0, 0, 0, 1355, 1357, 5, 249, 0, 0, 1356, 1358, 5, 253, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1516, 1, 0, 0, 0, 1359, 1360, 5, 273, 0, 0, 1360, 1516, 5, 129, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1364, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1516, 1, 0, 0, 0, 1366, 1367, 5, 273, 0, 0, 1367, 1516, 5, 228, 0, 0, 1368, 1369, 5, 273, 0, 0, 1369, 1516, 5, 254, 0, 0, 1370, 1371, 5, 273, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1516, 5, 254, 0, 0, 1373, 1374, 5, 107, 0, 0, 1374, 1516, 5, 293, 0, 0, 1375, 1376, 5, 139, 0, 0, 1376, 1516, 5, 293, 0, 0, 1377, 1378, 5, 273, 0, 0, 1378, 1516, 5, 54, 0, 0, 1379, 1380, 5, 273, 0, 0, 1380, 1381, 5, 59, 0, 0, 1381, 1516, 5, 293, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1516, 5, 313, 0, 0, 1384, 1385, 5, 273, 0, 0, 1385, 1516, 5, 143, 0, 0, 1386, 1387, 5, 273, 0, 0, 1387, 1516, 5, 172, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1516, 5, 142, 0, 0, 1390, 1391, 5, 96, 0, 0, 1391, 1516, 5, 142, 0, 0, 1392, 1393, 5, 11, 0, 0, 1393, 1516, 5, 142, 0, 0, 1394, 1395, 5, 171, 0, 0, 1395, 1516, 5, 293, 0, 0, 1396, 1397, 5, 171, 0, 0, 1397, 1516, 5, 72, 0, 0, 1398, 1399, 5, 326, 0, 0, 1399, 1516, 5, 293, 0, 0, 1400, 1401, 5, 326, 0, 0, 1401, 1516, 5, 72, 0, 0, 1402, 1403, 5, 59, 0, 0, 1403, 1404, 5, 298, 0, 0, 1404, 1516, 5, 175, 0, 0, 1405, 1406, 5, 96, 0, 0, 1406, 1407, 5, 298, 0, 0, 1407, 1516, 5, 175, 0, 0, 1408, 1409, 5, 11, 0, 0, 1409, 1410, 5, 293, 0, 0, 1410, 1411, 3, 86, 43, 0, 1411, 1412, 5, 197, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1516, 1, 0, 0, 0, 1414, 1415, 5, 11, 0, 0, 1415, 1416, 5, 293, 0, 0, 1416, 1417, 3, 86, 43, 0, 1417, 1418, 5, 45, 0, 0, 1418, 1419, 5, 31, 0, 0, 1419, 1516, 1, 0, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 279, 0, 0, 1425, 1516, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 275, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1516, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 275, 0, 0, 1437, 1516, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 197, 0, 0, 1442, 1443, 5, 283, 0, 0, 1443, 1444, 5, 20, 0, 0, 1444, 1445, 5, 89, 0, 0, 1445, 1516, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 269, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 170, 0, 0, 1452, 1516, 1, 0, 0, 0, 1453, 1454, 5, 11, 0, 0, 1454, 1455, 5, 293, 0, 0, 1455, 1456, 3, 86, 43, 0, 1456, 1457, 5, 103, 0, 0, 1457, 1458, 5, 217, 0, 0, 1458, 1516, 1, 0, 0, 0, 1459, 1460, 5, 11, 0, 0, 1460, 1461, 5, 293, 0, 0, 1461, 1462, 3, 86, 43, 0, 1462, 1463, 5, 18, 0, 0, 1463, 1464, 5, 217, 0, 0, 1464, 1516, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 320, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1516, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 310, 0, 0, 1475, 1516, 1, 0, 0, 0, 1476, 1477, 5, 11, 0, 0, 1477, 1478, 5, 293, 0, 0, 1478, 1480, 3, 86, 43, 0, 1479, 1481, 3, 32, 16, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 53, 0, 0, 1483, 1516, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 56, 0, 0, 1491, 1516, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 269, 0, 0, 1499, 1500, 5, 115, 0, 0, 1500, 1516, 1, 0, 0, 0, 1501, 1502, 5, 11, 0, 0, 1502, 1503, 5, 293, 0, 0, 1503, 1505, 3, 86, 43, 0, 1504, 1506, 3, 32, 16, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 244, 0, 0, 1508, 1509, 5, 50, 0, 0, 1509, 1516, 1, 0, 0, 0, 1510, 1511, 5, 281, 0, 0, 1511, 1516, 5, 312, 0, 0, 1512, 1516, 5, 52, 0, 0, 1513, 1516, 5, 255, 0, 0, 1514, 1516, 5, 88, 0, 0, 1515, 1347, 1, 0, 0, 0, 1515, 1349, 1, 0, 0, 0, 1515, 1351, 1, 0, 0, 0, 1515, 1355, 1, 0, 0, 0, 1515, 1359, 1, 0, 0, 0, 1515, 1361, 1, 0, 0, 0, 1515, 1366, 1, 0, 0, 0, 1515, 1368, 1, 0, 0, 0, 1515, 1370, 1, 0, 0, 0, 1515, 1373, 1, 0, 0, 0, 1515, 1375, 1, 0, 0, 0, 1515, 1377, 1, 0, 0, 0, 1515, 1379, 1, 0, 0, 0, 1515, 1382, 1, 0, 0, 0, 1515, 1384, 1, 0, 0, 0, 1515, 1386, 1, 0, 0, 0, 1515, 1388, 1, 0, 0, 0, 1515, 1390, 1, 0, 0, 0, 1515, 1392, 1, 0, 0, 0, 1515, 1394, 1, 0, 0, 0, 1515, 1396, 1, 0, 0, 0, 1515, 1398, 1, 0, 0, 0, 1515, 1400, 1, 0, 0, 0, 1515, 1402, 1, 0, 0, 0, 1515, 1405, 1, 0, 0, 0, 1515, 1408, 1, 0, 0, 0, 1515, 1414, 1, 0, 0, 0, 1515, 1420, 1, 0, 0, 0, 1515, 1426, 1, 0, 0, 0, 1515, 1432, 1, 0, 0, 0, 1515, 1438, 1, 0, 0, 0, 1515, 1446, 1, 0, 0, 0, 1515, 1453, 1, 0, 0, 0, 1515, 1459, 1, 0, 0, 0, 1515, 1465, 1, 0, 0, 0, 1515, 1471, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1484, 1, 0, 0, 0, 1515, 1492, 1, 0, 0, 0, 1515, 1501, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 13, 1, 0, 0, 0, 1517, 1519, 5, 59, 0, 0, 1518, 1520, 5, 298, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 5, 109, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 293, 0, 0, 1525, 1527, 3, 190, 95, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 3, 84, 42, 0, 1529, 15, 1, 0, 0, 0, 1530, 1531, 5, 59, 0, 0, 1531, 1533, 5, 208, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 244, 0, 0, 1535, 1536, 5, 293, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 17, 1, 0, 0, 0, 1538, 1539, 5, 45, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1544, 3, 212, 106, 0, 1541, 1542, 5, 279, 0, 0, 1542, 1543, 5, 31, 0, 0, 1543, 1545, 3, 216, 108, 0, 1544, 1541, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 152, 0, 0, 1547, 1548, 5, 382, 0, 0, 1548, 1549, 5, 30, 0, 0, 1549, 19, 1, 0, 0, 0, 1550, 1551, 5, 275, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1553, 3, 212, 106, 0, 1553, 1556, 5, 203, 0, 0, 1554, 1557, 3, 66, 33, 0, 1555, 1557, 3, 68, 34, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1555, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 283, 0, 0, 1559, 1560, 5, 20, 0, 0, 1560, 1562, 5, 89, 0, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 21, 1, 0, 0, 0, 1563, 1564, 5, 170, 0, 0, 1564, 1565, 3, 388, 194, 0, 1565, 23, 1, 0, 0, 0, 1566, 1567, 5, 51, 0, 0, 1567, 1568, 3, 388, 194, 0, 1568, 25, 1, 0, 0, 0, 1569, 1571, 3, 44, 22, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 104, 52, 0, 1573, 1574, 3, 100, 50, 0, 1574, 27, 1, 0, 0, 0, 1575, 1576, 5, 147, 0, 0, 1576, 1578, 5, 216, 0, 0, 1577, 1579, 5, 293, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1585, 3, 86, 43, 0, 1581, 1583, 3, 32, 16, 0, 1582, 1584, 3, 190, 95, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1581, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1593, 1, 0, 0, 0, 1587, 1588, 5, 31, 0, 0, 1588, 1594, 5, 189, 0, 0, 1589, 1590, 5, 2, 0, 0, 1590, 1591, 3, 94, 47, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1652, 1, 0, 0, 0, 1595, 1596, 5, 147, 0, 0, 1596, 1598, 5, 152, 0, 0, 1597, 1599, 5, 293, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1603, 3, 32, 16, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 1, 0, 0, 0, 1604, 1606, 3, 190, 95, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1613, 1, 0, 0, 0, 1607, 1608, 5, 31, 0, 0, 1608, 1614, 5, 189, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 3, 94, 47, 0, 1611, 1612, 5, 3, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1607, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1652, 1, 0, 0, 0, 1615, 1616, 5, 147, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 293, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 86, 43, 0, 1621, 1622, 5, 244, 0, 0, 1622, 1623, 3, 138, 69, 0, 1623, 1652, 1, 0, 0, 0, 1624, 1625, 5, 147, 0, 0, 1625, 1627, 5, 216, 0, 0, 1626, 1628, 5, 169, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 90, 0, 0, 1630, 1632, 3, 388, 194, 0, 1631, 1633, 3, 242, 121, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 70, 35, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1652, 1, 0, 0, 0, 1637, 1638, 5, 147, 0, 0, 1638, 1640, 5, 216, 0, 0, 1639, 1641, 5, 169, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 90, 0, 0, 1643, 1645, 3, 388, 194, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 3, 48, 24, 0, 1647, 1648, 5, 207, 0, 0, 1648, 1650, 3, 54, 27, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1575, 1, 0, 0, 0, 1651, 1595, 1, 0, 0, 0, 1651, 1615, 1, 0, 0, 0, 1651, 1624, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1652, 29, 1, 0, 0, 0, 1653, 1655, 3, 32, 16, 0, 1654, 1656, 3, 22, 11, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 31, 1, 0, 0, 0, 1657, 1658, 5, 217, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 34, 17, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 34, 17, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 33, 1, 0, 0, 0, 1669, 1672, 3, 376, 188, 0, 1670, 1671, 5, 352, 0, 0, 1671, 1673, 3, 288, 144, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1679, 1, 0, 0, 0, 1674, 1675, 3, 376, 188, 0, 1675, 1676, 5, 352, 0, 0, 1676, 1677, 5, 82, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1669, 1, 0, 0, 0, 1678, 1674, 1, 0, 0, 0, 1679, 35, 1, 0, 0, 0, 1680, 1681, 7, 11, 0, 0, 1681, 37, 1, 0, 0, 0, 1682, 1683, 7, 12, 0, 0, 1683, 39, 1, 0, 0, 0, 1684, 1690, 3, 98, 49, 0, 1685, 1690, 3, 388, 194, 0, 1686, 1690, 3, 290, 145, 0, 1687, 1690, 3, 292, 146, 0, 1688, 1690, 3, 294, 147, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1688, 1, 0, 0, 0, 1690, 41, 1, 0, 0, 0, 1691, 1696, 3, 376, 188, 0, 1692, 1693, 5, 5, 0, 0, 1693, 1695, 3, 376, 188, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 43, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1700, 5, 346, 0, 0, 1700, 1705, 3, 46, 23, 0, 1701, 1702, 5, 4, 0, 0, 1702, 1704, 3, 46, 23, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 45, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1710, 3, 372, 186, 0, 1709, 1711, 3, 212, 106, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 5, 20, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 2, 0, 0, 1716, 1717, 3, 26, 13, 0, 1717, 1718, 5, 3, 0, 0, 1718, 47, 1, 0, 0, 0, 1719, 1720, 5, 332, 0, 0, 1720, 1721, 3, 246, 123, 0, 1721, 49, 1, 0, 0, 0, 1722, 1723, 5, 207, 0, 0, 1723, 1737, 3, 62, 31, 0, 1724, 1725, 5, 218, 0, 0, 1725, 1726, 5, 31, 0, 0, 1726, 1737, 3, 260, 130, 0, 1727, 1737, 3, 20, 10, 0, 1728, 1737, 3, 18, 9, 0, 1729, 1737, 3, 242, 121, 0, 1730, 1737, 3, 70, 35, 0, 1731, 1737, 3, 22, 11, 0, 1732, 1737, 3, 24, 12, 0, 1733, 1734, 5, 297, 0, 0, 1734, 1737, 3, 54, 27, 0, 1735, 1737, 3, 52, 26, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1729, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 51, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 162, 0, 0, 1742, 1743, 5, 382, 0, 0, 1743, 53, 1, 0, 0, 0, 1744, 1745, 5, 2, 0, 0, 1745, 1750, 3, 56, 28, 0, 1746, 1747, 5, 4, 0, 0, 1747, 1749, 3, 56, 28, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 3, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 58, 29, 0, 1756, 1758, 5, 352, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 3, 60, 30, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 57, 1, 0, 0, 0, 1762, 1767, 3, 376, 188, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1766, 3, 376, 188, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1772, 3, 388, 194, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1778, 5, 382, 0, 0, 1774, 1778, 5, 384, 0, 0, 1775, 1778, 3, 296, 148, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1773, 1, 0, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 61, 1, 0, 0, 0, 1779, 1780, 5, 2, 0, 0, 1780, 1785, 3, 64, 32, 0, 1781, 1782, 5, 4, 0, 0, 1782, 1784, 3, 64, 32, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1795, 3, 58, 29, 0, 1791, 1793, 5, 352, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 3, 268, 134, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 65, 1, 0, 0, 0, 1797, 1798, 5, 2, 0, 0, 1798, 1803, 3, 288, 144, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 288, 144, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 5, 3, 0, 0, 1807, 67, 1, 0, 0, 0, 1808, 1809, 5, 2, 0, 0, 1809, 1814, 3, 66, 33, 0, 1810, 1811, 5, 4, 0, 0, 1811, 1813, 3, 66, 33, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 69, 1, 0, 0, 0, 1819, 1820, 5, 283, 0, 0, 1820, 1821, 5, 20, 0, 0, 1821, 1826, 3, 72, 36, 0, 1822, 1823, 5, 283, 0, 0, 1823, 1824, 5, 31, 0, 0, 1824, 1826, 3, 74, 37, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 71, 1, 0, 0, 0, 1827, 1828, 5, 146, 0, 0, 1828, 1829, 3, 388, 194, 0, 1829, 1830, 5, 212, 0, 0, 1830, 1831, 3, 388, 194, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1834, 3, 376, 188, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1839, 3, 388, 194, 0, 1836, 1837, 5, 346, 0, 0, 1837, 1838, 5, 267, 0, 0, 1838, 1840, 3, 54, 27, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 75, 1, 0, 0, 0, 1841, 1842, 3, 376, 188, 0, 1842, 1843, 3, 388, 194, 0, 1843, 77, 1, 0, 0, 0, 1844, 1845, 3, 28, 14, 0, 1845, 1846, 3, 26, 13, 0, 1846, 1901, 1, 0, 0, 0, 1847, 1849, 3, 146, 73, 0, 1848, 1850, 3, 102, 51, 0, 1849, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1901, 1, 0, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 123, 0, 0, 1855, 1856, 3, 86, 43, 0, 1856, 1858, 3, 240, 120, 0, 1857, 1859, 3, 138, 69, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1901, 1, 0, 0, 0, 1860, 1861, 5, 329, 0, 0, 1861, 1862, 3, 86, 43, 0, 1862, 1863, 3, 240, 120, 0, 1863, 1865, 3, 120, 60, 0, 1864, 1866, 3, 138, 69, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1901, 1, 0, 0, 0, 1867, 1868, 5, 179, 0, 0, 1868, 1869, 5, 152, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 240, 120, 0, 1871, 1877, 5, 332, 0, 0, 1872, 1878, 3, 98, 49, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1875, 3, 26, 13, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 3, 240, 120, 0, 1880, 1881, 5, 203, 0, 0, 1881, 1885, 3, 276, 138, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1897, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1896, 3, 126, 63, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1844, 1, 0, 0, 0, 1900, 1847, 1, 0, 0, 0, 1900, 1853, 1, 0, 0, 0, 1900, 1860, 1, 0, 0, 0, 1900, 1867, 1, 0, 0, 0, 1901, 79, 1, 0, 0, 0, 1902, 1903, 3, 98, 49, 0, 1903, 81, 1, 0, 0, 0, 1904, 1905, 3, 98, 49, 0, 1905, 83, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 85, 1, 0, 0, 0, 1908, 1909, 3, 252, 126, 0, 1909, 87, 1, 0, 0, 0, 1910, 1911, 3, 254, 127, 0, 1911, 89, 1, 0, 0, 0, 1912, 1913, 3, 254, 127, 0, 1913, 91, 1, 0, 0, 0, 1914, 1917, 3, 246, 123, 0, 1915, 1917, 4, 46, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1923, 3, 92, 46, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1922, 3, 92, 46, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 95, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1927, 3, 372, 186, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 136, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 268, 134, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1935, 3, 246, 123, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 99, 1, 0, 0, 0, 1936, 1937, 5, 209, 0, 0, 1937, 1938, 5, 31, 0, 0, 1938, 1943, 3, 108, 54, 0, 1939, 1940, 5, 4, 0, 0, 1940, 1942, 3, 108, 54, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1936, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1958, 1, 0, 0, 0, 1948, 1949, 5, 44, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 268, 134, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 268, 134, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 93, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 268, 134, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 268, 134, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 278, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 108, 54, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 108, 54, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 352, 176, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1992, 1, 0, 0, 0, 1987, 1990, 5, 165, 0, 0, 1988, 1991, 5, 10, 0, 0, 1989, 1991, 3, 268, 134, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1989, 1, 0, 0, 0, 1991, 1993, 1, 0, 0, 0, 1992, 1987, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1995, 5, 202, 0, 0, 1995, 1997, 3, 268, 134, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 101, 1, 0, 0, 0, 1998, 1999, 3, 28, 14, 0, 1999, 2000, 3, 112, 56, 0, 2000, 103, 1, 0, 0, 0, 2001, 2002, 6, 52, -1, 0, 2002, 2003, 3, 106, 53, 0, 2003, 2024, 1, 0, 0, 0, 2004, 2005, 10, 3, 0, 0, 2005, 2007, 7, 13, 0, 0, 2006, 2008, 3, 196, 98, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2023, 3, 104, 52, 4, 2010, 2011, 10, 2, 0, 0, 2011, 2013, 5, 148, 0, 0, 2012, 2014, 3, 196, 98, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2023, 3, 104, 52, 3, 2016, 2017, 10, 1, 0, 0, 2017, 2019, 7, 14, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2023, 3, 104, 52, 2, 2022, 2004, 1, 0, 0, 0, 2022, 2010, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 105, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2037, 3, 114, 57, 0, 2028, 2037, 3, 110, 55, 0, 2029, 2030, 5, 293, 0, 0, 2030, 2037, 3, 86, 43, 0, 2031, 2037, 3, 226, 113, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2034, 3, 26, 13, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2036, 2032, 1, 0, 0, 0, 2037, 107, 1, 0, 0, 0, 2038, 2041, 3, 92, 46, 0, 2039, 2041, 3, 268, 134, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 7, 15, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 199, 0, 0, 2046, 2048, 7, 16, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 109, 1, 0, 0, 0, 2049, 2051, 3, 146, 73, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 111, 1, 0, 0, 0, 2055, 2057, 3, 116, 58, 0, 2056, 2058, 3, 138, 69, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 3, 100, 50, 0, 2060, 2083, 1, 0, 0, 0, 2061, 2065, 3, 118, 59, 0, 2062, 2064, 3, 194, 97, 0, 2063, 2062, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2070, 3, 138, 69, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2072, 1, 0, 0, 0, 2071, 2073, 3, 152, 76, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2076, 3, 140, 70, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2079, 3, 352, 176, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 100, 50, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2055, 1, 0, 0, 0, 2082, 2061, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 3, 116, 58, 0, 2085, 2087, 3, 146, 73, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2090, 3, 194, 97, 0, 2089, 2088, 1, 0, 0, 0, 2090, 2093, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2096, 3, 138, 69, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 152, 76, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 140, 70, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 352, 176, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2108, 3, 118, 59, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 352, 176, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2084, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2129, 115, 1, 0, 0, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2132, 5, 314, 0, 0, 2132, 2134, 5, 2, 0, 0, 2133, 2135, 3, 196, 98, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 3, 274, 137, 0, 2137, 2138, 5, 3, 0, 0, 2138, 2150, 1, 0, 0, 0, 2139, 2141, 5, 177, 0, 0, 2140, 2142, 3, 196, 98, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2150, 3, 274, 137, 0, 2144, 2146, 5, 238, 0, 0, 2145, 2147, 3, 196, 98, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 274, 137, 0, 2149, 2130, 1, 0, 0, 0, 2149, 2139, 1, 0, 0, 0, 2149, 2144, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 242, 121, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2155, 5, 236, 0, 0, 2155, 2157, 3, 388, 194, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 5, 332, 0, 0, 2159, 2172, 3, 388, 194, 0, 2160, 2170, 5, 20, 0, 0, 2161, 2171, 3, 214, 107, 0, 2162, 2171, 3, 334, 167, 0, 2163, 2166, 5, 2, 0, 0, 2164, 2167, 3, 214, 107, 0, 2165, 2167, 3, 334, 167, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 3, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2161, 1, 0, 0, 0, 2170, 2162, 1, 0, 0, 0, 2170, 2163, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2176, 3, 242, 121, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2178, 5, 235, 0, 0, 2178, 2180, 3, 388, 194, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 117, 1, 0, 0, 0, 2181, 2185, 5, 263, 0, 0, 2182, 2184, 3, 142, 71, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2190, 3, 196, 98, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 3, 258, 129, 0, 2192, 119, 1, 0, 0, 0, 2193, 2194, 5, 269, 0, 0, 2194, 2195, 3, 134, 67, 0, 2195, 121, 1, 0, 0, 0, 2196, 2197, 5, 343, 0, 0, 2197, 2200, 5, 178, 0, 0, 2198, 2199, 5, 14, 0, 0, 2199, 2201, 3, 276, 138, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 5, 300, 0, 0, 2203, 2204, 3, 128, 64, 0, 2204, 123, 1, 0, 0, 0, 2205, 2206, 5, 343, 0, 0, 2206, 2207, 5, 197, 0, 0, 2207, 2210, 5, 178, 0, 0, 2208, 2209, 5, 31, 0, 0, 2209, 2211, 5, 296, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2213, 5, 14, 0, 0, 2213, 2215, 3, 276, 138, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 300, 0, 0, 2217, 2218, 3, 130, 65, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 5, 343, 0, 0, 2220, 2221, 5, 197, 0, 0, 2221, 2222, 5, 178, 0, 0, 2222, 2223, 5, 31, 0, 0, 2223, 2226, 5, 280, 0, 0, 2224, 2225, 5, 14, 0, 0, 2225, 2227, 3, 276, 138, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 5, 300, 0, 0, 2229, 2230, 3, 132, 66, 0, 2230, 127, 1, 0, 0, 0, 2231, 2239, 5, 84, 0, 0, 2232, 2233, 5, 329, 0, 0, 2233, 2234, 5, 269, 0, 0, 2234, 2239, 5, 363, 0, 0, 2235, 2236, 5, 329, 0, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2239, 3, 134, 67, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2232, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2239, 129, 1, 0, 0, 0, 2240, 2241, 5, 147, 0, 0, 2241, 2259, 5, 363, 0, 0, 2242, 2243, 5, 147, 0, 0, 2243, 2244, 5, 2, 0, 0, 2244, 2245, 3, 244, 122, 0, 2245, 2246, 5, 3, 0, 0, 2246, 2247, 5, 333, 0, 0, 2247, 2248, 5, 2, 0, 0, 2248, 2253, 3, 268, 134, 0, 2249, 2250, 5, 4, 0, 0, 2250, 2252, 3, 268, 134, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 3, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2240, 1, 0, 0, 0, 2258, 2242, 1, 0, 0, 0, 2259, 131, 1, 0, 0, 0, 2260, 2265, 5, 84, 0, 0, 2261, 2262, 5, 329, 0, 0, 2262, 2263, 5, 269, 0, 0, 2263, 2265, 3, 134, 67, 0, 2264, 2260, 1, 0, 0, 0, 2264, 2261, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 136, 68, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 246, 123, 0, 2275, 2276, 5, 352, 0, 0, 2276, 2277, 3, 268, 134, 0, 2277, 137, 1, 0, 0, 0, 2278, 2279, 5, 344, 0, 0, 2279, 2280, 3, 276, 138, 0, 2280, 139, 1, 0, 0, 0, 2281, 2282, 5, 132, 0, 0, 2282, 2283, 3, 276, 138, 0, 2283, 141, 1, 0, 0, 0, 2284, 2285, 5, 374, 0, 0, 2285, 2292, 3, 144, 72, 0, 2286, 2288, 5, 4, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 3, 144, 72, 0, 2290, 2287, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 375, 0, 0, 2296, 143, 1, 0, 0, 0, 2297, 2311, 3, 376, 188, 0, 2298, 2299, 3, 376, 188, 0, 2299, 2300, 5, 2, 0, 0, 2300, 2305, 3, 284, 142, 0, 2301, 2302, 5, 4, 0, 0, 2302, 2304, 3, 284, 142, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 3, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2297, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2311, 145, 1, 0, 0, 0, 2312, 2313, 5, 123, 0, 0, 2313, 2318, 3, 198, 99, 0, 2314, 2315, 5, 4, 0, 0, 2315, 2317, 3, 198, 99, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2324, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2329, 3, 162, 81, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 168, 84, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 7, 17, 0, 0, 2334, 149, 1, 0, 0, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 18, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 201, 0, 0, 2341, 2350, 3, 392, 196, 0, 2342, 2344, 5, 119, 0, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2346, 7, 19, 0, 0, 2346, 2347, 5, 20, 0, 0, 2347, 2348, 5, 201, 0, 0, 2348, 2350, 3, 280, 140, 0, 2349, 2336, 1, 0, 0, 0, 2349, 2343, 1, 0, 0, 0, 2350, 151, 1, 0, 0, 0, 2351, 2352, 5, 130, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2358, 3, 154, 77, 0, 2354, 2355, 5, 4, 0, 0, 2355, 2357, 3, 154, 77, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2391, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 130, 0, 0, 2362, 2363, 5, 31, 0, 0, 2363, 2368, 3, 268, 134, 0, 2364, 2365, 5, 4, 0, 0, 2365, 2367, 3, 268, 134, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2388, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2372, 5, 346, 0, 0, 2372, 2389, 5, 256, 0, 0, 2373, 2374, 5, 346, 0, 0, 2374, 2389, 5, 61, 0, 0, 2375, 2376, 5, 131, 0, 0, 2376, 2377, 5, 271, 0, 0, 2377, 2378, 5, 2, 0, 0, 2378, 2383, 3, 160, 80, 0, 2379, 2380, 5, 4, 0, 0, 2380, 2382, 3, 160, 80, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2371, 1, 0, 0, 0, 2388, 2373, 1, 0, 0, 0, 2388, 2375, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2391, 1, 0, 0, 0, 2390, 2351, 1, 0, 0, 0, 2390, 2361, 1, 0, 0, 0, 2391, 153, 1, 0, 0, 0, 2392, 2396, 3, 92, 46, 0, 2393, 2396, 3, 156, 78, 0, 2394, 2396, 3, 268, 134, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 155, 1, 0, 0, 0, 2397, 2398, 7, 20, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2404, 3, 160, 80, 0, 2400, 2401, 5, 4, 0, 0, 2401, 2403, 3, 160, 80, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2423, 1, 0, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2411, 5, 271, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 158, 79, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 158, 79, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2397, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2423, 157, 1, 0, 0, 0, 2424, 2427, 3, 156, 78, 0, 2425, 2427, 3, 160, 80, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 159, 1, 0, 0, 0, 2428, 2449, 3, 92, 46, 0, 2429, 2449, 3, 268, 134, 0, 2430, 2445, 5, 2, 0, 0, 2431, 2434, 3, 92, 46, 0, 2432, 2434, 3, 268, 134, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2442, 1, 0, 0, 0, 2435, 2438, 5, 4, 0, 0, 2436, 2439, 3, 92, 46, 0, 2437, 2439, 3, 268, 134, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2437, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2435, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2433, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 5, 3, 0, 0, 2448, 2428, 1, 0, 0, 0, 2448, 2429, 1, 0, 0, 0, 2448, 2430, 1, 0, 0, 0, 2449, 161, 1, 0, 0, 0, 2450, 2451, 5, 223, 0, 0, 2451, 2452, 5, 2, 0, 0, 2452, 2453, 3, 258, 129, 0, 2453, 2454, 5, 119, 0, 0, 2454, 2455, 3, 164, 82, 0, 2455, 2456, 5, 140, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 166, 83, 0, 2458, 2459, 5, 4, 0, 0, 2459, 2461, 3, 166, 83, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 163, 1, 0, 0, 0, 2468, 2481, 3, 376, 188, 0, 2469, 2470, 5, 2, 0, 0, 2470, 2475, 3, 376, 188, 0, 2471, 2472, 5, 4, 0, 0, 2472, 2474, 3, 376, 188, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 3, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2468, 1, 0, 0, 0, 2480, 2469, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2487, 3, 268, 134, 0, 2483, 2485, 5, 20, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2488, 3, 376, 188, 0, 2487, 2484, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 167, 1, 0, 0, 0, 2489, 2491, 5, 327, 0, 0, 2490, 2492, 3, 170, 85, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 172, 86, 0, 2495, 2500, 5, 3, 0, 0, 2496, 2498, 5, 20, 0, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 3, 376, 188, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 169, 1, 0, 0, 0, 2502, 2503, 7, 21, 0, 0, 2503, 2504, 5, 199, 0, 0, 2504, 171, 1, 0, 0, 0, 2505, 2508, 3, 174, 87, 0, 2506, 2508, 3, 176, 88, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 173, 1, 0, 0, 0, 2509, 2510, 3, 180, 90, 0, 2510, 2511, 5, 119, 0, 0, 2511, 2512, 3, 182, 91, 0, 2512, 2513, 5, 140, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2519, 3, 184, 92, 0, 2515, 2516, 5, 4, 0, 0, 2516, 2518, 3, 184, 92, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2523, 5, 3, 0, 0, 2523, 175, 1, 0, 0, 0, 2524, 2525, 5, 2, 0, 0, 2525, 2530, 3, 180, 90, 0, 2526, 2527, 5, 4, 0, 0, 2527, 2529, 3, 180, 90, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2535, 5, 119, 0, 0, 2535, 2536, 3, 182, 91, 0, 2536, 2537, 5, 140, 0, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2543, 3, 178, 89, 0, 2539, 2540, 5, 4, 0, 0, 2540, 2542, 3, 178, 89, 0, 2541, 2539, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2547, 5, 3, 0, 0, 2547, 177, 1, 0, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2554, 3, 186, 93, 0, 2550, 2551, 5, 4, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2550, 1, 0, 0, 0, 2553, 2556, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2559, 5, 3, 0, 0, 2558, 2560, 3, 188, 94, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 179, 1, 0, 0, 0, 2561, 2562, 3, 376, 188, 0, 2562, 181, 1, 0, 0, 0, 2563, 2564, 3, 376, 188, 0, 2564, 183, 1, 0, 0, 0, 2565, 2567, 3, 186, 93, 0, 2566, 2568, 3, 188, 94, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 185, 1, 0, 0, 0, 2569, 2570, 3, 246, 123, 0, 2570, 187, 1, 0, 0, 0, 2571, 2573, 5, 20, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2575, 3, 376, 188, 0, 2575, 189, 1, 0, 0, 0, 2576, 2577, 5, 137, 0, 0, 2577, 2578, 5, 197, 0, 0, 2578, 2579, 5, 105, 0, 0, 2579, 191, 1, 0, 0, 0, 2580, 2581, 5, 137, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 193, 1, 0, 0, 0, 2583, 2584, 5, 158, 0, 0, 2584, 2586, 5, 338, 0, 0, 2585, 2587, 5, 211, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 3, 90, 45, 0, 2589, 2598, 5, 2, 0, 0, 2590, 2595, 3, 268, 134, 0, 2591, 2592, 5, 4, 0, 0, 2592, 2594, 3, 268, 134, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2590, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2613, 3, 240, 120, 0, 2602, 2604, 5, 20, 0, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2610, 3, 376, 188, 0, 2606, 2607, 5, 4, 0, 0, 2607, 2609, 3, 376, 188, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2603, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 195, 1, 0, 0, 0, 2615, 2616, 7, 22, 0, 0, 2616, 197, 1, 0, 0, 0, 2617, 2629, 3, 86, 43, 0, 2618, 2620, 5, 158, 0, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2625, 3, 224, 112, 0, 2622, 2624, 3, 200, 100, 0, 2623, 2622, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2617, 1, 0, 0, 0, 2628, 2619, 1, 0, 0, 0, 2629, 199, 1, 0, 0, 0, 2630, 2634, 3, 202, 101, 0, 2631, 2634, 3, 162, 81, 0, 2632, 2634, 3, 168, 84, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 201, 1, 0, 0, 0, 2635, 2636, 3, 204, 102, 0, 2636, 2638, 5, 155, 0, 0, 2637, 2639, 5, 158, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 224, 112, 0, 2641, 2643, 3, 206, 103, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2653, 1, 0, 0, 0, 2644, 2645, 5, 194, 0, 0, 2645, 2646, 3, 204, 102, 0, 2646, 2648, 5, 155, 0, 0, 2647, 2649, 5, 158, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 224, 112, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2635, 1, 0, 0, 0, 2652, 2644, 1, 0, 0, 0, 2653, 203, 1, 0, 0, 0, 2654, 2656, 5, 144, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2679, 1, 0, 0, 0, 2657, 2679, 5, 60, 0, 0, 2658, 2660, 5, 161, 0, 0, 2659, 2661, 5, 211, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2679, 1, 0, 0, 0, 2662, 2664, 5, 161, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2679, 5, 264, 0, 0, 2666, 2668, 5, 250, 0, 0, 2667, 2669, 5, 211, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2679, 1, 0, 0, 0, 2670, 2672, 5, 124, 0, 0, 2671, 2673, 5, 211, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2679, 1, 0, 0, 0, 2674, 2676, 5, 161, 0, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 5, 15, 0, 0, 2678, 2655, 1, 0, 0, 0, 2678, 2657, 1, 0, 0, 0, 2678, 2658, 1, 0, 0, 0, 2678, 2663, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2670, 1, 0, 0, 0, 2678, 2675, 1, 0, 0, 0, 2679, 205, 1, 0, 0, 0, 2680, 2681, 5, 203, 0, 0, 2681, 2685, 3, 276, 138, 0, 2682, 2683, 5, 332, 0, 0, 2683, 2685, 3, 212, 106, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 207, 1, 0, 0, 0, 2686, 2687, 5, 295, 0, 0, 2687, 2689, 5, 2, 0, 0, 2688, 2690, 3, 210, 105, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2696, 5, 3, 0, 0, 2692, 2693, 5, 243, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2695, 5, 382, 0, 0, 2695, 2697, 5, 3, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 209, 1, 0, 0, 0, 2698, 2700, 5, 362, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 7, 23, 0, 0, 2702, 2723, 5, 222, 0, 0, 2703, 2704, 3, 268, 134, 0, 2704, 2705, 5, 258, 0, 0, 2705, 2723, 1, 0, 0, 0, 2706, 2707, 5, 29, 0, 0, 2707, 2708, 5, 382, 0, 0, 2708, 2709, 5, 210, 0, 0, 2709, 2710, 5, 201, 0, 0, 2710, 2719, 5, 382, 0, 0, 2711, 2717, 5, 203, 0, 0, 2712, 2718, 3, 376, 188, 0, 2713, 2714, 3, 370, 185, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2716, 5, 3, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2712, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 268, 134, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2703, 1, 0, 0, 0, 2722, 2706, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 211, 1, 0, 0, 0, 2724, 2725, 5, 2, 0, 0, 2725, 2726, 3, 214, 107, 0, 2726, 2727, 5, 3, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2733, 3, 372, 186, 0, 2729, 2730, 5, 4, 0, 0, 2730, 2732, 3, 372, 186, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 215, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2742, 3, 218, 109, 0, 2738, 2739, 5, 4, 0, 0, 2739, 2741, 3, 218, 109, 0, 2740, 2738, 1, 0, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2746, 5, 3, 0, 0, 2746, 217, 1, 0, 0, 0, 2747, 2749, 3, 372, 186, 0, 2748, 2750, 7, 15, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 219, 1, 0, 0, 0, 2751, 2752, 5, 2, 0, 0, 2752, 2757, 3, 222, 111, 0, 2753, 2754, 5, 4, 0, 0, 2754, 2756, 3, 222, 111, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2759, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2761, 5, 3, 0, 0, 2761, 221, 1, 0, 0, 0, 2762, 2764, 3, 96, 48, 0, 2763, 2765, 3, 24, 12, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 223, 1, 0, 0, 0, 2766, 2770, 3, 86, 43, 0, 2767, 2770, 3, 90, 45, 0, 2768, 2770, 3, 98, 49, 0, 2769, 2766, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 3, 150, 75, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 3, 208, 104, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 3, 240, 120, 0, 2778, 2798, 1, 0, 0, 0, 2779, 2780, 5, 2, 0, 0, 2780, 2781, 3, 26, 13, 0, 2781, 2783, 5, 3, 0, 0, 2782, 2784, 3, 208, 104, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 3, 240, 120, 0, 2786, 2798, 1, 0, 0, 0, 2787, 2788, 5, 2, 0, 0, 2788, 2789, 3, 198, 99, 0, 2789, 2791, 5, 3, 0, 0, 2790, 2792, 3, 208, 104, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 240, 120, 0, 2794, 2798, 1, 0, 0, 0, 2795, 2798, 3, 226, 113, 0, 2796, 2798, 3, 238, 119, 0, 2797, 2769, 1, 0, 0, 0, 2797, 2779, 1, 0, 0, 0, 2797, 2787, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 225, 1, 0, 0, 0, 2799, 2800, 5, 333, 0, 0, 2800, 2805, 3, 268, 134, 0, 2801, 2802, 5, 4, 0, 0, 2802, 2804, 3, 268, 134, 0, 2803, 2801, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2809, 3, 240, 120, 0, 2809, 227, 1, 0, 0, 0, 2810, 2811, 5, 293, 0, 0, 2811, 2813, 3, 86, 43, 0, 2812, 2814, 3, 230, 115, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2830, 1, 0, 0, 0, 2815, 2816, 5, 293, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 86, 43, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 230, 115, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2830, 1, 0, 0, 0, 2822, 2823, 5, 293, 0, 0, 2823, 2824, 5, 2, 0, 0, 2824, 2825, 3, 26, 13, 0, 2825, 2827, 5, 3, 0, 0, 2826, 2828, 3, 230, 115, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2830, 1, 0, 0, 0, 2829, 2810, 1, 0, 0, 0, 2829, 2815, 1, 0, 0, 0, 2829, 2822, 1, 0, 0, 0, 2830, 229, 1, 0, 0, 0, 2831, 2832, 5, 346, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2851, 5, 217, 0, 0, 2834, 2835, 7, 24, 0, 0, 2835, 2848, 5, 31, 0, 0, 2836, 2837, 5, 2, 0, 0, 2837, 2842, 3, 268, 134, 0, 2838, 2839, 5, 4, 0, 0, 2839, 2841, 3, 268, 134, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2844, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2846, 5, 3, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2849, 3, 268, 134, 0, 2848, 2836, 1, 0, 0, 0, 2848, 2847, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2831, 1, 0, 0, 0, 2850, 2834, 1, 0, 0, 0, 2851, 2868, 1, 0, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2866, 5, 31, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2860, 3, 108, 54, 0, 2856, 2857, 5, 4, 0, 0, 2857, 2859, 3, 108, 54, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2863, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2864, 5, 3, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2867, 3, 108, 54, 0, 2866, 2854, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2852, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 231, 1, 0, 0, 0, 2870, 2871, 3, 376, 188, 0, 2871, 2872, 5, 373, 0, 0, 2872, 2873, 3, 228, 114, 0, 2873, 233, 1, 0, 0, 0, 2874, 2877, 3, 228, 114, 0, 2875, 2877, 3, 232, 116, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2875, 1, 0, 0, 0, 2877, 235, 1, 0, 0, 0, 2878, 2881, 3, 234, 117, 0, 2879, 2881, 3, 272, 136, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 237, 1, 0, 0, 0, 2882, 2883, 3, 366, 183, 0, 2883, 2892, 5, 2, 0, 0, 2884, 2889, 3, 236, 118, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 236, 118, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2896, 3, 240, 120, 0, 2896, 239, 1, 0, 0, 0, 2897, 2899, 5, 20, 0, 0, 2898, 2897, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 3, 378, 189, 0, 2901, 2903, 3, 212, 106, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2898, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 241, 1, 0, 0, 0, 2906, 2907, 5, 257, 0, 0, 2907, 2908, 5, 121, 0, 0, 2908, 2909, 5, 266, 0, 0, 2909, 2913, 3, 388, 194, 0, 2910, 2911, 5, 346, 0, 0, 2911, 2912, 5, 267, 0, 0, 2912, 2914, 3, 54, 27, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2956, 1, 0, 0, 0, 2915, 2916, 5, 257, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2927, 5, 85, 0, 0, 2918, 2919, 5, 113, 0, 0, 2919, 2920, 5, 299, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2925, 3, 388, 194, 0, 2922, 2923, 5, 101, 0, 0, 2923, 2924, 5, 31, 0, 0, 2924, 2926, 3, 388, 194, 0, 2925, 2922, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2918, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 48, 0, 0, 2930, 2931, 5, 154, 0, 0, 2931, 2932, 5, 299, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 388, 194, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2941, 1, 0, 0, 0, 2936, 2937, 5, 177, 0, 0, 2937, 2938, 5, 156, 0, 0, 2938, 2939, 5, 299, 0, 0, 2939, 2940, 5, 31, 0, 0, 2940, 2942, 3, 388, 194, 0, 2941, 2936, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2947, 1, 0, 0, 0, 2943, 2944, 5, 166, 0, 0, 2944, 2945, 5, 299, 0, 0, 2945, 2946, 5, 31, 0, 0, 2946, 2948, 3, 388, 194, 0, 2947, 2943, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2953, 1, 0, 0, 0, 2949, 2950, 5, 198, 0, 0, 2950, 2951, 5, 83, 0, 0, 2951, 2952, 5, 20, 0, 0, 2952, 2954, 3, 388, 194, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2906, 1, 0, 0, 0, 2955, 2915, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2962, 3, 246, 123, 0, 2958, 2959, 5, 4, 0, 0, 2959, 2961, 3, 246, 123, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 245, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 372, 186, 0, 2966, 2967, 5, 5, 0, 0, 2967, 2969, 3, 372, 186, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 247, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2978, 3, 250, 125, 0, 2974, 2975, 5, 4, 0, 0, 2975, 2977, 3, 250, 125, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2980, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 249, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 2984, 3, 246, 123, 0, 2982, 2983, 5, 207, 0, 0, 2983, 2985, 3, 54, 27, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 372, 186, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 372, 186, 0, 2992, 253, 1, 0, 0, 0, 2993, 2994, 3, 372, 186, 0, 2994, 2995, 5, 5, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2993, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 372, 186, 0, 2999, 255, 1, 0, 0, 0, 3000, 3003, 3, 92, 46, 0, 3001, 3003, 3, 268, 134, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3011, 1, 0, 0, 0, 3004, 3006, 5, 20, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3009, 1, 0, 0, 0, 3007, 3010, 3, 372, 186, 0, 3008, 3010, 3, 212, 106, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3008, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3005, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3018, 3, 256, 128, 0, 3014, 3015, 5, 4, 0, 0, 3015, 3017, 3, 256, 128, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3022, 5, 2, 0, 0, 3022, 3027, 3, 262, 131, 0, 3023, 3024, 5, 4, 0, 0, 3024, 3026, 3, 262, 131, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3031, 5, 3, 0, 0, 3031, 261, 1, 0, 0, 0, 3032, 3035, 3, 264, 132, 0, 3033, 3035, 3, 336, 168, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 263, 1, 0, 0, 0, 3036, 3050, 3, 370, 185, 0, 3037, 3038, 3, 376, 188, 0, 3038, 3039, 5, 2, 0, 0, 3039, 3044, 3, 266, 133, 0, 3040, 3041, 5, 4, 0, 0, 3041, 3043, 3, 266, 133, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 3, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3037, 1, 0, 0, 0, 3050, 265, 1, 0, 0, 0, 3051, 3054, 3, 370, 185, 0, 3052, 3054, 3, 288, 144, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 267, 1, 0, 0, 0, 3055, 3056, 3, 276, 138, 0, 3056, 269, 1, 0, 0, 0, 3057, 3058, 3, 376, 188, 0, 3058, 3059, 5, 373, 0, 0, 3059, 3060, 3, 268, 134, 0, 3060, 271, 1, 0, 0, 0, 3061, 3064, 3, 268, 134, 0, 3062, 3064, 3, 270, 135, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3070, 3, 268, 134, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 268, 134, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 275, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 6, 138, -1, 0, 3074, 3075, 7, 26, 0, 0, 3075, 3086, 3, 276, 138, 5, 3076, 3077, 5, 105, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3079, 3, 26, 13, 0, 3079, 3080, 5, 3, 0, 0, 3080, 3086, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3084, 3, 278, 139, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3073, 1, 0, 0, 0, 3085, 3076, 1, 0, 0, 0, 3085, 3081, 1, 0, 0, 0, 3086, 3095, 1, 0, 0, 0, 3087, 3088, 10, 2, 0, 0, 3088, 3089, 5, 14, 0, 0, 3089, 3094, 3, 276, 138, 3, 3090, 3091, 10, 1, 0, 0, 3091, 3092, 5, 208, 0, 0, 3092, 3094, 3, 276, 138, 2, 3093, 3087, 1, 0, 0, 0, 3093, 3090, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 277, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 24, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 3104, 5, 14, 0, 0, 3104, 3105, 3, 280, 140, 0, 3105, 3181, 1, 0, 0, 0, 3106, 3108, 5, 197, 0, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 5, 140, 0, 0, 3110, 3111, 5, 2, 0, 0, 3111, 3116, 3, 268, 134, 0, 3112, 3113, 5, 4, 0, 0, 3113, 3115, 3, 268, 134, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3181, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 140, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3127, 3, 26, 13, 0, 3127, 3128, 5, 3, 0, 0, 3128, 3181, 1, 0, 0, 0, 3129, 3131, 5, 197, 0, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 7, 27, 0, 0, 3133, 3181, 3, 280, 140, 0, 3134, 3136, 5, 197, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 7, 28, 0, 0, 3138, 3152, 7, 29, 0, 0, 3139, 3140, 5, 2, 0, 0, 3140, 3153, 5, 3, 0, 0, 3141, 3142, 5, 2, 0, 0, 3142, 3147, 3, 268, 134, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3146, 3, 268, 134, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3151, 5, 3, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3139, 1, 0, 0, 0, 3152, 3141, 1, 0, 0, 0, 3153, 3181, 1, 0, 0, 0, 3154, 3156, 5, 197, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 7, 28, 0, 0, 3158, 3161, 3, 280, 140, 0, 3159, 3160, 5, 100, 0, 0, 3160, 3162, 3, 388, 194, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3181, 1, 0, 0, 0, 3163, 3165, 5, 153, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3181, 5, 198, 0, 0, 3168, 3170, 5, 153, 0, 0, 3169, 3171, 5, 197, 0, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3181, 7, 30, 0, 0, 3173, 3175, 5, 153, 0, 0, 3174, 3176, 5, 197, 0, 0, 3175, 3174, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 92, 0, 0, 3178, 3179, 5, 123, 0, 0, 3179, 3181, 3, 280, 140, 0, 3180, 3099, 1, 0, 0, 0, 3180, 3107, 1, 0, 0, 0, 3180, 3122, 1, 0, 0, 0, 3180, 3130, 1, 0, 0, 0, 3180, 3135, 1, 0, 0, 0, 3180, 3155, 1, 0, 0, 0, 3180, 3163, 1, 0, 0, 0, 3180, 3168, 1, 0, 0, 0, 3180, 3173, 1, 0, 0, 0, 3181, 279, 1, 0, 0, 0, 3182, 3183, 6, 140, -1, 0, 3183, 3187, 3, 284, 142, 0, 3184, 3185, 7, 31, 0, 0, 3185, 3187, 3, 280, 140, 7, 3186, 3182, 1, 0, 0, 0, 3186, 3184, 1, 0, 0, 0, 3187, 3209, 1, 0, 0, 0, 3188, 3189, 10, 6, 0, 0, 3189, 3190, 7, 32, 0, 0, 3190, 3208, 3, 280, 140, 7, 3191, 3192, 10, 5, 0, 0, 3192, 3193, 7, 33, 0, 0, 3193, 3208, 3, 280, 140, 6, 3194, 3195, 10, 4, 0, 0, 3195, 3196, 5, 367, 0, 0, 3196, 3208, 3, 280, 140, 5, 3197, 3198, 10, 3, 0, 0, 3198, 3199, 5, 370, 0, 0, 3199, 3208, 3, 280, 140, 4, 3200, 3201, 10, 2, 0, 0, 3201, 3202, 5, 368, 0, 0, 3202, 3208, 3, 280, 140, 3, 3203, 3204, 10, 1, 0, 0, 3204, 3205, 3, 290, 145, 0, 3205, 3206, 3, 280, 140, 2, 3206, 3208, 1, 0, 0, 0, 3207, 3188, 1, 0, 0, 0, 3207, 3191, 1, 0, 0, 0, 3207, 3194, 1, 0, 0, 0, 3207, 3197, 1, 0, 0, 0, 3207, 3200, 1, 0, 0, 0, 3207, 3203, 1, 0, 0, 0, 3208, 3211, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 281, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3212, 3213, 7, 34, 0, 0, 3213, 283, 1, 0, 0, 0, 3214, 3215, 6, 142, -1, 0, 3215, 3464, 7, 35, 0, 0, 3216, 3217, 7, 36, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 282, 141, 0, 3219, 3221, 3, 388, 194, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 280, 140, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 280, 140, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3464, 1, 0, 0, 0, 3228, 3229, 7, 37, 0, 0, 3229, 3232, 5, 2, 0, 0, 3230, 3233, 3, 282, 141, 0, 3231, 3233, 3, 388, 194, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 4, 0, 0, 3235, 3236, 3, 280, 140, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3238, 3, 280, 140, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3464, 1, 0, 0, 0, 3240, 3242, 5, 35, 0, 0, 3241, 3243, 3, 350, 175, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3248, 1, 0, 0, 0, 3246, 3247, 5, 97, 0, 0, 3247, 3249, 3, 268, 134, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 5, 99, 0, 0, 3251, 3464, 1, 0, 0, 0, 3252, 3253, 5, 35, 0, 0, 3253, 3255, 3, 268, 134, 0, 3254, 3256, 3, 350, 175, 0, 3255, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3261, 1, 0, 0, 0, 3259, 3260, 5, 97, 0, 0, 3260, 3262, 3, 268, 134, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 5, 99, 0, 0, 3264, 3464, 1, 0, 0, 0, 3265, 3266, 7, 38, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3268, 3, 268, 134, 0, 3268, 3269, 5, 20, 0, 0, 3269, 3270, 3, 318, 159, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3464, 1, 0, 0, 0, 3272, 3273, 5, 286, 0, 0, 3273, 3282, 5, 2, 0, 0, 3274, 3279, 3, 256, 128, 0, 3275, 3276, 5, 4, 0, 0, 3276, 3278, 3, 256, 128, 0, 3277, 3275, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 3274, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3464, 5, 3, 0, 0, 3285, 3286, 5, 116, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3290, 3, 268, 134, 0, 3288, 3289, 5, 138, 0, 0, 3289, 3291, 5, 199, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 5, 3, 0, 0, 3293, 3464, 1, 0, 0, 0, 3294, 3295, 5, 17, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 268, 134, 0, 3297, 3298, 5, 138, 0, 0, 3298, 3300, 5, 199, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3464, 1, 0, 0, 0, 3303, 3304, 5, 157, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3308, 3, 268, 134, 0, 3306, 3307, 5, 138, 0, 0, 3307, 3309, 5, 199, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3464, 1, 0, 0, 0, 3312, 3313, 5, 225, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 280, 140, 0, 3315, 3316, 5, 140, 0, 0, 3316, 3317, 3, 280, 140, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3464, 1, 0, 0, 0, 3319, 3464, 3, 288, 144, 0, 3320, 3464, 5, 363, 0, 0, 3321, 3322, 3, 370, 185, 0, 3322, 3323, 5, 5, 0, 0, 3323, 3324, 5, 363, 0, 0, 3324, 3464, 1, 0, 0, 0, 3325, 3326, 5, 2, 0, 0, 3326, 3329, 3, 256, 128, 0, 3327, 3328, 5, 4, 0, 0, 3328, 3330, 3, 256, 128, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 5, 3, 0, 0, 3334, 3464, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 3337, 3, 26, 13, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3464, 1, 0, 0, 0, 3339, 3340, 5, 136, 0, 0, 3340, 3341, 5, 2, 0, 0, 3341, 3342, 3, 268, 134, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3464, 1, 0, 0, 0, 3344, 3345, 3, 366, 183, 0, 3345, 3357, 5, 2, 0, 0, 3346, 3348, 3, 196, 98, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3354, 3, 272, 136, 0, 3350, 3351, 5, 4, 0, 0, 3351, 3353, 3, 272, 136, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3347, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 5, 3, 0, 0, 3360, 3361, 5, 114, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 344, 0, 0, 3363, 3364, 3, 276, 138, 0, 3364, 3365, 5, 3, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3369, 7, 39, 0, 0, 3369, 3371, 5, 199, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3373, 5, 213, 0, 0, 3373, 3375, 3, 358, 179, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3464, 1, 0, 0, 0, 3376, 3377, 3, 376, 188, 0, 3377, 3378, 5, 372, 0, 0, 3378, 3379, 3, 268, 134, 0, 3379, 3464, 1, 0, 0, 0, 3380, 3381, 5, 2, 0, 0, 3381, 3384, 3, 376, 188, 0, 3382, 3383, 5, 4, 0, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3390, 5, 372, 0, 0, 3390, 3391, 3, 268, 134, 0, 3391, 3464, 1, 0, 0, 0, 3392, 3464, 3, 376, 188, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 268, 134, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3464, 1, 0, 0, 0, 3397, 3398, 5, 110, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 376, 188, 0, 3400, 3401, 5, 123, 0, 0, 3401, 3402, 3, 280, 140, 0, 3402, 3403, 5, 3, 0, 0, 3403, 3464, 1, 0, 0, 0, 3404, 3405, 7, 40, 0, 0, 3405, 3406, 5, 2, 0, 0, 3406, 3407, 3, 280, 140, 0, 3407, 3408, 7, 41, 0, 0, 3408, 3411, 3, 280, 140, 0, 3409, 3410, 7, 42, 0, 0, 3410, 3412, 3, 280, 140, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3464, 1, 0, 0, 0, 3415, 3416, 5, 315, 0, 0, 3416, 3418, 5, 2, 0, 0, 3417, 3419, 7, 43, 0, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 280, 140, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 5, 123, 0, 0, 3424, 3425, 3, 280, 140, 0, 3425, 3426, 5, 3, 0, 0, 3426, 3464, 1, 0, 0, 0, 3427, 3428, 5, 215, 0, 0, 3428, 3429, 5, 2, 0, 0, 3429, 3430, 3, 280, 140, 0, 3430, 3431, 5, 224, 0, 0, 3431, 3432, 3, 280, 140, 0, 3432, 3433, 5, 123, 0, 0, 3433, 3436, 3, 280, 140, 0, 3434, 3435, 5, 119, 0, 0, 3435, 3437, 3, 280, 140, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3464, 1, 0, 0, 0, 3440, 3441, 7, 44, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 280, 140, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3445, 5, 347, 0, 0, 3445, 3446, 5, 130, 0, 0, 3446, 3447, 5, 2, 0, 0, 3447, 3448, 5, 209, 0, 0, 3448, 3449, 5, 31, 0, 0, 3449, 3450, 3, 108, 54, 0, 3450, 3457, 5, 3, 0, 0, 3451, 3452, 5, 114, 0, 0, 3452, 3453, 5, 2, 0, 0, 3453, 3454, 5, 344, 0, 0, 3454, 3455, 3, 276, 138, 0, 3455, 3456, 5, 3, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3460, 5, 213, 0, 0, 3460, 3462, 3, 358, 179, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3214, 1, 0, 0, 0, 3463, 3216, 1, 0, 0, 0, 3463, 3228, 1, 0, 0, 0, 3463, 3240, 1, 0, 0, 0, 3463, 3252, 1, 0, 0, 0, 3463, 3265, 1, 0, 0, 0, 3463, 3272, 1, 0, 0, 0, 3463, 3285, 1, 0, 0, 0, 3463, 3294, 1, 0, 0, 0, 3463, 3303, 1, 0, 0, 0, 3463, 3312, 1, 0, 0, 0, 3463, 3319, 1, 0, 0, 0, 3463, 3320, 1, 0, 0, 0, 3463, 3321, 1, 0, 0, 0, 3463, 3325, 1, 0, 0, 0, 3463, 3335, 1, 0, 0, 0, 3463, 3339, 1, 0, 0, 0, 3463, 3344, 1, 0, 0, 0, 3463, 3376, 1, 0, 0, 0, 3463, 3380, 1, 0, 0, 0, 3463, 3392, 1, 0, 0, 0, 3463, 3393, 1, 0, 0, 0, 3463, 3397, 1, 0, 0, 0, 3463, 3404, 1, 0, 0, 0, 3463, 3415, 1, 0, 0, 0, 3463, 3427, 1, 0, 0, 0, 3463, 3440, 1, 0, 0, 0, 3464, 3475, 1, 0, 0, 0, 3465, 3466, 10, 9, 0, 0, 3466, 3467, 5, 6, 0, 0, 3467, 3468, 3, 280, 140, 0, 3468, 3469, 5, 7, 0, 0, 3469, 3474, 1, 0, 0, 0, 3470, 3471, 10, 7, 0, 0, 3471, 3472, 5, 5, 0, 0, 3472, 3474, 3, 376, 188, 0, 3473, 3465, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 285, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3486, 5, 71, 0, 0, 3479, 3486, 5, 303, 0, 0, 3480, 3486, 5, 304, 0, 0, 3481, 3486, 5, 305, 0, 0, 3482, 3486, 5, 149, 0, 0, 3483, 3486, 5, 133, 0, 0, 3484, 3486, 3, 376, 188, 0, 3485, 3478, 1, 0, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 287, 1, 0, 0, 0, 3487, 3503, 5, 198, 0, 0, 3488, 3503, 5, 376, 0, 0, 3489, 3490, 5, 371, 0, 0, 3490, 3503, 3, 376, 188, 0, 3491, 3503, 3, 298, 149, 0, 3492, 3493, 3, 286, 143, 0, 3493, 3494, 3, 388, 194, 0, 3494, 3503, 1, 0, 0, 0, 3495, 3503, 3, 384, 192, 0, 3496, 3503, 3, 296, 148, 0, 3497, 3499, 3, 388, 194, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3487, 1, 0, 0, 0, 3502, 3488, 1, 0, 0, 0, 3502, 3489, 1, 0, 0, 0, 3502, 3491, 1, 0, 0, 0, 3502, 3492, 1, 0, 0, 0, 3502, 3495, 1, 0, 0, 0, 3502, 3496, 1, 0, 0, 0, 3502, 3498, 1, 0, 0, 0, 3503, 289, 1, 0, 0, 0, 3504, 3505, 7, 45, 0, 0, 3505, 291, 1, 0, 0, 0, 3506, 3507, 7, 46, 0, 0, 3507, 293, 1, 0, 0, 0, 3508, 3509, 7, 47, 0, 0, 3509, 295, 1, 0, 0, 0, 3510, 3511, 7, 48, 0, 0, 3511, 297, 1, 0, 0, 0, 3512, 3515, 5, 149, 0, 0, 3513, 3516, 3, 300, 150, 0, 3514, 3516, 3, 304, 152, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 299, 1, 0, 0, 0, 3517, 3519, 3, 302, 151, 0, 3518, 3520, 3, 306, 153, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3522, 3, 308, 154, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3525, 1, 0, 0, 0, 3524, 3521, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 303, 1, 0, 0, 0, 3528, 3531, 3, 306, 153, 0, 3529, 3532, 3, 302, 151, 0, 3530, 3532, 3, 306, 153, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 305, 1, 0, 0, 0, 3533, 3534, 3, 308, 154, 0, 3534, 3535, 3, 312, 156, 0, 3535, 3536, 5, 309, 0, 0, 3536, 3537, 3, 312, 156, 0, 3537, 307, 1, 0, 0, 0, 3538, 3540, 7, 49, 0, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3544, 1, 0, 0, 0, 3541, 3545, 5, 382, 0, 0, 3542, 3545, 5, 384, 0, 0, 3543, 3545, 3, 388, 194, 0, 3544, 3541, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3543, 1, 0, 0, 0, 3545, 309, 1, 0, 0, 0, 3546, 3547, 7, 50, 0, 0, 3547, 311, 1, 0, 0, 0, 3548, 3549, 7, 51, 0, 0, 3549, 313, 1, 0, 0, 0, 3550, 3554, 5, 116, 0, 0, 3551, 3552, 5, 9, 0, 0, 3552, 3554, 3, 372, 186, 0, 3553, 3550, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 315, 1, 0, 0, 0, 3555, 3586, 5, 27, 0, 0, 3556, 3586, 5, 308, 0, 0, 3557, 3586, 5, 32, 0, 0, 3558, 3586, 5, 276, 0, 0, 3559, 3586, 5, 272, 0, 0, 3560, 3586, 5, 150, 0, 0, 3561, 3586, 5, 151, 0, 0, 3562, 3586, 5, 25, 0, 0, 3563, 3586, 5, 174, 0, 0, 3564, 3586, 5, 117, 0, 0, 3565, 3586, 5, 234, 0, 0, 3566, 3586, 5, 95, 0, 0, 3567, 3586, 5, 71, 0, 0, 3568, 3586, 5, 303, 0, 0, 3569, 3586, 5, 305, 0, 0, 3570, 3586, 5, 304, 0, 0, 3571, 3586, 5, 285, 0, 0, 3572, 3586, 5, 41, 0, 0, 3573, 3586, 5, 40, 0, 0, 3574, 3586, 5, 334, 0, 0, 3575, 3586, 5, 26, 0, 0, 3576, 3586, 5, 80, 0, 0, 3577, 3586, 5, 79, 0, 0, 3578, 3586, 5, 200, 0, 0, 3579, 3586, 5, 340, 0, 0, 3580, 3586, 5, 149, 0, 0, 3581, 3586, 5, 19, 0, 0, 3582, 3586, 5, 286, 0, 0, 3583, 3586, 5, 177, 0, 0, 3584, 3586, 3, 376, 188, 0, 3585, 3555, 1, 0, 0, 0, 3585, 3556, 1, 0, 0, 0, 3585, 3557, 1, 0, 0, 0, 3585, 3558, 1, 0, 0, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3560, 1, 0, 0, 0, 3585, 3561, 1, 0, 0, 0, 3585, 3562, 1, 0, 0, 0, 3585, 3563, 1, 0, 0, 0, 3585, 3564, 1, 0, 0, 0, 3585, 3565, 1, 0, 0, 0, 3585, 3566, 1, 0, 0, 0, 3585, 3567, 1, 0, 0, 0, 3585, 3568, 1, 0, 0, 0, 3585, 3569, 1, 0, 0, 0, 3585, 3570, 1, 0, 0, 0, 3585, 3571, 1, 0, 0, 0, 3585, 3572, 1, 0, 0, 0, 3585, 3573, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3576, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3578, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3585, 3580, 1, 0, 0, 0, 3585, 3581, 1, 0, 0, 0, 3585, 3582, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3585, 3584, 1, 0, 0, 0, 3586, 317, 1, 0, 0, 0, 3587, 3588, 5, 19, 0, 0, 3588, 3589, 5, 356, 0, 0, 3589, 3590, 3, 318, 159, 0, 3590, 3591, 5, 358, 0, 0, 3591, 3634, 1, 0, 0, 0, 3592, 3593, 5, 177, 0, 0, 3593, 3594, 5, 356, 0, 0, 3594, 3595, 3, 318, 159, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 318, 159, 0, 3597, 3598, 5, 358, 0, 0, 3598, 3634, 1, 0, 0, 0, 3599, 3606, 5, 286, 0, 0, 3600, 3602, 5, 356, 0, 0, 3601, 3603, 3, 346, 173, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3607, 5, 358, 0, 0, 3605, 3607, 5, 354, 0, 0, 3606, 3600, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 3634, 1, 0, 0, 0, 3608, 3609, 5, 149, 0, 0, 3609, 3612, 7, 52, 0, 0, 3610, 3611, 5, 309, 0, 0, 3611, 3613, 5, 186, 0, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3634, 1, 0, 0, 0, 3614, 3615, 5, 149, 0, 0, 3615, 3618, 7, 53, 0, 0, 3616, 3617, 5, 309, 0, 0, 3617, 3619, 7, 54, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3634, 1, 0, 0, 0, 3620, 3631, 3, 316, 158, 0, 3621, 3622, 5, 2, 0, 0, 3622, 3627, 5, 382, 0, 0, 3623, 3624, 5, 4, 0, 0, 3624, 3626, 5, 382, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 3, 0, 0, 3631, 3621, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3587, 1, 0, 0, 0, 3633, 3592, 1, 0, 0, 0, 3633, 3599, 1, 0, 0, 0, 3633, 3608, 1, 0, 0, 0, 3633, 3614, 1, 0, 0, 0, 3633, 3620, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3640, 3, 322, 161, 0, 3636, 3637, 5, 4, 0, 0, 3637, 3639, 3, 322, 161, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 321, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3644, 3, 96, 48, 0, 3644, 3648, 3, 318, 159, 0, 3645, 3647, 3, 328, 164, 0, 3646, 3645, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 323, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3656, 3, 326, 163, 0, 3652, 3653, 5, 4, 0, 0, 3653, 3655, 3, 326, 163, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 325, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 3, 92, 46, 0, 3660, 3664, 3, 318, 159, 0, 3661, 3663, 3, 328, 164, 0, 3662, 3661, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 327, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3667, 3668, 5, 197, 0, 0, 3668, 3673, 5, 198, 0, 0, 3669, 3673, 3, 330, 165, 0, 3670, 3673, 3, 24, 12, 0, 3671, 3673, 3, 314, 157, 0, 3672, 3667, 1, 0, 0, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 329, 1, 0, 0, 0, 3674, 3675, 5, 82, 0, 0, 3675, 3676, 3, 268, 134, 0, 3676, 331, 1, 0, 0, 0, 3677, 3678, 7, 55, 0, 0, 3678, 3679, 3, 268, 134, 0, 3679, 333, 1, 0, 0, 0, 3680, 3685, 3, 336, 168, 0, 3681, 3682, 5, 4, 0, 0, 3682, 3684, 3, 336, 168, 0, 3683, 3681, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 335, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3688, 3689, 3, 372, 186, 0, 3689, 3692, 3, 318, 159, 0, 3690, 3691, 5, 197, 0, 0, 3691, 3693, 5, 198, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 3, 24, 12, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3702, 3, 340, 170, 0, 3698, 3699, 5, 4, 0, 0, 3699, 3701, 3, 340, 170, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 339, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 3, 96, 48, 0, 3706, 3710, 3, 318, 159, 0, 3707, 3709, 3, 342, 171, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 341, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 5, 197, 0, 0, 3714, 3719, 5, 198, 0, 0, 3715, 3719, 3, 330, 165, 0, 3716, 3719, 3, 344, 172, 0, 3717, 3719, 3, 24, 12, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 5, 127, 0, 0, 3721, 3722, 5, 12, 0, 0, 3722, 3723, 5, 20, 0, 0, 3723, 3724, 5, 2, 0, 0, 3724, 3725, 3, 268, 134, 0, 3725, 3726, 5, 3, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3732, 3, 348, 174, 0, 3728, 3729, 5, 4, 0, 0, 3729, 3731, 3, 348, 174, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3734, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 347, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3737, 3, 376, 188, 0, 3736, 3738, 5, 371, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3742, 3, 318, 159, 0, 3740, 3741, 5, 197, 0, 0, 3741, 3743, 5, 198, 0, 0, 3742, 3740, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 3, 24, 12, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 349, 1, 0, 0, 0, 3747, 3748, 5, 343, 0, 0, 3748, 3749, 3, 268, 134, 0, 3749, 3750, 5, 300, 0, 0, 3750, 3751, 3, 268, 134, 0, 3751, 351, 1, 0, 0, 0, 3752, 3753, 5, 345, 0, 0, 3753, 3758, 3, 356, 178, 0, 3754, 3755, 5, 4, 0, 0, 3755, 3757, 3, 356, 178, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 353, 1, 0, 0, 0, 3760, 3758, 1, 0, 0, 0, 3761, 3762, 5, 351, 0, 0, 3762, 3763, 5, 31, 0, 0, 3763, 3764, 3, 94, 47, 0, 3764, 355, 1, 0, 0, 0, 3765, 3766, 3, 372, 186, 0, 3766, 3767, 5, 20, 0, 0, 3767, 3768, 3, 358, 179, 0, 3768, 357, 1, 0, 0, 0, 3769, 3816, 3, 372, 186, 0, 3770, 3771, 5, 2, 0, 0, 3771, 3772, 3, 372, 186, 0, 3772, 3773, 5, 3, 0, 0, 3773, 3816, 1, 0, 0, 0, 3774, 3809, 5, 2, 0, 0, 3775, 3776, 5, 44, 0, 0, 3776, 3777, 5, 31, 0, 0, 3777, 3782, 3, 268, 134, 0, 3778, 3779, 5, 4, 0, 0, 3779, 3781, 3, 268, 134, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3810, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 7, 24, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 268, 134, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 268, 134, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3807, 1, 0, 0, 0, 3797, 3798, 7, 25, 0, 0, 3798, 3799, 5, 31, 0, 0, 3799, 3804, 3, 108, 54, 0, 3800, 3801, 5, 4, 0, 0, 3801, 3803, 3, 108, 54, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3808, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3797, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3775, 1, 0, 0, 0, 3809, 3795, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 360, 180, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 5, 3, 0, 0, 3815, 3769, 1, 0, 0, 0, 3815, 3770, 1, 0, 0, 0, 3815, 3774, 1, 0, 0, 0, 3816, 359, 1, 0, 0, 0, 3817, 3818, 5, 233, 0, 0, 3818, 3834, 3, 362, 181, 0, 3819, 3820, 5, 258, 0, 0, 3820, 3834, 3, 362, 181, 0, 3821, 3822, 5, 233, 0, 0, 3822, 3823, 5, 24, 0, 0, 3823, 3824, 3, 362, 181, 0, 3824, 3825, 5, 14, 0, 0, 3825, 3826, 3, 362, 181, 0, 3826, 3834, 1, 0, 0, 0, 3827, 3828, 5, 258, 0, 0, 3828, 3829, 5, 24, 0, 0, 3829, 3830, 3, 362, 181, 0, 3830, 3831, 5, 14, 0, 0, 3831, 3832, 3, 362, 181, 0, 3832, 3834, 1, 0, 0, 0, 3833, 3817, 1, 0, 0, 0, 3833, 3819, 1, 0, 0, 0, 3833, 3821, 1, 0, 0, 0, 3833, 3827, 1, 0, 0, 0, 3834, 361, 1, 0, 0, 0, 3835, 3836, 5, 321, 0, 0, 3836, 3843, 7, 56, 0, 0, 3837, 3838, 5, 62, 0, 0, 3838, 3843, 5, 257, 0, 0, 3839, 3840, 3, 268, 134, 0, 3840, 3841, 7, 56, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3835, 1, 0, 0, 0, 3842, 3837, 1, 0, 0, 0, 3842, 3839, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3849, 3, 370, 185, 0, 3845, 3846, 5, 4, 0, 0, 3846, 3848, 3, 370, 185, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3853, 5, 136, 0, 0, 3853, 3854, 5, 2, 0, 0, 3854, 3855, 3, 268, 134, 0, 3855, 3856, 5, 3, 0, 0, 3856, 3862, 1, 0, 0, 0, 3857, 3862, 3, 370, 185, 0, 3858, 3862, 5, 114, 0, 0, 3859, 3862, 5, 161, 0, 0, 3860, 3862, 5, 250, 0, 0, 3861, 3852, 1, 0, 0, 0, 3861, 3857, 1, 0, 0, 0, 3861, 3858, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3861, 3860, 1, 0, 0, 0, 3862, 367, 1, 0, 0, 0, 3863, 3864, 3, 370, 185, 0, 3864, 369, 1, 0, 0, 0, 3865, 3870, 3, 376, 188, 0, 3866, 3867, 5, 5, 0, 0, 3867, 3869, 3, 376, 188, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 371, 1, 0, 0, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3874, 3, 376, 188, 0, 3874, 3875, 3, 374, 187, 0, 3875, 373, 1, 0, 0, 0, 3876, 3877, 5, 362, 0, 0, 3877, 3879, 3, 376, 188, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3878, 1, 0, 0, 0, 3883, 3882, 1, 0, 0, 0, 3884, 375, 1, 0, 0, 0, 3885, 3888, 3, 378, 189, 0, 3886, 3888, 3, 396, 198, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3886, 1, 0, 0, 0, 3888, 377, 1, 0, 0, 0, 3889, 3894, 5, 388, 0, 0, 3890, 3894, 3, 380, 190, 0, 3891, 3894, 3, 394, 197, 0, 3892, 3894, 3, 398, 199, 0, 3893, 3889, 1, 0, 0, 0, 3893, 3890, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3892, 1, 0, 0, 0, 3894, 379, 1, 0, 0, 0, 3895, 3896, 7, 57, 0, 0, 3896, 381, 1, 0, 0, 0, 3897, 3898, 5, 389, 0, 0, 3898, 383, 1, 0, 0, 0, 3899, 3901, 5, 362, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3940, 5, 383, 0, 0, 3903, 3905, 5, 362, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3940, 5, 384, 0, 0, 3907, 3909, 5, 362, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3940, 7, 58, 0, 0, 3911, 3913, 5, 362, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3940, 5, 382, 0, 0, 3915, 3917, 5, 362, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3940, 5, 379, 0, 0, 3919, 3921, 5, 362, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3940, 5, 380, 0, 0, 3923, 3925, 5, 362, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3940, 5, 381, 0, 0, 3927, 3929, 5, 362, 0, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3940, 5, 386, 0, 0, 3931, 3933, 5, 362, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3940, 5, 385, 0, 0, 3935, 3937, 5, 362, 0, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 5, 387, 0, 0, 3939, 3900, 1, 0, 0, 0, 3939, 3904, 1, 0, 0, 0, 3939, 3908, 1, 0, 0, 0, 3939, 3912, 1, 0, 0, 0, 3939, 3916, 1, 0, 0, 0, 3939, 3920, 1, 0, 0, 0, 3939, 3924, 1, 0, 0, 0, 3939, 3928, 1, 0, 0, 0, 3939, 3932, 1, 0, 0, 0, 3939, 3936, 1, 0, 0, 0, 3940, 385, 1, 0, 0, 0, 3941, 3942, 5, 319, 0, 0, 3942, 3953, 3, 318, 159, 0, 3943, 3953, 3, 24, 12, 0, 3944, 3953, 3, 314, 157, 0, 3945, 3946, 7, 59, 0, 0, 3946, 3947, 5, 197, 0, 0, 3947, 3953, 5, 198, 0, 0, 3948, 3949, 5, 269, 0, 0, 3949, 3953, 3, 330, 165, 0, 3950, 3951, 5, 96, 0, 0, 3951, 3953, 5, 82, 0, 0, 3952, 3941, 1, 0, 0, 0, 3952, 3943, 1, 0, 0, 0, 3952, 3944, 1, 0, 0, 0, 3952, 3945, 1, 0, 0, 0, 3952, 3948, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 387, 1, 0, 0, 0, 3954, 3955, 7, 60, 0, 0, 3955, 389, 1, 0, 0, 0, 3956, 3959, 3, 388, 194, 0, 3957, 3959, 5, 198, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 391, 1, 0, 0, 0, 3960, 3963, 5, 382, 0, 0, 3961, 3963, 3, 388, 194, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3961, 1, 0, 0, 0, 3963, 393, 1, 0, 0, 0, 3964, 3965, 7, 61, 0, 0, 3965, 395, 1, 0, 0, 0, 3966, 3967, 7, 62, 0, 0, 3967, 397, 1, 0, 0, 0, 3968, 3969, 7, 63, 0, 0, 3969, 399, 1, 0, 0, 0, 517, 403, 410, 414, 419, 426, 431, 439, 441, 460, 464, 470, 473, 476, 483, 486, 490, 493, 498, 510, 512, 520, 523, 527, 530, 536, 547, 553, 558, 591, 601, 612, 623, 634, 639, 648, 652, 658, 662, 667, 673, 685, 693, 699, 710, 714, 719, 734, 738, 745, 749, 755, 784, 788, 793, 800, 806, 809, 812, 816, 820, 828, 830, 839, 842, 851, 856, 862, 869, 872, 876, 887, 890, 896, 900, 915, 917, 925, 929, 935, 938, 942, 945, 951, 956, 960, 967, 970, 973, 980, 985, 994, 1002, 1008, 1011, 1014, 1020, 1024, 1029, 1032, 1036, 1038, 1046, 1054, 1057, 1064, 1067, 1070, 1079, 1084, 1090, 1095, 1098, 1102, 1105, 1109, 1137, 1140, 1148, 1154, 1157, 1160, 1165, 1173, 1178, 1184, 1190, 1193, 1200, 1207, 1215, 1232, 1259, 1262, 1268, 1277, 1286, 1292, 1297, 1302, 1309, 1314, 1319, 1326, 1334, 1337, 1341, 1353, 1357, 1364, 1480, 1488, 1496, 1505, 1515, 1519, 1522, 1526, 1532, 1544, 1556, 1561, 1570, 1578, 1583, 1585, 1593, 1598, 1602, 1605, 1613, 1618, 1627, 1632, 1635, 1640, 1644, 1649, 1651, 1655, 1664, 1672, 1678, 1689, 1696, 1705, 1710, 1713, 1736, 1738, 1750, 1757, 1760, 1767, 1771, 1777, 1785, 1792, 1795, 1803, 1814, 1825, 1833, 1839, 1851, 1858, 1865, 1877, 1885, 1891, 1897, 1900, 1916, 1923, 1934, 1943, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1985, 1990, 1992, 1996, 2007, 2013, 2019, 2022, 2024, 2036, 2040, 2043, 2047, 2053, 2057, 2065, 2069, 2072, 2075, 2078, 2082, 2086, 2091, 2095, 2098, 2101, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2128, 2134, 2141, 2146, 2149, 2152, 2156, 2166, 2170, 2172, 2175, 2179, 2185, 2189, 2200, 2210, 2214, 2226, 2238, 2253, 2258, 2264, 2271, 2287, 2292, 2305, 2310, 2318, 2324, 2328, 2331, 2336, 2343, 2349, 2358, 2368, 2383, 2388, 2390, 2395, 2404, 2417, 2422, 2426, 2433, 2438, 2442, 2445, 2448, 2462, 2475, 2480, 2484, 2487, 2491, 2497, 2500, 2507, 2519, 2530, 2543, 2554, 2559, 2567, 2572, 2586, 2595, 2598, 2603, 2610, 2613, 2619, 2625, 2628, 2633, 2638, 2642, 2648, 2652, 2655, 2660, 2663, 2668, 2672, 2675, 2678, 2684, 2689, 2696, 2699, 2717, 2719, 2722, 2733, 2742, 2749, 2757, 2764, 2769, 2772, 2775, 2783, 2791, 2797, 2805, 2813, 2820, 2827, 2829, 2842, 2848, 2850, 2860, 2866, 2868, 2876, 2880, 2889, 2892, 2898, 2902, 2904, 2913, 2925, 2927, 2934, 2941, 2947, 2953, 2955, 2962, 2970, 2978, 2984, 2989, 2996, 3002, 3005, 3009, 3011, 3018, 3027, 3034, 3044, 3049, 3053, 3063, 3070, 3083, 3085, 3093, 3095, 3099, 3107, 3116, 3122, 3130, 3135, 3147, 3152, 3155, 3161, 3165, 3170, 3175, 3180, 3186, 3207, 3209, 3220, 3232, 3244, 3248, 3257, 3261, 3279, 3282, 3290, 3299, 3308, 3331, 3347, 3354, 3357, 3366, 3370, 3374, 3386, 3411, 3418, 3421, 3436, 3457, 3461, 3463, 3473, 3475, 3485, 3500, 3502, 3515, 3519, 3526, 3531, 3539, 3544, 3553, 3585, 3602, 3606, 3612, 3618, 3627, 3631, 3633, 3640, 3648, 3656, 3664, 3672, 3685, 3692, 3695, 3702, 3710, 3718, 3732, 3737, 3742, 3745, 3758, 3782, 3792, 3795, 3804, 3807, 3809, 3812, 3815, 3833, 3842, 3849, 3861, 3870, 3880, 3883, 3887, 3893, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3939, 3952, 3958, 3962] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.tokens b/src/lib/spark/SparkSqlParser.tokens index 321c4a5..d88918b 100644 --- a/src/lib/spark/SparkSqlParser.tokens +++ b/src/lib/spark/SparkSqlParser.tokens @@ -159,237 +159,238 @@ KW_LATERAL=158 KW_LAZY=159 KW_LEADING=160 KW_LEFT=161 -KW_LIKE=162 -KW_ILIKE=163 -KW_LIMIT=164 -KW_LINES=165 -KW_LIST=166 -KW_LOAD=167 -KW_LOCAL=168 -KW_LOCATION=169 -KW_LOCK=170 -KW_LOCKS=171 -KW_LOGICAL=172 -KW_LONG=173 -KW_MACRO=174 -KW_MATERIALIZED=175 -KW_MAP=176 -KW_MATCHED=177 -KW_MERGE=178 -KW_MICROSECOND=179 -KW_MICROSECONDS=180 -KW_MILLISECOND=181 -KW_MILLISECONDS=182 -KW_MINUTE=183 -KW_MINUTES=184 -KW_MONTH=185 -KW_MONTHS=186 -KW_MSCK=187 -KW_NAME=188 -KW_NAMESPACE=189 -KW_NAMESPACES=190 -KW_NANOSECOND=191 -KW_NANOSECONDS=192 -KW_NATURAL=193 -KW_NO=194 -KW_NOSCAN=195 -KW_NOT=196 -KW_NULL=197 -KW_NULLS=198 -KW_NUMERIC=199 -KW_OF=200 -KW_OFFSET=201 -KW_ON=202 -KW_ONLY=203 -KW_OPTIMIZE=204 -KW_OPTION=205 -KW_OPTIONS=206 -KW_OR=207 -KW_ORDER=208 -KW_OUT=209 -KW_OUTER=210 -KW_OUTPUTFORMAT=211 -KW_OVER=212 -KW_OVERLAPS=213 -KW_OVERLAY=214 -KW_OVERWRITE=215 -KW_PARTITION=216 -KW_PARTITIONED=217 -KW_PARTITIONS=218 -KW_PERCENTILE_CONT=219 -KW_PERCENTILE_DISC=220 -KW_PERCENTLIT=221 -KW_PIVOT=222 -KW_PLACING=223 -KW_POSITION=224 -KW_PRECEDING=225 -KW_PRIMARY=226 -KW_PRINCIPALS=227 -KW_PROPERTIES=228 -KW_PURGE=229 -KW_QUARTER=230 -KW_QUERY=231 -KW_RANGE=232 -KW_REAL=233 -KW_RECORDREADER=234 -KW_RECORDWRITER=235 -KW_RECOVER=236 -KW_REDUCE=237 -KW_REFERENCES=238 -KW_REFRESH=239 -KW_RENAME=240 -KW_REPAIR=241 -KW_REPEATABLE=242 -KW_REPLACE=243 -KW_RESET=244 -KW_RESPECT=245 -KW_RESTRICT=246 -KW_REWRITE=247 -KW_REVOKE=248 -KW_RIGHT=249 -KW_RLIKE=250 -KW_REGEXP=251 -KW_ROLE=252 -KW_ROLES=253 -KW_ROLLBACK=254 -KW_ROLLUP=255 -KW_ROW=256 -KW_ROWS=257 -KW_SECOND=258 -KW_SECONDS=259 -KW_SCHEMA=260 -KW_SCHEMAS=261 -KW_SELECT=262 -KW_SEMI=263 -KW_SEPARATED=264 -KW_SERDE=265 -KW_SERDEPROPERTIES=266 -KW_SESSION_USER=267 -KW_SET=268 -KW_MINUS=269 -KW_SETS=270 -KW_SHORT=271 -KW_SHOW=272 -KW_SINGLE=273 -KW_SKEWED=274 -KW_SMALLINT=275 -KW_SOME=276 -KW_SORT=277 -KW_SORTED=278 -KW_SOURCE=279 -KW_START=280 -KW_STATISTICS=281 -KW_STORED=282 -KW_STRATIFY=283 -KW_STRING=284 -KW_STRUCT=285 -KW_SUBSTR=286 -KW_SUBSTRING=287 -KW_SYNC=288 -KW_SYSTEM=289 -KW_SYSTEM_TIME=290 -KW_SYSTEM_VERSION=291 -KW_TABLE=292 -KW_TABLES=293 -KW_TABLESAMPLE=294 -KW_TARGET=295 -KW_TBLPROPERTIES=296 -KW_TEMPORARY=297 -KW_TERMINATED=298 -KW_THEN=299 -KW_TIME=300 -KW_TIMEDIFF=301 -KW_TIMESTAMP=302 -KW_TIMESTAMP_LTZ=303 -KW_TIMESTAMP_NTZ=304 -KW_TIMESTAMPADD=305 -KW_TIMESTAMPDIFF=306 -KW_TINYINT=307 -KW_TO=308 -KW_TOUCH=309 -KW_TRAILING=310 -KW_TRANSACTION=311 -KW_TRANSACTIONS=312 -KW_TRANSFORM=313 -KW_TRIM=314 -KW_TRUE=315 -KW_TRUNCATE=316 -KW_TRY_CAST=317 -KW_TYPE=318 -KW_UNARCHIVE=319 -KW_UNBOUNDED=320 -KW_UNCACHE=321 -KW_UNION=322 -KW_UNIQUE=323 -KW_UNKNOWN=324 -KW_UNLOCK=325 -KW_UNPIVOT=326 -KW_UNSET=327 -KW_UPDATE=328 -KW_USE=329 -KW_USER=330 -KW_USING=331 -KW_VALUES=332 -KW_VARCHAR=333 -KW_VAR=334 -KW_VARIABLE=335 -KW_VERSION=336 -KW_VIEW=337 -KW_VIEWS=338 -KW_VOID=339 -KW_WEEK=340 -KW_WEEKS=341 -KW_WHEN=342 -KW_WHERE=343 -KW_WINDOW=344 -KW_WITH=345 -KW_WITHIN=346 -KW_YEAR=347 -KW_YEARS=348 -KW_ZONE=349 -KW_ZORDER=350 -EQ=351 -NSEQ=352 -NEQ=353 -NEQJ=354 -LT=355 -LTE=356 -GT=357 -GTE=358 -NOT=359 -PLUS=360 -MINUS=361 -ASTERISK=362 -SLASH=363 -PERCENT=364 -TILDE=365 -AMPERSAND=366 -PIPE=367 -CONCAT_PIPE=368 -HAT=369 -COLON=370 -ARROW=371 -FAT_ARROW=372 -HENT_START=373 -HENT_END=374 -QUESTION=375 -STRING_LITERAL=376 -DOUBLEQUOTED_STRING=377 -BIGINT_LITERAL=378 -SMALLINT_LITERAL=379 -TINYINT_LITERAL=380 -INTEGER_VALUE=381 -EXPONENT_VALUE=382 -DECIMAL_VALUE=383 -FLOAT_LITERAL=384 -DOUBLE_LITERAL=385 -BIGDECIMAL_LITERAL=386 -IDENTIFIER=387 -BACKQUOTED_IDENTIFIER=388 -SIMPLE_COMMENT=389 -BRACKETED_COMMENT=390 -WS=391 -UNRECOGNIZED=392 +KW_LIFECYCLE=162 +KW_LIKE=163 +KW_ILIKE=164 +KW_LIMIT=165 +KW_LINES=166 +KW_LIST=167 +KW_LOAD=168 +KW_LOCAL=169 +KW_LOCATION=170 +KW_LOCK=171 +KW_LOCKS=172 +KW_LOGICAL=173 +KW_LONG=174 +KW_MACRO=175 +KW_MATERIALIZED=176 +KW_MAP=177 +KW_MATCHED=178 +KW_MERGE=179 +KW_MICROSECOND=180 +KW_MICROSECONDS=181 +KW_MILLISECOND=182 +KW_MILLISECONDS=183 +KW_MINUTE=184 +KW_MINUTES=185 +KW_MONTH=186 +KW_MONTHS=187 +KW_MSCK=188 +KW_NAME=189 +KW_NAMESPACE=190 +KW_NAMESPACES=191 +KW_NANOSECOND=192 +KW_NANOSECONDS=193 +KW_NATURAL=194 +KW_NO=195 +KW_NOSCAN=196 +KW_NOT=197 +KW_NULL=198 +KW_NULLS=199 +KW_NUMERIC=200 +KW_OF=201 +KW_OFFSET=202 +KW_ON=203 +KW_ONLY=204 +KW_OPTIMIZE=205 +KW_OPTION=206 +KW_OPTIONS=207 +KW_OR=208 +KW_ORDER=209 +KW_OUT=210 +KW_OUTER=211 +KW_OUTPUTFORMAT=212 +KW_OVER=213 +KW_OVERLAPS=214 +KW_OVERLAY=215 +KW_OVERWRITE=216 +KW_PARTITION=217 +KW_PARTITIONED=218 +KW_PARTITIONS=219 +KW_PERCENTILE_CONT=220 +KW_PERCENTILE_DISC=221 +KW_PERCENTLIT=222 +KW_PIVOT=223 +KW_PLACING=224 +KW_POSITION=225 +KW_PRECEDING=226 +KW_PRIMARY=227 +KW_PRINCIPALS=228 +KW_PROPERTIES=229 +KW_PURGE=230 +KW_QUARTER=231 +KW_QUERY=232 +KW_RANGE=233 +KW_REAL=234 +KW_RECORDREADER=235 +KW_RECORDWRITER=236 +KW_RECOVER=237 +KW_REDUCE=238 +KW_REFERENCES=239 +KW_REFRESH=240 +KW_RENAME=241 +KW_REPAIR=242 +KW_REPEATABLE=243 +KW_REPLACE=244 +KW_RESET=245 +KW_RESPECT=246 +KW_RESTRICT=247 +KW_REWRITE=248 +KW_REVOKE=249 +KW_RIGHT=250 +KW_RLIKE=251 +KW_REGEXP=252 +KW_ROLE=253 +KW_ROLES=254 +KW_ROLLBACK=255 +KW_ROLLUP=256 +KW_ROW=257 +KW_ROWS=258 +KW_SECOND=259 +KW_SECONDS=260 +KW_SCHEMA=261 +KW_SCHEMAS=262 +KW_SELECT=263 +KW_SEMI=264 +KW_SEPARATED=265 +KW_SERDE=266 +KW_SERDEPROPERTIES=267 +KW_SESSION_USER=268 +KW_SET=269 +KW_MINUS=270 +KW_SETS=271 +KW_SHORT=272 +KW_SHOW=273 +KW_SINGLE=274 +KW_SKEWED=275 +KW_SMALLINT=276 +KW_SOME=277 +KW_SORT=278 +KW_SORTED=279 +KW_SOURCE=280 +KW_START=281 +KW_STATISTICS=282 +KW_STORED=283 +KW_STRATIFY=284 +KW_STRING=285 +KW_STRUCT=286 +KW_SUBSTR=287 +KW_SUBSTRING=288 +KW_SYNC=289 +KW_SYSTEM=290 +KW_SYSTEM_TIME=291 +KW_SYSTEM_VERSION=292 +KW_TABLE=293 +KW_TABLES=294 +KW_TABLESAMPLE=295 +KW_TARGET=296 +KW_TBLPROPERTIES=297 +KW_TEMPORARY=298 +KW_TERMINATED=299 +KW_THEN=300 +KW_TIME=301 +KW_TIMEDIFF=302 +KW_TIMESTAMP=303 +KW_TIMESTAMP_LTZ=304 +KW_TIMESTAMP_NTZ=305 +KW_TIMESTAMPADD=306 +KW_TIMESTAMPDIFF=307 +KW_TINYINT=308 +KW_TO=309 +KW_TOUCH=310 +KW_TRAILING=311 +KW_TRANSACTION=312 +KW_TRANSACTIONS=313 +KW_TRANSFORM=314 +KW_TRIM=315 +KW_TRUE=316 +KW_TRUNCATE=317 +KW_TRY_CAST=318 +KW_TYPE=319 +KW_UNARCHIVE=320 +KW_UNBOUNDED=321 +KW_UNCACHE=322 +KW_UNION=323 +KW_UNIQUE=324 +KW_UNKNOWN=325 +KW_UNLOCK=326 +KW_UNPIVOT=327 +KW_UNSET=328 +KW_UPDATE=329 +KW_USE=330 +KW_USER=331 +KW_USING=332 +KW_VALUES=333 +KW_VARCHAR=334 +KW_VAR=335 +KW_VARIABLE=336 +KW_VERSION=337 +KW_VIEW=338 +KW_VIEWS=339 +KW_VOID=340 +KW_WEEK=341 +KW_WEEKS=342 +KW_WHEN=343 +KW_WHERE=344 +KW_WINDOW=345 +KW_WITH=346 +KW_WITHIN=347 +KW_YEAR=348 +KW_YEARS=349 +KW_ZONE=350 +KW_ZORDER=351 +EQ=352 +NSEQ=353 +NEQ=354 +NEQJ=355 +LT=356 +LTE=357 +GT=358 +GTE=359 +NOT=360 +PLUS=361 +MINUS=362 +ASTERISK=363 +SLASH=364 +PERCENT=365 +TILDE=366 +AMPERSAND=367 +PIPE=368 +CONCAT_PIPE=369 +HAT=370 +COLON=371 +ARROW=372 +FAT_ARROW=373 +HENT_START=374 +HENT_END=375 +QUESTION=376 +STRING_LITERAL=377 +DOUBLEQUOTED_STRING=378 +BIGINT_LITERAL=379 +SMALLINT_LITERAL=380 +TINYINT_LITERAL=381 +INTEGER_VALUE=382 +EXPONENT_VALUE=383 +DECIMAL_VALUE=384 +FLOAT_LITERAL=385 +DOUBLE_LITERAL=386 +BIGDECIMAL_LITERAL=387 +IDENTIFIER=388 +BACKQUOTED_IDENTIFIER=389 +SIMPLE_COMMENT=390 +BRACKETED_COMMENT=391 +WS=392 +UNRECOGNIZED=393 ';'=1 '('=2 ')'=3 @@ -551,214 +552,215 @@ UNRECOGNIZED=392 'LAZY'=159 'LEADING'=160 'LEFT'=161 -'LIKE'=162 -'ILIKE'=163 -'LIMIT'=164 -'LINES'=165 -'LIST'=166 -'LOAD'=167 -'LOCAL'=168 -'LOCATION'=169 -'LOCK'=170 -'LOCKS'=171 -'LOGICAL'=172 -'LONG'=173 -'MACRO'=174 -'MATERIALIZED'=175 -'MAP'=176 -'MATCHED'=177 -'MERGE'=178 -'MICROSECOND'=179 -'MICROSECONDS'=180 -'MILLISECOND'=181 -'MILLISECONDS'=182 -'MINUTE'=183 -'MINUTES'=184 -'MONTH'=185 -'MONTHS'=186 -'MSCK'=187 -'NAME'=188 -'NAMESPACE'=189 -'NAMESPACES'=190 -'NANOSECOND'=191 -'NANOSECONDS'=192 -'NATURAL'=193 -'NO'=194 -'NOSCAN'=195 -'NOT'=196 -'NULL'=197 -'NULLS'=198 -'NUMERIC'=199 -'OF'=200 -'OFFSET'=201 -'ON'=202 -'ONLY'=203 -'OPTIMIZE'=204 -'OPTION'=205 -'OPTIONS'=206 -'OR'=207 -'ORDER'=208 -'OUT'=209 -'OUTER'=210 -'OUTPUTFORMAT'=211 -'OVER'=212 -'OVERLAPS'=213 -'OVERLAY'=214 -'OVERWRITE'=215 -'PARTITION'=216 -'PARTITIONED'=217 -'PARTITIONS'=218 -'PERCENTILE_CONT'=219 -'PERCENTILE_DISC'=220 -'PERCENT'=221 -'PIVOT'=222 -'PLACING'=223 -'POSITION'=224 -'PRECEDING'=225 -'PRIMARY'=226 -'PRINCIPALS'=227 -'PROPERTIES'=228 -'PURGE'=229 -'QUARTER'=230 -'QUERY'=231 -'RANGE'=232 -'REAL'=233 -'RECORDREADER'=234 -'RECORDWRITER'=235 -'RECOVER'=236 -'REDUCE'=237 -'REFERENCES'=238 -'REFRESH'=239 -'RENAME'=240 -'REPAIR'=241 -'REPEATABLE'=242 -'REPLACE'=243 -'RESET'=244 -'RESPECT'=245 -'RESTRICT'=246 -'REWRITE'=247 -'REVOKE'=248 -'RIGHT'=249 -'RLIKE'=250 -'REGEXP'=251 -'ROLE'=252 -'ROLES'=253 -'ROLLBACK'=254 -'ROLLUP'=255 -'ROW'=256 -'ROWS'=257 -'SECOND'=258 -'SECONDS'=259 -'SCHEMA'=260 -'SCHEMAS'=261 -'SELECT'=262 -'SEMI'=263 -'SEPARATED'=264 -'SERDE'=265 -'SERDEPROPERTIES'=266 -'SESSION_USER'=267 -'SET'=268 -'MINUS'=269 -'SETS'=270 -'SHORT'=271 -'SHOW'=272 -'SINGLE'=273 -'SKEWED'=274 -'SMALLINT'=275 -'SOME'=276 -'SORT'=277 -'SORTED'=278 -'SOURCE'=279 -'START'=280 -'STATISTICS'=281 -'STORED'=282 -'STRATIFY'=283 -'STRING'=284 -'STRUCT'=285 -'SUBSTR'=286 -'SUBSTRING'=287 -'SYNC'=288 -'SYSTEM'=289 -'SYSTEM_TIME'=290 -'SYSTEM_VERSION'=291 -'TABLE'=292 -'TABLES'=293 -'TABLESAMPLE'=294 -'TARGET'=295 -'TBLPROPERTIES'=296 -'TEMPORARY'=297 -'TERMINATED'=298 -'THEN'=299 -'TIME'=300 -'TIMEDIFF'=301 -'TIMESTAMP'=302 -'TIMESTAMP_LTZ'=303 -'TIMESTAMP_NTZ'=304 -'TIMESTAMPADD'=305 -'TIMESTAMPDIFF'=306 -'TINYINT'=307 -'TO'=308 -'TOUCH'=309 -'TRAILING'=310 -'TRANSACTION'=311 -'TRANSACTIONS'=312 -'TRANSFORM'=313 -'TRIM'=314 -'TRUE'=315 -'TRUNCATE'=316 -'TRY_CAST'=317 -'TYPE'=318 -'UNARCHIVE'=319 -'UNBOUNDED'=320 -'UNCACHE'=321 -'UNION'=322 -'UNIQUE'=323 -'UNKNOWN'=324 -'UNLOCK'=325 -'UNPIVOT'=326 -'UNSET'=327 -'UPDATE'=328 -'USE'=329 -'USER'=330 -'USING'=331 -'VALUES'=332 -'VARCHAR'=333 -'VAR'=334 -'VARIABLE'=335 -'VERSION'=336 -'VIEW'=337 -'VIEWS'=338 -'VOID'=339 -'WEEK'=340 -'WEEKS'=341 -'WHEN'=342 -'WHERE'=343 -'WINDOW'=344 -'WITH'=345 -'WITHIN'=346 -'YEAR'=347 -'YEARS'=348 -'ZONE'=349 -'ZORDER'=350 -'<=>'=352 -'<>'=353 -'!='=354 -'<'=355 -'>'=357 -'!'=359 -'+'=360 -'-'=361 -'*'=362 -'/'=363 -'%'=364 -'~'=365 -'&'=366 -'|'=367 -'||'=368 -'^'=369 -':'=370 -'->'=371 -'=>'=372 -'/*+'=373 -'*/'=374 -'?'=375 +'LIFECYCLE'=162 +'LIKE'=163 +'ILIKE'=164 +'LIMIT'=165 +'LINES'=166 +'LIST'=167 +'LOAD'=168 +'LOCAL'=169 +'LOCATION'=170 +'LOCK'=171 +'LOCKS'=172 +'LOGICAL'=173 +'LONG'=174 +'MACRO'=175 +'MATERIALIZED'=176 +'MAP'=177 +'MATCHED'=178 +'MERGE'=179 +'MICROSECOND'=180 +'MICROSECONDS'=181 +'MILLISECOND'=182 +'MILLISECONDS'=183 +'MINUTE'=184 +'MINUTES'=185 +'MONTH'=186 +'MONTHS'=187 +'MSCK'=188 +'NAME'=189 +'NAMESPACE'=190 +'NAMESPACES'=191 +'NANOSECOND'=192 +'NANOSECONDS'=193 +'NATURAL'=194 +'NO'=195 +'NOSCAN'=196 +'NOT'=197 +'NULL'=198 +'NULLS'=199 +'NUMERIC'=200 +'OF'=201 +'OFFSET'=202 +'ON'=203 +'ONLY'=204 +'OPTIMIZE'=205 +'OPTION'=206 +'OPTIONS'=207 +'OR'=208 +'ORDER'=209 +'OUT'=210 +'OUTER'=211 +'OUTPUTFORMAT'=212 +'OVER'=213 +'OVERLAPS'=214 +'OVERLAY'=215 +'OVERWRITE'=216 +'PARTITION'=217 +'PARTITIONED'=218 +'PARTITIONS'=219 +'PERCENTILE_CONT'=220 +'PERCENTILE_DISC'=221 +'PERCENT'=222 +'PIVOT'=223 +'PLACING'=224 +'POSITION'=225 +'PRECEDING'=226 +'PRIMARY'=227 +'PRINCIPALS'=228 +'PROPERTIES'=229 +'PURGE'=230 +'QUARTER'=231 +'QUERY'=232 +'RANGE'=233 +'REAL'=234 +'RECORDREADER'=235 +'RECORDWRITER'=236 +'RECOVER'=237 +'REDUCE'=238 +'REFERENCES'=239 +'REFRESH'=240 +'RENAME'=241 +'REPAIR'=242 +'REPEATABLE'=243 +'REPLACE'=244 +'RESET'=245 +'RESPECT'=246 +'RESTRICT'=247 +'REWRITE'=248 +'REVOKE'=249 +'RIGHT'=250 +'RLIKE'=251 +'REGEXP'=252 +'ROLE'=253 +'ROLES'=254 +'ROLLBACK'=255 +'ROLLUP'=256 +'ROW'=257 +'ROWS'=258 +'SECOND'=259 +'SECONDS'=260 +'SCHEMA'=261 +'SCHEMAS'=262 +'SELECT'=263 +'SEMI'=264 +'SEPARATED'=265 +'SERDE'=266 +'SERDEPROPERTIES'=267 +'SESSION_USER'=268 +'SET'=269 +'MINUS'=270 +'SETS'=271 +'SHORT'=272 +'SHOW'=273 +'SINGLE'=274 +'SKEWED'=275 +'SMALLINT'=276 +'SOME'=277 +'SORT'=278 +'SORTED'=279 +'SOURCE'=280 +'START'=281 +'STATISTICS'=282 +'STORED'=283 +'STRATIFY'=284 +'STRING'=285 +'STRUCT'=286 +'SUBSTR'=287 +'SUBSTRING'=288 +'SYNC'=289 +'SYSTEM'=290 +'SYSTEM_TIME'=291 +'SYSTEM_VERSION'=292 +'TABLE'=293 +'TABLES'=294 +'TABLESAMPLE'=295 +'TARGET'=296 +'TBLPROPERTIES'=297 +'TEMPORARY'=298 +'TERMINATED'=299 +'THEN'=300 +'TIME'=301 +'TIMEDIFF'=302 +'TIMESTAMP'=303 +'TIMESTAMP_LTZ'=304 +'TIMESTAMP_NTZ'=305 +'TIMESTAMPADD'=306 +'TIMESTAMPDIFF'=307 +'TINYINT'=308 +'TO'=309 +'TOUCH'=310 +'TRAILING'=311 +'TRANSACTION'=312 +'TRANSACTIONS'=313 +'TRANSFORM'=314 +'TRIM'=315 +'TRUE'=316 +'TRUNCATE'=317 +'TRY_CAST'=318 +'TYPE'=319 +'UNARCHIVE'=320 +'UNBOUNDED'=321 +'UNCACHE'=322 +'UNION'=323 +'UNIQUE'=324 +'UNKNOWN'=325 +'UNLOCK'=326 +'UNPIVOT'=327 +'UNSET'=328 +'UPDATE'=329 +'USE'=330 +'USER'=331 +'USING'=332 +'VALUES'=333 +'VARCHAR'=334 +'VAR'=335 +'VARIABLE'=336 +'VERSION'=337 +'VIEW'=338 +'VIEWS'=339 +'VOID'=340 +'WEEK'=341 +'WEEKS'=342 +'WHEN'=343 +'WHERE'=344 +'WINDOW'=345 +'WITH'=346 +'WITHIN'=347 +'YEAR'=348 +'YEARS'=349 +'ZONE'=350 +'ZORDER'=351 +'<=>'=353 +'<>'=354 +'!='=355 +'<'=356 +'>'=358 +'!'=360 +'+'=361 +'-'=362 +'*'=363 +'/'=364 +'%'=365 +'~'=366 +'&'=367 +'|'=368 +'||'=369 +'^'=370 +':'=371 +'->'=372 +'=>'=373 +'/*+'=374 +'*/'=375 +'?'=376 diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 7cae9e9..f842a2f 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -178,237 +178,238 @@ export class SparkSqlParser extends SQLParserBase { public static readonly KW_LAZY = 159; public static readonly KW_LEADING = 160; public static readonly KW_LEFT = 161; - public static readonly KW_LIKE = 162; - public static readonly KW_ILIKE = 163; - public static readonly KW_LIMIT = 164; - public static readonly KW_LINES = 165; - public static readonly KW_LIST = 166; - public static readonly KW_LOAD = 167; - public static readonly KW_LOCAL = 168; - public static readonly KW_LOCATION = 169; - public static readonly KW_LOCK = 170; - public static readonly KW_LOCKS = 171; - public static readonly KW_LOGICAL = 172; - public static readonly KW_LONG = 173; - public static readonly KW_MACRO = 174; - public static readonly KW_MATERIALIZED = 175; - public static readonly KW_MAP = 176; - public static readonly KW_MATCHED = 177; - public static readonly KW_MERGE = 178; - public static readonly KW_MICROSECOND = 179; - public static readonly KW_MICROSECONDS = 180; - public static readonly KW_MILLISECOND = 181; - public static readonly KW_MILLISECONDS = 182; - public static readonly KW_MINUTE = 183; - public static readonly KW_MINUTES = 184; - public static readonly KW_MONTH = 185; - public static readonly KW_MONTHS = 186; - public static readonly KW_MSCK = 187; - public static readonly KW_NAME = 188; - public static readonly KW_NAMESPACE = 189; - public static readonly KW_NAMESPACES = 190; - public static readonly KW_NANOSECOND = 191; - public static readonly KW_NANOSECONDS = 192; - public static readonly KW_NATURAL = 193; - public static readonly KW_NO = 194; - public static readonly KW_NOSCAN = 195; - public static readonly KW_NOT = 196; - public static readonly KW_NULL = 197; - public static readonly KW_NULLS = 198; - public static readonly KW_NUMERIC = 199; - public static readonly KW_OF = 200; - public static readonly KW_OFFSET = 201; - public static readonly KW_ON = 202; - public static readonly KW_ONLY = 203; - public static readonly KW_OPTIMIZE = 204; - public static readonly KW_OPTION = 205; - public static readonly KW_OPTIONS = 206; - public static readonly KW_OR = 207; - public static readonly KW_ORDER = 208; - public static readonly KW_OUT = 209; - public static readonly KW_OUTER = 210; - public static readonly KW_OUTPUTFORMAT = 211; - public static readonly KW_OVER = 212; - public static readonly KW_OVERLAPS = 213; - public static readonly KW_OVERLAY = 214; - public static readonly KW_OVERWRITE = 215; - public static readonly KW_PARTITION = 216; - public static readonly KW_PARTITIONED = 217; - public static readonly KW_PARTITIONS = 218; - public static readonly KW_PERCENTILE_CONT = 219; - public static readonly KW_PERCENTILE_DISC = 220; - public static readonly KW_PERCENTLIT = 221; - public static readonly KW_PIVOT = 222; - public static readonly KW_PLACING = 223; - public static readonly KW_POSITION = 224; - public static readonly KW_PRECEDING = 225; - public static readonly KW_PRIMARY = 226; - public static readonly KW_PRINCIPALS = 227; - public static readonly KW_PROPERTIES = 228; - public static readonly KW_PURGE = 229; - public static readonly KW_QUARTER = 230; - public static readonly KW_QUERY = 231; - public static readonly KW_RANGE = 232; - public static readonly KW_REAL = 233; - public static readonly KW_RECORDREADER = 234; - public static readonly KW_RECORDWRITER = 235; - public static readonly KW_RECOVER = 236; - public static readonly KW_REDUCE = 237; - public static readonly KW_REFERENCES = 238; - public static readonly KW_REFRESH = 239; - public static readonly KW_RENAME = 240; - public static readonly KW_REPAIR = 241; - public static readonly KW_REPEATABLE = 242; - public static readonly KW_REPLACE = 243; - public static readonly KW_RESET = 244; - public static readonly KW_RESPECT = 245; - public static readonly KW_RESTRICT = 246; - public static readonly KW_REWRITE = 247; - public static readonly KW_REVOKE = 248; - public static readonly KW_RIGHT = 249; - public static readonly KW_RLIKE = 250; - public static readonly KW_REGEXP = 251; - public static readonly KW_ROLE = 252; - public static readonly KW_ROLES = 253; - public static readonly KW_ROLLBACK = 254; - public static readonly KW_ROLLUP = 255; - public static readonly KW_ROW = 256; - public static readonly KW_ROWS = 257; - public static readonly KW_SECOND = 258; - public static readonly KW_SECONDS = 259; - public static readonly KW_SCHEMA = 260; - public static readonly KW_SCHEMAS = 261; - public static readonly KW_SELECT = 262; - public static readonly KW_SEMI = 263; - public static readonly KW_SEPARATED = 264; - public static readonly KW_SERDE = 265; - public static readonly KW_SERDEPROPERTIES = 266; - public static readonly KW_SESSION_USER = 267; - public static readonly KW_SET = 268; - public static readonly KW_MINUS = 269; - public static readonly KW_SETS = 270; - public static readonly KW_SHORT = 271; - public static readonly KW_SHOW = 272; - public static readonly KW_SINGLE = 273; - public static readonly KW_SKEWED = 274; - public static readonly KW_SMALLINT = 275; - public static readonly KW_SOME = 276; - public static readonly KW_SORT = 277; - public static readonly KW_SORTED = 278; - public static readonly KW_SOURCE = 279; - public static readonly KW_START = 280; - public static readonly KW_STATISTICS = 281; - public static readonly KW_STORED = 282; - public static readonly KW_STRATIFY = 283; - public static readonly KW_STRING = 284; - public static readonly KW_STRUCT = 285; - public static readonly KW_SUBSTR = 286; - public static readonly KW_SUBSTRING = 287; - public static readonly KW_SYNC = 288; - public static readonly KW_SYSTEM = 289; - public static readonly KW_SYSTEM_TIME = 290; - public static readonly KW_SYSTEM_VERSION = 291; - public static readonly KW_TABLE = 292; - public static readonly KW_TABLES = 293; - public static readonly KW_TABLESAMPLE = 294; - public static readonly KW_TARGET = 295; - public static readonly KW_TBLPROPERTIES = 296; - public static readonly KW_TEMPORARY = 297; - public static readonly KW_TERMINATED = 298; - public static readonly KW_THEN = 299; - public static readonly KW_TIME = 300; - public static readonly KW_TIMEDIFF = 301; - public static readonly KW_TIMESTAMP = 302; - public static readonly KW_TIMESTAMP_LTZ = 303; - public static readonly KW_TIMESTAMP_NTZ = 304; - public static readonly KW_TIMESTAMPADD = 305; - public static readonly KW_TIMESTAMPDIFF = 306; - public static readonly KW_TINYINT = 307; - public static readonly KW_TO = 308; - public static readonly KW_TOUCH = 309; - public static readonly KW_TRAILING = 310; - public static readonly KW_TRANSACTION = 311; - public static readonly KW_TRANSACTIONS = 312; - public static readonly KW_TRANSFORM = 313; - public static readonly KW_TRIM = 314; - public static readonly KW_TRUE = 315; - public static readonly KW_TRUNCATE = 316; - public static readonly KW_TRY_CAST = 317; - public static readonly KW_TYPE = 318; - public static readonly KW_UNARCHIVE = 319; - public static readonly KW_UNBOUNDED = 320; - public static readonly KW_UNCACHE = 321; - public static readonly KW_UNION = 322; - public static readonly KW_UNIQUE = 323; - public static readonly KW_UNKNOWN = 324; - public static readonly KW_UNLOCK = 325; - public static readonly KW_UNPIVOT = 326; - public static readonly KW_UNSET = 327; - public static readonly KW_UPDATE = 328; - public static readonly KW_USE = 329; - public static readonly KW_USER = 330; - public static readonly KW_USING = 331; - public static readonly KW_VALUES = 332; - public static readonly KW_VARCHAR = 333; - public static readonly KW_VAR = 334; - public static readonly KW_VARIABLE = 335; - public static readonly KW_VERSION = 336; - public static readonly KW_VIEW = 337; - public static readonly KW_VIEWS = 338; - public static readonly KW_VOID = 339; - public static readonly KW_WEEK = 340; - public static readonly KW_WEEKS = 341; - public static readonly KW_WHEN = 342; - public static readonly KW_WHERE = 343; - public static readonly KW_WINDOW = 344; - public static readonly KW_WITH = 345; - public static readonly KW_WITHIN = 346; - public static readonly KW_YEAR = 347; - public static readonly KW_YEARS = 348; - public static readonly KW_ZONE = 349; - public static readonly KW_ZORDER = 350; - public static readonly EQ = 351; - public static readonly NSEQ = 352; - public static readonly NEQ = 353; - public static readonly NEQJ = 354; - public static readonly LT = 355; - public static readonly LTE = 356; - public static readonly GT = 357; - public static readonly GTE = 358; - public static readonly NOT = 359; - public static readonly PLUS = 360; - public static readonly MINUS = 361; - public static readonly ASTERISK = 362; - public static readonly SLASH = 363; - public static readonly PERCENT = 364; - public static readonly TILDE = 365; - public static readonly AMPERSAND = 366; - public static readonly PIPE = 367; - public static readonly CONCAT_PIPE = 368; - public static readonly HAT = 369; - public static readonly COLON = 370; - public static readonly ARROW = 371; - public static readonly FAT_ARROW = 372; - public static readonly HENT_START = 373; - public static readonly HENT_END = 374; - public static readonly QUESTION = 375; - public static readonly STRING_LITERAL = 376; - public static readonly DOUBLEQUOTED_STRING = 377; - public static readonly BIGINT_LITERAL = 378; - public static readonly SMALLINT_LITERAL = 379; - public static readonly TINYINT_LITERAL = 380; - public static readonly INTEGER_VALUE = 381; - public static readonly EXPONENT_VALUE = 382; - public static readonly DECIMAL_VALUE = 383; - public static readonly FLOAT_LITERAL = 384; - public static readonly DOUBLE_LITERAL = 385; - public static readonly BIGDECIMAL_LITERAL = 386; - public static readonly IDENTIFIER = 387; - public static readonly BACKQUOTED_IDENTIFIER = 388; - public static readonly SIMPLE_COMMENT = 389; - public static readonly BRACKETED_COMMENT = 390; - public static readonly WS = 391; - public static readonly UNRECOGNIZED = 392; + public static readonly KW_LIFECYCLE = 162; + public static readonly KW_LIKE = 163; + public static readonly KW_ILIKE = 164; + public static readonly KW_LIMIT = 165; + public static readonly KW_LINES = 166; + public static readonly KW_LIST = 167; + public static readonly KW_LOAD = 168; + public static readonly KW_LOCAL = 169; + public static readonly KW_LOCATION = 170; + public static readonly KW_LOCK = 171; + public static readonly KW_LOCKS = 172; + public static readonly KW_LOGICAL = 173; + public static readonly KW_LONG = 174; + public static readonly KW_MACRO = 175; + public static readonly KW_MATERIALIZED = 176; + public static readonly KW_MAP = 177; + public static readonly KW_MATCHED = 178; + public static readonly KW_MERGE = 179; + public static readonly KW_MICROSECOND = 180; + public static readonly KW_MICROSECONDS = 181; + public static readonly KW_MILLISECOND = 182; + public static readonly KW_MILLISECONDS = 183; + public static readonly KW_MINUTE = 184; + public static readonly KW_MINUTES = 185; + public static readonly KW_MONTH = 186; + public static readonly KW_MONTHS = 187; + public static readonly KW_MSCK = 188; + public static readonly KW_NAME = 189; + public static readonly KW_NAMESPACE = 190; + public static readonly KW_NAMESPACES = 191; + public static readonly KW_NANOSECOND = 192; + public static readonly KW_NANOSECONDS = 193; + public static readonly KW_NATURAL = 194; + public static readonly KW_NO = 195; + public static readonly KW_NOSCAN = 196; + public static readonly KW_NOT = 197; + public static readonly KW_NULL = 198; + public static readonly KW_NULLS = 199; + public static readonly KW_NUMERIC = 200; + public static readonly KW_OF = 201; + public static readonly KW_OFFSET = 202; + public static readonly KW_ON = 203; + public static readonly KW_ONLY = 204; + public static readonly KW_OPTIMIZE = 205; + public static readonly KW_OPTION = 206; + public static readonly KW_OPTIONS = 207; + public static readonly KW_OR = 208; + public static readonly KW_ORDER = 209; + public static readonly KW_OUT = 210; + public static readonly KW_OUTER = 211; + public static readonly KW_OUTPUTFORMAT = 212; + public static readonly KW_OVER = 213; + public static readonly KW_OVERLAPS = 214; + public static readonly KW_OVERLAY = 215; + public static readonly KW_OVERWRITE = 216; + public static readonly KW_PARTITION = 217; + public static readonly KW_PARTITIONED = 218; + public static readonly KW_PARTITIONS = 219; + public static readonly KW_PERCENTILE_CONT = 220; + public static readonly KW_PERCENTILE_DISC = 221; + public static readonly KW_PERCENTLIT = 222; + public static readonly KW_PIVOT = 223; + public static readonly KW_PLACING = 224; + public static readonly KW_POSITION = 225; + public static readonly KW_PRECEDING = 226; + public static readonly KW_PRIMARY = 227; + public static readonly KW_PRINCIPALS = 228; + public static readonly KW_PROPERTIES = 229; + public static readonly KW_PURGE = 230; + public static readonly KW_QUARTER = 231; + public static readonly KW_QUERY = 232; + public static readonly KW_RANGE = 233; + public static readonly KW_REAL = 234; + public static readonly KW_RECORDREADER = 235; + public static readonly KW_RECORDWRITER = 236; + public static readonly KW_RECOVER = 237; + public static readonly KW_REDUCE = 238; + public static readonly KW_REFERENCES = 239; + public static readonly KW_REFRESH = 240; + public static readonly KW_RENAME = 241; + public static readonly KW_REPAIR = 242; + public static readonly KW_REPEATABLE = 243; + public static readonly KW_REPLACE = 244; + public static readonly KW_RESET = 245; + public static readonly KW_RESPECT = 246; + public static readonly KW_RESTRICT = 247; + public static readonly KW_REWRITE = 248; + public static readonly KW_REVOKE = 249; + public static readonly KW_RIGHT = 250; + public static readonly KW_RLIKE = 251; + public static readonly KW_REGEXP = 252; + public static readonly KW_ROLE = 253; + public static readonly KW_ROLES = 254; + public static readonly KW_ROLLBACK = 255; + public static readonly KW_ROLLUP = 256; + public static readonly KW_ROW = 257; + public static readonly KW_ROWS = 258; + public static readonly KW_SECOND = 259; + public static readonly KW_SECONDS = 260; + public static readonly KW_SCHEMA = 261; + public static readonly KW_SCHEMAS = 262; + public static readonly KW_SELECT = 263; + public static readonly KW_SEMI = 264; + public static readonly KW_SEPARATED = 265; + public static readonly KW_SERDE = 266; + public static readonly KW_SERDEPROPERTIES = 267; + public static readonly KW_SESSION_USER = 268; + public static readonly KW_SET = 269; + public static readonly KW_MINUS = 270; + public static readonly KW_SETS = 271; + public static readonly KW_SHORT = 272; + public static readonly KW_SHOW = 273; + public static readonly KW_SINGLE = 274; + public static readonly KW_SKEWED = 275; + public static readonly KW_SMALLINT = 276; + public static readonly KW_SOME = 277; + public static readonly KW_SORT = 278; + public static readonly KW_SORTED = 279; + public static readonly KW_SOURCE = 280; + public static readonly KW_START = 281; + public static readonly KW_STATISTICS = 282; + public static readonly KW_STORED = 283; + public static readonly KW_STRATIFY = 284; + public static readonly KW_STRING = 285; + public static readonly KW_STRUCT = 286; + public static readonly KW_SUBSTR = 287; + public static readonly KW_SUBSTRING = 288; + public static readonly KW_SYNC = 289; + public static readonly KW_SYSTEM = 290; + public static readonly KW_SYSTEM_TIME = 291; + public static readonly KW_SYSTEM_VERSION = 292; + public static readonly KW_TABLE = 293; + public static readonly KW_TABLES = 294; + public static readonly KW_TABLESAMPLE = 295; + public static readonly KW_TARGET = 296; + public static readonly KW_TBLPROPERTIES = 297; + public static readonly KW_TEMPORARY = 298; + public static readonly KW_TERMINATED = 299; + public static readonly KW_THEN = 300; + public static readonly KW_TIME = 301; + public static readonly KW_TIMEDIFF = 302; + public static readonly KW_TIMESTAMP = 303; + public static readonly KW_TIMESTAMP_LTZ = 304; + public static readonly KW_TIMESTAMP_NTZ = 305; + public static readonly KW_TIMESTAMPADD = 306; + public static readonly KW_TIMESTAMPDIFF = 307; + public static readonly KW_TINYINT = 308; + public static readonly KW_TO = 309; + public static readonly KW_TOUCH = 310; + public static readonly KW_TRAILING = 311; + public static readonly KW_TRANSACTION = 312; + public static readonly KW_TRANSACTIONS = 313; + public static readonly KW_TRANSFORM = 314; + public static readonly KW_TRIM = 315; + public static readonly KW_TRUE = 316; + public static readonly KW_TRUNCATE = 317; + public static readonly KW_TRY_CAST = 318; + public static readonly KW_TYPE = 319; + public static readonly KW_UNARCHIVE = 320; + public static readonly KW_UNBOUNDED = 321; + public static readonly KW_UNCACHE = 322; + public static readonly KW_UNION = 323; + public static readonly KW_UNIQUE = 324; + public static readonly KW_UNKNOWN = 325; + public static readonly KW_UNLOCK = 326; + public static readonly KW_UNPIVOT = 327; + public static readonly KW_UNSET = 328; + public static readonly KW_UPDATE = 329; + public static readonly KW_USE = 330; + public static readonly KW_USER = 331; + public static readonly KW_USING = 332; + public static readonly KW_VALUES = 333; + public static readonly KW_VARCHAR = 334; + public static readonly KW_VAR = 335; + public static readonly KW_VARIABLE = 336; + public static readonly KW_VERSION = 337; + public static readonly KW_VIEW = 338; + public static readonly KW_VIEWS = 339; + public static readonly KW_VOID = 340; + public static readonly KW_WEEK = 341; + public static readonly KW_WEEKS = 342; + public static readonly KW_WHEN = 343; + public static readonly KW_WHERE = 344; + public static readonly KW_WINDOW = 345; + public static readonly KW_WITH = 346; + public static readonly KW_WITHIN = 347; + public static readonly KW_YEAR = 348; + public static readonly KW_YEARS = 349; + public static readonly KW_ZONE = 350; + public static readonly KW_ZORDER = 351; + public static readonly EQ = 352; + public static readonly NSEQ = 353; + public static readonly NEQ = 354; + public static readonly NEQJ = 355; + public static readonly LT = 356; + public static readonly LTE = 357; + public static readonly GT = 358; + public static readonly GTE = 359; + public static readonly NOT = 360; + public static readonly PLUS = 361; + public static readonly MINUS = 362; + public static readonly ASTERISK = 363; + public static readonly SLASH = 364; + public static readonly PERCENT = 365; + public static readonly TILDE = 366; + public static readonly AMPERSAND = 367; + public static readonly PIPE = 368; + public static readonly CONCAT_PIPE = 369; + public static readonly HAT = 370; + public static readonly COLON = 371; + public static readonly ARROW = 372; + public static readonly FAT_ARROW = 373; + public static readonly HENT_START = 374; + public static readonly HENT_END = 375; + public static readonly QUESTION = 376; + public static readonly STRING_LITERAL = 377; + public static readonly DOUBLEQUOTED_STRING = 378; + public static readonly BIGINT_LITERAL = 379; + public static readonly SMALLINT_LITERAL = 380; + public static readonly TINYINT_LITERAL = 381; + public static readonly INTEGER_VALUE = 382; + public static readonly EXPONENT_VALUE = 383; + public static readonly DECIMAL_VALUE = 384; + public static readonly FLOAT_LITERAL = 385; + public static readonly DOUBLE_LITERAL = 386; + public static readonly BIGDECIMAL_LITERAL = 387; + public static readonly IDENTIFIER = 388; + public static readonly BACKQUOTED_IDENTIFIER = 389; + public static readonly SIMPLE_COMMENT = 390; + public static readonly BRACKETED_COMMENT = 391; + public static readonly WS = 392; + public static readonly UNRECOGNIZED = 393; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_statement = 2; @@ -435,179 +436,180 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_namedQuery = 23; public static readonly RULE_tableProvider = 24; public static readonly RULE_createTableClauses = 25; - public static readonly RULE_propertyList = 26; - public static readonly RULE_property = 27; - public static readonly RULE_propertyKey = 28; - public static readonly RULE_propertyValue = 29; - public static readonly RULE_expressionPropertyList = 30; - public static readonly RULE_expressionProperty = 31; - public static readonly RULE_constantList = 32; - public static readonly RULE_nestedConstantList = 33; - public static readonly RULE_createFileFormat = 34; - public static readonly RULE_fileFormat = 35; - public static readonly RULE_storageHandler = 36; - public static readonly RULE_resource = 37; - public static readonly RULE_dmlStatementNoWith = 38; - public static readonly RULE_namespaceName = 39; - public static readonly RULE_namespaceNameCreate = 40; - public static readonly RULE_tableNameCreate = 41; - public static readonly RULE_tableName = 42; - public static readonly RULE_viewNameCreate = 43; - public static readonly RULE_viewName = 44; - public static readonly RULE_columnName = 45; - public static readonly RULE_columnNameSeq = 46; - public static readonly RULE_columnNameCreate = 47; - public static readonly RULE_identifierReference = 48; - public static readonly RULE_queryOrganization = 49; - public static readonly RULE_multiInsertQueryBody = 50; - public static readonly RULE_queryTerm = 51; - public static readonly RULE_queryPrimary = 52; - public static readonly RULE_sortItem = 53; - public static readonly RULE_fromStatement = 54; - public static readonly RULE_fromStatementBody = 55; - public static readonly RULE_querySpecification = 56; - public static readonly RULE_transformClause = 57; - public static readonly RULE_selectClause = 58; - public static readonly RULE_setClause = 59; - public static readonly RULE_matchedClause = 60; - public static readonly RULE_notMatchedClause = 61; - public static readonly RULE_notMatchedBySourceClause = 62; - public static readonly RULE_matchedAction = 63; - public static readonly RULE_notMatchedAction = 64; - public static readonly RULE_notMatchedBySourceAction = 65; - public static readonly RULE_assignmentList = 66; - public static readonly RULE_assignment = 67; - public static readonly RULE_whereClause = 68; - public static readonly RULE_havingClause = 69; - public static readonly RULE_hint = 70; - public static readonly RULE_hintStatement = 71; - public static readonly RULE_fromClause = 72; - public static readonly RULE_functionKind = 73; - public static readonly RULE_temporalClause = 74; - public static readonly RULE_aggregationClause = 75; - public static readonly RULE_groupByClause = 76; - public static readonly RULE_groupingAnalytics = 77; - public static readonly RULE_groupingElement = 78; - public static readonly RULE_groupingSet = 79; - public static readonly RULE_pivotClause = 80; - public static readonly RULE_pivotColumn = 81; - public static readonly RULE_pivotValue = 82; - public static readonly RULE_unpivotClause = 83; - public static readonly RULE_unpivotNullClause = 84; - public static readonly RULE_unpivotOperator = 85; - public static readonly RULE_unpivotSingleValueColumnClause = 86; - public static readonly RULE_unpivotMultiValueColumnClause = 87; - public static readonly RULE_unpivotColumnSet = 88; - public static readonly RULE_unpivotValueColumn = 89; - public static readonly RULE_unpivotNameColumn = 90; - public static readonly RULE_unpivotColumnAndAlias = 91; - public static readonly RULE_unpivotColumn = 92; - public static readonly RULE_unpivotAlias = 93; - public static readonly RULE_ifNotExists = 94; - public static readonly RULE_ifExists = 95; - public static readonly RULE_lateralView = 96; - public static readonly RULE_setQuantifier = 97; - public static readonly RULE_relation = 98; - public static readonly RULE_relationExtension = 99; - public static readonly RULE_joinRelation = 100; - public static readonly RULE_joinType = 101; - public static readonly RULE_joinCriteria = 102; - public static readonly RULE_sample = 103; - public static readonly RULE_sampleMethod = 104; - public static readonly RULE_identifierList = 105; - public static readonly RULE_identifierSeq = 106; - public static readonly RULE_orderedIdentifierList = 107; - public static readonly RULE_orderedIdentifier = 108; - public static readonly RULE_identifierCommentList = 109; - public static readonly RULE_identifierComment = 110; - public static readonly RULE_relationPrimary = 111; - public static readonly RULE_inlineTable = 112; - public static readonly RULE_functionTableSubqueryArgument = 113; - public static readonly RULE_tableArgumentPartitioning = 114; - public static readonly RULE_functionTableNamedArgumentExpression = 115; - public static readonly RULE_functionTableReferenceArgument = 116; - public static readonly RULE_functionTableArgument = 117; - public static readonly RULE_functionTable = 118; - public static readonly RULE_tableAlias = 119; - public static readonly RULE_rowFormat = 120; - public static readonly RULE_multipartIdentifierList = 121; - public static readonly RULE_multipartIdentifier = 122; - public static readonly RULE_multipartIdentifierPropertyList = 123; - public static readonly RULE_multipartIdentifierProperty = 124; - public static readonly RULE_tableIdentifier = 125; - public static readonly RULE_viewIdentifier = 126; - public static readonly RULE_namedExpression = 127; - public static readonly RULE_namedExpressionSeq = 128; - public static readonly RULE_partitionFieldList = 129; - public static readonly RULE_partitionField = 130; - public static readonly RULE_transform = 131; - public static readonly RULE_transformArgument = 132; - public static readonly RULE_expression = 133; - public static readonly RULE_namedArgumentExpression = 134; - public static readonly RULE_functionArgument = 135; - public static readonly RULE_expressionSeq = 136; - public static readonly RULE_booleanExpression = 137; - public static readonly RULE_predicate = 138; - public static readonly RULE_valueExpression = 139; - public static readonly RULE_datetimeUnit = 140; - public static readonly RULE_primaryExpression = 141; - public static readonly RULE_literalType = 142; - public static readonly RULE_constant = 143; - public static readonly RULE_comparisonOperator = 144; - public static readonly RULE_arithmeticOperator = 145; - public static readonly RULE_predicateOperator = 146; - public static readonly RULE_booleanValue = 147; - public static readonly RULE_interval = 148; - public static readonly RULE_errorCapturingMultiUnitsInterval = 149; - public static readonly RULE_multiUnitsInterval = 150; - public static readonly RULE_errorCapturingUnitToUnitInterval = 151; - public static readonly RULE_unitToUnitInterval = 152; - public static readonly RULE_intervalValue = 153; - public static readonly RULE_unitInMultiUnits = 154; - public static readonly RULE_unitInUnitToUnit = 155; - public static readonly RULE_colPosition = 156; - public static readonly RULE_type = 157; - public static readonly RULE_dataType = 158; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 159; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 160; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 161; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 162; - public static readonly RULE_colDefinitionDescriptorWithPosition = 163; - public static readonly RULE_defaultExpression = 164; - public static readonly RULE_variableDefaultExpression = 165; - public static readonly RULE_colTypeList = 166; - public static readonly RULE_colType = 167; - public static readonly RULE_createOrReplaceTableColTypeList = 168; - public static readonly RULE_createOrReplaceTableColType = 169; - public static readonly RULE_colDefinitionOption = 170; - public static readonly RULE_generationExpression = 171; - public static readonly RULE_complexColTypeList = 172; - public static readonly RULE_complexColType = 173; - public static readonly RULE_whenClause = 174; - public static readonly RULE_windowClause = 175; - public static readonly RULE_zorderClause = 176; - public static readonly RULE_namedWindow = 177; - public static readonly RULE_windowSpec = 178; - public static readonly RULE_windowFrame = 179; - public static readonly RULE_frameBound = 180; - public static readonly RULE_qualifiedNameList = 181; - public static readonly RULE_functionName = 182; - public static readonly RULE_functionNameCreate = 183; - public static readonly RULE_qualifiedName = 184; - public static readonly RULE_errorCapturingIdentifier = 185; - public static readonly RULE_errorCapturingIdentifierExtra = 186; - public static readonly RULE_identifier = 187; - public static readonly RULE_strictIdentifier = 188; - public static readonly RULE_quotedIdentifier = 189; - public static readonly RULE_backQuotedIdentifier = 190; - public static readonly RULE_number = 191; - public static readonly RULE_alterColumnAction = 192; - public static readonly RULE_stringLit = 193; - public static readonly RULE_comment = 194; - public static readonly RULE_version = 195; - public static readonly RULE_ansiNonReserved = 196; - public static readonly RULE_strictNonReserved = 197; - public static readonly RULE_nonReserved = 198; + public static readonly RULE_tableLifecycle = 26; + public static readonly RULE_propertyList = 27; + public static readonly RULE_property = 28; + public static readonly RULE_propertyKey = 29; + public static readonly RULE_propertyValue = 30; + public static readonly RULE_expressionPropertyList = 31; + public static readonly RULE_expressionProperty = 32; + public static readonly RULE_constantList = 33; + public static readonly RULE_nestedConstantList = 34; + public static readonly RULE_createFileFormat = 35; + public static readonly RULE_fileFormat = 36; + public static readonly RULE_storageHandler = 37; + public static readonly RULE_resource = 38; + public static readonly RULE_dmlStatementNoWith = 39; + public static readonly RULE_namespaceName = 40; + public static readonly RULE_namespaceNameCreate = 41; + public static readonly RULE_tableNameCreate = 42; + public static readonly RULE_tableName = 43; + public static readonly RULE_viewNameCreate = 44; + public static readonly RULE_viewName = 45; + public static readonly RULE_columnName = 46; + public static readonly RULE_columnNameSeq = 47; + public static readonly RULE_columnNameCreate = 48; + public static readonly RULE_identifierReference = 49; + public static readonly RULE_queryOrganization = 50; + public static readonly RULE_multiInsertQueryBody = 51; + public static readonly RULE_queryTerm = 52; + public static readonly RULE_queryPrimary = 53; + public static readonly RULE_sortItem = 54; + public static readonly RULE_fromStatement = 55; + public static readonly RULE_fromStatementBody = 56; + public static readonly RULE_querySpecification = 57; + public static readonly RULE_transformClause = 58; + public static readonly RULE_selectClause = 59; + public static readonly RULE_setClause = 60; + public static readonly RULE_matchedClause = 61; + public static readonly RULE_notMatchedClause = 62; + public static readonly RULE_notMatchedBySourceClause = 63; + public static readonly RULE_matchedAction = 64; + public static readonly RULE_notMatchedAction = 65; + public static readonly RULE_notMatchedBySourceAction = 66; + public static readonly RULE_assignmentList = 67; + public static readonly RULE_assignment = 68; + public static readonly RULE_whereClause = 69; + public static readonly RULE_havingClause = 70; + public static readonly RULE_hint = 71; + public static readonly RULE_hintStatement = 72; + public static readonly RULE_fromClause = 73; + public static readonly RULE_functionKind = 74; + public static readonly RULE_temporalClause = 75; + public static readonly RULE_aggregationClause = 76; + public static readonly RULE_groupByClause = 77; + public static readonly RULE_groupingAnalytics = 78; + public static readonly RULE_groupingElement = 79; + public static readonly RULE_groupingSet = 80; + public static readonly RULE_pivotClause = 81; + public static readonly RULE_pivotColumn = 82; + public static readonly RULE_pivotValue = 83; + public static readonly RULE_unpivotClause = 84; + public static readonly RULE_unpivotNullClause = 85; + public static readonly RULE_unpivotOperator = 86; + public static readonly RULE_unpivotSingleValueColumnClause = 87; + public static readonly RULE_unpivotMultiValueColumnClause = 88; + public static readonly RULE_unpivotColumnSet = 89; + public static readonly RULE_unpivotValueColumn = 90; + public static readonly RULE_unpivotNameColumn = 91; + public static readonly RULE_unpivotColumnAndAlias = 92; + public static readonly RULE_unpivotColumn = 93; + public static readonly RULE_unpivotAlias = 94; + public static readonly RULE_ifNotExists = 95; + public static readonly RULE_ifExists = 96; + public static readonly RULE_lateralView = 97; + public static readonly RULE_setQuantifier = 98; + public static readonly RULE_relation = 99; + public static readonly RULE_relationExtension = 100; + public static readonly RULE_joinRelation = 101; + public static readonly RULE_joinType = 102; + public static readonly RULE_joinCriteria = 103; + public static readonly RULE_sample = 104; + public static readonly RULE_sampleMethod = 105; + public static readonly RULE_identifierList = 106; + public static readonly RULE_identifierSeq = 107; + public static readonly RULE_orderedIdentifierList = 108; + public static readonly RULE_orderedIdentifier = 109; + public static readonly RULE_identifierCommentList = 110; + public static readonly RULE_identifierComment = 111; + public static readonly RULE_relationPrimary = 112; + public static readonly RULE_inlineTable = 113; + public static readonly RULE_functionTableSubqueryArgument = 114; + public static readonly RULE_tableArgumentPartitioning = 115; + public static readonly RULE_functionTableNamedArgumentExpression = 116; + public static readonly RULE_functionTableReferenceArgument = 117; + public static readonly RULE_functionTableArgument = 118; + public static readonly RULE_functionTable = 119; + public static readonly RULE_tableAlias = 120; + public static readonly RULE_rowFormat = 121; + public static readonly RULE_multipartIdentifierList = 122; + public static readonly RULE_multipartIdentifier = 123; + public static readonly RULE_multipartIdentifierPropertyList = 124; + public static readonly RULE_multipartIdentifierProperty = 125; + public static readonly RULE_tableIdentifier = 126; + public static readonly RULE_viewIdentifier = 127; + public static readonly RULE_namedExpression = 128; + public static readonly RULE_namedExpressionSeq = 129; + public static readonly RULE_partitionFieldList = 130; + public static readonly RULE_partitionField = 131; + public static readonly RULE_transform = 132; + public static readonly RULE_transformArgument = 133; + public static readonly RULE_expression = 134; + public static readonly RULE_namedArgumentExpression = 135; + public static readonly RULE_functionArgument = 136; + public static readonly RULE_expressionSeq = 137; + public static readonly RULE_booleanExpression = 138; + public static readonly RULE_predicate = 139; + public static readonly RULE_valueExpression = 140; + public static readonly RULE_datetimeUnit = 141; + public static readonly RULE_primaryExpression = 142; + public static readonly RULE_literalType = 143; + public static readonly RULE_constant = 144; + public static readonly RULE_comparisonOperator = 145; + public static readonly RULE_arithmeticOperator = 146; + public static readonly RULE_predicateOperator = 147; + public static readonly RULE_booleanValue = 148; + public static readonly RULE_interval = 149; + public static readonly RULE_errorCapturingMultiUnitsInterval = 150; + public static readonly RULE_multiUnitsInterval = 151; + public static readonly RULE_errorCapturingUnitToUnitInterval = 152; + public static readonly RULE_unitToUnitInterval = 153; + public static readonly RULE_intervalValue = 154; + public static readonly RULE_unitInMultiUnits = 155; + public static readonly RULE_unitInUnitToUnit = 156; + public static readonly RULE_colPosition = 157; + public static readonly RULE_type = 158; + public static readonly RULE_dataType = 159; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 160; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 161; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 162; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 163; + public static readonly RULE_colDefinitionDescriptorWithPosition = 164; + public static readonly RULE_defaultExpression = 165; + public static readonly RULE_variableDefaultExpression = 166; + public static readonly RULE_colTypeList = 167; + public static readonly RULE_colType = 168; + public static readonly RULE_createOrReplaceTableColTypeList = 169; + public static readonly RULE_createOrReplaceTableColType = 170; + public static readonly RULE_colDefinitionOption = 171; + public static readonly RULE_generationExpression = 172; + public static readonly RULE_complexColTypeList = 173; + public static readonly RULE_complexColType = 174; + public static readonly RULE_whenClause = 175; + public static readonly RULE_windowClause = 176; + public static readonly RULE_zorderClause = 177; + public static readonly RULE_namedWindow = 178; + public static readonly RULE_windowSpec = 179; + public static readonly RULE_windowFrame = 180; + public static readonly RULE_frameBound = 181; + public static readonly RULE_qualifiedNameList = 182; + public static readonly RULE_functionName = 183; + public static readonly RULE_functionNameCreate = 184; + public static readonly RULE_qualifiedName = 185; + public static readonly RULE_errorCapturingIdentifier = 186; + public static readonly RULE_errorCapturingIdentifierExtra = 187; + public static readonly RULE_identifier = 188; + public static readonly RULE_strictIdentifier = 189; + public static readonly RULE_quotedIdentifier = 190; + public static readonly RULE_backQuotedIdentifier = 191; + public static readonly RULE_number = 192; + public static readonly RULE_alterColumnAction = 193; + public static readonly RULE_stringLit = 194; + public static readonly RULE_comment = 195; + public static readonly RULE_version = 196; + public static readonly RULE_ansiNonReserved = 197; + public static readonly RULE_strictNonReserved = 198; + public static readonly RULE_nonReserved = 199; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -638,33 +640,33 @@ export class SparkSqlParser extends SQLParserBase { "'IN'", "'INCLUDE'", "'INDEX'", "'INDEXES'", "'INNER'", "'INPATH'", "'INPUTFORMAT'", "'INSERT'", "'INTERSECT'", "'INTERVAL'", "'INT'", "'INTEGER'", "'INTO'", "'IS'", "'ITEMS'", "'JOIN'", "'KEYS'", "'LAST'", - "'LATERAL'", "'LAZY'", "'LEADING'", "'LEFT'", "'LIKE'", "'ILIKE'", - "'LIMIT'", "'LINES'", "'LIST'", "'LOAD'", "'LOCAL'", "'LOCATION'", - "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", "'MACRO'", "'MATERIALIZED'", - "'MAP'", "'MATCHED'", "'MERGE'", "'MICROSECOND'", "'MICROSECONDS'", - "'MILLISECOND'", "'MILLISECONDS'", "'MINUTE'", "'MINUTES'", "'MONTH'", - "'MONTHS'", "'MSCK'", "'NAME'", "'NAMESPACE'", "'NAMESPACES'", "'NANOSECOND'", - "'NANOSECONDS'", "'NATURAL'", "'NO'", "'NOSCAN'", "'NOT'", "'NULL'", - "'NULLS'", "'NUMERIC'", "'OF'", "'OFFSET'", "'ON'", "'ONLY'", "'OPTIMIZE'", - "'OPTION'", "'OPTIONS'", "'OR'", "'ORDER'", "'OUT'", "'OUTER'", - "'OUTPUTFORMAT'", "'OVER'", "'OVERLAPS'", "'OVERLAY'", "'OVERWRITE'", - "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", "'PERCENTILE_CONT'", - "'PERCENTILE_DISC'", "'PERCENT'", "'PIVOT'", "'PLACING'", "'POSITION'", - "'PRECEDING'", "'PRIMARY'", "'PRINCIPALS'", "'PROPERTIES'", "'PURGE'", - "'QUARTER'", "'QUERY'", "'RANGE'", "'REAL'", "'RECORDREADER'", "'RECORDWRITER'", - "'RECOVER'", "'REDUCE'", "'REFERENCES'", "'REFRESH'", "'RENAME'", - "'REPAIR'", "'REPEATABLE'", "'REPLACE'", "'RESET'", "'RESPECT'", - "'RESTRICT'", "'REWRITE'", "'REVOKE'", "'RIGHT'", "'RLIKE'", "'REGEXP'", - "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", "'ROW'", "'ROWS'", - "'SECOND'", "'SECONDS'", "'SCHEMA'", "'SCHEMAS'", "'SELECT'", "'SEMI'", - "'SEPARATED'", "'SERDE'", "'SERDEPROPERTIES'", "'SESSION_USER'", - "'SET'", "'MINUS'", "'SETS'", "'SHORT'", "'SHOW'", "'SINGLE'", "'SKEWED'", - "'SMALLINT'", "'SOME'", "'SORT'", "'SORTED'", "'SOURCE'", "'START'", - "'STATISTICS'", "'STORED'", "'STRATIFY'", "'STRING'", "'STRUCT'", - "'SUBSTR'", "'SUBSTRING'", "'SYNC'", "'SYSTEM'", "'SYSTEM_TIME'", - "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TARGET'", - "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", "'THEN'", "'TIME'", - "'TIMEDIFF'", "'TIMESTAMP'", "'TIMESTAMP_LTZ'", "'TIMESTAMP_NTZ'", + "'LATERAL'", "'LAZY'", "'LEADING'", "'LEFT'", "'LIFECYCLE'", "'LIKE'", + "'ILIKE'", "'LIMIT'", "'LINES'", "'LIST'", "'LOAD'", "'LOCAL'", + "'LOCATION'", "'LOCK'", "'LOCKS'", "'LOGICAL'", "'LONG'", "'MACRO'", + "'MATERIALIZED'", "'MAP'", "'MATCHED'", "'MERGE'", "'MICROSECOND'", + "'MICROSECONDS'", "'MILLISECOND'", "'MILLISECONDS'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MSCK'", "'NAME'", "'NAMESPACE'", + "'NAMESPACES'", "'NANOSECOND'", "'NANOSECONDS'", "'NATURAL'", "'NO'", + "'NOSCAN'", "'NOT'", "'NULL'", "'NULLS'", "'NUMERIC'", "'OF'", "'OFFSET'", + "'ON'", "'ONLY'", "'OPTIMIZE'", "'OPTION'", "'OPTIONS'", "'OR'", + "'ORDER'", "'OUT'", "'OUTER'", "'OUTPUTFORMAT'", "'OVER'", "'OVERLAPS'", + "'OVERLAY'", "'OVERWRITE'", "'PARTITION'", "'PARTITIONED'", "'PARTITIONS'", + "'PERCENTILE_CONT'", "'PERCENTILE_DISC'", "'PERCENT'", "'PIVOT'", + "'PLACING'", "'POSITION'", "'PRECEDING'", "'PRIMARY'", "'PRINCIPALS'", + "'PROPERTIES'", "'PURGE'", "'QUARTER'", "'QUERY'", "'RANGE'", "'REAL'", + "'RECORDREADER'", "'RECORDWRITER'", "'RECOVER'", "'REDUCE'", "'REFERENCES'", + "'REFRESH'", "'RENAME'", "'REPAIR'", "'REPEATABLE'", "'REPLACE'", + "'RESET'", "'RESPECT'", "'RESTRICT'", "'REWRITE'", "'REVOKE'", "'RIGHT'", + "'RLIKE'", "'REGEXP'", "'ROLE'", "'ROLES'", "'ROLLBACK'", "'ROLLUP'", + "'ROW'", "'ROWS'", "'SECOND'", "'SECONDS'", "'SCHEMA'", "'SCHEMAS'", + "'SELECT'", "'SEMI'", "'SEPARATED'", "'SERDE'", "'SERDEPROPERTIES'", + "'SESSION_USER'", "'SET'", "'MINUS'", "'SETS'", "'SHORT'", "'SHOW'", + "'SINGLE'", "'SKEWED'", "'SMALLINT'", "'SOME'", "'SORT'", "'SORTED'", + "'SOURCE'", "'START'", "'STATISTICS'", "'STORED'", "'STRATIFY'", + "'STRING'", "'STRUCT'", "'SUBSTR'", "'SUBSTRING'", "'SYNC'", "'SYSTEM'", + "'SYSTEM_TIME'", "'SYSTEM_VERSION'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", + "'TARGET'", "'TBLPROPERTIES'", "'TEMPORARY'", "'TERMINATED'", "'THEN'", + "'TIME'", "'TIMEDIFF'", "'TIMESTAMP'", "'TIMESTAMP_LTZ'", "'TIMESTAMP_NTZ'", "'TIMESTAMPADD'", "'TIMESTAMPDIFF'", "'TINYINT'", "'TO'", "'TOUCH'", "'TRAILING'", "'TRANSACTION'", "'TRANSACTIONS'", "'TRANSFORM'", "'TRIM'", "'TRUE'", "'TRUNCATE'", "'TRY_CAST'", "'TYPE'", "'UNARCHIVE'", @@ -709,51 +711,52 @@ export class SparkSqlParser extends SQLParserBase { "KW_IN", "KW_INCLUDE", "KW_INDEX", "KW_INDEXES", "KW_INNER", "KW_INPATH", "KW_INPUTFORMAT", "KW_INSERT", "KW_INTERSECT", "KW_INTERVAL", "KW_INT", "KW_INTEGER", "KW_INTO", "KW_IS", "KW_ITEMS", "KW_JOIN", "KW_KEYS", - "KW_LAST", "KW_LATERAL", "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIKE", - "KW_ILIKE", "KW_LIMIT", "KW_LINES", "KW_LIST", "KW_LOAD", "KW_LOCAL", - "KW_LOCATION", "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", "KW_LONG", "KW_MACRO", - "KW_MATERIALIZED", "KW_MAP", "KW_MATCHED", "KW_MERGE", "KW_MICROSECOND", - "KW_MICROSECONDS", "KW_MILLISECOND", "KW_MILLISECONDS", "KW_MINUTE", - "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MSCK", "KW_NAME", "KW_NAMESPACE", - "KW_NAMESPACES", "KW_NANOSECOND", "KW_NANOSECONDS", "KW_NATURAL", - "KW_NO", "KW_NOSCAN", "KW_NOT", "KW_NULL", "KW_NULLS", "KW_NUMERIC", - "KW_OF", "KW_OFFSET", "KW_ON", "KW_ONLY", "KW_OPTIMIZE", "KW_OPTION", - "KW_OPTIONS", "KW_OR", "KW_ORDER", "KW_OUT", "KW_OUTER", "KW_OUTPUTFORMAT", - "KW_OVER", "KW_OVERLAPS", "KW_OVERLAY", "KW_OVERWRITE", "KW_PARTITION", - "KW_PARTITIONED", "KW_PARTITIONS", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", - "KW_PERCENTLIT", "KW_PIVOT", "KW_PLACING", "KW_POSITION", "KW_PRECEDING", - "KW_PRIMARY", "KW_PRINCIPALS", "KW_PROPERTIES", "KW_PURGE", "KW_QUARTER", - "KW_QUERY", "KW_RANGE", "KW_REAL", "KW_RECORDREADER", "KW_RECORDWRITER", - "KW_RECOVER", "KW_REDUCE", "KW_REFERENCES", "KW_REFRESH", "KW_RENAME", - "KW_REPAIR", "KW_REPEATABLE", "KW_REPLACE", "KW_RESET", "KW_RESPECT", - "KW_RESTRICT", "KW_REWRITE", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", - "KW_REGEXP", "KW_ROLE", "KW_ROLES", "KW_ROLLBACK", "KW_ROLLUP", - "KW_ROW", "KW_ROWS", "KW_SECOND", "KW_SECONDS", "KW_SCHEMA", "KW_SCHEMAS", - "KW_SELECT", "KW_SEMI", "KW_SEPARATED", "KW_SERDE", "KW_SERDEPROPERTIES", - "KW_SESSION_USER", "KW_SET", "KW_MINUS", "KW_SETS", "KW_SHORT", - "KW_SHOW", "KW_SINGLE", "KW_SKEWED", "KW_SMALLINT", "KW_SOME", "KW_SORT", - "KW_SORTED", "KW_SOURCE", "KW_START", "KW_STATISTICS", "KW_STORED", - "KW_STRATIFY", "KW_STRING", "KW_STRUCT", "KW_SUBSTR", "KW_SUBSTRING", - "KW_SYNC", "KW_SYSTEM", "KW_SYSTEM_TIME", "KW_SYSTEM_VERSION", "KW_TABLE", - "KW_TABLES", "KW_TABLESAMPLE", "KW_TARGET", "KW_TBLPROPERTIES", - "KW_TEMPORARY", "KW_TERMINATED", "KW_THEN", "KW_TIME", "KW_TIMEDIFF", - "KW_TIMESTAMP", "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_NTZ", "KW_TIMESTAMPADD", - "KW_TIMESTAMPDIFF", "KW_TINYINT", "KW_TO", "KW_TOUCH", "KW_TRAILING", - "KW_TRANSACTION", "KW_TRANSACTIONS", "KW_TRANSFORM", "KW_TRIM", - "KW_TRUE", "KW_TRUNCATE", "KW_TRY_CAST", "KW_TYPE", "KW_UNARCHIVE", - "KW_UNBOUNDED", "KW_UNCACHE", "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", - "KW_UNLOCK", "KW_UNPIVOT", "KW_UNSET", "KW_UPDATE", "KW_USE", "KW_USER", - "KW_USING", "KW_VALUES", "KW_VARCHAR", "KW_VAR", "KW_VARIABLE", - "KW_VERSION", "KW_VIEW", "KW_VIEWS", "KW_VOID", "KW_WEEK", "KW_WEEKS", - "KW_WHEN", "KW_WHERE", "KW_WINDOW", "KW_WITH", "KW_WITHIN", "KW_YEAR", - "KW_YEARS", "KW_ZONE", "KW_ZORDER", "EQ", "NSEQ", "NEQ", "NEQJ", - "LT", "LTE", "GT", "GTE", "NOT", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", "HAT", "COLON", - "ARROW", "FAT_ARROW", "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", - "DOUBLEQUOTED_STRING", "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", - "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" + "KW_LAST", "KW_LATERAL", "KW_LAZY", "KW_LEADING", "KW_LEFT", "KW_LIFECYCLE", + "KW_LIKE", "KW_ILIKE", "KW_LIMIT", "KW_LINES", "KW_LIST", "KW_LOAD", + "KW_LOCAL", "KW_LOCATION", "KW_LOCK", "KW_LOCKS", "KW_LOGICAL", + "KW_LONG", "KW_MACRO", "KW_MATERIALIZED", "KW_MAP", "KW_MATCHED", + "KW_MERGE", "KW_MICROSECOND", "KW_MICROSECONDS", "KW_MILLISECOND", + "KW_MILLISECONDS", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", + "KW_MSCK", "KW_NAME", "KW_NAMESPACE", "KW_NAMESPACES", "KW_NANOSECOND", + "KW_NANOSECONDS", "KW_NATURAL", "KW_NO", "KW_NOSCAN", "KW_NOT", + "KW_NULL", "KW_NULLS", "KW_NUMERIC", "KW_OF", "KW_OFFSET", "KW_ON", + "KW_ONLY", "KW_OPTIMIZE", "KW_OPTION", "KW_OPTIONS", "KW_OR", "KW_ORDER", + "KW_OUT", "KW_OUTER", "KW_OUTPUTFORMAT", "KW_OVER", "KW_OVERLAPS", + "KW_OVERLAY", "KW_OVERWRITE", "KW_PARTITION", "KW_PARTITIONED", + "KW_PARTITIONS", "KW_PERCENTILE_CONT", "KW_PERCENTILE_DISC", "KW_PERCENTLIT", + "KW_PIVOT", "KW_PLACING", "KW_POSITION", "KW_PRECEDING", "KW_PRIMARY", + "KW_PRINCIPALS", "KW_PROPERTIES", "KW_PURGE", "KW_QUARTER", "KW_QUERY", + "KW_RANGE", "KW_REAL", "KW_RECORDREADER", "KW_RECORDWRITER", "KW_RECOVER", + "KW_REDUCE", "KW_REFERENCES", "KW_REFRESH", "KW_RENAME", "KW_REPAIR", + "KW_REPEATABLE", "KW_REPLACE", "KW_RESET", "KW_RESPECT", "KW_RESTRICT", + "KW_REWRITE", "KW_REVOKE", "KW_RIGHT", "KW_RLIKE", "KW_REGEXP", + "KW_ROLE", "KW_ROLES", "KW_ROLLBACK", "KW_ROLLUP", "KW_ROW", "KW_ROWS", + "KW_SECOND", "KW_SECONDS", "KW_SCHEMA", "KW_SCHEMAS", "KW_SELECT", + "KW_SEMI", "KW_SEPARATED", "KW_SERDE", "KW_SERDEPROPERTIES", "KW_SESSION_USER", + "KW_SET", "KW_MINUS", "KW_SETS", "KW_SHORT", "KW_SHOW", "KW_SINGLE", + "KW_SKEWED", "KW_SMALLINT", "KW_SOME", "KW_SORT", "KW_SORTED", "KW_SOURCE", + "KW_START", "KW_STATISTICS", "KW_STORED", "KW_STRATIFY", "KW_STRING", + "KW_STRUCT", "KW_SUBSTR", "KW_SUBSTRING", "KW_SYNC", "KW_SYSTEM", + "KW_SYSTEM_TIME", "KW_SYSTEM_VERSION", "KW_TABLE", "KW_TABLES", + "KW_TABLESAMPLE", "KW_TARGET", "KW_TBLPROPERTIES", "KW_TEMPORARY", + "KW_TERMINATED", "KW_THEN", "KW_TIME", "KW_TIMEDIFF", "KW_TIMESTAMP", + "KW_TIMESTAMP_LTZ", "KW_TIMESTAMP_NTZ", "KW_TIMESTAMPADD", "KW_TIMESTAMPDIFF", + "KW_TINYINT", "KW_TO", "KW_TOUCH", "KW_TRAILING", "KW_TRANSACTION", + "KW_TRANSACTIONS", "KW_TRANSFORM", "KW_TRIM", "KW_TRUE", "KW_TRUNCATE", + "KW_TRY_CAST", "KW_TYPE", "KW_UNARCHIVE", "KW_UNBOUNDED", "KW_UNCACHE", + "KW_UNION", "KW_UNIQUE", "KW_UNKNOWN", "KW_UNLOCK", "KW_UNPIVOT", + "KW_UNSET", "KW_UPDATE", "KW_USE", "KW_USER", "KW_USING", "KW_VALUES", + "KW_VARCHAR", "KW_VAR", "KW_VARIABLE", "KW_VERSION", "KW_VIEW", + "KW_VIEWS", "KW_VOID", "KW_WEEK", "KW_WEEKS", "KW_WHEN", "KW_WHERE", + "KW_WINDOW", "KW_WITH", "KW_WITHIN", "KW_YEAR", "KW_YEARS", "KW_ZONE", + "KW_ZORDER", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", "GT", "GTE", + "NOT", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "TILDE", + "AMPERSAND", "PIPE", "CONCAT_PIPE", "HAT", "COLON", "ARROW", "FAT_ARROW", + "HENT_START", "HENT_END", "QUESTION", "STRING_LITERAL", "DOUBLEQUOTED_STRING", + "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", "INTEGER_VALUE", + "EXPONENT_VALUE", "DECIMAL_VALUE", "FLOAT_LITERAL", "DOUBLE_LITERAL", + "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", + "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; public static readonly ruleNames = [ "program", "singleStatement", "statement", "timezone", "configKey", @@ -761,8 +764,8 @@ export class SparkSqlParser extends SQLParserBase { "replaceTableHeader", "bucketSpec", "skewSpec", "locationSpec", "commentSpec", "query", "insertInto", "partitionSpecLocation", "partitionSpec", "partitionVal", "namespace", "namespaces", "describeFuncName", "describeColName", - "ctes", "namedQuery", "tableProvider", "createTableClauses", "propertyList", - "property", "propertyKey", "propertyValue", "expressionPropertyList", + "ctes", "namedQuery", "tableProvider", "createTableClauses", "tableLifecycle", + "propertyList", "property", "propertyKey", "propertyValue", "expressionPropertyList", "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", "fileFormat", "storageHandler", "resource", "dmlStatementNoWith", "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", @@ -832,21 +835,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 401; + this.state = 403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 166)) & ~0x1F) === 0 && ((1 << (_la - 166)) & 2102291) !== 0) || _la === 204 || ((((_la - 237)) & ~0x1F) === 0 && ((1 << (_la - 237)) & 2181171413) !== 0) || ((((_la - 272)) & ~0x1F) === 0 && ((1 << (_la - 272)) & 1048833) !== 0) || ((((_la - 316)) & ~0x1F) === 0 && ((1 << (_la - 316)) & 536949281) !== 0)) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 398; + this.state = 400; this.singleStatement(); } } - this.state = 403; + this.state = 405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 404; + this.state = 406; this.match(SparkSqlParser.EOF); } } @@ -871,14 +874,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 406; - this.statement(); this.state = 408; + this.statement(); + this.state = 410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 407; + this.state = 409; this.match(SparkSqlParser.SEMICOLON); } } @@ -905,14 +908,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1334; + this.state = 1337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 410; + this.state = 412; this.query(); } break; @@ -920,17 +923,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 412; + this.state = 414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 345) { + if (_la === 346) { { - this.state = 411; + this.state = 413; this.ctes(); } } - this.state = 414; + this.state = 416; this.dmlStatementNoWith(); } break; @@ -938,19 +941,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 415; - this.match(SparkSqlParser.KW_USE); this.state = 417; + this.match(SparkSqlParser.KW_USE); + this.state = 419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 416; + this.state = 418; this.namespace(); } break; } - this.state = 419; + this.state = 421; this.namespaceName(); } break; @@ -958,22 +961,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 420; + this.state = 422; this.match(SparkSqlParser.KW_SET); - this.state = 421; + this.state = 423; this.match(SparkSqlParser.KW_CATALOG); - this.state = 424; + this.state = 426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 422; + this.state = 424; this.identifier(); } break; case 2: { - this.state = 423; + this.state = 425; this.stringLit(); } break; @@ -984,58 +987,58 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 426; + this.state = 428; this.match(SparkSqlParser.KW_CREATE); - this.state = 427; - this.namespace(); this.state = 429; + this.namespace(); + this.state = 431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 428; + this.state = 430; this.ifNotExists(); } break; } - this.state = 431; + this.state = 433; this.namespaceNameCreate(); - this.state = 439; + this.state = 441; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 437; + this.state = 439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 432; + this.state = 434; this.commentSpec(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 433; + this.state = 435; this.locationSpec(); } break; case SparkSqlParser.KW_WITH: { { - this.state = 434; + this.state = 436; this.match(SparkSqlParser.KW_WITH); - this.state = 435; + this.state = 437; _la = this.tokenStream.LA(1); - if(!(_la === 78 || _la === 228)) { + if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 436; + this.state = 438; this.propertyList(); } } @@ -1045,7 +1048,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 441; + this.state = 443; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1055,24 +1058,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 442; - this.match(SparkSqlParser.KW_ALTER); - this.state = 443; - this.namespace(); this.state = 444; - this.namespaceName(); + this.match(SparkSqlParser.KW_ALTER); this.state = 445; - this.match(SparkSqlParser.KW_SET); + this.namespace(); this.state = 446; + this.namespaceName(); + this.state = 447; + this.match(SparkSqlParser.KW_SET); + this.state = 448; _la = this.tokenStream.LA(1); - if(!(_la === 78 || _la === 228)) { + if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 447; + this.state = 449; this.propertyList(); } break; @@ -1080,15 +1083,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 449; - this.match(SparkSqlParser.KW_ALTER); - this.state = 450; - this.namespace(); this.state = 451; - this.namespaceName(); + this.match(SparkSqlParser.KW_ALTER); this.state = 452; - this.match(SparkSqlParser.KW_SET); + this.namespace(); this.state = 453; + this.namespaceName(); + this.state = 454; + this.match(SparkSqlParser.KW_SET); + this.state = 455; this.locationSpec(); } break; @@ -1096,30 +1099,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 455; + this.state = 457; this.match(SparkSqlParser.KW_DROP); - this.state = 456; - this.namespace(); this.state = 458; + this.namespace(); + this.state = 460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 457; + this.state = 459; this.ifExists(); } break; } - this.state = 460; - this.namespaceName(); this.state = 462; + this.namespaceName(); + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 34 || _la === 246) { + if (_la === 34 || _la === 247) { { - this.state = 461; + this.state = 463; _la = this.tokenStream.LA(1); - if(!(_la === 34 || _la === 246)) { + if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); } else { @@ -1135,16 +1138,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 464; + this.state = 466; this.match(SparkSqlParser.KW_SHOW); - this.state = 465; + this.state = 467; this.namespaces(); - this.state = 468; + this.state = 470; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 466; + this.state = 468; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1153,27 +1156,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 467; + this.state = 469; this.multipartIdentifier(); } break; } - this.state = 474; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { + if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 471; + this.state = 473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162) { + if (_la === 163) { { - this.state = 470; + this.state = 472; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 473; + this.state = 475; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1184,50 +1187,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 476; + this.state = 478; this.createTableHeader(); - this.state = 481; + this.state = 483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 477; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 478; - this.createOrReplaceTableColTypeList(); this.state = 479; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 480; + this.createOrReplaceTableColTypeList(); + this.state = 481; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 484; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 483; + this.state = 485; this.tableProvider(); } } - this.state = 486; + this.state = 488; this.createTableClauses(); - this.state = 491; + this.state = 493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 488; + this.state = 490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 487; + this.state = 489; this.match(SparkSqlParser.KW_AS); } } - this.state = 490; + this.state = 492; this.query(); } break; @@ -1238,73 +1241,79 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 493; + this.state = 495; this.match(SparkSqlParser.KW_CREATE); - this.state = 494; - this.match(SparkSqlParser.KW_TABLE); this.state = 496; + this.match(SparkSqlParser.KW_TABLE); + this.state = 498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: { - this.state = 495; + this.state = 497; this.ifNotExists(); } break; } - this.state = 498; - (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 499; - this.match(SparkSqlParser.KW_LIKE); this.state = 500; + (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); + this.state = 501; + this.match(SparkSqlParser.KW_LIKE); + this.state = 502; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 509; + this.state = 512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 169 || _la === 256 || _la === 282 || _la === 296 || _la === 331) { + while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 507; + this.state = 510; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 501; + this.state = 503; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 502; + this.state = 504; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 503; + this.state = 505; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 504; + this.state = 506; this.locationSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 505; + this.state = 507; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 506; + this.state = 508; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; + case SparkSqlParser.KW_LIFECYCLE: + { + this.state = 509; + this.tableLifecycle(); + } + break; default: throw new antlr.NoViableAltException(this); } } - this.state = 511; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1314,50 +1323,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 512; + this.state = 515; this.replaceTableHeader(); - this.state = 517; + this.state = 520; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 513; + this.state = 516; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 514; + this.state = 517; this.createOrReplaceTableColTypeList(); - this.state = 515; + this.state = 518; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 520; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 519; + this.state = 522; this.tableProvider(); } } - this.state = 522; + this.state = 525; this.createTableClauses(); - this.state = 527; + this.state = 530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 524; + this.state = 527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 523; + this.state = 526; this.match(SparkSqlParser.KW_AS); } } - this.state = 526; + this.state = 529; this.query(); } break; @@ -1368,52 +1377,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 529; + this.state = 532; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 530; - this.match(SparkSqlParser.KW_TABLE); - this.state = 531; - this.tableName(); this.state = 533; + this.match(SparkSqlParser.KW_TABLE); + this.state = 534; + this.tableName(); + this.state = 536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 532; + this.state = 535; this.partitionSpec(); } } - this.state = 535; + this.state = 538; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 536; + this.state = 539; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 544; + this.state = 547; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 537; + this.state = 540; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 538; + this.state = 541; this.match(SparkSqlParser.KW_FOR); - this.state = 539; + this.state = 542; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 540; + this.state = 543; this.columnNameSeq(); } break; case 3: { - this.state = 541; + this.state = 544; this.match(SparkSqlParser.KW_FOR); - this.state = 542; + this.state = 545; this.match(SparkSqlParser.KW_ALL); - this.state = 543; + this.state = 546; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1424,16 +1433,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 546; + this.state = 549; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 547; - this.match(SparkSqlParser.KW_TABLES); this.state = 550; + this.match(SparkSqlParser.KW_TABLES); + this.state = 553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 548; + this.state = 551; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1442,21 +1451,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 549; + this.state = 552; this.namespaceName(); } } - this.state = 552; - this.match(SparkSqlParser.KW_COMPUTE); - this.state = 553; - this.match(SparkSqlParser.KW_STATISTICS); this.state = 555; + this.match(SparkSqlParser.KW_COMPUTE); + this.state = 556; + this.match(SparkSqlParser.KW_STATISTICS); + this.state = 558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 195) { + if (_la === 196) { { - this.state = 554; + this.state = 557; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1467,17 +1476,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 557; - this.match(SparkSqlParser.KW_ALTER); - this.state = 558; - this.match(SparkSqlParser.KW_TABLE); - this.state = 559; - this.tableName(); this.state = 560; - this.match(SparkSqlParser.KW_ADD); + this.match(SparkSqlParser.KW_ALTER); this.state = 561; - this.match(SparkSqlParser.KW_COLUMN); + this.match(SparkSqlParser.KW_TABLE); this.state = 562; + this.tableName(); + this.state = 563; + this.match(SparkSqlParser.KW_ADD); + this.state = 564; + this.match(SparkSqlParser.KW_COLUMN); + this.state = 565; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1485,21 +1494,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 564; - this.match(SparkSqlParser.KW_ALTER); - this.state = 565; - this.match(SparkSqlParser.KW_TABLE); - this.state = 566; - this.tableName(); this.state = 567; - this.match(SparkSqlParser.KW_ADD); + this.match(SparkSqlParser.KW_ALTER); this.state = 568; - this.match(SparkSqlParser.KW_COLUMNS); + this.match(SparkSqlParser.KW_TABLE); this.state = 569; - this.match(SparkSqlParser.LEFT_PAREN); + this.tableName(); this.state = 570; - this.qualifiedColTypeWithPositionSeqForAdd(); + this.match(SparkSqlParser.KW_ADD); this.state = 571; + this.match(SparkSqlParser.KW_COLUMNS); + this.state = 572; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 573; + this.qualifiedColTypeWithPositionSeqForAdd(); + this.state = 574; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1507,21 +1516,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 573; - this.match(SparkSqlParser.KW_ALTER); - this.state = 574; - this.match(SparkSqlParser.KW_TABLE); - this.state = 575; - (localContext as RenameTableColumnContext)._table = this.tableName(); this.state = 576; - this.match(SparkSqlParser.KW_RENAME); + this.match(SparkSqlParser.KW_ALTER); this.state = 577; - this.match(SparkSqlParser.KW_COLUMN); + this.match(SparkSqlParser.KW_TABLE); this.state = 578; - this.columnName(); + (localContext as RenameTableColumnContext)._table = this.tableName(); this.state = 579; - this.match(SparkSqlParser.KW_TO); + this.match(SparkSqlParser.KW_RENAME); this.state = 580; + this.match(SparkSqlParser.KW_COLUMN); + this.state = 581; + this.columnName(); + this.state = 582; + this.match(SparkSqlParser.KW_TO); + this.state = 583; this.columnNameCreate(); } break; @@ -1529,27 +1538,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 582; - this.match(SparkSqlParser.KW_ALTER); - this.state = 583; - this.match(SparkSqlParser.KW_TABLE); - this.state = 584; - this.tableName(); this.state = 585; - this.match(SparkSqlParser.KW_DROP); + this.match(SparkSqlParser.KW_ALTER); this.state = 586; - this.match(SparkSqlParser.KW_COLUMN); + this.match(SparkSqlParser.KW_TABLE); + this.state = 587; + this.tableName(); this.state = 588; + this.match(SparkSqlParser.KW_DROP); + this.state = 589; + this.match(SparkSqlParser.KW_COLUMN); + this.state = 591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 587; + this.state = 590; this.ifExists(); } break; } - this.state = 590; + this.state = 593; this.columnName(); } break; @@ -1557,31 +1566,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 592; - this.match(SparkSqlParser.KW_ALTER); - this.state = 593; - this.match(SparkSqlParser.KW_TABLE); - this.state = 594; - this.tableName(); this.state = 595; - this.match(SparkSqlParser.KW_DROP); + this.match(SparkSqlParser.KW_ALTER); this.state = 596; - this.match(SparkSqlParser.KW_COLUMNS); + this.match(SparkSqlParser.KW_TABLE); + this.state = 597; + this.tableName(); this.state = 598; + this.match(SparkSqlParser.KW_DROP); + this.state = 599; + this.match(SparkSqlParser.KW_COLUMNS); + this.state = 601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 597; + this.state = 600; this.ifExists(); } } - this.state = 600; + this.state = 603; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 601; + this.state = 604; this.columnNameSeq(); - this.state = 602; + this.state = 605; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1589,35 +1598,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 604; + this.state = 607; this.match(SparkSqlParser.KW_ALTER); - this.state = 609; + this.state = 612; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 605; + this.state = 608; this.match(SparkSqlParser.KW_TABLE); - this.state = 606; + this.state = 609; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 607; + this.state = 610; this.match(SparkSqlParser.KW_VIEW); - this.state = 608; + this.state = 611; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 611; + this.state = 614; this.match(SparkSqlParser.KW_RENAME); - this.state = 612; + this.state = 615; this.match(SparkSqlParser.KW_TO); - this.state = 613; + this.state = 616; this.multipartIdentifier(); } break; @@ -1625,35 +1634,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 615; + this.state = 618; this.match(SparkSqlParser.KW_ALTER); - this.state = 620; + this.state = 623; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 616; + this.state = 619; this.match(SparkSqlParser.KW_TABLE); - this.state = 617; + this.state = 620; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 618; + this.state = 621; this.match(SparkSqlParser.KW_VIEW); - this.state = 619; + this.state = 622; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 622; + this.state = 625; this.match(SparkSqlParser.KW_SET); - this.state = 623; + this.state = 626; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 624; + this.state = 627; this.propertyList(); } break; @@ -1661,45 +1670,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 626; + this.state = 629; this.match(SparkSqlParser.KW_ALTER); - this.state = 631; + this.state = 634; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 627; + this.state = 630; this.match(SparkSqlParser.KW_TABLE); - this.state = 628; + this.state = 631; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 629; + this.state = 632; this.match(SparkSqlParser.KW_VIEW); - this.state = 630; + this.state = 633; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 633; - this.match(SparkSqlParser.KW_UNSET); - this.state = 634; - this.match(SparkSqlParser.KW_TBLPROPERTIES); this.state = 636; + this.match(SparkSqlParser.KW_UNSET); + this.state = 637; + this.match(SparkSqlParser.KW_TBLPROPERTIES); + this.state = 639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 635; + this.state = 638; this.ifExists(); } } - this.state = 638; + this.state = 641; this.propertyList(); } break; @@ -1707,13 +1716,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 640; - this.match(SparkSqlParser.KW_ALTER); - this.state = 641; - this.match(SparkSqlParser.KW_TABLE); - this.state = 642; - (localContext as AlterTableAlterColumnContext)._table = this.tableName(); this.state = 643; + this.match(SparkSqlParser.KW_ALTER); + this.state = 644; + this.match(SparkSqlParser.KW_TABLE); + this.state = 645; + (localContext as AlterTableAlterColumnContext)._table = this.tableName(); + this.state = 646; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1722,24 +1731,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 645; + this.state = 648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: { - this.state = 644; + this.state = 647; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 647; + this.state = 650; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 649; + this.state = 652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: { - this.state = 648; + this.state = 651; this.alterColumnAction(); } break; @@ -1750,44 +1759,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 651; + this.state = 654; this.match(SparkSqlParser.KW_ALTER); - this.state = 652; - this.match(SparkSqlParser.KW_TABLE); - this.state = 653; - (localContext as HiveChangeColumnContext)._table = this.tableName(); this.state = 655; + this.match(SparkSqlParser.KW_TABLE); + this.state = 656; + (localContext as HiveChangeColumnContext)._table = this.tableName(); + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 654; + this.state = 657; this.partitionSpec(); } } - this.state = 657; + this.state = 660; this.match(SparkSqlParser.KW_CHANGE); - this.state = 659; + this.state = 662; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 658; + this.state = 661; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 661; - (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 662; - this.colType(); this.state = 664; + (localContext as HiveChangeColumnContext)._colName = this.columnName(); + this.state = 665; + this.colType(); + this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 663; + this.state = 666; this.colPosition(); } } @@ -1798,31 +1807,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 666; + this.state = 669; this.match(SparkSqlParser.KW_ALTER); - this.state = 667; - this.match(SparkSqlParser.KW_TABLE); - this.state = 668; - (localContext as HiveReplaceColumnsContext)._table = this.tableName(); this.state = 670; + this.match(SparkSqlParser.KW_TABLE); + this.state = 671; + (localContext as HiveReplaceColumnsContext)._table = this.tableName(); + this.state = 673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 669; + this.state = 672; this.partitionSpec(); } } - this.state = 672; - this.match(SparkSqlParser.KW_REPLACE); - this.state = 673; - this.match(SparkSqlParser.KW_COLUMNS); - this.state = 674; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 675; - this.qualifiedColTypeWithPositionSeqForReplace(); + this.match(SparkSqlParser.KW_REPLACE); this.state = 676; + this.match(SparkSqlParser.KW_COLUMNS); + this.state = 677; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 678; + this.qualifiedColTypeWithPositionSeqForReplace(); + this.state = 679; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1830,38 +1839,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 678; + this.state = 681; this.match(SparkSqlParser.KW_ALTER); - this.state = 679; - this.match(SparkSqlParser.KW_TABLE); - this.state = 680; - this.tableName(); this.state = 682; + this.match(SparkSqlParser.KW_TABLE); + this.state = 683; + this.tableName(); + this.state = 685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 681; + this.state = 684; this.partitionSpec(); } } - this.state = 684; + this.state = 687; this.match(SparkSqlParser.KW_SET); - this.state = 685; + this.state = 688; this.match(SparkSqlParser.KW_SERDE); - this.state = 686; + this.state = 689; this.stringLit(); - this.state = 690; + this.state = 693; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 687; + this.state = 690; this.match(SparkSqlParser.KW_WITH); - this.state = 688; + this.state = 691; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 689; + this.state = 692; this.propertyList(); } break; @@ -1872,27 +1881,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 692; + this.state = 695; this.match(SparkSqlParser.KW_ALTER); - this.state = 693; - this.match(SparkSqlParser.KW_TABLE); - this.state = 694; - this.tableName(); this.state = 696; + this.match(SparkSqlParser.KW_TABLE); + this.state = 697; + this.tableName(); + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 695; + this.state = 698; this.partitionSpec(); } } - this.state = 698; + this.state = 701; this.match(SparkSqlParser.KW_SET); - this.state = 699; + this.state = 702; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 700; + this.state = 703; this.propertyList(); } break; @@ -1900,142 +1909,142 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 702; + this.state = 705; this.match(SparkSqlParser.KW_ALTER); - this.state = 707; + this.state = 710; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 703; + this.state = 706; this.match(SparkSqlParser.KW_TABLE); - this.state = 704; + this.state = 707; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 705; + this.state = 708; this.match(SparkSqlParser.KW_VIEW); - this.state = 706; + this.state = 709; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 709; + this.state = 712; this.match(SparkSqlParser.KW_ADD); - this.state = 711; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 710; + this.state = 713; this.ifNotExists(); } } - this.state = 714; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 713; + this.state = 716; this.partitionSpecLocation(); } } - this.state = 716; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 216); + } while (_la === 217); } break; case 29: localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 718; - this.match(SparkSqlParser.KW_ALTER); - this.state = 719; - this.match(SparkSqlParser.KW_TABLE); - this.state = 720; - this.tableName(); this.state = 721; - this.partitionSpec(); + this.match(SparkSqlParser.KW_ALTER); this.state = 722; - this.match(SparkSqlParser.KW_RENAME); + this.match(SparkSqlParser.KW_TABLE); this.state = 723; - this.match(SparkSqlParser.KW_TO); + this.tableName(); this.state = 724; this.partitionSpec(); + this.state = 725; + this.match(SparkSqlParser.KW_RENAME); + this.state = 726; + this.match(SparkSqlParser.KW_TO); + this.state = 727; + this.partitionSpec(); } break; case 30: localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 726; + this.state = 729; this.match(SparkSqlParser.KW_ALTER); - this.state = 731; + this.state = 734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 727; + this.state = 730; this.match(SparkSqlParser.KW_TABLE); - this.state = 728; + this.state = 731; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 729; + this.state = 732; this.match(SparkSqlParser.KW_VIEW); - this.state = 730; + this.state = 733; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 733; + this.state = 736; this.match(SparkSqlParser.KW_DROP); - this.state = 735; + this.state = 738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 734; + this.state = 737; this.ifExists(); } } - this.state = 737; + this.state = 740; this.partitionSpec(); - this.state = 742; + this.state = 745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 738; + this.state = 741; this.match(SparkSqlParser.COMMA); - this.state = 739; + this.state = 742; this.partitionSpec(); } } - this.state = 744; + this.state = 747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 746; + this.state = 749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 229) { + if (_la === 230) { { - this.state = 745; + this.state = 748; this.match(SparkSqlParser.KW_PURGE); } } @@ -2046,25 +2055,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 748; + this.state = 751; this.match(SparkSqlParser.KW_ALTER); - this.state = 749; - this.match(SparkSqlParser.KW_TABLE); - this.state = 750; - this.tableName(); this.state = 752; + this.match(SparkSqlParser.KW_TABLE); + this.state = 753; + this.tableName(); + this.state = 755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 751; + this.state = 754; this.partitionSpec(); } } - this.state = 754; + this.state = 757; this.match(SparkSqlParser.KW_SET); - this.state = 755; + this.state = 758; this.locationSpec(); } break; @@ -2072,15 +2081,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 757; - this.match(SparkSqlParser.KW_ALTER); - this.state = 758; - this.match(SparkSqlParser.KW_TABLE); - this.state = 759; - this.tableName(); this.state = 760; - this.match(SparkSqlParser.KW_RECOVER); + this.match(SparkSqlParser.KW_ALTER); this.state = 761; + this.match(SparkSqlParser.KW_TABLE); + this.state = 762; + this.tableName(); + this.state = 763; + this.match(SparkSqlParser.KW_RECOVER); + this.state = 764; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2088,15 +2097,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 763; - this.match(SparkSqlParser.KW_ALTER); - this.state = 764; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 765; - this.match(SparkSqlParser.KW_VIEW); this.state = 766; - this.viewName(); + this.match(SparkSqlParser.KW_ALTER); this.state = 767; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 768; + this.match(SparkSqlParser.KW_VIEW); + this.state = 769; + this.viewName(); + this.state = 770; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2105,7 +2114,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 768; + this.state = 771; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2113,19 +2122,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 770; - this.match(SparkSqlParser.KW_ALTER); - this.state = 771; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 772; - this.match(SparkSqlParser.KW_VIEW); this.state = 773; - this.viewName(); + this.match(SparkSqlParser.KW_ALTER); this.state = 774; - this.match(SparkSqlParser.KW_SET); + this.match(SparkSqlParser.KW_MATERIALIZED); this.state = 775; - this.match(SparkSqlParser.KW_TBLPROPERTIES); + this.match(SparkSqlParser.KW_VIEW); this.state = 776; + this.viewName(); + this.state = 777; + this.match(SparkSqlParser.KW_SET); + this.state = 778; + this.match(SparkSqlParser.KW_TBLPROPERTIES); + this.state = 779; this.propertyList(); } break; @@ -2133,28 +2142,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 778; - this.match(SparkSqlParser.KW_DROP); - this.state = 779; - this.match(SparkSqlParser.KW_TABLE); this.state = 781; + this.match(SparkSqlParser.KW_DROP); + this.state = 782; + this.match(SparkSqlParser.KW_TABLE); + this.state = 784; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 780; + this.state = 783; this.ifExists(); } break; } - this.state = 783; + this.state = 786; this.tableName(); - this.state = 785; + this.state = 788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 229) { + if (_la === 230) { { - this.state = 784; + this.state = 787; this.match(SparkSqlParser.KW_PURGE); } } @@ -2165,21 +2174,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 787; - this.match(SparkSqlParser.KW_DROP); - this.state = 788; - this.match(SparkSqlParser.KW_VIEW); this.state = 790; + this.match(SparkSqlParser.KW_DROP); + this.state = 791; + this.match(SparkSqlParser.KW_VIEW); + this.state = 793; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 789; + this.state = 792; this.ifExists(); } break; } - this.state = 792; + this.state = 795; this.viewName(); } break; @@ -2187,23 +2196,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 793; + this.state = 796; this.match(SparkSqlParser.KW_DROP); - this.state = 794; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 795; - this.match(SparkSqlParser.KW_VIEW); this.state = 797; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 798; + this.match(SparkSqlParser.KW_VIEW); + this.state = 800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 796; + this.state = 799; this.ifExists(); } break; } - this.state = 799; + this.state = 802; this.viewName(); } break; @@ -2211,86 +2220,86 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 800; - this.match(SparkSqlParser.KW_CREATE); this.state = 803; + this.match(SparkSqlParser.KW_CREATE); + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 207) { + if (_la === 208) { { - this.state = 801; + this.state = 804; this.match(SparkSqlParser.KW_OR); - this.state = 802; + this.state = 805; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 809; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 128 || _la === 297) { + if (_la === 128 || _la === 298) { { - this.state = 806; + this.state = 809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 805; + this.state = 808; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 808; + this.state = 811; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 811; + this.state = 814; this.match(SparkSqlParser.KW_VIEW); - this.state = 813; + this.state = 816; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 812; + this.state = 815; this.ifNotExists(); } break; } - this.state = 815; + this.state = 818; this.viewNameCreate(); - this.state = 817; + this.state = 820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 816; + this.state = 819; this.identifierCommentList(); } } - this.state = 827; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 51 || _la === 217 || _la === 296) { + while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 825; + this.state = 828; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 819; + this.state = 822; this.commentSpec(); } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 820; + this.state = 823; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 821; + this.state = 824; this.match(SparkSqlParser.KW_ON); - this.state = 822; + this.state = 825; this.identifierList(); } } @@ -2298,9 +2307,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 823; + this.state = 826; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 824; + this.state = 827; this.propertyList(); } } @@ -2309,13 +2318,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 829; + this.state = 832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 830; + this.state = 833; this.match(SparkSqlParser.KW_AS); - this.state = 831; + this.state = 834; this.query(); } break; @@ -2323,60 +2332,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 833; - this.match(SparkSqlParser.KW_CREATE); this.state = 836; + this.match(SparkSqlParser.KW_CREATE); + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 207) { + if (_la === 208) { { - this.state = 834; + this.state = 837; this.match(SparkSqlParser.KW_OR); - this.state = 835; + this.state = 838; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 839; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 838; + this.state = 841; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 841; + this.state = 844; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 842; + this.state = 845; this.match(SparkSqlParser.KW_VIEW); - this.state = 843; + this.state = 846; this.viewNameCreate(); - this.state = 848; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 844; + this.state = 847; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 845; + this.state = 848; this.colTypeList(); - this.state = 846; + this.state = 849; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 850; - this.tableProvider(); this.state = 853; + this.tableProvider(); + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 206) { + if (_la === 207) { { - this.state = 851; + this.state = 854; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 852; + this.state = 855; this.propertyList(); } } @@ -2387,23 +2396,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 855; + this.state = 858; this.match(SparkSqlParser.KW_ALTER); - this.state = 856; - this.match(SparkSqlParser.KW_VIEW); - this.state = 857; - this.viewName(); this.state = 859; + this.match(SparkSqlParser.KW_VIEW); + this.state = 860; + this.viewName(); + this.state = 862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 858; + this.state = 861; this.match(SparkSqlParser.KW_AS); } } - this.state = 861; + this.state = 864; this.query(); } break; @@ -2411,70 +2420,70 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 863; - this.match(SparkSqlParser.KW_CREATE); this.state = 866; + this.match(SparkSqlParser.KW_CREATE); + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 207) { + if (_la === 208) { { - this.state = 864; + this.state = 867; this.match(SparkSqlParser.KW_OR); - this.state = 865; + this.state = 868; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 869; + this.state = 872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 297) { + if (_la === 298) { { - this.state = 868; + this.state = 871; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 871; + this.state = 874; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 873; + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 872; + this.state = 875; this.ifNotExists(); } break; } - this.state = 875; + this.state = 878; this.functionNameCreate(); - this.state = 876; + this.state = 879; this.match(SparkSqlParser.KW_AS); - this.state = 877; + this.state = 880; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 887; + this.state = 890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 878; + this.state = 881; this.match(SparkSqlParser.KW_USING); - this.state = 879; + this.state = 882; this.resource(); - this.state = 884; + this.state = 887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 880; + this.state = 883; this.match(SparkSqlParser.COMMA); - this.state = 881; + this.state = 884; this.resource(); } } - this.state = 886; + this.state = 889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2487,48 +2496,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 889; + this.state = 892; this.match(SparkSqlParser.KW_CREATE); - this.state = 890; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 891; - this.match(SparkSqlParser.KW_VIEW); this.state = 893; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 894; + this.match(SparkSqlParser.KW_VIEW); + this.state = 896; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 892; + this.state = 895; this.ifNotExists(); } break; } - this.state = 895; + this.state = 898; this.viewNameCreate(); - this.state = 897; + this.state = 900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 896; + this.state = 899; this.tableProvider(); } } - this.state = 914; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 45 || _la === 51 || _la === 169 || _la === 206 || _la === 217 || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 67371009) !== 0) || _la === 296) { + while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 912; + this.state = 915; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 899; + this.state = 902; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 900; + this.state = 903; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2536,57 +2545,57 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 901; + this.state = 904; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 902; + this.state = 905; this.match(SparkSqlParser.KW_BY); - this.state = 903; + this.state = 906; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 904; + this.state = 907; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 905; + this.state = 908; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 906; + this.state = 909; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 907; + this.state = 910; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 908; + this.state = 911; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 909; + this.state = 912; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 910; + this.state = 913; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 911; + this.state = 914; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2595,13 +2604,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 916; + this.state = 919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 917; + this.state = 920; this.match(SparkSqlParser.KW_AS); - this.state = 918; + this.state = 921; this.query(); } break; @@ -2609,31 +2618,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 920; + this.state = 923; this.match(SparkSqlParser.KW_DROP); - this.state = 922; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 297) { + if (_la === 298) { { - this.state = 921; + this.state = 924; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 924; + this.state = 927; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 926; + this.state = 929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 925; + this.state = 928; this.ifExists(); } break; } - this.state = 928; + this.state = 931; this.functionName(); } break; @@ -2641,48 +2650,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 929; - this.match(SparkSqlParser.KW_DECLARE); this.state = 932; + this.match(SparkSqlParser.KW_DECLARE); + this.state = 935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 930; + this.state = 933; this.match(SparkSqlParser.KW_OR); - this.state = 931; + this.state = 934; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 935; + this.state = 938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { case 1: { - this.state = 934; + this.state = 937; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 937; + this.state = 940; this.functionName(); - this.state = 939; + this.state = 942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 938; + this.state = 941; this.dataType(); } break; } - this.state = 942; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 82 || _la === 351) { + if (_la === 82 || _la === 352) { { - this.state = 941; + this.state = 944; this.variableDefaultExpression(); } } @@ -2693,40 +2702,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 944; + this.state = 947; this.match(SparkSqlParser.KW_DROP); - this.state = 945; - this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 946; - this.match(SparkSqlParser.KW_VARIABLE); this.state = 948; + this.match(SparkSqlParser.KW_TEMPORARY); + this.state = 949; + this.match(SparkSqlParser.KW_VARIABLE); + this.state = 951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 947; + this.state = 950; this.ifExists(); } break; } - this.state = 953; + this.state = 956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 950; + this.state = 953; this.tableName(); } break; case 2: { - this.state = 951; + this.state = 954; this.viewName(); } break; case 3: { - this.state = 952; + this.state = 955; this.functionName(); } break; @@ -2737,16 +2746,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 955; + this.state = 958; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 957; + this.state = 960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 172) { + if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 956; + this.state = 959; _la = this.tokenStream.LA(1); - if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 172)) { + if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); } else { @@ -2756,7 +2765,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 959; + this.state = 962; this.statement(); } break; @@ -2764,16 +2773,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 960; + this.state = 963; this.match(SparkSqlParser.KW_SHOW); - this.state = 961; - this.match(SparkSqlParser.KW_TABLES); this.state = 964; + this.match(SparkSqlParser.KW_TABLES); + this.state = 967; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 962; + this.state = 965; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2782,27 +2791,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 963; + this.state = 966; this.namespaceName(); } break; } - this.state = 970; + this.state = 973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { + if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 967; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162) { + if (_la === 163) { { - this.state = 966; + this.state = 969; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 969; + this.state = 972; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2813,18 +2822,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 972; + this.state = 975; this.match(SparkSqlParser.KW_SHOW); - this.state = 973; + this.state = 976; this.match(SparkSqlParser.KW_TABLE); - this.state = 974; - this.match(SparkSqlParser.KW_EXTENDED); this.state = 977; + this.match(SparkSqlParser.KW_EXTENDED); + this.state = 980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 975; + this.state = 978; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2833,21 +2842,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 976; + this.state = 979; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 979; - this.match(SparkSqlParser.KW_LIKE); - this.state = 980; - (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); this.state = 982; + this.match(SparkSqlParser.KW_LIKE); + this.state = 983; + (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); + this.state = 985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 981; + this.state = 984; this.partitionSpec(); } } @@ -2858,22 +2867,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 984; + this.state = 987; this.match(SparkSqlParser.KW_SHOW); - this.state = 985; + this.state = 988; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 986; + this.state = 989; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 991; + this.state = 994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 987; + this.state = 990; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 988; + this.state = 991; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 989; + this.state = 992; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2884,11 +2893,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 993; + this.state = 996; this.match(SparkSqlParser.KW_SHOW); - this.state = 994; + this.state = 997; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 995; + this.state = 998; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2897,14 +2906,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 996; - (localContext as ShowColumnsContext)._table = this.tableName(); this.state = 999; + (localContext as ShowColumnsContext)._table = this.tableName(); + this.state = 1002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 997; + this.state = 1000; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2913,7 +2922,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 998; + this.state = 1001; this.namespaceName(); } break; @@ -2924,16 +2933,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 1001; + this.state = 1004; this.match(SparkSqlParser.KW_SHOW); - this.state = 1002; - this.match(SparkSqlParser.KW_VIEWS); this.state = 1005; + this.match(SparkSqlParser.KW_VIEWS); + this.state = 1008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1003; + this.state = 1006; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2942,27 +2951,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1004; + this.state = 1007; this.namespaceName(); } break; } - this.state = 1011; + this.state = 1014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { + if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1008; + this.state = 1011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162) { + if (_la === 163) { { - this.state = 1007; + this.state = 1010; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1010; + this.state = 1013; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -2973,18 +2982,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1013; + this.state = 1016; this.match(SparkSqlParser.KW_SHOW); - this.state = 1014; - this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1015; - this.tableName(); this.state = 1017; + this.match(SparkSqlParser.KW_PARTITIONS); + this.state = 1018; + this.tableName(); + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1016; + this.state = 1019; this.partitionSpec(); } } @@ -2995,26 +3004,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1019; + this.state = 1022; this.match(SparkSqlParser.KW_SHOW); - this.state = 1021; + this.state = 1024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 10 || _la === 289 || _la === 330) { + if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1020; + this.state = 1023; this.functionKind(); } } - this.state = 1023; - this.match(SparkSqlParser.KW_FUNCTIONS); this.state = 1026; + this.match(SparkSqlParser.KW_FUNCTIONS); + this.state = 1029; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1024; + this.state = 1027; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3023,38 +3032,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1025; + this.state = 1028; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1035; + this.state = 1038; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1029; + this.state = 1032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1028; + this.state = 1031; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1033; + this.state = 1036; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1031; + this.state = 1034; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1032; + this.state = 1035; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3068,22 +3077,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1037; - this.match(SparkSqlParser.KW_SHOW); - this.state = 1038; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1039; - this.match(SparkSqlParser.KW_TABLE); this.state = 1040; - this.tableName(); + this.match(SparkSqlParser.KW_SHOW); + this.state = 1041; + this.match(SparkSqlParser.KW_CREATE); + this.state = 1042; + this.match(SparkSqlParser.KW_TABLE); this.state = 1043; + this.tableName(); + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1041; + this.state = 1044; this.match(SparkSqlParser.KW_AS); - this.state = 1042; + this.state = 1045; this.match(SparkSqlParser.KW_SERDE); } } @@ -3094,11 +3103,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1045; + this.state = 1048; this.match(SparkSqlParser.KW_SHOW); - this.state = 1046; + this.state = 1049; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1047; + this.state = 1050; this.namespace(); } break; @@ -3106,26 +3115,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1048; + this.state = 1051; this.match(SparkSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1052; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1054; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { + if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1051; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162) { + if (_la === 163) { { - this.state = 1050; + this.state = 1053; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1053; + this.state = 1056; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3136,18 +3145,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1056; + this.state = 1059; this.match(SparkSqlParser.KW_SHOW); - this.state = 1057; + this.state = 1060; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1058; - this.match(SparkSqlParser.KW_VIEWS); this.state = 1061; + this.match(SparkSqlParser.KW_VIEWS); + this.state = 1064; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1059; + this.state = 1062; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3156,27 +3165,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1060; + this.state = 1063; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1067; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162 || _la === 376 || _la === 377) { + if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1064; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 162) { + if (_la === 163) { { - this.state = 1063; + this.state = 1066; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1066; + this.state = 1069; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3187,24 +3196,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1069; - this.match(SparkSqlParser.KW_SHOW); - this.state = 1070; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1071; - this.match(SparkSqlParser.KW_MATERIALIZED); this.state = 1072; - this.match(SparkSqlParser.KW_VIEW); + this.match(SparkSqlParser.KW_SHOW); this.state = 1073; - this.viewName(); + this.match(SparkSqlParser.KW_CREATE); + this.state = 1074; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 1075; + this.match(SparkSqlParser.KW_VIEW); this.state = 1076; + this.viewName(); + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1074; + this.state = 1077; this.match(SparkSqlParser.KW_AS); - this.state = 1075; + this.state = 1078; this.match(SparkSqlParser.KW_SERDE); } } @@ -3215,7 +3224,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1078; + this.state = 1081; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3224,19 +3233,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1079; + this.state = 1082; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1081; + this.state = 1084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1080; + this.state = 1083; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1083; + this.state = 1086; this.describeFuncName(); } break; @@ -3244,7 +3253,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1084; + this.state = 1087; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3253,19 +3262,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1085; + this.state = 1088; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1087; + this.state = 1090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1086; + this.state = 1089; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1089; + this.state = 1092; this.namespaceName(); } break; @@ -3273,7 +3282,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1090; + this.state = 1093; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3282,22 +3291,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1092; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1091; + this.state = 1094; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1095; + this.state = 1098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1094; + this.state = 1097; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3310,24 +3319,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1097; + this.state = 1100; this.tableName(); - this.state = 1099; + this.state = 1102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1098; + this.state = 1101; this.partitionSpec(); } break; } - this.state = 1102; + this.state = 1105; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1101; + this.state = 1104; this.describeColName(); } break; @@ -3338,7 +3347,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1104; + this.state = 1107; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3347,17 +3356,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1106; + this.state = 1109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 231) { + if (_la === 232) { { - this.state = 1105; + this.state = 1108; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1108; + this.state = 1111; this.query(); } break; @@ -3365,17 +3374,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentNamespaceContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1109; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1110; - this.match(SparkSqlParser.KW_ON); - this.state = 1111; - this.namespace(); this.state = 1112; - this.namespaceName(); + this.match(SparkSqlParser.KW_COMMENT); this.state = 1113; - this.match(SparkSqlParser.KW_IS); + this.match(SparkSqlParser.KW_ON); this.state = 1114; + this.namespace(); + this.state = 1115; + this.namespaceName(); + this.state = 1116; + this.match(SparkSqlParser.KW_IS); + this.state = 1117; this.comment(); } break; @@ -3383,17 +3392,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1116; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1117; - this.match(SparkSqlParser.KW_ON); - this.state = 1118; - this.match(SparkSqlParser.KW_TABLE); this.state = 1119; - this.tableName(); + this.match(SparkSqlParser.KW_COMMENT); this.state = 1120; - this.match(SparkSqlParser.KW_IS); + this.match(SparkSqlParser.KW_ON); this.state = 1121; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1122; + this.tableName(); + this.state = 1123; + this.match(SparkSqlParser.KW_IS); + this.state = 1124; this.comment(); } break; @@ -3401,11 +3410,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1123; + this.state = 1126; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1124; + this.state = 1127; this.match(SparkSqlParser.KW_TABLE); - this.state = 1125; + this.state = 1128; this.tableName(); } break; @@ -3413,11 +3422,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1126; + this.state = 1129; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1127; + this.state = 1130; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1128; + this.state = 1131; this.functionName(); } break; @@ -3425,32 +3434,32 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshResourceContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1129; + this.state = 1132; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1137; + this.state = 1140; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1130; + this.state = 1133; this.stringLit(); } break; case 2: { - this.state = 1134; + this.state = 1137; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1131; + this.state = 1134; this.matchWildcard(); } } } - this.state = 1136; + this.state = 1139; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); } @@ -3463,13 +3472,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1139; - this.match(SparkSqlParser.KW_REFRESH); - this.state = 1140; - this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1141; - this.match(SparkSqlParser.KW_VIEW); this.state = 1142; + this.match(SparkSqlParser.KW_REFRESH); + this.state = 1143; + this.match(SparkSqlParser.KW_MATERIALIZED); + this.state = 1144; + this.match(SparkSqlParser.KW_VIEW); + this.state = 1145; this.viewName(); } break; @@ -3477,50 +3486,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CacheTableContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1143; + this.state = 1146; this.match(SparkSqlParser.KW_CACHE); - this.state = 1145; + this.state = 1148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1144; + this.state = 1147; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1147; + this.state = 1150; this.match(SparkSqlParser.KW_TABLE); - this.state = 1148; - this.tableName(); this.state = 1151; + this.tableName(); + this.state = 1154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 206) { + if (_la === 207) { { - this.state = 1149; + this.state = 1152; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1150; + this.state = 1153; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1157; + this.state = 1160; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1154; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1153; + this.state = 1156; this.match(SparkSqlParser.KW_AS); } } - this.state = 1156; + this.state = 1159; this.query(); } break; @@ -3531,21 +3540,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnCacheTableContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1159; - this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1160; - this.match(SparkSqlParser.KW_TABLE); this.state = 1162; + this.match(SparkSqlParser.KW_UNCACHE); + this.state = 1163; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1161; + this.state = 1164; this.ifExists(); } break; } - this.state = 1164; + this.state = 1167; this.tableName(); } break; @@ -3553,9 +3562,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ClearCacheContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1165; + this.state = 1168; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1166; + this.state = 1169; this.match(SparkSqlParser.KW_CACHE); } break; @@ -3563,46 +3572,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new LoadDataContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1167; - this.match(SparkSqlParser.KW_LOAD); - this.state = 1168; - this.match(SparkSqlParser.KW_DATA); this.state = 1170; + this.match(SparkSqlParser.KW_LOAD); + this.state = 1171; + this.match(SparkSqlParser.KW_DATA); + this.state = 1173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 168) { + if (_la === 169) { { - this.state = 1169; + this.state = 1172; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1172; - this.match(SparkSqlParser.KW_INPATH); - this.state = 1173; - (localContext as LoadDataContext)._path = this.stringLit(); this.state = 1175; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 215) { - { - this.state = 1174; - this.match(SparkSqlParser.KW_OVERWRITE); - } - } - - this.state = 1177; - this.match(SparkSqlParser.KW_INTO); + this.match(SparkSqlParser.KW_INPATH); + this.state = 1176; + (localContext as LoadDataContext)._path = this.stringLit(); this.state = 1178; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1179; - this.tableName(); - this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1180; + this.state = 1177; + this.match(SparkSqlParser.KW_OVERWRITE); + } + } + + this.state = 1180; + this.match(SparkSqlParser.KW_INTO); + this.state = 1181; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1182; + this.tableName(); + this.state = 1184; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 217) { + { + this.state = 1183; this.partitionSpec(); } } @@ -3613,18 +3622,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1183; + this.state = 1186; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1184; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1185; - this.tableName(); this.state = 1187; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1188; + this.tableName(); + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1186; + this.state = 1189; this.partitionSpec(); } } @@ -3635,38 +3644,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1190; + this.state = 1193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 187) { + if (_la === 188) { { - this.state = 1189; + this.state = 1192; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1192; + this.state = 1195; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1193; + this.state = 1196; this.match(SparkSqlParser.KW_TABLE); - this.state = 1194; - this.tableName(); this.state = 1197; + this.tableName(); + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1195; + this.state = 1198; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 8 || _la === 96 || _la === 288)) { + if(!(_la === 8 || _la === 96 || _la === 289)) { (localContext as RepairTableContext)._option = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1196; + this.state = 1199; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -3677,31 +3686,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ManageResourceContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1199; + this.state = 1202; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 8 || _la === 166)) { + if(!(_la === 8 || _la === 167)) { (localContext as ManageResourceContext)._op = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1200; + this.state = 1203; this.identifier(); - this.state = 1204; + this.state = 1207; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1201; + this.state = 1204; this.matchWildcard(); } } } - this.state = 1206; + this.state = 1209; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); } @@ -3711,23 +3720,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FailNativeCommandContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1207; + this.state = 1210; this.match(SparkSqlParser.KW_SET); - this.state = 1208; + this.state = 1211; this.match(SparkSqlParser.KW_ROLE); - this.state = 1212; + this.state = 1215; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1209; + this.state = 1212; this.matchWildcard(); } } } - this.state = 1214; + this.state = 1217; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); } @@ -3737,13 +3746,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1215; - this.match(SparkSqlParser.KW_SET); - this.state = 1216; - this.match(SparkSqlParser.KW_TIME); - this.state = 1217; - this.match(SparkSqlParser.KW_ZONE); this.state = 1218; + this.match(SparkSqlParser.KW_SET); + this.state = 1219; + this.match(SparkSqlParser.KW_TIME); + this.state = 1220; + this.match(SparkSqlParser.KW_ZONE); + this.state = 1221; this.interval(); } break; @@ -3751,13 +3760,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1219; - this.match(SparkSqlParser.KW_SET); - this.state = 1220; - this.match(SparkSqlParser.KW_TIME); - this.state = 1221; - this.match(SparkSqlParser.KW_ZONE); this.state = 1222; + this.match(SparkSqlParser.KW_SET); + this.state = 1223; + this.match(SparkSqlParser.KW_TIME); + this.state = 1224; + this.match(SparkSqlParser.KW_ZONE); + this.state = 1225; this.timezone(); } break; @@ -3765,25 +3774,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneAnyContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1223; + this.state = 1226; this.match(SparkSqlParser.KW_SET); - this.state = 1224; + this.state = 1227; this.match(SparkSqlParser.KW_TIME); - this.state = 1225; + this.state = 1228; this.match(SparkSqlParser.KW_ZONE); - this.state = 1229; + this.state = 1232; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1226; + this.state = 1229; this.matchWildcard(); } } } - this.state = 1231; + this.state = 1234; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); } @@ -3793,30 +3802,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableAssignmentContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1232; - this.match(SparkSqlParser.KW_SET); - this.state = 1233; - _la = this.tokenStream.LA(1); - if(!(_la === 334 || _la === 335)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 1234; - this.assignmentList(); - } - break; - case 81: - localContext = new SetVariableMultiAssignmentContext(localContext); - this.enterOuterAlt(localContext, 81); - { this.state = 1235; this.match(SparkSqlParser.KW_SET); this.state = 1236; _la = this.tokenStream.LA(1); - if(!(_la === 334 || _la === 335)) { + if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); } else { @@ -3824,18 +3814,37 @@ export class SparkSqlParser extends SQLParserBase { this.consume(); } this.state = 1237; - this.match(SparkSqlParser.LEFT_PAREN); + this.assignmentList(); + } + break; + case 81: + localContext = new SetVariableMultiAssignmentContext(localContext); + this.enterOuterAlt(localContext, 81); + { this.state = 1238; - this.multipartIdentifierList(); + this.match(SparkSqlParser.KW_SET); this.state = 1239; - this.match(SparkSqlParser.RIGHT_PAREN); + _la = this.tokenStream.LA(1); + if(!(_la === 335 || _la === 336)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } this.state = 1240; - this.match(SparkSqlParser.EQ); - this.state = 1241; this.match(SparkSqlParser.LEFT_PAREN); + this.state = 1241; + this.multipartIdentifierList(); this.state = 1242; - this.query(); + this.match(SparkSqlParser.RIGHT_PAREN); this.state = 1243; + this.match(SparkSqlParser.EQ); + this.state = 1244; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 1245; + this.query(); + this.state = 1246; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -3843,13 +3852,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1245; - this.match(SparkSqlParser.KW_SET); - this.state = 1246; - this.configKey(); - this.state = 1247; - this.match(SparkSqlParser.EQ); this.state = 1248; + this.match(SparkSqlParser.KW_SET); + this.state = 1249; + this.configKey(); + this.state = 1250; + this.match(SparkSqlParser.EQ); + this.state = 1251; this.configValue(); } break; @@ -3857,30 +3866,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAndValueContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1250; + this.state = 1253; this.match(SparkSqlParser.KW_SET); - this.state = 1251; + this.state = 1254; this.configKey(); - this.state = 1259; + this.state = 1262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1252; + this.state = 1255; this.match(SparkSqlParser.EQ); - this.state = 1256; + this.state = 1259; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1253; + this.state = 1256; this.matchWildcard(); } } } - this.state = 1258; + this.state = 1261; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); } @@ -3893,27 +3902,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAnyKeyContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1261; + this.state = 1264; this.match(SparkSqlParser.KW_SET); - this.state = 1265; + this.state = 1268; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1262; + this.state = 1265; this.matchWildcard(); } } } - this.state = 1267; + this.state = 1270; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } - this.state = 1268; + this.state = 1271; this.match(SparkSqlParser.EQ); - this.state = 1269; + this.state = 1272; this.configValue(); } break; @@ -3921,21 +3930,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetAnyContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1270; + this.state = 1273; this.match(SparkSqlParser.KW_SET); - this.state = 1274; + this.state = 1277; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1271; + this.state = 1274; this.matchWildcard(); } } } - this.state = 1276; + this.state = 1279; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -3945,9 +3954,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetConfigContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1277; + this.state = 1280; this.match(SparkSqlParser.KW_RESET); - this.state = 1278; + this.state = 1281; this.configKey(); } break; @@ -3955,21 +3964,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetAnyContext(localContext); this.enterOuterAlt(localContext, 87); { - this.state = 1279; + this.state = 1282; this.match(SparkSqlParser.KW_RESET); - this.state = 1283; + this.state = 1286; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1280; + this.state = 1283; this.matchWildcard(); } } } - this.state = 1285; + this.state = 1288; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -3979,62 +3988,62 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateIndexContext(localContext); this.enterOuterAlt(localContext, 88); { - this.state = 1286; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1287; - this.match(SparkSqlParser.KW_INDEX); this.state = 1289; + this.match(SparkSqlParser.KW_CREATE); + this.state = 1290; + this.match(SparkSqlParser.KW_INDEX); + this.state = 1292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1288; + this.state = 1291; this.ifNotExists(); } break; } - this.state = 1291; - this.identifier(); - this.state = 1292; - this.match(SparkSqlParser.KW_ON); this.state = 1294; + this.identifier(); + this.state = 1295; + this.match(SparkSqlParser.KW_ON); + this.state = 1297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1293; + this.state = 1296; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1296; - this.tableName(); this.state = 1299; + this.tableName(); + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 331) { + if (_la === 332) { { - this.state = 1297; + this.state = 1300; this.match(SparkSqlParser.KW_USING); - this.state = 1298; + this.state = 1301; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1301; + this.state = 1304; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1302; + this.state = 1305; this.multipartIdentifierPropertyList(); - this.state = 1303; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 1306; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 206) { + if (_la === 207) { { - this.state = 1304; + this.state = 1307; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1305; + this.state = 1308; (localContext as CreateIndexContext)._options = this.propertyList(); } } @@ -4045,35 +4054,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropIndexContext(localContext); this.enterOuterAlt(localContext, 89); { - this.state = 1308; - this.match(SparkSqlParser.KW_DROP); - this.state = 1309; - this.match(SparkSqlParser.KW_INDEX); this.state = 1311; + this.match(SparkSqlParser.KW_DROP); + this.state = 1312; + this.match(SparkSqlParser.KW_INDEX); + this.state = 1314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1310; + this.state = 1313; this.ifExists(); } break; } - this.state = 1313; - this.identifier(); - this.state = 1314; - this.match(SparkSqlParser.KW_ON); this.state = 1316; + this.identifier(); + this.state = 1317; + this.match(SparkSqlParser.KW_ON); + this.state = 1319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1315; + this.state = 1318; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1318; + this.state = 1321; this.tableName(); } break; @@ -4081,21 +4090,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new OptimizeTableContext(localContext); this.enterOuterAlt(localContext, 90); { - this.state = 1320; - this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1321; - this.tableName(); this.state = 1323; + this.match(SparkSqlParser.KW_OPTIMIZE); + this.state = 1324; + this.tableName(); + this.state = 1326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 343) { + if (_la === 344) { { - this.state = 1322; + this.state = 1325; this.whereClause(); } } - this.state = 1325; + this.state = 1328; this.zorderClause(); } break; @@ -4103,21 +4112,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsupportHiveCommandsContext(localContext); this.enterOuterAlt(localContext, 91); { - this.state = 1327; + this.state = 1330; this.unsupportedHiveNativeCommands(); - this.state = 1331; + this.state = 1334; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1328; + this.state = 1331; this.matchWildcard(); } } } - this.state = 1333; + this.state = 1336; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } @@ -4143,21 +4152,21 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new TimezoneContext(this.context, this.state); this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); try { - this.state = 1338; + this.state = 1341; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 1336; + this.state = 1339; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 2); { - this.state = 1337; + this.state = 1340; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -4185,7 +4194,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1340; + this.state = 1343; this.quotedIdentifier(); } } @@ -4209,7 +4218,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1342; + this.state = 1345; this.backQuotedIdentifier(); } } @@ -4232,38 +4241,38 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1512; + this.state = 1515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1344; + this.state = 1347; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1345; + this.state = 1348; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1346; + this.state = 1349; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1347; + this.state = 1350; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1348; + this.state = 1351; localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1350; + this.state = 1353; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1349; + this.state = 1352; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4273,14 +4282,14 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1352; + this.state = 1355; localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1354; + this.state = 1357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1353; + this.state = 1356; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4290,25 +4299,25 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1356; + this.state = 1359; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1357; + this.state = 1360; localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1358; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1359; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); this.state = 1361; + localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.state = 1362; + localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1360; + this.state = 1363; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4318,474 +4327,474 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1363; + this.state = 1366; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1364; + this.state = 1367; localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1365; + this.state = 1368; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1366; + this.state = 1369; localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1367; + this.state = 1370; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1368; + this.state = 1371; localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1369; + this.state = 1372; localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1370; + this.state = 1373; localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1371; + this.state = 1374; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1372; + this.state = 1375; localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1373; + this.state = 1376; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1374; + this.state = 1377; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1375; + this.state = 1378; localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1376; + this.state = 1379; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1377; + this.state = 1380; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1378; + this.state = 1381; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1379; + this.state = 1382; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1380; + this.state = 1383; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1381; + this.state = 1384; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1382; + this.state = 1385; localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1383; + this.state = 1386; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1384; + this.state = 1387; localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1385; + this.state = 1388; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1386; + this.state = 1389; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1387; + this.state = 1390; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1388; + this.state = 1391; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1389; + this.state = 1392; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1390; + this.state = 1393; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1391; + this.state = 1394; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1392; + this.state = 1395; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1393; + this.state = 1396; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1394; + this.state = 1397; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1395; + this.state = 1398; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1396; + this.state = 1399; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1397; + this.state = 1400; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1398; + this.state = 1401; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1399; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1400; - localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1401; - localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); - } - break; - case 25: - this.enterOuterAlt(localContext, 25); - { this.state = 1402; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); + localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); this.state = 1403; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); this.state = 1404; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; + case 25: + this.enterOuterAlt(localContext, 25); + { + this.state = 1405; + localContext._kw1 = this.match(SparkSqlParser.KW_DROP); + this.state = 1406; + localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); + this.state = 1407; + localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); + } + break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1405; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1406; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1407; - this.tableName(); this.state = 1408; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1409; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1410; + this.tableName(); + this.state = 1411; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1412; localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1411; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1412; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1413; - this.tableName(); this.state = 1414; - localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1415; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1416; + this.tableName(); + this.state = 1417; + localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); + this.state = 1418; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1417; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1418; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1419; - this.tableName(); this.state = 1420; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1421; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1422; + this.tableName(); + this.state = 1423; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1424; localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1423; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1424; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1425; - this.tableName(); this.state = 1426; - localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1427; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1428; + this.tableName(); + this.state = 1429; + localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1430; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1429; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1430; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1431; - this.tableName(); this.state = 1432; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1433; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1434; + this.tableName(); + this.state = 1435; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1436; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1435; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1436; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1437; - this.tableName(); this.state = 1438; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1439; - localContext._kw4 = this.match(SparkSqlParser.KW_STORED); + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); this.state = 1440; - localContext._kw5 = this.match(SparkSqlParser.KW_AS); + this.tableName(); this.state = 1441; + localContext._kw3 = this.match(SparkSqlParser.KW_NOT); + this.state = 1442; + localContext._kw4 = this.match(SparkSqlParser.KW_STORED); + this.state = 1443; + localContext._kw5 = this.match(SparkSqlParser.KW_AS); + this.state = 1444; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1443; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1444; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1445; - this.tableName(); this.state = 1446; - localContext._kw3 = this.match(SparkSqlParser.KW_SET); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1447; - localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); this.state = 1448; + this.tableName(); + this.state = 1449; + localContext._kw3 = this.match(SparkSqlParser.KW_SET); + this.state = 1450; + localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1451; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1450; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1451; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1452; - this.tableName(); this.state = 1453; - localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1454; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1455; + this.tableName(); + this.state = 1456; + localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); + this.state = 1457; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1456; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1457; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1458; - this.tableName(); this.state = 1459; - localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1460; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1461; + this.tableName(); + this.state = 1462; + localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); + this.state = 1463; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1462; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1463; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1464; - this.tableName(); this.state = 1465; - localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); this.state = 1466; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1467; + this.tableName(); + this.state = 1468; + localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); + this.state = 1469; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1468; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1469; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1470; - this.tableName(); this.state = 1471; + localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); + this.state = 1472; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1473; + this.tableName(); + this.state = 1474; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1473; + this.state = 1476; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1474; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1475; - this.tableName(); this.state = 1477; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1478; + this.tableName(); + this.state = 1480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1476; + this.state = 1479; this.partitionSpec(); } } - this.state = 1479; + this.state = 1482; localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1481; + this.state = 1484; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1482; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1483; - this.tableName(); this.state = 1485; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1486; + this.tableName(); + this.state = 1488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1484; + this.state = 1487; this.partitionSpec(); } } - this.state = 1487; + this.state = 1490; localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1489; + this.state = 1492; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1490; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1491; - this.tableName(); this.state = 1493; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1494; + this.tableName(); + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1492; + this.state = 1495; this.partitionSpec(); } } - this.state = 1495; + this.state = 1498; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1496; + this.state = 1499; localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1498; + this.state = 1501; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1499; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1500; - this.tableName(); this.state = 1502; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); + this.state = 1503; + this.tableName(); + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1501; + this.state = 1504; this.partitionSpec(); } } - this.state = 1504; + this.state = 1507; localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1505; + this.state = 1508; localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1507; + this.state = 1510; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1508; + this.state = 1511; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1509; + this.state = 1512; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1510; + this.state = 1513; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1511; + this.state = 1514; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4812,41 +4821,41 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1517; this.match(SparkSqlParser.KW_CREATE); - this.state = 1516; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 297) { + if (_la === 298) { { - this.state = 1515; + this.state = 1518; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 1519; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 1518; + this.state = 1521; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 1521; + this.state = 1524; this.match(SparkSqlParser.KW_TABLE); - this.state = 1523; + this.state = 1526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1522; + this.state = 1525; this.ifNotExists(); } break; } - this.state = 1525; + this.state = 1528; this.tableNameCreate(); } } @@ -4871,23 +4880,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 1527; + this.state = 1530; this.match(SparkSqlParser.KW_CREATE); - this.state = 1528; + this.state = 1531; this.match(SparkSqlParser.KW_OR); } } - this.state = 1531; + this.state = 1534; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1532; + this.state = 1535; this.match(SparkSqlParser.KW_TABLE); - this.state = 1533; + this.state = 1536; this.tableNameCreate(); } } @@ -4912,31 +4921,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1535; + this.state = 1538; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1536; + this.state = 1539; this.match(SparkSqlParser.KW_BY); - this.state = 1537; + this.state = 1540; this.identifierList(); - this.state = 1541; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 278) { + if (_la === 279) { { - this.state = 1538; + this.state = 1541; this.match(SparkSqlParser.KW_SORTED); - this.state = 1539; + this.state = 1542; this.match(SparkSqlParser.KW_BY); - this.state = 1540; + this.state = 1543; this.orderedIdentifierList(); } } - this.state = 1543; + this.state = 1546; this.match(SparkSqlParser.KW_INTO); - this.state = 1544; + this.state = 1547; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1545; + this.state = 1548; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4960,40 +4969,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1547; - this.match(SparkSqlParser.KW_SKEWED); - this.state = 1548; - this.match(SparkSqlParser.KW_BY); - this.state = 1549; - this.identifierList(); this.state = 1550; - this.match(SparkSqlParser.KW_ON); + this.match(SparkSqlParser.KW_SKEWED); + this.state = 1551; + this.match(SparkSqlParser.KW_BY); + this.state = 1552; + this.identifierList(); this.state = 1553; + this.match(SparkSqlParser.KW_ON); + this.state = 1556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1551; + this.state = 1554; this.constantList(); } break; case 2: { - this.state = 1552; + this.state = 1555; this.nestedConstantList(); } break; } - this.state = 1558; + this.state = 1561; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1555; + this.state = 1558; this.match(SparkSqlParser.KW_STORED); - this.state = 1556; + this.state = 1559; this.match(SparkSqlParser.KW_AS); - this.state = 1557; + this.state = 1560; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -5020,9 +5029,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1560; + this.state = 1563; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1561; + this.state = 1564; this.stringLit(); } } @@ -5046,9 +5055,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1566; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1564; + this.state = 1567; this.stringLit(); } } @@ -5074,19 +5083,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1567; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 345) { + if (_la === 346) { { - this.state = 1566; + this.state = 1569; this.ctes(); } } - this.state = 1569; + this.state = 1572; this.queryTerm(0); - this.state = 1570; + this.state = 1573; this.queryOrganization(); } } @@ -5109,41 +5118,41 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1648; + this.state = 1651; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1572; - this.match(SparkSqlParser.KW_INSERT); - this.state = 1573; - this.match(SparkSqlParser.KW_OVERWRITE); this.state = 1575; + this.match(SparkSqlParser.KW_INSERT); + this.state = 1576; + this.match(SparkSqlParser.KW_OVERWRITE); + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1574; + this.state = 1577; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1577; + this.state = 1580; this.tableName(); - this.state = 1582; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1578; + this.state = 1581; this.partitionSpec(); - this.state = 1580; + this.state = 1583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1579; + this.state = 1582; this.ifNotExists(); } } @@ -5151,15 +5160,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1590; + this.state = 1593; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1584; + this.state = 1587; this.match(SparkSqlParser.KW_BY); - this.state = 1585; + this.state = 1588; this.match(SparkSqlParser.KW_NAME); } } @@ -5167,11 +5176,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1586; + this.state = 1589; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1587; + this.state = 1590; this.columnNameSeq(); - this.state = 1588; + this.state = 1591; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5182,51 +5191,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1592; - this.match(SparkSqlParser.KW_INSERT); - this.state = 1593; - this.match(SparkSqlParser.KW_INTO); this.state = 1595; + this.match(SparkSqlParser.KW_INSERT); + this.state = 1596; + this.match(SparkSqlParser.KW_INTO); + this.state = 1598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1594; + this.state = 1597; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1597; + this.state = 1600; this.tableName(); - this.state = 1599; + this.state = 1602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 216) { + if (_la === 217) { { - this.state = 1598; + this.state = 1601; this.partitionSpec(); } } - this.state = 1602; + this.state = 1605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1601; + this.state = 1604; this.ifNotExists(); } } - this.state = 1610; + this.state = 1613; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1604; + this.state = 1607; this.match(SparkSqlParser.KW_BY); - this.state = 1605; + this.state = 1608; this.match(SparkSqlParser.KW_NAME); } } @@ -5234,11 +5243,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1606; + this.state = 1609; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1607; + this.state = 1610; this.columnNameSeq(); - this.state = 1608; + this.state = 1611; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5249,65 +5258,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1612; - this.match(SparkSqlParser.KW_INSERT); - this.state = 1613; - this.match(SparkSqlParser.KW_INTO); this.state = 1615; + this.match(SparkSqlParser.KW_INSERT); + this.state = 1616; + this.match(SparkSqlParser.KW_INTO); + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 292) { + if (_la === 293) { { - this.state = 1614; + this.state = 1617; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1617; + this.state = 1620; this.tableName(); - this.state = 1618; + this.state = 1621; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1619; + this.state = 1622; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1621; - this.match(SparkSqlParser.KW_INSERT); - this.state = 1622; - this.match(SparkSqlParser.KW_OVERWRITE); this.state = 1624; + this.match(SparkSqlParser.KW_INSERT); + this.state = 1625; + this.match(SparkSqlParser.KW_OVERWRITE); + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 168) { + if (_la === 169) { { - this.state = 1623; + this.state = 1626; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1626; - this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1627; - localContext._path = this.stringLit(); this.state = 1629; + this.match(SparkSqlParser.KW_DIRECTORY); + this.state = 1630; + localContext._path = this.stringLit(); + this.state = 1632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 256) { + if (_la === 257) { { - this.state = 1628; + this.state = 1631; this.rowFormat(); } } - this.state = 1632; + this.state = 1635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 282) { + if (_la === 283) { { - this.state = 1631; + this.state = 1634; this.createFileFormat(); } } @@ -5317,42 +5326,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1634; - this.match(SparkSqlParser.KW_INSERT); - this.state = 1635; - this.match(SparkSqlParser.KW_OVERWRITE); this.state = 1637; + this.match(SparkSqlParser.KW_INSERT); + this.state = 1638; + this.match(SparkSqlParser.KW_OVERWRITE); + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 168) { + if (_la === 169) { { - this.state = 1636; + this.state = 1639; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1639; + this.state = 1642; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1641; + this.state = 1644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 376 || _la === 377) { + if (_la === 377 || _la === 378) { { - this.state = 1640; + this.state = 1643; localContext._path = this.stringLit(); } } - this.state = 1643; - this.tableProvider(); this.state = 1646; + this.tableProvider(); + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 206) { + if (_la === 207) { { - this.state = 1644; + this.state = 1647; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1645; + this.state = 1648; localContext._options = this.propertyList(); } } @@ -5382,14 +5391,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1650; + this.state = 1653; this.partitionSpec(); - this.state = 1652; + this.state = 1655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 169) { + if (_la === 170) { { - this.state = 1651; + this.state = 1654; this.locationSpec(); } } @@ -5417,29 +5426,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1657; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1655; + this.state = 1658; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1656; + this.state = 1659; this.partitionVal(); - this.state = 1661; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1657; + this.state = 1660; this.match(SparkSqlParser.COMMA); - this.state = 1658; + this.state = 1661; this.partitionVal(); } } - this.state = 1663; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1664; + this.state = 1667; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5462,22 +5471,22 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1675; + this.state = 1678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1666; - this.identifier(); this.state = 1669; + this.identifier(); + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1667; + this.state = 1670; this.match(SparkSqlParser.EQ); - this.state = 1668; + this.state = 1671; this.constant(); } } @@ -5487,11 +5496,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1671; + this.state = 1674; this.identifier(); - this.state = 1672; + this.state = 1675; this.match(SparkSqlParser.EQ); - this.state = 1673; + this.state = 1676; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5518,9 +5527,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1677; + this.state = 1680; _la = this.tokenStream.LA(1); - if(!(_la === 72 || _la === 189 || _la === 260)) { + if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); } else { @@ -5550,9 +5559,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1679; + this.state = 1682; _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 190 || _la === 261)) { + if(!(_la === 73 || _la === 191 || _la === 262)) { this.errorHandler.recoverInline(this); } else { @@ -5579,41 +5588,41 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1686; + this.state = 1689; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1681; + this.state = 1684; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1682; + this.state = 1685; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1683; + this.state = 1686; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1684; + this.state = 1687; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1685; + this.state = 1688; this.predicateOperator(); } break; @@ -5640,23 +5649,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1688; + this.state = 1691; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1693; + this.state = 1696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1689; + this.state = 1692; this.match(SparkSqlParser.DOT); - this.state = 1690; + this.state = 1693; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1695; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5683,23 +5692,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1696; + this.state = 1699; this.match(SparkSqlParser.KW_WITH); - this.state = 1697; + this.state = 1700; this.namedQuery(); - this.state = 1702; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1698; + this.state = 1701; this.match(SparkSqlParser.COMMA); - this.state = 1699; + this.state = 1702; this.namedQuery(); } } - this.state = 1704; + this.state = 1707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5726,33 +5735,33 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1708; localContext._name = this.errorCapturingIdentifier(); - this.state = 1707; + this.state = 1710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1706; + this.state = 1709; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1710; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1709; + this.state = 1712; this.match(SparkSqlParser.KW_AS); } } - this.state = 1712; + this.state = 1715; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1713; + this.state = 1716; this.query(); - this.state = 1714; + this.state = 1717; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5776,9 +5785,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1716; + this.state = 1719; this.match(SparkSqlParser.KW_USING); - this.state = 1717; + this.state = 1720; this.multipartIdentifier(); } } @@ -5803,21 +5812,21 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1734; + this.state = 1738; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1732; + this.state = 1736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1719; + this.state = 1722; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1720; + this.state = 1723; localContext._options = this.expressionPropertyList(); } } @@ -5825,67 +5834,73 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1721; + this.state = 1724; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1722; + this.state = 1725; this.match(SparkSqlParser.KW_BY); - this.state = 1723; + this.state = 1726; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1724; + this.state = 1727; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1725; + this.state = 1728; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1726; + this.state = 1729; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1727; + this.state = 1730; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1728; + this.state = 1731; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1729; + this.state = 1732; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1730; + this.state = 1733; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1731; + this.state = 1734; localContext._tableProps = this.propertyList(); } } break; + case SparkSqlParser.KW_LIFECYCLE: + { + this.state = 1735; + this.tableLifecycle(); + } + break; default: throw new antlr.NoViableAltException(this); } } } - this.state = 1736; + this.state = 1740; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5905,34 +5920,60 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public tableLifecycle(): TableLifecycleContext { + let localContext = new TableLifecycleContext(this.context, this.state); + this.enterRule(localContext, 52, SparkSqlParser.RULE_tableLifecycle); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1741; + this.match(SparkSqlParser.KW_LIFECYCLE); + this.state = 1742; + this.match(SparkSqlParser.INTEGER_VALUE); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public propertyList(): PropertyListContext { let localContext = new PropertyListContext(this.context, this.state); - this.enterRule(localContext, 52, SparkSqlParser.RULE_propertyList); + this.enterRule(localContext, 54, SparkSqlParser.RULE_propertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1737; + this.state = 1744; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1738; + this.state = 1745; this.property(); - this.state = 1743; + this.state = 1750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1739; + this.state = 1746; this.match(SparkSqlParser.COMMA); - this.state = 1740; + this.state = 1747; this.property(); } } - this.state = 1745; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1746; + this.state = 1753; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5952,29 +5993,29 @@ export class SparkSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 54, SparkSqlParser.RULE_property); + this.enterRule(localContext, 56, SparkSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1748; + this.state = 1755; localContext._key = this.propertyKey(); - this.state = 1753; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 111 || _la === 315 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 1174405121) !== 0) || _la === 383) { + if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1750; + this.state = 1757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1749; + this.state = 1756; this.match(SparkSqlParser.EQ); } } - this.state = 1752; + this.state = 1759; localContext._value = this.propertyValue(); } } @@ -5997,30 +6038,30 @@ export class SparkSqlParser extends SQLParserBase { } public propertyKey(): PropertyKeyContext { let localContext = new PropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 56, SparkSqlParser.RULE_propertyKey); + this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1764; + this.state = 1771; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1762; this.identifier(); - this.state = 1760; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1756; + this.state = 1763; this.match(SparkSqlParser.DOT); - this.state = 1757; + this.state = 1764; this.identifier(); } } - this.state = 1762; + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6029,7 +6070,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1770; this.stringLit(); } break; @@ -6051,22 +6092,22 @@ export class SparkSqlParser extends SQLParserBase { } public propertyValue(): PropertyValueContext { let localContext = new PropertyValueContext(this.context, this.state); - this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyValue); + this.enterRule(localContext, 60, SparkSqlParser.RULE_propertyValue); try { - this.state = 1770; + this.state = 1777; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1773; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1774; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -6074,7 +6115,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1768; + this.state = 1775; this.booleanValue(); } break; @@ -6082,7 +6123,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1769; + this.state = 1776; this.stringLit(); } break; @@ -6106,32 +6147,32 @@ export class SparkSqlParser extends SQLParserBase { } public expressionPropertyList(): ExpressionPropertyListContext { let localContext = new ExpressionPropertyListContext(this.context, this.state); - this.enterRule(localContext, 60, SparkSqlParser.RULE_expressionPropertyList); + this.enterRule(localContext, 62, SparkSqlParser.RULE_expressionPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1772; + this.state = 1779; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1773; + this.state = 1780; this.expressionProperty(); - this.state = 1778; + this.state = 1785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1774; + this.state = 1781; this.match(SparkSqlParser.COMMA); - this.state = 1775; + this.state = 1782; this.expressionProperty(); } } - this.state = 1780; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1781; + this.state = 1788; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6151,29 +6192,29 @@ export class SparkSqlParser extends SQLParserBase { } public expressionProperty(): ExpressionPropertyContext { let localContext = new ExpressionPropertyContext(this.context, this.state); - this.enterRule(localContext, 62, SparkSqlParser.RULE_expressionProperty); + this.enterRule(localContext, 64, SparkSqlParser.RULE_expressionProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1790; localContext._key = this.propertyKey(); - this.state = 1788; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1785; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 351) { + if (_la === 352) { { - this.state = 1784; + this.state = 1791; this.match(SparkSqlParser.EQ); } } - this.state = 1787; + this.state = 1794; localContext._value = this.expression(); } } @@ -6196,32 +6237,32 @@ export class SparkSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 64, SparkSqlParser.RULE_constantList); + this.enterRule(localContext, 66, SparkSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1797; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1791; + this.state = 1798; this.constant(); - this.state = 1796; + this.state = 1803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1792; + this.state = 1799; this.match(SparkSqlParser.COMMA); - this.state = 1793; + this.state = 1800; this.constant(); } } - this.state = 1798; + this.state = 1805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1799; + this.state = 1806; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6241,32 +6282,32 @@ export class SparkSqlParser extends SQLParserBase { } public nestedConstantList(): NestedConstantListContext { let localContext = new NestedConstantListContext(this.context, this.state); - this.enterRule(localContext, 66, SparkSqlParser.RULE_nestedConstantList); + this.enterRule(localContext, 68, SparkSqlParser.RULE_nestedConstantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1801; + this.state = 1808; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1802; + this.state = 1809; this.constantList(); - this.state = 1807; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1803; + this.state = 1810; this.match(SparkSqlParser.COMMA); - this.state = 1804; + this.state = 1811; this.constantList(); } } - this.state = 1809; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1810; + this.state = 1817; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6286,30 +6327,30 @@ export class SparkSqlParser extends SQLParserBase { } public createFileFormat(): CreateFileFormatContext { let localContext = new CreateFileFormatContext(this.context, this.state); - this.enterRule(localContext, 68, SparkSqlParser.RULE_createFileFormat); + this.enterRule(localContext, 70, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1818; + this.state = 1825; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1819; this.match(SparkSqlParser.KW_STORED); - this.state = 1813; + this.state = 1820; this.match(SparkSqlParser.KW_AS); - this.state = 1814; + this.state = 1821; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1815; + this.state = 1822; this.match(SparkSqlParser.KW_STORED); - this.state = 1816; + this.state = 1823; this.match(SparkSqlParser.KW_BY); - this.state = 1817; + this.state = 1824; this.storageHandler(); } break; @@ -6331,28 +6372,28 @@ export class SparkSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 70, SparkSqlParser.RULE_fileFormat); + this.enterRule(localContext, 72, SparkSqlParser.RULE_fileFormat); try { - this.state = 1826; + this.state = 1833; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1820; + this.state = 1827; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1821; + this.state = 1828; localContext._inFmt = this.stringLit(); - this.state = 1822; + this.state = 1829; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1823; + this.state = 1830; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1825; + this.state = 1832; this.identifier(); } break; @@ -6374,22 +6415,22 @@ export class SparkSqlParser extends SQLParserBase { } public storageHandler(): StorageHandlerContext { let localContext = new StorageHandlerContext(this.context, this.state); - this.enterRule(localContext, 72, SparkSqlParser.RULE_storageHandler); + this.enterRule(localContext, 74, SparkSqlParser.RULE_storageHandler); try { this.enterOuterAlt(localContext, 1); { - this.state = 1828; + this.state = 1835; this.stringLit(); - this.state = 1832; + this.state = 1839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1829; + this.state = 1836; this.match(SparkSqlParser.KW_WITH); - this.state = 1830; + this.state = 1837; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1831; + this.state = 1838; this.propertyList(); } break; @@ -6412,13 +6453,13 @@ export class SparkSqlParser extends SQLParserBase { } public resource(): ResourceContext { let localContext = new ResourceContext(this.context, this.state); - this.enterRule(localContext, 74, SparkSqlParser.RULE_resource); + this.enterRule(localContext, 76, SparkSqlParser.RULE_resource); try { this.enterOuterAlt(localContext, 1); { - this.state = 1834; + this.state = 1841; this.identifier(); - this.state = 1835; + this.state = 1842; this.stringLit(); } } @@ -6438,20 +6479,20 @@ export class SparkSqlParser extends SQLParserBase { } public dmlStatementNoWith(): DmlStatementNoWithContext { let localContext = new DmlStatementNoWithContext(this.context, this.state); - this.enterRule(localContext, 76, SparkSqlParser.RULE_dmlStatementNoWith); + this.enterRule(localContext, 78, SparkSqlParser.RULE_dmlStatementNoWith); let _la: number; try { let alternative: number; - this.state = 1893; + this.state = 1900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1837; + this.state = 1844; this.insertInto(); - this.state = 1838; + this.state = 1845; this.query(); } break; @@ -6459,9 +6500,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1840; + this.state = 1847; this.fromClause(); - this.state = 1842; + this.state = 1849; this.errorHandler.sync(this); alternative = 1; do { @@ -6469,7 +6510,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1841; + this.state = 1848; this.multiInsertQueryBody(); } } @@ -6477,7 +6518,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1844; + this.state = 1851; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6487,20 +6528,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1846; + this.state = 1853; this.match(SparkSqlParser.KW_DELETE); - this.state = 1847; + this.state = 1854; this.match(SparkSqlParser.KW_FROM); - this.state = 1848; + this.state = 1855; this.tableName(); - this.state = 1849; + this.state = 1856; this.tableAlias(); - this.state = 1851; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 343) { + if (_la === 344) { { - this.state = 1850; + this.state = 1857; this.whereClause(); } } @@ -6511,20 +6552,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1853; + this.state = 1860; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1854; + this.state = 1861; this.tableName(); - this.state = 1855; + this.state = 1862; this.tableAlias(); - this.state = 1856; + this.state = 1863; this.setClause(); - this.state = 1858; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 343) { + if (_la === 344) { { - this.state = 1857; + this.state = 1864; this.whereClause(); } } @@ -6535,17 +6576,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1860; + this.state = 1867; this.match(SparkSqlParser.KW_MERGE); - this.state = 1861; + this.state = 1868; this.match(SparkSqlParser.KW_INTO); - this.state = 1862; + this.state = 1869; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1863; - (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1864; - this.match(SparkSqlParser.KW_USING); this.state = 1870; + (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); + this.state = 1871; + this.match(SparkSqlParser.KW_USING); + this.state = 1877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6701,6 +6742,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LAZY: case SparkSqlParser.KW_LEADING: case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: case SparkSqlParser.KW_LIKE: case SparkSqlParser.KW_ILIKE: case SparkSqlParser.KW_LIMIT: @@ -6891,72 +6933,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1865; + this.state = 1872; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1866; + this.state = 1873; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1867; + this.state = 1874; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1868; + this.state = 1875; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1872; + this.state = 1879; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1873; + this.state = 1880; this.match(SparkSqlParser.KW_ON); - this.state = 1874; + this.state = 1881; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1878; + this.state = 1885; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1875; + this.state = 1882; this.matchedClause(); } } } - this.state = 1880; + this.state = 1887; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1884; + this.state = 1891; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1881; + this.state = 1888; this.notMatchedClause(); } } } - this.state = 1886; + this.state = 1893; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1890; + this.state = 1897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 342) { + while (_la === 343) { { { - this.state = 1887; + this.state = 1894; this.notMatchedBySourceClause(); } } - this.state = 1892; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6982,11 +7024,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceName(): NamespaceNameContext { let localContext = new NamespaceNameContext(this.context, this.state); - this.enterRule(localContext, 78, SparkSqlParser.RULE_namespaceName); + this.enterRule(localContext, 80, SparkSqlParser.RULE_namespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1895; + this.state = 1902; this.identifierReference(); } } @@ -7006,11 +7048,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceNameCreate(): NamespaceNameCreateContext { let localContext = new NamespaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 80, SparkSqlParser.RULE_namespaceNameCreate); + this.enterRule(localContext, 82, SparkSqlParser.RULE_namespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1897; + this.state = 1904; this.identifierReference(); } } @@ -7030,11 +7072,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 82, SparkSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 84, SparkSqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1906; this.tableIdentifier(); } } @@ -7054,11 +7096,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 84, SparkSqlParser.RULE_tableName); + this.enterRule(localContext, 86, SparkSqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1901; + this.state = 1908; this.tableIdentifier(); } } @@ -7078,11 +7120,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 86, SparkSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 88, SparkSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1903; + this.state = 1910; this.viewIdentifier(); } } @@ -7102,11 +7144,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 88, SparkSqlParser.RULE_viewName); + this.enterRule(localContext, 90, SparkSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1905; + this.state = 1912; this.viewIdentifier(); } } @@ -7126,22 +7168,22 @@ export class SparkSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 90, SparkSqlParser.RULE_columnName); + this.enterRule(localContext, 92, SparkSqlParser.RULE_columnName); try { - this.state = 1909; + this.state = 1916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1907; + this.state = 1914; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1908; + this.state = 1915; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -7165,26 +7207,26 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameSeq(): ColumnNameSeqContext { let localContext = new ColumnNameSeqContext(this.context, this.state); - this.enterRule(localContext, 92, SparkSqlParser.RULE_columnNameSeq); + this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNameSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1911; + this.state = 1918; this.columnName(); - this.state = 1916; + this.state = 1923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1912; + this.state = 1919; this.match(SparkSqlParser.COMMA); - this.state = 1913; + this.state = 1920; this.columnName(); } } - this.state = 1918; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7206,11 +7248,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 96, SparkSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1919; + this.state = 1926; this.errorCapturingIdentifier(); } } @@ -7230,28 +7272,28 @@ export class SparkSqlParser extends SQLParserBase { } public identifierReference(): IdentifierReferenceContext { let localContext = new IdentifierReferenceContext(this.context, this.state); - this.enterRule(localContext, 96, SparkSqlParser.RULE_identifierReference); + this.enterRule(localContext, 98, SparkSqlParser.RULE_identifierReference); try { - this.state = 1927; + this.state = 1934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1921; + this.state = 1928; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1922; + this.state = 1929; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1923; + this.state = 1930; this.expression(); - this.state = 1924; + this.state = 1931; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1926; + this.state = 1933; this.multipartIdentifier(); } break; @@ -7273,176 +7315,176 @@ export class SparkSqlParser extends SQLParserBase { } public queryOrganization(): QueryOrganizationContext { let localContext = new QueryOrganizationContext(this.context, this.state); - this.enterRule(localContext, 98, SparkSqlParser.RULE_queryOrganization); + this.enterRule(localContext, 100, SparkSqlParser.RULE_queryOrganization); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1929; + this.state = 1936; this.match(SparkSqlParser.KW_ORDER); - this.state = 1930; + this.state = 1937; this.match(SparkSqlParser.KW_BY); - this.state = 1931; + this.state = 1938; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); - this.state = 1936; + this.state = 1943; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1932; + this.state = 1939; this.match(SparkSqlParser.COMMA); - this.state = 1933; + this.state = 1940; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); } } } - this.state = 1938; + this.state = 1945; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); } } break; } - this.state = 1951; + this.state = 1958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1941; + this.state = 1948; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1942; + this.state = 1949; this.match(SparkSqlParser.KW_BY); - this.state = 1943; + this.state = 1950; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); - this.state = 1948; + this.state = 1955; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1944; + this.state = 1951; this.match(SparkSqlParser.COMMA); - this.state = 1945; + this.state = 1952; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); } } } - this.state = 1950; + this.state = 1957; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } } break; } - this.state = 1963; + this.state = 1970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1953; + this.state = 1960; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1954; + this.state = 1961; this.match(SparkSqlParser.KW_BY); - this.state = 1955; + this.state = 1962; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); - this.state = 1960; + this.state = 1967; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1956; + this.state = 1963; this.match(SparkSqlParser.COMMA); - this.state = 1957; + this.state = 1964; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); } } } - this.state = 1962; + this.state = 1969; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); } } break; } - this.state = 1975; + this.state = 1982; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1965; + this.state = 1972; this.match(SparkSqlParser.KW_SORT); - this.state = 1966; + this.state = 1973; this.match(SparkSqlParser.KW_BY); - this.state = 1967; + this.state = 1974; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); - this.state = 1972; + this.state = 1979; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1968; + this.state = 1975; this.match(SparkSqlParser.COMMA); - this.state = 1969; + this.state = 1976; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); } } } - this.state = 1974; + this.state = 1981; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); } } break; } - this.state = 1978; + this.state = 1985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1977; + this.state = 1984; this.windowClause(); } break; } - this.state = 1985; + this.state = 1992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1980; + this.state = 1987; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1983; + this.state = 1990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1981; + this.state = 1988; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1982; + this.state = 1989; localContext._limit = this.expression(); } break; @@ -7450,14 +7492,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1989; + this.state = 1996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1987; + this.state = 1994; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1988; + this.state = 1995; localContext._offset = this.expression(); } break; @@ -7480,13 +7522,13 @@ export class SparkSqlParser extends SQLParserBase { } public multiInsertQueryBody(): MultiInsertQueryBodyContext { let localContext = new MultiInsertQueryBodyContext(this.context, this.state); - this.enterRule(localContext, 100, SparkSqlParser.RULE_multiInsertQueryBody); + this.enterRule(localContext, 102, SparkSqlParser.RULE_multiInsertQueryBody); try { this.enterOuterAlt(localContext, 1); { - this.state = 1991; + this.state = 1998; this.insertInto(); - this.state = 1992; + this.state = 1999; this.fromStatementBody(); } } @@ -7516,19 +7558,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 102; - this.enterRecursionRule(localContext, 102, SparkSqlParser.RULE_queryTerm, _p); + let _startState = 104; + this.enterRecursionRule(localContext, 104, SparkSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 1995; + this.state = 2002; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2017; + this.state = 2024; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -7538,7 +7580,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2015; + this.state = 2022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: @@ -7546,31 +7588,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 1997; + this.state = 2004; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1998; + this.state = 2005; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 102 || _la === 148 || _la === 269 || _la === 322)) { + if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2000; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 1999; + this.state = 2006; this.setQuantifier(); } } - this.state = 2002; + this.state = 2009; localContext._right = this.queryTerm(4); } break; @@ -7579,23 +7621,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2003; + this.state = 2010; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2004; + this.state = 2011; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2006; + this.state = 2013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2005; + this.state = 2012; this.setQuantifier(); } } - this.state = 2008; + this.state = 2015; localContext._right = this.queryTerm(3); } break; @@ -7604,38 +7646,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2009; + this.state = 2016; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2010; + this.state = 2017; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 102 || _la === 269 || _la === 322)) { + if(!(_la === 102 || _la === 270 || _la === 323)) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2012; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2011; + this.state = 2018; this.setQuantifier(); } } - this.state = 2014; + this.state = 2021; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2019; + this.state = 2026; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -7657,9 +7699,9 @@ export class SparkSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 104, SparkSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 106, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2029; + this.state = 2036; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7667,41 +7709,41 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2020; + this.state = 2027; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2021; + this.state = 2028; this.fromStatement(); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2022; + this.state = 2029; this.match(SparkSqlParser.KW_TABLE); - this.state = 2023; + this.state = 2030; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2024; + this.state = 2031; this.inlineTable(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2025; + this.state = 2032; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2026; + this.state = 2033; this.query(); - this.state = 2027; + this.state = 2034; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7725,33 +7767,33 @@ export class SparkSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 106, SparkSqlParser.RULE_sortItem); + this.enterRule(localContext, 108, SparkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2031; + this.state = 2038; this.columnName(); } break; case 2: { - this.state = 2032; + this.state = 2039; this.expression(); } break; } - this.state = 2036; + this.state = 2043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2035; + this.state = 2042; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7764,14 +7806,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2040; + this.state = 2047; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2038; + this.state = 2045; this.match(SparkSqlParser.KW_NULLS); - this.state = 2039; + this.state = 2046; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7802,14 +7844,14 @@ export class SparkSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 108, SparkSqlParser.RULE_fromStatement); + this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatement); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2049; this.fromClause(); - this.state = 2044; + this.state = 2051; this.errorHandler.sync(this); alternative = 1; do { @@ -7817,7 +7859,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 2043; + this.state = 2050; this.fromStatementBody(); } } @@ -7825,7 +7867,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2046; + this.state = 2053; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -7847,93 +7889,93 @@ export class SparkSqlParser extends SQLParserBase { } public fromStatementBody(): FromStatementBodyContext { let localContext = new FromStatementBodyContext(this.context, this.state); - this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatementBody); + this.enterRule(localContext, 112, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2075; + this.state = 2082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2048; + this.state = 2055; this.transformClause(); - this.state = 2050; + this.state = 2057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2049; + this.state = 2056; this.whereClause(); } break; } - this.state = 2052; + this.state = 2059; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2054; + this.state = 2061; this.selectClause(); - this.state = 2058; + this.state = 2065; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2055; + this.state = 2062; this.lateralView(); } } } - this.state = 2060; + this.state = 2067; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } - this.state = 2062; + this.state = 2069; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2061; + this.state = 2068; this.whereClause(); } break; } - this.state = 2065; + this.state = 2072; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2064; + this.state = 2071; this.aggregationClause(); } break; } - this.state = 2068; + this.state = 2075; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 2067; + this.state = 2074; this.havingClause(); } break; } - this.state = 2071; + this.state = 2078; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2070; + this.state = 2077; this.windowClause(); } break; } - this.state = 2073; + this.state = 2080; this.queryOrganization(); } break; @@ -7955,79 +7997,79 @@ export class SparkSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 112, SparkSqlParser.RULE_querySpecification); + this.enterRule(localContext, 114, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2121; + this.state = 2128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2077; + this.state = 2084; this.transformClause(); - this.state = 2079; + this.state = 2086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2078; + this.state = 2085; this.fromClause(); } break; } - this.state = 2084; + this.state = 2091; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2081; + this.state = 2088; this.lateralView(); } } } - this.state = 2086; + this.state = 2093; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); } - this.state = 2088; + this.state = 2095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2087; + this.state = 2094; this.whereClause(); } break; } - this.state = 2091; + this.state = 2098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2090; + this.state = 2097; this.aggregationClause(); } break; } - this.state = 2094; + this.state = 2101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2093; + this.state = 2100; this.havingClause(); } break; } - this.state = 2097; + this.state = 2104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2096; + this.state = 2103; this.windowClause(); } break; @@ -8037,70 +8079,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2099; + this.state = 2106; this.selectClause(); - this.state = 2101; + this.state = 2108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2100; + this.state = 2107; this.fromClause(); } break; } - this.state = 2106; + this.state = 2113; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2103; + this.state = 2110; this.lateralView(); } } } - this.state = 2108; + this.state = 2115; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); } - this.state = 2110; + this.state = 2117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2109; + this.state = 2116; this.whereClause(); } break; } - this.state = 2113; + this.state = 2120; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2112; + this.state = 2119; this.aggregationClause(); } break; } - this.state = 2116; + this.state = 2123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2115; + this.state = 2122; this.havingClause(); } break; } - this.state = 2119; + this.state = 2126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2118; + this.state = 2125; this.windowClause(); } break; @@ -8125,45 +8167,25 @@ export class SparkSqlParser extends SQLParserBase { } public transformClause(): TransformClauseContext { let localContext = new TransformClauseContext(this.context, this.state); - this.enterRule(localContext, 114, SparkSqlParser.RULE_transformClause); + this.enterRule(localContext, 116, SparkSqlParser.RULE_transformClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2142; + this.state = 2149; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2123; - this.match(SparkSqlParser.KW_SELECT); - this.state = 2124; - localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2125; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2127; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { - case 1: - { - this.state = 2126; - this.setQuantifier(); - } - break; - } - this.state = 2129; - this.expressionSeq(); this.state = 2130; - this.match(SparkSqlParser.RIGHT_PAREN); - } - break; - case SparkSqlParser.KW_MAP: - { + this.match(SparkSqlParser.KW_SELECT); + this.state = 2131; + localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); this.state = 2132; - localContext._kind = this.match(SparkSqlParser.KW_MAP); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 2134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { this.state = 2133; @@ -8173,99 +8195,119 @@ export class SparkSqlParser extends SQLParserBase { } this.state = 2136; this.expressionSeq(); + this.state = 2137; + this.match(SparkSqlParser.RIGHT_PAREN); } break; - case SparkSqlParser.KW_REDUCE: + case SparkSqlParser.KW_MAP: { - this.state = 2137; - localContext._kind = this.match(SparkSqlParser.KW_REDUCE); this.state = 2139; + localContext._kind = this.match(SparkSqlParser.KW_MAP); + this.state = 2141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2138; + this.state = 2140; this.setQuantifier(); } break; } - this.state = 2141; + this.state = 2143; + this.expressionSeq(); + } + break; + case SparkSqlParser.KW_REDUCE: + { + this.state = 2144; + localContext._kind = this.match(SparkSqlParser.KW_REDUCE); + this.state = 2146; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + case 1: + { + this.state = 2145; + this.setQuantifier(); + } + break; + } + this.state = 2148; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2145; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 256) { + if (_la === 257) { { - this.state = 2144; + this.state = 2151; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2149; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 235) { + if (_la === 236) { { - this.state = 2147; + this.state = 2154; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2148; + this.state = 2155; localContext._recordWriter = this.stringLit(); } } - this.state = 2151; + this.state = 2158; this.match(SparkSqlParser.KW_USING); - this.state = 2152; + this.state = 2159; localContext._script = this.stringLit(); - this.state = 2165; + this.state = 2172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2153; + this.state = 2160; this.match(SparkSqlParser.KW_AS); - this.state = 2163; + this.state = 2170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2154; + this.state = 2161; this.identifierSeq(); } break; case 2: { - this.state = 2155; + this.state = 2162; this.colTypeList(); } break; case 3: { { - this.state = 2156; + this.state = 2163; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2159; + this.state = 2166; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2157; + this.state = 2164; this.identifierSeq(); } break; case 2: { - this.state = 2158; + this.state = 2165; this.colTypeList(); } break; } - this.state = 2161; + this.state = 2168; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8274,24 +8316,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2168; + this.state = 2175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2167; + this.state = 2174; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2172; + this.state = 2179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2170; + this.state = 2177; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2171; + this.state = 2178; localContext._recordReader = this.stringLit(); } break; @@ -8314,41 +8356,41 @@ export class SparkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 116, SparkSqlParser.RULE_selectClause); + this.enterRule(localContext, 118, SparkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2174; + this.state = 2181; this.match(SparkSqlParser.KW_SELECT); - this.state = 2178; + this.state = 2185; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2175; + this.state = 2182; localContext._hint = this.hint(); localContext._hints.push(localContext._hint); } } } - this.state = 2180; + this.state = 2187; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } - this.state = 2182; + this.state = 2189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2181; + this.state = 2188; this.setQuantifier(); } break; } - this.state = 2184; + this.state = 2191; this.namedExpressionSeq(); } } @@ -8368,13 +8410,13 @@ export class SparkSqlParser extends SQLParserBase { } public setClause(): SetClauseContext { let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 118, SparkSqlParser.RULE_setClause); + this.enterRule(localContext, 120, SparkSqlParser.RULE_setClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2193; this.match(SparkSqlParser.KW_SET); - this.state = 2187; + this.state = 2194; this.assignmentList(); } } @@ -8394,30 +8436,30 @@ export class SparkSqlParser extends SQLParserBase { } public matchedClause(): MatchedClauseContext { let localContext = new MatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 120, SparkSqlParser.RULE_matchedClause); + this.enterRule(localContext, 122, SparkSqlParser.RULE_matchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2196; this.match(SparkSqlParser.KW_WHEN); - this.state = 2190; + this.state = 2197; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2193; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2191; + this.state = 2198; this.match(SparkSqlParser.KW_AND); - this.state = 2192; + this.state = 2199; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2195; + this.state = 2202; this.match(SparkSqlParser.KW_THEN); - this.state = 2196; + this.state = 2203; this.matchedAction(); } } @@ -8437,44 +8479,44 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedClause(): NotMatchedClauseContext { let localContext = new NotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 122, SparkSqlParser.RULE_notMatchedClause); + this.enterRule(localContext, 124, SparkSqlParser.RULE_notMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2198; + this.state = 2205; this.match(SparkSqlParser.KW_WHEN); - this.state = 2199; + this.state = 2206; this.match(SparkSqlParser.KW_NOT); - this.state = 2200; + this.state = 2207; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2203; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2201; + this.state = 2208; this.match(SparkSqlParser.KW_BY); - this.state = 2202; + this.state = 2209; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2207; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2205; + this.state = 2212; this.match(SparkSqlParser.KW_AND); - this.state = 2206; + this.state = 2213; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2209; + this.state = 2216; this.match(SparkSqlParser.KW_THEN); - this.state = 2210; + this.state = 2217; this.notMatchedAction(); } } @@ -8494,36 +8536,36 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceClause(): NotMatchedBySourceClauseContext { let localContext = new NotMatchedBySourceClauseContext(this.context, this.state); - this.enterRule(localContext, 124, SparkSqlParser.RULE_notMatchedBySourceClause); + this.enterRule(localContext, 126, SparkSqlParser.RULE_notMatchedBySourceClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2212; - this.match(SparkSqlParser.KW_WHEN); - this.state = 2213; - this.match(SparkSqlParser.KW_NOT); - this.state = 2214; - this.match(SparkSqlParser.KW_MATCHED); - this.state = 2215; - this.match(SparkSqlParser.KW_BY); - this.state = 2216; - this.match(SparkSqlParser.KW_SOURCE); this.state = 2219; + this.match(SparkSqlParser.KW_WHEN); + this.state = 2220; + this.match(SparkSqlParser.KW_NOT); + this.state = 2221; + this.match(SparkSqlParser.KW_MATCHED); + this.state = 2222; + this.match(SparkSqlParser.KW_BY); + this.state = 2223; + this.match(SparkSqlParser.KW_SOURCE); + this.state = 2226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2217; + this.state = 2224; this.match(SparkSqlParser.KW_AND); - this.state = 2218; + this.state = 2225; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2221; + this.state = 2228; this.match(SparkSqlParser.KW_THEN); - this.state = 2222; + this.state = 2229; this.notMatchedBySourceAction(); } } @@ -8543,37 +8585,37 @@ export class SparkSqlParser extends SQLParserBase { } public matchedAction(): MatchedActionContext { let localContext = new MatchedActionContext(this.context, this.state); - this.enterRule(localContext, 126, SparkSqlParser.RULE_matchedAction); + this.enterRule(localContext, 128, SparkSqlParser.RULE_matchedAction); try { - this.state = 2231; + this.state = 2238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2224; + this.state = 2231; this.match(SparkSqlParser.KW_DELETE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2225; + this.state = 2232; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2226; + this.state = 2233; this.match(SparkSqlParser.KW_SET); - this.state = 2227; + this.state = 2234; this.match(SparkSqlParser.ASTERISK); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2228; + this.state = 2235; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2229; + this.state = 2236; this.match(SparkSqlParser.KW_SET); - this.state = 2230; + this.state = 2237; this.assignmentList(); } break; @@ -8595,55 +8637,55 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedAction(): NotMatchedActionContext { let localContext = new NotMatchedActionContext(this.context, this.state); - this.enterRule(localContext, 128, SparkSqlParser.RULE_notMatchedAction); + this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2251; + this.state = 2258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2233; + this.state = 2240; this.match(SparkSqlParser.KW_INSERT); - this.state = 2234; + this.state = 2241; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2242; this.match(SparkSqlParser.KW_INSERT); - this.state = 2236; + this.state = 2243; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2237; + this.state = 2244; this.multipartIdentifierList(); - this.state = 2238; + this.state = 2245; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2239; - this.match(SparkSqlParser.KW_VALUES); - this.state = 2240; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2241; - this.expression(); this.state = 2246; + this.match(SparkSqlParser.KW_VALUES); + this.state = 2247; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2248; + this.expression(); + this.state = 2253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2242; + this.state = 2249; this.match(SparkSqlParser.COMMA); - this.state = 2243; + this.state = 2250; this.expression(); } } - this.state = 2248; + this.state = 2255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2249; + this.state = 2256; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8665,26 +8707,26 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceAction(): NotMatchedBySourceActionContext { let localContext = new NotMatchedBySourceActionContext(this.context, this.state); - this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedBySourceAction); + this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedBySourceAction); try { - this.state = 2257; + this.state = 2264; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 1); { - this.state = 2253; + this.state = 2260; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 2); { - this.state = 2254; + this.state = 2261; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2255; + this.state = 2262; this.match(SparkSqlParser.KW_SET); - this.state = 2256; + this.state = 2263; this.assignmentList(); } break; @@ -8708,26 +8750,26 @@ export class SparkSqlParser extends SQLParserBase { } public assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 132, SparkSqlParser.RULE_assignmentList); + this.enterRule(localContext, 134, SparkSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2259; + this.state = 2266; this.assignment(); - this.state = 2264; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2260; + this.state = 2267; this.match(SparkSqlParser.COMMA); - this.state = 2261; + this.state = 2268; this.assignment(); } } - this.state = 2266; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8749,15 +8791,15 @@ export class SparkSqlParser extends SQLParserBase { } public assignment(): AssignmentContext { let localContext = new AssignmentContext(this.context, this.state); - this.enterRule(localContext, 134, SparkSqlParser.RULE_assignment); + this.enterRule(localContext, 136, SparkSqlParser.RULE_assignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2274; localContext._key = this.multipartIdentifier(); - this.state = 2268; + this.state = 2275; this.match(SparkSqlParser.EQ); - this.state = 2269; + this.state = 2276; localContext._value = this.expression(); } } @@ -8777,13 +8819,13 @@ export class SparkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 136, SparkSqlParser.RULE_whereClause); + this.enterRule(localContext, 138, SparkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2278; this.match(SparkSqlParser.KW_WHERE); - this.state = 2272; + this.state = 2279; this.booleanExpression(0); } } @@ -8803,13 +8845,13 @@ export class SparkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 138, SparkSqlParser.RULE_havingClause); + this.enterRule(localContext, 140, SparkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2281; this.match(SparkSqlParser.KW_HAVING); - this.state = 2275; + this.state = 2282; this.booleanExpression(0); } } @@ -8829,42 +8871,42 @@ export class SparkSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 140, SparkSqlParser.RULE_hint); + this.enterRule(localContext, 142, SparkSqlParser.RULE_hint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2284; this.match(SparkSqlParser.HENT_START); - this.state = 2278; + this.state = 2285; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2285; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2280; + this.state = 2287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2279; + this.state = 2286; this.match(SparkSqlParser.COMMA); } } - this.state = 2282; + this.state = 2289; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2287; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2288; + this.state = 2295; this.match(SparkSqlParser.HENT_END); } } @@ -8884,47 +8926,47 @@ export class SparkSqlParser extends SQLParserBase { } public hintStatement(): HintStatementContext { let localContext = new HintStatementContext(this.context, this.state); - this.enterRule(localContext, 142, SparkSqlParser.RULE_hintStatement); + this.enterRule(localContext, 144, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2303; + this.state = 2310; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2297; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2291; + this.state = 2298; localContext._hintName = this.identifier(); - this.state = 2292; + this.state = 2299; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2293; + this.state = 2300; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2298; + this.state = 2305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2294; + this.state = 2301; this.match(SparkSqlParser.COMMA); - this.state = 2295; + this.state = 2302; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2300; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2301; + this.state = 2308; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8946,65 +8988,65 @@ export class SparkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 144, SparkSqlParser.RULE_fromClause); + this.enterRule(localContext, 146, SparkSqlParser.RULE_fromClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2305; + this.state = 2312; this.match(SparkSqlParser.KW_FROM); - this.state = 2306; + this.state = 2313; this.relation(); - this.state = 2311; + this.state = 2318; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2307; + this.state = 2314; this.match(SparkSqlParser.COMMA); - this.state = 2308; + this.state = 2315; this.relation(); } } } - this.state = 2313; + this.state = 2320; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } - this.state = 2317; + this.state = 2324; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2314; + this.state = 2321; this.lateralView(); } } } - this.state = 2319; + this.state = 2326; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2321; + this.state = 2328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: { - this.state = 2320; + this.state = 2327; this.pivotClause(); } break; } - this.state = 2324; + this.state = 2331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2323; + this.state = 2330; this.unpivotClause(); } break; @@ -9027,14 +9069,14 @@ export class SparkSqlParser extends SQLParserBase { } public functionKind(): FunctionKindContext { let localContext = new FunctionKindContext(this.context, this.state); - this.enterRule(localContext, 146, SparkSqlParser.RULE_functionKind); + this.enterRule(localContext, 148, SparkSqlParser.RULE_functionKind); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2326; + this.state = 2333; _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 289 || _la === 330)) { + if(!(_la === 10 || _la === 290 || _la === 331)) { this.errorHandler.recoverInline(this); } else { @@ -9059,45 +9101,15 @@ export class SparkSqlParser extends SQLParserBase { } public temporalClause(): TemporalClauseContext { let localContext = new TemporalClauseContext(this.context, this.state); - this.enterRule(localContext, 148, SparkSqlParser.RULE_temporalClause); + this.enterRule(localContext, 150, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2342; + this.state = 2349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2329; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 119) { - { - this.state = 2328; - this.match(SparkSqlParser.KW_FOR); - } - } - - this.state = 2331; - _la = this.tokenStream.LA(1); - if(!(_la === 291 || _la === 336)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 2332; - this.match(SparkSqlParser.KW_AS); - this.state = 2333; - this.match(SparkSqlParser.KW_OF); - this.state = 2334; - this.version(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); @@ -9110,7 +9122,7 @@ export class SparkSqlParser extends SQLParserBase { this.state = 2338; _la = this.tokenStream.LA(1); - if(!(_la === 290 || _la === 302)) { + if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); } else { @@ -9122,6 +9134,36 @@ export class SparkSqlParser extends SQLParserBase { this.state = 2340; this.match(SparkSqlParser.KW_OF); this.state = 2341; + this.version(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2343; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 119) { + { + this.state = 2342; + this.match(SparkSqlParser.KW_FOR); + } + } + + this.state = 2345; + _la = this.tokenStream.LA(1); + if(!(_la === 291 || _la === 303)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2346; + this.match(SparkSqlParser.KW_AS); + this.state = 2347; + this.match(SparkSqlParser.KW_OF); + this.state = 2348; localContext._timestamp = this.valueExpression(0); } break; @@ -9143,39 +9185,39 @@ export class SparkSqlParser extends SQLParserBase { } public aggregationClause(): AggregationClauseContext { let localContext = new AggregationClauseContext(this.context, this.state); - this.enterRule(localContext, 150, SparkSqlParser.RULE_aggregationClause); + this.enterRule(localContext, 152, SparkSqlParser.RULE_aggregationClause); let _la: number; try { let alternative: number; - this.state = 2383; + this.state = 2390; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2344; + this.state = 2351; this.match(SparkSqlParser.KW_GROUP); - this.state = 2345; + this.state = 2352; this.match(SparkSqlParser.KW_BY); - this.state = 2346; + this.state = 2353; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2351; + this.state = 2358; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2347; + this.state = 2354; this.match(SparkSqlParser.COMMA); - this.state = 2348; + this.state = 2355; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2353; + this.state = 2360; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); } @@ -9184,78 +9226,78 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2354; + this.state = 2361; this.match(SparkSqlParser.KW_GROUP); - this.state = 2355; + this.state = 2362; this.match(SparkSqlParser.KW_BY); - this.state = 2356; + this.state = 2363; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2361; + this.state = 2368; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2357; + this.state = 2364; this.match(SparkSqlParser.COMMA); - this.state = 2358; + this.state = 2365; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2363; + this.state = 2370; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); } - this.state = 2381; + this.state = 2388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2364; + this.state = 2371; this.match(SparkSqlParser.KW_WITH); - this.state = 2365; + this.state = 2372; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2366; + this.state = 2373; this.match(SparkSqlParser.KW_WITH); - this.state = 2367; + this.state = 2374; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2368; + this.state = 2375; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2369; - this.match(SparkSqlParser.KW_SETS); - this.state = 2370; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2371; - this.groupingSet(); this.state = 2376; + this.match(SparkSqlParser.KW_SETS); + this.state = 2377; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2378; + this.groupingSet(); + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2372; + this.state = 2379; this.match(SparkSqlParser.COMMA); - this.state = 2373; + this.state = 2380; this.groupingSet(); } } - this.state = 2378; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2379; + this.state = 2386; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9280,29 +9322,29 @@ export class SparkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 152, SparkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 154, SparkSqlParser.RULE_groupByClause); try { - this.state = 2388; + this.state = 2395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2385; + this.state = 2392; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2386; + this.state = 2393; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2387; + this.state = 2394; this.expression(); } break; @@ -9324,77 +9366,77 @@ export class SparkSqlParser extends SQLParserBase { } public groupingAnalytics(): GroupingAnalyticsContext { let localContext = new GroupingAnalyticsContext(this.context, this.state); - this.enterRule(localContext, 154, SparkSqlParser.RULE_groupingAnalytics); + this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2415; + this.state = 2422; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2390; + this.state = 2397; _la = this.tokenStream.LA(1); - if(!(_la === 61 || _la === 255)) { + if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2391; + this.state = 2398; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2392; + this.state = 2399; this.groupingSet(); - this.state = 2397; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2393; + this.state = 2400; this.match(SparkSqlParser.COMMA); - this.state = 2394; + this.state = 2401; this.groupingSet(); } } - this.state = 2399; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2400; + this.state = 2407; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2402; + this.state = 2409; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2403; - this.match(SparkSqlParser.KW_SETS); - this.state = 2404; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2405; - this.groupingElement(); this.state = 2410; + this.match(SparkSqlParser.KW_SETS); + this.state = 2411; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2412; + this.groupingElement(); + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2406; + this.state = 2413; this.match(SparkSqlParser.COMMA); - this.state = 2407; + this.state = 2414; this.groupingElement(); } } - this.state = 2412; + this.state = 2419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2413; + this.state = 2420; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9418,22 +9460,22 @@ export class SparkSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingElement); + this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingElement); try { - this.state = 2419; + this.state = 2426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2417; + this.state = 2424; this.groupingAnalytics(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2418; + this.state = 2425; this.groupingSet(); } break; @@ -9455,86 +9497,86 @@ export class SparkSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingSet); + this.enterRule(localContext, 160, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2441; + this.state = 2448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2421; + this.state = 2428; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2422; + this.state = 2429; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2423; + this.state = 2430; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2438; + this.state = 2445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2426; + this.state = 2433; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2424; + this.state = 2431; this.columnName(); } break; case 2: { - this.state = 2425; + this.state = 2432; this.expression(); } break; } - this.state = 2435; + this.state = 2442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2428; + this.state = 2435; this.match(SparkSqlParser.COMMA); - this.state = 2431; + this.state = 2438; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2429; + this.state = 2436; this.columnName(); } break; case 2: { - this.state = 2430; + this.state = 2437; this.expression(); } break; } } } - this.state = 2437; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2440; + this.state = 2447; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9556,48 +9598,48 @@ export class SparkSqlParser extends SQLParserBase { } public pivotClause(): PivotClauseContext { let localContext = new PivotClauseContext(this.context, this.state); - this.enterRule(localContext, 160, SparkSqlParser.RULE_pivotClause); + this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2443; - this.match(SparkSqlParser.KW_PIVOT); - this.state = 2444; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2445; - localContext._aggregates = this.namedExpressionSeq(); - this.state = 2446; - this.match(SparkSqlParser.KW_FOR); - this.state = 2447; - this.pivotColumn(); - this.state = 2448; - this.match(SparkSqlParser.KW_IN); - this.state = 2449; - this.match(SparkSqlParser.LEFT_PAREN); this.state = 2450; + this.match(SparkSqlParser.KW_PIVOT); + this.state = 2451; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2452; + localContext._aggregates = this.namedExpressionSeq(); + this.state = 2453; + this.match(SparkSqlParser.KW_FOR); + this.state = 2454; + this.pivotColumn(); + this.state = 2455; + this.match(SparkSqlParser.KW_IN); + this.state = 2456; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2457; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2455; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2451; + this.state = 2458; this.match(SparkSqlParser.COMMA); - this.state = 2452; + this.state = 2459; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2457; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2458; + this.state = 2465; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2459; + this.state = 2466; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9617,10 +9659,10 @@ export class SparkSqlParser extends SQLParserBase { } public pivotColumn(): PivotColumnContext { let localContext = new PivotColumnContext(this.context, this.state); - this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotColumn); + this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2473; + this.state = 2480; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -9776,6 +9818,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LAZY: case SparkSqlParser.KW_LEADING: case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: case SparkSqlParser.KW_LIKE: case SparkSqlParser.KW_ILIKE: case SparkSqlParser.KW_LIMIT: @@ -9967,7 +10010,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2461; + this.state = 2468; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -9975,29 +10018,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2462; + this.state = 2469; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2463; + this.state = 2470; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2468; + this.state = 2475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2464; + this.state = 2471; this.match(SparkSqlParser.COMMA); - this.state = 2465; + this.state = 2472; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2470; + this.state = 2477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2471; + this.state = 2478; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10021,29 +10064,29 @@ export class SparkSqlParser extends SQLParserBase { } public pivotValue(): PivotValueContext { let localContext = new PivotValueContext(this.context, this.state); - this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotValue); + this.enterRule(localContext, 166, SparkSqlParser.RULE_pivotValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2475; + this.state = 2482; this.expression(); - this.state = 2480; + this.state = 2487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2477; + this.state = 2484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2476; + this.state = 2483; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2479; + this.state = 2486; this.identifier(); } } @@ -10066,45 +10109,45 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotClause(): UnpivotClauseContext { let localContext = new UnpivotClauseContext(this.context, this.state); - this.enterRule(localContext, 166, SparkSqlParser.RULE_unpivotClause); + this.enterRule(localContext, 168, SparkSqlParser.RULE_unpivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2489; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2484; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2483; + this.state = 2490; localContext._nullOperator = this.unpivotNullClause(); } } - this.state = 2486; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2487; - localContext._operator = this.unpivotOperator(); - this.state = 2488; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 2493; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2494; + localContext._operator = this.unpivotOperator(); + this.state = 2495; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2490; + this.state = 2497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2489; + this.state = 2496; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2492; + this.state = 2499; this.identifier(); } break; @@ -10127,12 +10170,12 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotNullClause(): UnpivotNullClauseContext { let localContext = new UnpivotNullClauseContext(this.context, this.state); - this.enterRule(localContext, 168, SparkSqlParser.RULE_unpivotNullClause); + this.enterRule(localContext, 170, SparkSqlParser.RULE_unpivotNullClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2495; + this.state = 2502; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10141,7 +10184,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2496; + this.state = 2503; this.match(SparkSqlParser.KW_NULLS); } } @@ -10161,11 +10204,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotOperator(): UnpivotOperatorContext { let localContext = new UnpivotOperatorContext(this.context, this.state); - this.enterRule(localContext, 170, SparkSqlParser.RULE_unpivotOperator); + this.enterRule(localContext, 172, SparkSqlParser.RULE_unpivotOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 2500; + this.state = 2507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10321,6 +10364,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LAZY: case SparkSqlParser.KW_LEADING: case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: case SparkSqlParser.KW_LIKE: case SparkSqlParser.KW_ILIKE: case SparkSqlParser.KW_LIMIT: @@ -10511,13 +10555,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2498; + this.state = 2505; this.unpivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2499; + this.state = 2506; this.unpivotMultiValueColumnClause(); } break; @@ -10542,42 +10586,42 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotSingleValueColumnClause(): UnpivotSingleValueColumnClauseContext { let localContext = new UnpivotSingleValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 172, SparkSqlParser.RULE_unpivotSingleValueColumnClause); + this.enterRule(localContext, 174, SparkSqlParser.RULE_unpivotSingleValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2502; + this.state = 2509; this.unpivotValueColumn(); - this.state = 2503; + this.state = 2510; this.match(SparkSqlParser.KW_FOR); - this.state = 2504; + this.state = 2511; this.unpivotNameColumn(); - this.state = 2505; + this.state = 2512; this.match(SparkSqlParser.KW_IN); - this.state = 2506; + this.state = 2513; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2507; + this.state = 2514; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); - this.state = 2512; + this.state = 2519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2508; + this.state = 2515; this.match(SparkSqlParser.COMMA); - this.state = 2509; + this.state = 2516; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); } } - this.state = 2514; + this.state = 2521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2515; + this.state = 2522; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10597,64 +10641,64 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotMultiValueColumnClause(): UnpivotMultiValueColumnClauseContext { let localContext = new UnpivotMultiValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 174, SparkSqlParser.RULE_unpivotMultiValueColumnClause); + this.enterRule(localContext, 176, SparkSqlParser.RULE_unpivotMultiValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2517; + this.state = 2524; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2518; + this.state = 2525; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); - this.state = 2523; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2519; + this.state = 2526; this.match(SparkSqlParser.COMMA); - this.state = 2520; + this.state = 2527; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); } } - this.state = 2525; + this.state = 2532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2526; + this.state = 2533; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2527; + this.state = 2534; this.match(SparkSqlParser.KW_FOR); - this.state = 2528; + this.state = 2535; this.unpivotNameColumn(); - this.state = 2529; + this.state = 2536; this.match(SparkSqlParser.KW_IN); - this.state = 2530; + this.state = 2537; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2531; + this.state = 2538; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); - this.state = 2536; + this.state = 2543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2532; + this.state = 2539; this.match(SparkSqlParser.COMMA); - this.state = 2533; + this.state = 2540; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); } } - this.state = 2538; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2539; + this.state = 2546; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10674,41 +10718,41 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumnSet(): UnpivotColumnSetContext { let localContext = new UnpivotColumnSetContext(this.context, this.state); - this.enterRule(localContext, 176, SparkSqlParser.RULE_unpivotColumnSet); + this.enterRule(localContext, 178, SparkSqlParser.RULE_unpivotColumnSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2548; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2542; + this.state = 2549; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); - this.state = 2547; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2543; + this.state = 2550; this.match(SparkSqlParser.COMMA); - this.state = 2544; + this.state = 2551; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); } } - this.state = 2549; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2550; + this.state = 2557; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2552; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2551; + this.state = 2558; this.unpivotAlias(); } } @@ -10731,11 +10775,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotValueColumn(): UnpivotValueColumnContext { let localContext = new UnpivotValueColumnContext(this.context, this.state); - this.enterRule(localContext, 178, SparkSqlParser.RULE_unpivotValueColumn); + this.enterRule(localContext, 180, SparkSqlParser.RULE_unpivotValueColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2554; + this.state = 2561; this.identifier(); } } @@ -10755,11 +10799,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotNameColumn(): UnpivotNameColumnContext { let localContext = new UnpivotNameColumnContext(this.context, this.state); - this.enterRule(localContext, 180, SparkSqlParser.RULE_unpivotNameColumn); + this.enterRule(localContext, 182, SparkSqlParser.RULE_unpivotNameColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2556; + this.state = 2563; this.identifier(); } } @@ -10779,19 +10823,19 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumnAndAlias(): UnpivotColumnAndAliasContext { let localContext = new UnpivotColumnAndAliasContext(this.context, this.state); - this.enterRule(localContext, 182, SparkSqlParser.RULE_unpivotColumnAndAlias); + this.enterRule(localContext, 184, SparkSqlParser.RULE_unpivotColumnAndAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2558; + this.state = 2565; this.unpivotColumn(); - this.state = 2560; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2559; + this.state = 2566; this.unpivotAlias(); } } @@ -10814,11 +10858,11 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumn(): UnpivotColumnContext { let localContext = new UnpivotColumnContext(this.context, this.state); - this.enterRule(localContext, 184, SparkSqlParser.RULE_unpivotColumn); + this.enterRule(localContext, 186, SparkSqlParser.RULE_unpivotColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 2562; + this.state = 2569; this.multipartIdentifier(); } } @@ -10838,21 +10882,21 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotAlias(): UnpivotAliasContext { let localContext = new UnpivotAliasContext(this.context, this.state); - this.enterRule(localContext, 186, SparkSqlParser.RULE_unpivotAlias); + this.enterRule(localContext, 188, SparkSqlParser.RULE_unpivotAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; + this.state = 2572; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2564; + this.state = 2571; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2567; + this.state = 2574; this.identifier(); } } @@ -10872,15 +10916,15 @@ export class SparkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 188, SparkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 190, SparkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2576; this.match(SparkSqlParser.KW_IF); - this.state = 2570; + this.state = 2577; this.match(SparkSqlParser.KW_NOT); - this.state = 2571; + this.state = 2578; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10900,13 +10944,13 @@ export class SparkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 190, SparkSqlParser.RULE_ifExists); + this.enterRule(localContext, 192, SparkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2573; + this.state = 2580; this.match(SparkSqlParser.KW_IF); - this.state = 2574; + this.state = 2581; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10926,94 +10970,94 @@ export class SparkSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 192, SparkSqlParser.RULE_lateralView); + this.enterRule(localContext, 194, SparkSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2583; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2577; + this.state = 2584; this.match(SparkSqlParser.KW_VIEW); - this.state = 2579; + this.state = 2586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2578; + this.state = 2585; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2581; + this.state = 2588; this.viewName(); - this.state = 2582; + this.state = 2589; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2591; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2583; + this.state = 2590; this.expression(); - this.state = 2588; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2584; + this.state = 2591; this.match(SparkSqlParser.COMMA); - this.state = 2585; + this.state = 2592; this.expression(); } } - this.state = 2590; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2593; + this.state = 2600; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2594; + this.state = 2601; this.tableAlias(); - this.state = 2606; + this.state = 2613; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2596; + this.state = 2603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2595; + this.state = 2602; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2598; + this.state = 2605; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2603; + this.state = 2610; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2599; + this.state = 2606; this.match(SparkSqlParser.COMMA); - this.state = 2600; + this.state = 2607; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2605; + this.state = 2612; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } @@ -11038,12 +11082,12 @@ export class SparkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 196, SparkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2608; + this.state = 2615; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11070,47 +11114,47 @@ export class SparkSqlParser extends SQLParserBase { } public relation(): RelationContext { let localContext = new RelationContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_relation); + this.enterRule(localContext, 198, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2621; + this.state = 2628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2610; + this.state = 2617; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2612; + this.state = 2619; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2611; + this.state = 2618; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2614; + this.state = 2621; this.relationPrimary(); - this.state = 2618; + this.state = 2625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2615; + this.state = 2622; this.relationExtension(); } } } - this.state = 2620; + this.state = 2627; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); } @@ -11134,9 +11178,9 @@ export class SparkSqlParser extends SQLParserBase { } public relationExtension(): RelationExtensionContext { let localContext = new RelationExtensionContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_relationExtension); + this.enterRule(localContext, 200, SparkSqlParser.RULE_relationExtension); try { - this.state = 2626; + this.state = 2633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11150,21 +11194,21 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SEMI: this.enterOuterAlt(localContext, 1); { - this.state = 2623; + this.state = 2630; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: this.enterOuterAlt(localContext, 2); { - this.state = 2624; + this.state = 2631; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: this.enterOuterAlt(localContext, 3); { - this.state = 2625; + this.state = 2632; this.unpivotClause(); } break; @@ -11188,9 +11232,9 @@ export class SparkSqlParser extends SQLParserBase { } public joinRelation(): JoinRelationContext { let localContext = new JoinRelationContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_joinRelation); + this.enterRule(localContext, 202, SparkSqlParser.RULE_joinRelation); try { - this.state = 2645; + this.state = 2652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11204,29 +11248,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2628; + this.state = 2635; this.joinType(); } - this.state = 2629; + this.state = 2636; this.match(SparkSqlParser.KW_JOIN); - this.state = 2631; + this.state = 2638; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2630; + this.state = 2637; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2633; + this.state = 2640; localContext._right = this.relationPrimary(); - this.state = 2635; + this.state = 2642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2634; + this.state = 2641; this.joinCriteria(); } break; @@ -11236,23 +11280,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2637; + this.state = 2644; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2638; + this.state = 2645; this.joinType(); - this.state = 2639; + this.state = 2646; this.match(SparkSqlParser.KW_JOIN); - this.state = 2641; + this.state = 2648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 2640; + this.state = 2647; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2643; + this.state = 2650; localContext._right = this.relationPrimary(); } break; @@ -11276,21 +11320,21 @@ export class SparkSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_joinType); + this.enterRule(localContext, 204, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2671; + this.state = 2678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2648; + this.state = 2655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2647; + this.state = 2654; this.match(SparkSqlParser.KW_INNER); } } @@ -11300,21 +11344,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2650; + this.state = 2657; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2651; + this.state = 2658; this.match(SparkSqlParser.KW_LEFT); - this.state = 2653; + this.state = 2660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 210) { + if (_la === 211) { { - this.state = 2652; + this.state = 2659; this.match(SparkSqlParser.KW_OUTER); } } @@ -11324,31 +11368,31 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2656; + this.state = 2663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2655; + this.state = 2662; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2658; + this.state = 2665; this.match(SparkSqlParser.KW_SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2659; + this.state = 2666; this.match(SparkSqlParser.KW_RIGHT); - this.state = 2661; + this.state = 2668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 210) { + if (_la === 211) { { - this.state = 2660; + this.state = 2667; this.match(SparkSqlParser.KW_OUTER); } } @@ -11358,14 +11402,14 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2663; + this.state = 2670; this.match(SparkSqlParser.KW_FULL); - this.state = 2665; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 210) { + if (_la === 211) { { - this.state = 2664; + this.state = 2671; this.match(SparkSqlParser.KW_OUTER); } } @@ -11375,17 +11419,17 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2668; + this.state = 2675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2667; + this.state = 2674; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2670; + this.state = 2677; this.match(SparkSqlParser.KW_ANTI); } break; @@ -11407,26 +11451,26 @@ export class SparkSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 206, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2677; + this.state = 2684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2673; + this.state = 2680; this.match(SparkSqlParser.KW_ON); - this.state = 2674; + this.state = 2681; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2675; + this.state = 2682; this.match(SparkSqlParser.KW_USING); - this.state = 2676; + this.state = 2683; this.identifierList(); } break; @@ -11450,39 +11494,39 @@ export class SparkSqlParser extends SQLParserBase { } public sample(): SampleContext { let localContext = new SampleContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_sample); + this.enterRule(localContext, 208, SparkSqlParser.RULE_sample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2679; + this.state = 2686; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2680; + this.state = 2687; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2682; + this.state = 2689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2681; + this.state = 2688; this.sampleMethod(); } } - this.state = 2684; + this.state = 2691; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2689; + this.state = 2696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 2685; + this.state = 2692; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2686; + this.state = 2693; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2687; + this.state = 2694; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2688; + this.state = 2695; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11505,84 +11549,84 @@ export class SparkSqlParser extends SQLParserBase { } public sampleMethod(): SampleMethodContext { let localContext = new SampleMethodContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_sampleMethod); + this.enterRule(localContext, 210, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2715; + this.state = 2722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2692; + this.state = 2699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 2691; + this.state = 2698; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2694; + this.state = 2701; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 381 || _la === 383)) { + if(!(_la === 382 || _la === 384)) { localContext._percentage = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2695; + this.state = 2702; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2696; + this.state = 2703; this.expression(); - this.state = 2697; + this.state = 2704; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2699; + this.state = 2706; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2700; + this.state = 2707; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2701; + this.state = 2708; this.match(SparkSqlParser.KW_OUT); - this.state = 2702; + this.state = 2709; this.match(SparkSqlParser.KW_OF); - this.state = 2703; + this.state = 2710; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2712; + this.state = 2719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 202) { + if (_la === 203) { { - this.state = 2704; + this.state = 2711; this.match(SparkSqlParser.KW_ON); - this.state = 2710; + this.state = 2717; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2705; + this.state = 2712; this.identifier(); } break; case 2: { - this.state = 2706; + this.state = 2713; this.qualifiedName(); - this.state = 2707; + this.state = 2714; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2708; + this.state = 2715; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11595,7 +11639,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2714; + this.state = 2721; localContext._bytes = this.expression(); } break; @@ -11617,15 +11661,15 @@ export class SparkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_identifierList); + this.enterRule(localContext, 212, SparkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2717; + this.state = 2724; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2718; + this.state = 2725; this.identifierSeq(); - this.state = 2719; + this.state = 2726; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11645,30 +11689,30 @@ export class SparkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 214, SparkSqlParser.RULE_identifierSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2721; + this.state = 2728; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2726; + this.state = 2733; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2722; + this.state = 2729; this.match(SparkSqlParser.COMMA); - this.state = 2723; + this.state = 2730; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2728; + this.state = 2735; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); } @@ -11690,32 +11734,32 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifierList(): OrderedIdentifierListContext { let localContext = new OrderedIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_orderedIdentifierList); + this.enterRule(localContext, 216, SparkSqlParser.RULE_orderedIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2729; + this.state = 2736; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2730; + this.state = 2737; this.orderedIdentifier(); - this.state = 2735; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2731; + this.state = 2738; this.match(SparkSqlParser.COMMA); - this.state = 2732; + this.state = 2739; this.orderedIdentifier(); } } - this.state = 2737; + this.state = 2744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2738; + this.state = 2745; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11735,19 +11779,19 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifier(): OrderedIdentifierContext { let localContext = new OrderedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_orderedIdentifier); + this.enterRule(localContext, 218, SparkSqlParser.RULE_orderedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2740; + this.state = 2747; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2742; + this.state = 2749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2741; + this.state = 2748; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11778,32 +11822,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierCommentList(): IdentifierCommentListContext { let localContext = new IdentifierCommentListContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_identifierCommentList); + this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2744; + this.state = 2751; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2745; + this.state = 2752; this.identifierComment(); - this.state = 2750; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2746; + this.state = 2753; this.match(SparkSqlParser.COMMA); - this.state = 2747; + this.state = 2754; this.identifierComment(); } } - this.state = 2752; + this.state = 2759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2753; + this.state = 2760; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11823,19 +11867,19 @@ export class SparkSqlParser extends SQLParserBase { } public identifierComment(): IdentifierCommentContext { let localContext = new IdentifierCommentContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierComment); + this.enterRule(localContext, 222, SparkSqlParser.RULE_identifierComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2755; + this.state = 2762; this.columnNameCreate(); - this.state = 2757; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2756; + this.state = 2763; this.commentSpec(); } } @@ -11858,117 +11902,117 @@ export class SparkSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2790; + this.state = 2797; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2759; + this.state = 2766; this.tableName(); } break; case 2: { - this.state = 2760; + this.state = 2767; this.viewName(); } break; case 3: { - this.state = 2761; + this.state = 2768; this.identifierReference(); } break; } - this.state = 2765; + this.state = 2772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2764; + this.state = 2771; this.temporalClause(); } break; } - this.state = 2768; + this.state = 2775; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2767; + this.state = 2774; this.sample(); } break; } - this.state = 2770; + this.state = 2777; this.tableAlias(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2772; + this.state = 2779; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2773; + this.state = 2780; this.query(); - this.state = 2774; + this.state = 2781; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2776; + this.state = 2783; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2775; + this.state = 2782; this.sample(); } break; } - this.state = 2778; + this.state = 2785; this.tableAlias(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2780; + this.state = 2787; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2781; + this.state = 2788; this.relation(); - this.state = 2782; + this.state = 2789; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2784; + this.state = 2791; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2783; + this.state = 2790; this.sample(); } break; } - this.state = 2786; + this.state = 2793; this.tableAlias(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2788; + this.state = 2795; this.inlineTable(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2789; + this.state = 2796; this.functionTable(); } break; @@ -11990,34 +12034,34 @@ export class SparkSqlParser extends SQLParserBase { } public inlineTable(): InlineTableContext { let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_inlineTable); + this.enterRule(localContext, 226, SparkSqlParser.RULE_inlineTable); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2792; + this.state = 2799; this.match(SparkSqlParser.KW_VALUES); - this.state = 2793; + this.state = 2800; this.expression(); - this.state = 2798; + this.state = 2805; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2794; + this.state = 2801; this.match(SparkSqlParser.COMMA); - this.state = 2795; + this.state = 2802; this.expression(); } } } - this.state = 2800; + this.state = 2807; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); } - this.state = 2801; + this.state = 2808; this.tableAlias(); } } @@ -12037,25 +12081,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 228, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2822; + this.state = 2829; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2803; + this.state = 2810; this.match(SparkSqlParser.KW_TABLE); - this.state = 2804; + this.state = 2811; this.tableName(); - this.state = 2806; + this.state = 2813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 93 || _la === 216 || _la === 345) { + if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2805; + this.state = 2812; this.tableArgumentPartitioning(); } } @@ -12065,20 +12109,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2808; + this.state = 2815; this.match(SparkSqlParser.KW_TABLE); - this.state = 2809; + this.state = 2816; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2810; + this.state = 2817; this.tableName(); - this.state = 2811; + this.state = 2818; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2813; + this.state = 2820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 93 || _la === 216 || _la === 345) { + if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2812; + this.state = 2819; this.tableArgumentPartitioning(); } } @@ -12088,20 +12132,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2815; + this.state = 2822; this.match(SparkSqlParser.KW_TABLE); - this.state = 2816; + this.state = 2823; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2817; + this.state = 2824; this.query(); - this.state = 2818; + this.state = 2825; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2820; + this.state = 2827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 93 || _la === 216 || _la === 345) { + if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2819; + this.state = 2826; this.tableArgumentPartitioning(); } } @@ -12126,22 +12170,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 230, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2843; + this.state = 2850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2824; + this.state = 2831; this.match(SparkSqlParser.KW_WITH); - this.state = 2825; + this.state = 2832; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2826; + this.state = 2833; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12150,47 +12194,47 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2827; + this.state = 2834; _la = this.tokenStream.LA(1); - if(!(_la === 93 || _la === 216)) { + if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2828; + this.state = 2835; this.match(SparkSqlParser.KW_BY); - this.state = 2841; + this.state = 2848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: { { { - this.state = 2829; + this.state = 2836; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2830; + this.state = 2837; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2835; + this.state = 2842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2831; + this.state = 2838; this.match(SparkSqlParser.COMMA); - this.state = 2832; + this.state = 2839; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2837; + this.state = 2844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2838; + this.state = 2845; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12198,7 +12242,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2840; + this.state = 2847; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12210,57 +12254,57 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2861; + this.state = 2868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 208 || _la === 277) { + if (_la === 209 || _la === 278) { { - this.state = 2845; + this.state = 2852; _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 277)) { + if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2846; + this.state = 2853; this.match(SparkSqlParser.KW_BY); { - this.state = 2859; + this.state = 2866; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: { { - this.state = 2847; + this.state = 2854; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2848; + this.state = 2855; this.sortItem(); - this.state = 2853; + this.state = 2860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2849; + this.state = 2856; this.match(SparkSqlParser.COMMA); - this.state = 2850; + this.state = 2857; this.sortItem(); } } - this.state = 2855; + this.state = 2862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2856; + this.state = 2863; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2858; + this.state = 2865; this.sortItem(); } break; @@ -12287,15 +12331,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2863; + this.state = 2870; localContext._key = this.identifier(); - this.state = 2864; + this.state = 2871; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2865; + this.state = 2872; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12315,15 +12359,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2869; + this.state = 2876; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2867; + this.state = 2874; this.functionTableSubqueryArgument(); } break; @@ -12480,6 +12524,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LAZY: case SparkSqlParser.KW_LEADING: case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: case SparkSqlParser.KW_LIKE: case SparkSqlParser.KW_ILIKE: case SparkSqlParser.KW_LIMIT: @@ -12671,7 +12716,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2868; + this.state = 2875; this.functionTableNamedArgumentExpression(); } break; @@ -12695,22 +12740,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2873; + this.state = 2880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2871; + this.state = 2878; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2872; + this.state = 2879; this.functionArgument(); } break; @@ -12732,44 +12777,44 @@ export class SparkSqlParser extends SQLParserBase { } public functionTable(): FunctionTableContext { let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTable); + this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2875; + this.state = 2882; this.functionName(); - this.state = 2876; + this.state = 2883; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2885; + this.state = 2892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2877; + this.state = 2884; this.functionTableArgument(); - this.state = 2882; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2878; + this.state = 2885; this.match(SparkSqlParser.COMMA); - this.state = 2879; + this.state = 2886; this.functionTableArgument(); } } - this.state = 2884; + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2887; + this.state = 2894; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2888; + this.state = 2895; this.tableAlias(); } } @@ -12789,33 +12834,33 @@ export class SparkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 240, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2897; + this.state = 2904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2891; + this.state = 2898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2890; + this.state = 2897; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2893; + this.state = 2900; this.strictIdentifier(); - this.state = 2895; + this.state = 2902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2894; + this.state = 2901; this.identifierList(); } break; @@ -12841,32 +12886,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 242, SparkSqlParser.RULE_rowFormat); try { - this.state = 2948; + this.state = 2955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2899; - this.match(SparkSqlParser.KW_ROW); - this.state = 2900; - this.match(SparkSqlParser.KW_FORMAT); - this.state = 2901; - this.match(SparkSqlParser.KW_SERDE); - this.state = 2902; - localContext._name = this.stringLit(); this.state = 2906; + this.match(SparkSqlParser.KW_ROW); + this.state = 2907; + this.match(SparkSqlParser.KW_FORMAT); + this.state = 2908; + this.match(SparkSqlParser.KW_SERDE); + this.state = 2909; + localContext._name = this.stringLit(); + this.state = 2913; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2903; + this.state = 2910; this.match(SparkSqlParser.KW_WITH); - this.state = 2904; + this.state = 2911; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2905; + this.state = 2912; localContext._props = this.propertyList(); } break; @@ -12876,35 +12921,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2908; + this.state = 2915; this.match(SparkSqlParser.KW_ROW); - this.state = 2909; + this.state = 2916; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2910; + this.state = 2917; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2920; + this.state = 2927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2911; - this.match(SparkSqlParser.KW_FIELDS); - this.state = 2912; - this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2913; - this.match(SparkSqlParser.KW_BY); - this.state = 2914; - localContext._fieldsTerminatedBy = this.stringLit(); this.state = 2918; + this.match(SparkSqlParser.KW_FIELDS); + this.state = 2919; + this.match(SparkSqlParser.KW_TERMINATED); + this.state = 2920; + this.match(SparkSqlParser.KW_BY); + this.state = 2921; + localContext._fieldsTerminatedBy = this.stringLit(); + this.state = 2925; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2915; + this.state = 2922; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2916; + this.state = 2923; this.match(SparkSqlParser.KW_BY); - this.state = 2917; + this.state = 2924; localContext._escapedBy = this.stringLit(); } break; @@ -12912,70 +12957,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2927; + this.state = 2934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { - case 1: - { - this.state = 2922; - this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2923; - this.match(SparkSqlParser.KW_ITEMS); - this.state = 2924; - this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2925; - this.match(SparkSqlParser.KW_BY); - this.state = 2926; - localContext._collectionItemsTerminatedBy = this.stringLit(); - } - break; - } - this.state = 2934; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { this.state = 2929; - this.match(SparkSqlParser.KW_MAP); + this.match(SparkSqlParser.KW_COLLECTION); this.state = 2930; - this.match(SparkSqlParser.KW_KEYS); + this.match(SparkSqlParser.KW_ITEMS); this.state = 2931; this.match(SparkSqlParser.KW_TERMINATED); this.state = 2932; this.match(SparkSqlParser.KW_BY); this.state = 2933; + localContext._collectionItemsTerminatedBy = this.stringLit(); + } + break; + } + this.state = 2941; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + case 1: + { + this.state = 2936; + this.match(SparkSqlParser.KW_MAP); + this.state = 2937; + this.match(SparkSqlParser.KW_KEYS); + this.state = 2938; + this.match(SparkSqlParser.KW_TERMINATED); + this.state = 2939; + this.match(SparkSqlParser.KW_BY); + this.state = 2940; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2940; + this.state = 2947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2936; + this.state = 2943; this.match(SparkSqlParser.KW_LINES); - this.state = 2937; + this.state = 2944; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2938; + this.state = 2945; this.match(SparkSqlParser.KW_BY); - this.state = 2939; + this.state = 2946; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2946; + this.state = 2953; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2942; + this.state = 2949; this.match(SparkSqlParser.KW_NULL); - this.state = 2943; + this.state = 2950; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2944; + this.state = 2951; this.match(SparkSqlParser.KW_AS); - this.state = 2945; + this.state = 2952; localContext._nullDefinedAs = this.stringLit(); } break; @@ -13000,26 +13045,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2950; + this.state = 2957; this.multipartIdentifier(); - this.state = 2955; + this.state = 2962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2951; + this.state = 2958; this.match(SparkSqlParser.COMMA); - this.state = 2952; + this.state = 2959; this.multipartIdentifier(); } } - this.state = 2957; + this.state = 2964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13041,30 +13086,30 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2958; + this.state = 2965; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2963; + this.state = 2970; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2959; + this.state = 2966; this.match(SparkSqlParser.DOT); - this.state = 2960; + this.state = 2967; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2965; + this.state = 2972; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); } @@ -13086,26 +13131,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2966; + this.state = 2973; this.multipartIdentifierProperty(); - this.state = 2971; + this.state = 2978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2967; + this.state = 2974; this.match(SparkSqlParser.COMMA); - this.state = 2968; + this.state = 2975; this.multipartIdentifierProperty(); } } - this.state = 2973; + this.state = 2980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13127,21 +13172,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2974; + this.state = 2981; this.multipartIdentifier(); - this.state = 2977; + this.state = 2984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 206) { + if (_la === 207) { { - this.state = 2975; + this.state = 2982; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2976; + this.state = 2983; localContext._options = this.propertyList(); } } @@ -13164,23 +13209,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 252, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2982; + this.state = 2989; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2979; + this.state = 2986; localContext._db = this.errorCapturingIdentifier(); - this.state = 2980; + this.state = 2987; this.match(SparkSqlParser.DOT); } break; } - this.state = 2984; + this.state = 2991; localContext._table = this.errorCapturingIdentifier(); } } @@ -13200,23 +13245,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 254, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2986; + this.state = 2993; localContext._db = this.errorCapturingIdentifier(); - this.state = 2987; + this.state = 2994; this.match(SparkSqlParser.DOT); } break; } - this.state = 2991; + this.state = 2998; localContext._view = this.errorCapturingIdentifier(); } } @@ -13236,42 +13281,42 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 3002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { - this.state = 2993; + this.state = 3000; this.columnName(); } break; case 2: { - this.state = 2994; + this.state = 3001; this.expression(); } break; } - this.state = 3004; + this.state = 3011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 2998; + this.state = 3005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 2997; + this.state = 3004; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 3002; + this.state = 3009; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13427,6 +13472,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_LAZY: case SparkSqlParser.KW_LEADING: case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: case SparkSqlParser.KW_LIKE: case SparkSqlParser.KW_ILIKE: case SparkSqlParser.KW_LIMIT: @@ -13617,13 +13663,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3000; + this.state = 3007; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 3001; + this.state = 3008; this.identifierList(); } break; @@ -13651,28 +13697,28 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 258, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3006; + this.state = 3013; this.namedExpression(); - this.state = 3011; + this.state = 3018; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3007; + this.state = 3014; this.match(SparkSqlParser.COMMA); - this.state = 3008; + this.state = 3015; this.namedExpression(); } } } - this.state = 3013; + this.state = 3020; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); } @@ -13694,34 +13740,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3014; + this.state = 3021; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3015; + this.state = 3022; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3020; + this.state = 3027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3016; + this.state = 3023; this.match(SparkSqlParser.COMMA); - this.state = 3017; + this.state = 3024; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3022; + this.state = 3029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3023; + this.state = 3030; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13741,22 +13787,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 262, SparkSqlParser.RULE_partitionField); try { - this.state = 3027; + this.state = 3034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3025; + this.state = 3032; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3026; + this.state = 3033; this.colType(); } break; @@ -13778,45 +13824,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 264, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3042; + this.state = 3049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3029; + this.state = 3036; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3030; - localContext._transformName = this.identifier(); - this.state = 3031; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3032; - this.transformArgument(); this.state = 3037; + localContext._transformName = this.identifier(); + this.state = 3038; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3039; + this.transformArgument(); + this.state = 3044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3033; + this.state = 3040; this.match(SparkSqlParser.COMMA); - this.state = 3034; + this.state = 3041; this.transformArgument(); } } - this.state = 3039; + this.state = 3046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3040; + this.state = 3047; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13838,22 +13884,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 266, SparkSqlParser.RULE_transformArgument); try { - this.state = 3046; + this.state = 3053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3044; + this.state = 3051; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3045; + this.state = 3052; this.constant(); } break; @@ -13875,11 +13921,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 268, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3048; + this.state = 3055; this.booleanExpression(0); } } @@ -13899,15 +13945,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 270, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3057; localContext._key = this.identifier(); - this.state = 3051; + this.state = 3058; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3052; + this.state = 3059; localContext._value = this.expression(); } } @@ -13927,22 +13973,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 272, SparkSqlParser.RULE_functionArgument); try { - this.state = 3056; + this.state = 3063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3054; + this.state = 3061; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3055; + this.state = 3062; this.namedArgumentExpression(); } break; @@ -13964,26 +14010,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 274, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3058; + this.state = 3065; this.expression(); - this.state = 3063; + this.state = 3070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3059; + this.state = 3066; this.match(SparkSqlParser.COMMA); - this.state = 3060; + this.state = 3067; this.expression(); } } - this.state = 3065; + this.state = 3072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14015,53 +14061,53 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 274; - this.enterRecursionRule(localContext, 274, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 276; + this.enterRecursionRule(localContext, 276, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3078; + this.state = 3085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 3067; + this.state = 3074; _la = this.tokenStream.LA(1); - if(!(_la === 196 || _la === 359)) { + if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3068; + this.state = 3075; this.booleanExpression(5); } break; case 2: { - this.state = 3069; + this.state = 3076; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3070; + this.state = 3077; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3071; + this.state = 3078; this.query(); - this.state = 3072; + this.state = 3079; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3074; + this.state = 3081; this.valueExpression(0); - this.state = 3076; + this.state = 3083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: { - this.state = 3075; + this.state = 3082; this.predicate(); } break; @@ -14070,7 +14116,7 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3088; + this.state = 3095; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -14080,7 +14126,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3086; + this.state = 3093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: @@ -14088,13 +14134,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3080; + this.state = 3087; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3081; + this.state = 3088; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3082; + this.state = 3089; localContext._right = this.booleanExpression(3); } break; @@ -14103,20 +14149,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3083; + this.state = 3090; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3084; + this.state = 3091; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3085; + this.state = 3092; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3090; + this.state = 3097; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); } @@ -14138,191 +14184,191 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 276, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 278, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3173; + this.state = 3180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3092; + this.state = 3099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3091; + this.state = 3098; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3094; + this.state = 3101; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3095; + this.state = 3102; localContext._lower = this.valueExpression(0); - this.state = 3096; + this.state = 3103; this.match(SparkSqlParser.KW_AND); - this.state = 3097; + this.state = 3104; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3100; + this.state = 3107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3099; + this.state = 3106; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3102; - localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3103; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3104; - this.expression(); this.state = 3109; + localContext._kind = this.match(SparkSqlParser.KW_IN); + this.state = 3110; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3111; + this.expression(); + this.state = 3116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3105; + this.state = 3112; this.match(SparkSqlParser.COMMA); - this.state = 3106; + this.state = 3113; this.expression(); } } - this.state = 3111; + this.state = 3118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3112; + this.state = 3119; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3115; + this.state = 3122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3114; + this.state = 3121; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3117; + this.state = 3124; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3118; + this.state = 3125; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3119; + this.state = 3126; this.query(); - this.state = 3120; + this.state = 3127; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3123; + this.state = 3130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3122; + this.state = 3129; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3125; + this.state = 3132; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 250 || _la === 251)) { + if(!(_la === 251 || _la === 252)) { localContext._kind = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3126; + this.state = 3133; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3128; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3127; + this.state = 3134; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3130; + this.state = 3137; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 162 || _la === 163)) { + if(!(_la === 163 || _la === 164)) { localContext._kind = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3131; + this.state = 3138; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 16 || _la === 276)) { + if(!(_la === 10 || _la === 16 || _la === 277)) { localContext._quantifier = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3145; + this.state = 3152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: { - this.state = 3132; + this.state = 3139; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3133; + this.state = 3140; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3134; + this.state = 3141; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3135; + this.state = 3142; this.expression(); - this.state = 3140; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3136; + this.state = 3143; this.match(SparkSqlParser.COMMA); - this.state = 3137; + this.state = 3144; this.expression(); } } - this.state = 3142; + this.state = 3149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3143; + this.state = 3150; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14332,36 +14378,36 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3148; + this.state = 3155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3147; + this.state = 3154; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3150; + this.state = 3157; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 162 || _la === 163)) { + if(!(_la === 163 || _la === 164)) { localContext._kind = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3151; + this.state = 3158; localContext._pattern = this.valueExpression(0); - this.state = 3154; + this.state = 3161; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3152; + this.state = 3159; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3153; + this.state = 3160; localContext._escapeChar = this.stringLit(); } break; @@ -14371,41 +14417,41 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3156; + this.state = 3163; this.match(SparkSqlParser.KW_IS); - this.state = 3158; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3157; + this.state = 3164; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3160; + this.state = 3167; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3161; + this.state = 3168; this.match(SparkSqlParser.KW_IS); - this.state = 3163; + this.state = 3170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3162; + this.state = 3169; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3165; + this.state = 3172; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 111 || _la === 315 || _la === 324)) { + if(!(_la === 111 || _la === 316 || _la === 325)) { localContext._kind = this.errorHandler.recoverInline(this); } else { @@ -14417,23 +14463,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3166; + this.state = 3173; this.match(SparkSqlParser.KW_IS); - this.state = 3168; + this.state = 3175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3167; + this.state = 3174; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3170; + this.state = 3177; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3171; + this.state = 3178; this.match(SparkSqlParser.KW_FROM); - this.state = 3172; + this.state = 3179; localContext._right = this.valueExpression(0); } break; @@ -14465,41 +14511,41 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 278; - this.enterRecursionRule(localContext, 278, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 280; + this.enterRecursionRule(localContext, 280, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3186; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3176; + this.state = 3183; this.primaryExpression(0); } break; case 2: { - this.state = 3177; + this.state = 3184; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 35) !== 0))) { + if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3178; + this.state = 3185; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3202; + this.state = 3209; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -14509,7 +14555,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3200; + this.state = 3207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: @@ -14517,21 +14563,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3181; + this.state = 3188; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3182; + this.state = 3189; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 94 || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 7) !== 0))) { + if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3183; + this.state = 3190; localContext._right = this.valueExpression(7); } break; @@ -14540,21 +14586,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3184; + this.state = 3191; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3185; + this.state = 3192; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 259) !== 0))) { + if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { localContext._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3186; + this.state = 3193; localContext._right = this.valueExpression(6); } break; @@ -14563,13 +14609,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3187; + this.state = 3194; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3188; + this.state = 3195; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3189; + this.state = 3196; localContext._right = this.valueExpression(5); } break; @@ -14578,13 +14624,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3190; + this.state = 3197; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3191; + this.state = 3198; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3192; + this.state = 3199; localContext._right = this.valueExpression(4); } break; @@ -14593,13 +14639,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3193; + this.state = 3200; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3194; + this.state = 3201; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3195; + this.state = 3202; localContext._right = this.valueExpression(3); } break; @@ -14608,20 +14654,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3196; + this.state = 3203; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3197; + this.state = 3204; this.comparisonOperator(); - this.state = 3198; + this.state = 3205; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3204; + this.state = 3211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); } @@ -14643,14 +14689,14 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 280, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 282, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3205; + this.state = 3212; _la = this.tokenStream.LA(1); - if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 179)) & ~0x1F) === 0 && ((1 << (_la - 179)) & 85) !== 0) || _la === 230 || _la === 258 || _la === 340 || _la === 347)) { + if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); } else { @@ -14685,22 +14731,22 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 282; - this.enterRecursionRule(localContext, 282, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 284; + this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3456; + this.state = 3463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3208; + this.state = 3215; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 267 || _la === 330)) { + if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { localContext._name = this.errorHandler.recoverInline(this); } else { @@ -14711,19 +14757,19 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3209; + this.state = 3216; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 74 || _la === 75 || _la === 305)) { + if(!(_la === 74 || _la === 75 || _la === 306)) { localContext._name = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3210; + this.state = 3217; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3213; + this.state = 3220; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14738,47 +14784,47 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3211; + this.state = 3218; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3212; + this.state = 3219; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3215; + this.state = 3222; this.match(SparkSqlParser.COMMA); - this.state = 3216; + this.state = 3223; localContext._unitsAmount = this.valueExpression(0); - this.state = 3217; + this.state = 3224; this.match(SparkSqlParser.COMMA); - this.state = 3218; + this.state = 3225; localContext._timestamp = this.valueExpression(0); - this.state = 3219; + this.state = 3226; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3221; + this.state = 3228; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 76 || _la === 77 || _la === 301 || _la === 306)) { + if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { localContext._name = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3222; + this.state = 3229; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3225; + this.state = 3232; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14793,410 +14839,410 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3223; + this.state = 3230; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3224; + this.state = 3231; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3227; + this.state = 3234; this.match(SparkSqlParser.COMMA); - this.state = 3228; + this.state = 3235; localContext._startTimestamp = this.valueExpression(0); - this.state = 3229; + this.state = 3236; this.match(SparkSqlParser.COMMA); - this.state = 3230; + this.state = 3237; localContext._endTimestamp = this.valueExpression(0); - this.state = 3231; + this.state = 3238; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3233; + this.state = 3240; this.match(SparkSqlParser.KW_CASE); - this.state = 3235; + this.state = 3242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3234; + this.state = 3241; this.whenClause(); } } - this.state = 3237; + this.state = 3244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 342); - this.state = 3241; + } while (_la === 343); + this.state = 3248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3239; + this.state = 3246; this.match(SparkSqlParser.KW_ELSE); - this.state = 3240; + this.state = 3247; localContext._elseExpression = this.expression(); } } - this.state = 3243; + this.state = 3250; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3245; + this.state = 3252; this.match(SparkSqlParser.KW_CASE); - this.state = 3246; + this.state = 3253; this.expression(); - this.state = 3248; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3247; + this.state = 3254; this.whenClause(); } } - this.state = 3250; + this.state = 3257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 342); - this.state = 3254; + } while (_la === 343); + this.state = 3261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3252; + this.state = 3259; this.match(SparkSqlParser.KW_ELSE); - this.state = 3253; + this.state = 3260; localContext._elseExpression = this.expression(); } } - this.state = 3256; + this.state = 3263; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3258; + this.state = 3265; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 36 || _la === 317)) { + if(!(_la === 36 || _la === 318)) { localContext._name = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3259; + this.state = 3266; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3260; + this.state = 3267; this.expression(); - this.state = 3261; + this.state = 3268; this.match(SparkSqlParser.KW_AS); - this.state = 3262; + this.state = 3269; this.dataType(); - this.state = 3263; + this.state = 3270; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3265; + this.state = 3272; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3266; + this.state = 3273; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3275; + this.state = 3282; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3267; + this.state = 3274; this.namedExpression(); - this.state = 3272; + this.state = 3279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3268; + this.state = 3275; this.match(SparkSqlParser.COMMA); - this.state = 3269; + this.state = 3276; this.namedExpression(); } } - this.state = 3274; + this.state = 3281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3277; + this.state = 3284; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3278; + this.state = 3285; this.match(SparkSqlParser.KW_FIRST); - this.state = 3279; + this.state = 3286; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3280; + this.state = 3287; this.expression(); - this.state = 3283; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3281; + this.state = 3288; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3282; + this.state = 3289; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3285; + this.state = 3292; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3287; + this.state = 3294; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3288; + this.state = 3295; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3289; + this.state = 3296; this.expression(); - this.state = 3292; + this.state = 3299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3290; + this.state = 3297; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3291; + this.state = 3298; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3294; + this.state = 3301; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3296; + this.state = 3303; this.match(SparkSqlParser.KW_LAST); - this.state = 3297; + this.state = 3304; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3298; + this.state = 3305; this.expression(); - this.state = 3301; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3299; + this.state = 3306; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3300; + this.state = 3307; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3303; + this.state = 3310; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3305; + this.state = 3312; this.match(SparkSqlParser.KW_POSITION); - this.state = 3306; + this.state = 3313; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3307; + this.state = 3314; localContext._substr = this.valueExpression(0); - this.state = 3308; + this.state = 3315; this.match(SparkSqlParser.KW_IN); - this.state = 3309; + this.state = 3316; localContext._str = this.valueExpression(0); - this.state = 3310; + this.state = 3317; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3312; + this.state = 3319; this.constant(); } break; case 13: { - this.state = 3313; + this.state = 3320; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3314; + this.state = 3321; this.qualifiedName(); - this.state = 3315; + this.state = 3322; this.match(SparkSqlParser.DOT); - this.state = 3316; + this.state = 3323; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3318; + this.state = 3325; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3319; + this.state = 3326; this.namedExpression(); - this.state = 3322; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3320; + this.state = 3327; this.match(SparkSqlParser.COMMA); - this.state = 3321; + this.state = 3328; this.namedExpression(); } } - this.state = 3324; + this.state = 3331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3326; + this.state = 3333; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3328; + this.state = 3335; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3329; + this.state = 3336; this.query(); - this.state = 3330; + this.state = 3337; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3332; + this.state = 3339; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3333; + this.state = 3340; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3334; + this.state = 3341; this.expression(); - this.state = 3335; + this.state = 3342; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3337; + this.state = 3344; this.functionName(); - this.state = 3338; + this.state = 3345; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3350; + this.state = 3357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 359)) & ~0x1F) === 0 && ((1 << (_la - 359)) & 1073678415) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3340; + this.state = 3347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3339; + this.state = 3346; this.setQuantifier(); } break; } - this.state = 3342; + this.state = 3349; this.functionArgument(); - this.state = 3347; + this.state = 3354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3343; + this.state = 3350; this.match(SparkSqlParser.COMMA); - this.state = 3344; + this.state = 3351; this.functionArgument(); } } - this.state = 3349; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3352; - this.match(SparkSqlParser.RIGHT_PAREN); this.state = 3359; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 3366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3353; + this.state = 3360; this.match(SparkSqlParser.KW_FILTER); - this.state = 3354; + this.state = 3361; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3355; + this.state = 3362; this.match(SparkSqlParser.KW_WHERE); - this.state = 3356; + this.state = 3363; localContext._where = this.booleanExpression(0); - this.state = 3357; + this.state = 3364; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3363; + this.state = 3370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3361; + this.state = 3368; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 138 || _la === 245)) { + if(!(_la === 138 || _la === 246)) { localContext._nullsOption = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3362; + this.state = 3369; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3367; + this.state = 3374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3365; + this.state = 3372; this.match(SparkSqlParser.KW_OVER); - this.state = 3366; + this.state = 3373; this.windowSpec(); } break; @@ -15205,92 +15251,92 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3369; + this.state = 3376; this.identifier(); - this.state = 3370; + this.state = 3377; this.match(SparkSqlParser.ARROW); - this.state = 3371; + this.state = 3378; this.expression(); } break; case 20: { - this.state = 3373; + this.state = 3380; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3374; + this.state = 3381; this.identifier(); - this.state = 3377; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3375; + this.state = 3382; this.match(SparkSqlParser.COMMA); - this.state = 3376; + this.state = 3383; this.identifier(); } } - this.state = 3379; + this.state = 3386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3381; + this.state = 3388; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3382; + this.state = 3389; this.match(SparkSqlParser.ARROW); - this.state = 3383; + this.state = 3390; this.expression(); } break; case 21: { - this.state = 3385; + this.state = 3392; this.identifier(); } break; case 22: { - this.state = 3386; + this.state = 3393; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3387; + this.state = 3394; this.expression(); - this.state = 3388; + this.state = 3395; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3390; + this.state = 3397; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3391; + this.state = 3398; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3392; + this.state = 3399; localContext._field = this.identifier(); - this.state = 3393; + this.state = 3400; this.match(SparkSqlParser.KW_FROM); - this.state = 3394; + this.state = 3401; localContext._source = this.valueExpression(0); - this.state = 3395; + this.state = 3402; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3397; + this.state = 3404; _la = this.tokenStream.LA(1); - if(!(_la === 286 || _la === 287)) { + if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3398; + this.state = 3405; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3399; + this.state = 3406; localContext._str = this.valueExpression(0); - this.state = 3400; + this.state = 3407; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15299,14 +15345,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3401; + this.state = 3408; localContext._pos = this.valueExpression(0); - this.state = 3404; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3402; + this.state = 3409; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15315,30 +15361,30 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3403; + this.state = 3410; localContext._len = this.valueExpression(0); } } - this.state = 3406; + this.state = 3413; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3408; + this.state = 3415; this.match(SparkSqlParser.KW_TRIM); - this.state = 3409; + this.state = 3416; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3411; + this.state = 3418; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3410; + this.state = 3417; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 28 || _la === 160 || _la === 310)) { + if(!(_la === 28 || _la === 160 || _la === 311)) { localContext._trimOption = this.errorHandler.recoverInline(this); } else { @@ -15348,114 +15394,114 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3414; + this.state = 3421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 536839207) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3413; + this.state = 3420; localContext._trimStr = this.valueExpression(0); } } - this.state = 3416; + this.state = 3423; this.match(SparkSqlParser.KW_FROM); - this.state = 3417; + this.state = 3424; localContext._srcStr = this.valueExpression(0); - this.state = 3418; + this.state = 3425; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3420; + this.state = 3427; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3421; + this.state = 3428; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3422; - localContext._input = this.valueExpression(0); - this.state = 3423; - this.match(SparkSqlParser.KW_PLACING); - this.state = 3424; - localContext._replace = this.valueExpression(0); - this.state = 3425; - this.match(SparkSqlParser.KW_FROM); - this.state = 3426; - localContext._position = this.valueExpression(0); this.state = 3429; + localContext._input = this.valueExpression(0); + this.state = 3430; + this.match(SparkSqlParser.KW_PLACING); + this.state = 3431; + localContext._replace = this.valueExpression(0); + this.state = 3432; + this.match(SparkSqlParser.KW_FROM); + this.state = 3433; + localContext._position = this.valueExpression(0); + this.state = 3436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3427; + this.state = 3434; this.match(SparkSqlParser.KW_FOR); - this.state = 3428; + this.state = 3435; localContext._length = this.valueExpression(0); } } - this.state = 3431; + this.state = 3438; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3433; + this.state = 3440; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 219 || _la === 220)) { + if(!(_la === 220 || _la === 221)) { localContext._name = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3434; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3435; - localContext._percentage = this.valueExpression(0); - this.state = 3436; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3437; - this.match(SparkSqlParser.KW_WITHIN); - this.state = 3438; - this.match(SparkSqlParser.KW_GROUP); - this.state = 3439; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3440; - this.match(SparkSqlParser.KW_ORDER); this.state = 3441; - this.match(SparkSqlParser.KW_BY); + this.match(SparkSqlParser.LEFT_PAREN); this.state = 3442; - this.sortItem(); + localContext._percentage = this.valueExpression(0); this.state = 3443; this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 3444; + this.match(SparkSqlParser.KW_WITHIN); + this.state = 3445; + this.match(SparkSqlParser.KW_GROUP); + this.state = 3446; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3447; + this.match(SparkSqlParser.KW_ORDER); + this.state = 3448; + this.match(SparkSqlParser.KW_BY); + this.state = 3449; + this.sortItem(); this.state = 3450; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 3457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3444; + this.state = 3451; this.match(SparkSqlParser.KW_FILTER); - this.state = 3445; + this.state = 3452; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3446; + this.state = 3453; this.match(SparkSqlParser.KW_WHERE); - this.state = 3447; + this.state = 3454; localContext._where = this.booleanExpression(0); - this.state = 3448; + this.state = 3455; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3454; + this.state = 3461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3452; + this.state = 3459; this.match(SparkSqlParser.KW_OVER); - this.state = 3453; + this.state = 3460; this.windowSpec(); } break; @@ -15464,7 +15510,7 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3468; + this.state = 3475; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -15474,7 +15520,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3466; + this.state = 3473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: @@ -15482,15 +15528,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3458; + this.state = 3465; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3459; + this.state = 3466; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3460; + this.state = 3467; localContext._index = this.valueExpression(0); - this.state = 3461; + this.state = 3468; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15499,20 +15545,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3463; + this.state = 3470; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3464; + this.state = 3471; this.match(SparkSqlParser.DOT); - this.state = 3465; + this.state = 3472; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3470; + this.state = 3477; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } @@ -15534,57 +15580,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 284, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 286, SparkSqlParser.RULE_literalType); try { - this.state = 3478; + this.state = 3485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3478; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3472; + this.state = 3479; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3473; + this.state = 3480; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3474; + this.state = 3481; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3475; + this.state = 3482; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3476; + this.state = 3483; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3477; + this.state = 3484; localContext._unsupportedType = this.identifier(); } break; @@ -15606,69 +15652,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 288, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3495; + this.state = 3502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3480; + this.state = 3487; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3481; + this.state = 3488; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3482; + this.state = 3489; this.match(SparkSqlParser.COLON); - this.state = 3483; + this.state = 3490; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3484; + this.state = 3491; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3485; + this.state = 3492; this.literalType(); - this.state = 3486; + this.state = 3493; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3488; + this.state = 3495; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3489; + this.state = 3496; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3491; + this.state = 3498; this.errorHandler.sync(this); alternative = 1; do { @@ -15676,7 +15722,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3490; + this.state = 3497; this.stringLit(); } } @@ -15684,7 +15730,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3493; + this.state = 3500; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -15708,14 +15754,14 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 290, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3497; + this.state = 3504; _la = this.tokenStream.LA(1); - if(!(((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 255) !== 0))) { + if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -15740,14 +15786,14 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 292, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3499; + this.state = 3506; _la = this.tokenStream.LA(1); - if(!(_la === 94 || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1023) !== 0))) { + if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -15772,14 +15818,14 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 294, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3501; + this.state = 3508; _la = this.tokenStream.LA(1); - if(!(_la === 14 || _la === 140 || _la === 196 || _la === 207)) { + if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); } else { @@ -15804,14 +15850,14 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 296, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3503; + this.state = 3510; _la = this.tokenStream.LA(1); - if(!(_la === 111 || _la === 315)) { + if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); } else { @@ -15836,24 +15882,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 298, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3512; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3508; + this.state = 3515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3506; + this.state = 3513; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3507; + this.state = 3514; this.errorCapturingUnitToUnitInterval(); } break; @@ -15876,18 +15922,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 300, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3510; + this.state = 3517; localContext._body = this.multiUnitsInterval(); - this.state = 3512; + this.state = 3519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3511; + this.state = 3518; this.unitToUnitInterval(); } break; @@ -15910,12 +15956,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 302, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3524; this.errorHandler.sync(this); alternative = 1; do { @@ -15923,9 +15969,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3514; + this.state = 3521; this.intervalValue(); - this.state = 3515; + this.state = 3522; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15934,7 +15980,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3519; + this.state = 3526; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -15956,24 +16002,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 304, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3521; + this.state = 3528; localContext._body = this.unitToUnitInterval(); - this.state = 3524; + this.state = 3531; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3522; + this.state = 3529; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3523; + this.state = 3530; localContext._error2 = this.unitToUnitInterval(); } break; @@ -15996,17 +16042,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 306, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3526; + this.state = 3533; localContext._value = this.intervalValue(); - this.state = 3527; + this.state = 3534; this.unitInUnitToUnit(); - this.state = 3528; + this.state = 3535; this.match(SparkSqlParser.KW_TO); - this.state = 3529; + this.state = 3536; this.unitInUnitToUnit(); } } @@ -16026,19 +16072,19 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 308, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3532; + this.state = 3539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 360 || _la === 361) { + if (_la === 361 || _la === 362) { { - this.state = 3531; + this.state = 3538; _la = this.tokenStream.LA(1); - if(!(_la === 360 || _la === 361)) { + if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); } else { @@ -16048,25 +16094,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3537; + this.state = 3544; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3534; + this.state = 3541; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3535; + this.state = 3542; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3536; + this.state = 3543; this.stringLit(); } break; @@ -16091,14 +16137,14 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3546; _la = this.tokenStream.LA(1); - if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 179)) & ~0x1F) === 0 && ((1 << (_la - 179)) & 12543) !== 0) || _la === 258 || _la === 259 || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 387) !== 0))) { + if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -16123,14 +16169,14 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 312, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3541; + this.state = 3548; _la = this.tokenStream.LA(1); - if(!(_la === 67 || _la === 134 || _la === 183 || _la === 185 || _la === 258 || _la === 347)) { + if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); } else { @@ -16155,24 +16201,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 314, SparkSqlParser.RULE_colPosition); try { - this.state = 3546; + this.state = 3553; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3543; + this.state = 3550; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3544; + this.state = 3551; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3545; + this.state = 3552; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16196,218 +16242,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_type); + this.enterRule(localContext, 316, SparkSqlParser.RULE_type); try { - this.state = 3578; + this.state = 3585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3555; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3549; + this.state = 3556; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3550; + this.state = 3557; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3551; + this.state = 3558; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3552; + this.state = 3559; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3553; + this.state = 3560; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3554; + this.state = 3561; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3555; + this.state = 3562; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3556; + this.state = 3563; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3557; + this.state = 3564; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3558; + this.state = 3565; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3559; + this.state = 3566; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3560; + this.state = 3567; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3561; + this.state = 3568; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3562; + this.state = 3569; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3563; + this.state = 3570; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3564; + this.state = 3571; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3565; + this.state = 3572; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3566; + this.state = 3573; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3567; + this.state = 3574; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3568; + this.state = 3575; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3569; + this.state = 3576; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3570; + this.state = 3577; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3571; + this.state = 3578; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3572; + this.state = 3579; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3573; + this.state = 3580; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3574; + this.state = 3581; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3575; + this.state = 3582; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3576; + this.state = 3583; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3577; + this.state = 3584; localContext._unsupportedType = this.identifier(); } break; @@ -16429,71 +16475,71 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 318, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3626; + this.state = 3633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3580; - localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3581; - this.match(SparkSqlParser.LT); - this.state = 3582; - this.dataType(); - this.state = 3583; - this.match(SparkSqlParser.GT); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3585; - localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3586; - this.match(SparkSqlParser.LT); this.state = 3587; - this.dataType(); + localContext._complex = this.match(SparkSqlParser.KW_ARRAY); this.state = 3588; - this.match(SparkSqlParser.COMMA); + this.match(SparkSqlParser.LT); this.state = 3589; this.dataType(); this.state = 3590; this.match(SparkSqlParser.GT); } break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 3592; + localContext._complex = this.match(SparkSqlParser.KW_MAP); + this.state = 3593; + this.match(SparkSqlParser.LT); + this.state = 3594; + this.dataType(); + this.state = 3595; + this.match(SparkSqlParser.COMMA); + this.state = 3596; + this.dataType(); + this.state = 3597; + this.match(SparkSqlParser.GT); + } + break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3592; - localContext._complex = this.match(SparkSqlParser.KW_STRUCT); this.state = 3599; + localContext._complex = this.match(SparkSqlParser.KW_STRUCT); + this.state = 3606; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3593; + this.state = 3600; this.match(SparkSqlParser.LT); - this.state = 3595; + this.state = 3602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967287) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967231) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147483647) !== 0) || ((((_la - 377)) & ~0x1F) === 0 && ((1 << (_la - 377)) & 3073) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3594; + this.state = 3601; this.complexColTypeList(); } } - this.state = 3597; + this.state = 3604; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3598; + this.state = 3605; this.match(SparkSqlParser.NEQ); } break; @@ -16505,25 +16551,25 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3601; + this.state = 3608; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3602; + this.state = 3609; _la = this.tokenStream.LA(1); - if(!(_la === 185 || _la === 347)) { + if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3605; + this.state = 3612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3603; + this.state = 3610; this.match(SparkSqlParser.KW_TO); - this.state = 3604; + this.state = 3611; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16533,27 +16579,27 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3607; + this.state = 3614; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3608; + this.state = 3615; _la = this.tokenStream.LA(1); - if(!(_la === 67 || _la === 134 || _la === 183 || _la === 258)) { + if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3611; + this.state = 3618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3609; + this.state = 3616; this.match(SparkSqlParser.KW_TO); - this.state = 3610; + this.state = 3617; _la = this.tokenStream.LA(1); - if(!(_la === 134 || _la === 183 || _la === 258)) { + if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); } else { @@ -16568,34 +16614,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3613; + this.state = 3620; this.type_(); - this.state = 3624; + this.state = 3631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3614; + this.state = 3621; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3615; + this.state = 3622; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3620; + this.state = 3627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3616; + this.state = 3623; this.match(SparkSqlParser.COMMA); - this.state = 3617; + this.state = 3624; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3622; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3623; + this.state = 3630; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16620,26 +16666,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3628; + this.state = 3635; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3633; + this.state = 3640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3629; + this.state = 3636; this.match(SparkSqlParser.COMMA); - this.state = 3630; + this.state = 3637; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3635; + this.state = 3642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16661,28 +16707,28 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3636; + this.state = 3643; localContext._name = this.columnNameCreate(); - this.state = 3637; + this.state = 3644; this.dataType(); - this.state = 3641; + this.state = 3648; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3638; + this.state = 3645; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3643; + this.state = 3650; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); } @@ -16704,26 +16750,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3644; + this.state = 3651; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3649; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3645; + this.state = 3652; this.match(SparkSqlParser.COMMA); - this.state = 3646; + this.state = 3653; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3651; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16745,26 +16791,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3652; + this.state = 3659; localContext._name = this.columnName(); - this.state = 3653; + this.state = 3660; this.dataType(); - this.state = 3657; + this.state = 3664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 196) { + while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3654; + this.state = 3661; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3659; + this.state = 3666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16786,31 +16832,31 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 328, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3665; + this.state = 3672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3660; + this.state = 3667; this.match(SparkSqlParser.KW_NOT); - this.state = 3661; + this.state = 3668; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3662; + this.state = 3669; this.defaultExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3663; + this.state = 3670; this.commentSpec(); } break; @@ -16818,7 +16864,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3664; + this.state = 3671; this.colPosition(); } break; @@ -16842,13 +16888,13 @@ export class SparkSqlParser extends SQLParserBase { } public defaultExpression(): DefaultExpressionContext { let localContext = new DefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_defaultExpression); + this.enterRule(localContext, 330, SparkSqlParser.RULE_defaultExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3674; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3668; + this.state = 3675; this.expression(); } } @@ -16868,21 +16914,21 @@ export class SparkSqlParser extends SQLParserBase { } public variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 332, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3670; + this.state = 3677; _la = this.tokenStream.LA(1); - if(!(_la === 82 || _la === 351)) { + if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3671; + this.state = 3678; this.expression(); } } @@ -16902,28 +16948,28 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 334, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3673; + this.state = 3680; this.colType(); - this.state = 3678; + this.state = 3685; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3674; + this.state = 3681; this.match(SparkSqlParser.COMMA); - this.state = 3675; + this.state = 3682; this.colType(); } } } - this.state = 3680; + this.state = 3687; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); } @@ -16945,32 +16991,32 @@ export class SparkSqlParser extends SQLParserBase { } public colType(): ColTypeContext { let localContext = new ColTypeContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_colType); + this.enterRule(localContext, 336, SparkSqlParser.RULE_colType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3681; + this.state = 3688; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3682; + this.state = 3689; this.dataType(); - this.state = 3685; + this.state = 3692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3683; + this.state = 3690; this.match(SparkSqlParser.KW_NOT); - this.state = 3684; + this.state = 3691; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3688; + this.state = 3695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3687; + this.state = 3694; this.commentSpec(); } break; @@ -16993,26 +17039,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3690; + this.state = 3697; this.createOrReplaceTableColType(); - this.state = 3695; + this.state = 3702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3691; + this.state = 3698; this.match(SparkSqlParser.COMMA); - this.state = 3692; + this.state = 3699; this.createOrReplaceTableColType(); } } - this.state = 3697; + this.state = 3704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17034,26 +17080,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 340, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3698; + this.state = 3705; localContext._colName = this.columnNameCreate(); - this.state = 3699; + this.state = 3706; this.dataType(); - this.state = 3703; + this.state = 3710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 51 || _la === 82 || _la === 127 || _la === 196) { + while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3700; + this.state = 3707; this.colDefinitionOption(); } } - this.state = 3705; + this.state = 3712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17075,38 +17121,38 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 342, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3711; + this.state = 3718; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3706; + this.state = 3713; this.match(SparkSqlParser.KW_NOT); - this.state = 3707; + this.state = 3714; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3708; + this.state = 3715; this.defaultExpression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3709; + this.state = 3716; this.generationExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3710; + this.state = 3717; this.commentSpec(); } break; @@ -17130,21 +17176,21 @@ export class SparkSqlParser extends SQLParserBase { } public generationExpression(): GenerationExpressionContext { let localContext = new GenerationExpressionContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_generationExpression); + this.enterRule(localContext, 344, SparkSqlParser.RULE_generationExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3720; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3714; + this.state = 3721; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3715; + this.state = 3722; this.match(SparkSqlParser.KW_AS); - this.state = 3716; + this.state = 3723; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3717; + this.state = 3724; this.expression(); - this.state = 3718; + this.state = 3725; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -17164,26 +17210,26 @@ export class SparkSqlParser extends SQLParserBase { } public complexColTypeList(): ComplexColTypeListContext { let localContext = new ComplexColTypeListContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_complexColTypeList); + this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3720; + this.state = 3727; this.complexColType(); - this.state = 3725; + this.state = 3732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3721; + this.state = 3728; this.match(SparkSqlParser.COMMA); - this.state = 3722; + this.state = 3729; this.complexColType(); } } - this.state = 3727; + this.state = 3734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17205,43 +17251,43 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 348, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3728; + this.state = 3735; this.identifier(); - this.state = 3730; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 370) { + if (_la === 371) { { - this.state = 3729; + this.state = 3736; this.match(SparkSqlParser.COLON); } } - this.state = 3732; + this.state = 3739; this.dataType(); - this.state = 3735; + this.state = 3742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 196) { + if (_la === 197) { { - this.state = 3733; + this.state = 3740; this.match(SparkSqlParser.KW_NOT); - this.state = 3734; + this.state = 3741; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3738; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3737; + this.state = 3744; this.commentSpec(); } } @@ -17264,17 +17310,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 350, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3740; + this.state = 3747; this.match(SparkSqlParser.KW_WHEN); - this.state = 3741; + this.state = 3748; localContext._condition = this.expression(); - this.state = 3742; + this.state = 3749; this.match(SparkSqlParser.KW_THEN); - this.state = 3743; + this.state = 3750; localContext._result = this.expression(); } } @@ -17294,30 +17340,30 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 352, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3745; + this.state = 3752; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3746; + this.state = 3753; this.namedWindow(); - this.state = 3751; + this.state = 3758; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3747; + this.state = 3754; this.match(SparkSqlParser.COMMA); - this.state = 3748; + this.state = 3755; this.namedWindow(); } } } - this.state = 3753; + this.state = 3760; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); } @@ -17339,15 +17385,15 @@ export class SparkSqlParser extends SQLParserBase { } public zorderClause(): ZorderClauseContext { let localContext = new ZorderClauseContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_zorderClause); + this.enterRule(localContext, 354, SparkSqlParser.RULE_zorderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3754; + this.state = 3761; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3755; + this.state = 3762; this.match(SparkSqlParser.KW_BY); - this.state = 3756; + this.state = 3763; this.columnNameSeq(); } } @@ -17367,15 +17413,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 356, SparkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 3758; + this.state = 3765; localContext._name = this.errorCapturingIdentifier(); - this.state = 3759; + this.state = 3766; this.match(SparkSqlParser.KW_AS); - this.state = 3760; + this.state = 3767; this.windowSpec(); } } @@ -17395,61 +17441,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 358, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3808; + this.state = 3815; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3762; + this.state = 3769; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3763; + this.state = 3770; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3764; + this.state = 3771; localContext._name = this.errorCapturingIdentifier(); - this.state = 3765; + this.state = 3772; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3767; + this.state = 3774; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3802; + this.state = 3809; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3768; + this.state = 3775; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3769; + this.state = 3776; this.match(SparkSqlParser.KW_BY); - this.state = 3770; + this.state = 3777; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3775; + this.state = 3782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3771; + this.state = 3778; this.match(SparkSqlParser.COMMA); - this.state = 3772; + this.state = 3779; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3777; + this.state = 3784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17463,76 +17509,76 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3788; + this.state = 3795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 93 || _la === 216) { + if (_la === 93 || _la === 217) { { - this.state = 3778; + this.state = 3785; _la = this.tokenStream.LA(1); - if(!(_la === 93 || _la === 216)) { + if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3779; + this.state = 3786; this.match(SparkSqlParser.KW_BY); - this.state = 3780; + this.state = 3787; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3785; + this.state = 3792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3781; + this.state = 3788; this.match(SparkSqlParser.COMMA); - this.state = 3782; + this.state = 3789; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3787; + this.state = 3794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3800; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 208 || _la === 277) { + if (_la === 209 || _la === 278) { { - this.state = 3790; + this.state = 3797; _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 277)) { + if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3791; + this.state = 3798; this.match(SparkSqlParser.KW_BY); - this.state = 3792; + this.state = 3799; this.sortItem(); - this.state = 3797; + this.state = 3804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3793; + this.state = 3800; this.match(SparkSqlParser.COMMA); - this.state = 3794; + this.state = 3801; this.sortItem(); } } - this.state = 3799; + this.state = 3806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17544,17 +17590,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3805; + this.state = 3812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 232 || _la === 257) { + if (_la === 233 || _la === 258) { { - this.state = 3804; + this.state = 3811; this.windowFrame(); } } - this.state = 3807; + this.state = 3814; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17576,56 +17622,56 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 360, SparkSqlParser.RULE_windowFrame); try { - this.state = 3826; + this.state = 3833; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3810; + this.state = 3817; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3811; + this.state = 3818; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3812; + this.state = 3819; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3813; + this.state = 3820; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3814; + this.state = 3821; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3815; + this.state = 3822; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3816; + this.state = 3823; localContext._start_ = this.frameBound(); - this.state = 3817; + this.state = 3824; this.match(SparkSqlParser.KW_AND); - this.state = 3818; + this.state = 3825; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3820; + this.state = 3827; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3821; + this.state = 3828; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3822; + this.state = 3829; localContext._start_ = this.frameBound(); - this.state = 3823; + this.state = 3830; this.match(SparkSqlParser.KW_AND); - this.state = 3824; + this.state = 3831; localContext._end = this.frameBound(); } break; @@ -17647,21 +17693,21 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 362, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3835; + this.state = 3842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3828; + this.state = 3835; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3829; + this.state = 3836; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 118 || _la === 225)) { + if(!(_la === 118 || _la === 226)) { localContext._boundType = this.errorHandler.recoverInline(this); } else { @@ -17673,21 +17719,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3830; + this.state = 3837; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3831; + this.state = 3838; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3832; + this.state = 3839; this.expression(); - this.state = 3833; + this.state = 3840; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 118 || _la === 225)) { + if(!(_la === 118 || _la === 226)) { localContext._boundType = this.errorHandler.recoverInline(this); } else { @@ -17714,26 +17760,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 364, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3837; + this.state = 3844; this.qualifiedName(); - this.state = 3842; + this.state = 3849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3838; + this.state = 3845; this.match(SparkSqlParser.COMMA); - this.state = 3839; + this.state = 3846; this.qualifiedName(); } } - this.state = 3844; + this.state = 3851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17755,49 +17801,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 366, SparkSqlParser.RULE_functionName); try { - this.state = 3854; + this.state = 3861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3845; + this.state = 3852; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3846; + this.state = 3853; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3847; + this.state = 3854; this.expression(); - this.state = 3848; + this.state = 3855; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3850; + this.state = 3857; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3851; + this.state = 3858; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3852; + this.state = 3859; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3853; + this.state = 3860; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17819,11 +17865,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 366, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 368, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3856; + this.state = 3863; this.qualifiedName(); } } @@ -17843,28 +17889,28 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 368, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 370, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3865; this.identifier(); - this.state = 3863; + this.state = 3870; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3859; + this.state = 3866; this.match(SparkSqlParser.DOT); - this.state = 3860; + this.state = 3867; this.identifier(); } } } - this.state = 3865; + this.state = 3872; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); } @@ -17886,13 +17932,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 370, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3866; + this.state = 3873; this.identifier(); - this.state = 3867; + this.state = 3874; this.errorCapturingIdentifierExtra(); } } @@ -17912,16 +17958,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 374, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3876; + this.state = 3883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3871; + this.state = 3878; this.errorHandler.sync(this); alternative = 1; do { @@ -17929,9 +17975,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3869; + this.state = 3876; this.match(SparkSqlParser.MINUS); - this.state = 3870; + this.state = 3877; this.identifier(); } } @@ -17939,7 +17985,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3873; + this.state = 3880; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -17969,22 +18015,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 374, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 376, SparkSqlParser.RULE_identifier); try { - this.state = 3880; + this.state = 3887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3885; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3879; + this.state = 3886; this.strictNonReserved(); } break; @@ -18006,36 +18052,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 376, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 378, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3886; + this.state = 3893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3882; + this.state = 3889; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3883; + this.state = 3890; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3884; + this.state = 3891; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3885; + this.state = 3892; this.nonReserved(); } break; @@ -18057,14 +18103,14 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 378, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 380, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3895; _la = this.tokenStream.LA(1); - if(!(_la === 377 || _la === 388)) { + if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); } else { @@ -18089,11 +18135,11 @@ export class SparkSqlParser extends SQLParserBase { } public backQuotedIdentifier(): BackQuotedIdentifierContext { let localContext = new BackQuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 380, SparkSqlParser.RULE_backQuotedIdentifier); + this.enterRule(localContext, 382, SparkSqlParser.RULE_backQuotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3890; + this.state = 3897; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } } @@ -18113,62 +18159,62 @@ export class SparkSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 382, SparkSqlParser.RULE_number); + this.enterRule(localContext, 384, SparkSqlParser.RULE_number); let _la: number; try { - this.state = 3932; + this.state = 3939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3893; + this.state = 3900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3892; + this.state = 3899; this.match(SparkSqlParser.MINUS); } } - this.state = 3895; + this.state = 3902; this.match(SparkSqlParser.EXPONENT_VALUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3897; + this.state = 3904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3896; + this.state = 3903; this.match(SparkSqlParser.MINUS); } } - this.state = 3899; + this.state = 3906; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3901; + this.state = 3908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3900; + this.state = 3907; this.match(SparkSqlParser.MINUS); } } - this.state = 3903; + this.state = 3910; _la = this.tokenStream.LA(1); - if(!(_la === 382 || _la === 383)) { + if(!(_la === 383 || _la === 384)) { this.errorHandler.recoverInline(this); } else { @@ -18180,119 +18226,119 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3905; + this.state = 3912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3904; + this.state = 3911; this.match(SparkSqlParser.MINUS); } } - this.state = 3907; + this.state = 3914; this.match(SparkSqlParser.INTEGER_VALUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3909; + this.state = 3916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3908; + this.state = 3915; this.match(SparkSqlParser.MINUS); } } - this.state = 3911; + this.state = 3918; this.match(SparkSqlParser.BIGINT_LITERAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3913; + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3912; + this.state = 3919; this.match(SparkSqlParser.MINUS); } } - this.state = 3915; + this.state = 3922; this.match(SparkSqlParser.SMALLINT_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3917; + this.state = 3924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3916; + this.state = 3923; this.match(SparkSqlParser.MINUS); } } - this.state = 3919; + this.state = 3926; this.match(SparkSqlParser.TINYINT_LITERAL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3921; + this.state = 3928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3920; + this.state = 3927; this.match(SparkSqlParser.MINUS); } } - this.state = 3923; + this.state = 3930; this.match(SparkSqlParser.DOUBLE_LITERAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3925; + this.state = 3932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3924; + this.state = 3931; this.match(SparkSqlParser.MINUS); } } - this.state = 3927; + this.state = 3934; this.match(SparkSqlParser.FLOAT_LITERAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3929; + this.state = 3936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 361) { + if (_la === 362) { { - this.state = 3928; + this.state = 3935; this.match(SparkSqlParser.MINUS); } } - this.state = 3931; + this.state = 3938; this.match(SparkSqlParser.BIGDECIMAL_LITERAL); } break; @@ -18314,69 +18360,69 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 384, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 386, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3945; + this.state = 3952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3934; + this.state = 3941; this.match(SparkSqlParser.KW_TYPE); - this.state = 3935; + this.state = 3942; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3936; + this.state = 3943; this.commentSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3937; + this.state = 3944; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3938; + this.state = 3945; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 96 || _la === 268)) { + if(!(_la === 96 || _la === 269)) { localContext._setOrDrop = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3939; + this.state = 3946; this.match(SparkSqlParser.KW_NOT); - this.state = 3940; + this.state = 3947; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3941; + this.state = 3948; this.match(SparkSqlParser.KW_SET); - this.state = 3942; + this.state = 3949; this.defaultExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3943; + this.state = 3950; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3944; + this.state = 3951; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18398,14 +18444,14 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 386, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 388, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3947; + this.state = 3954; _la = this.tokenStream.LA(1); - if(!(_la === 376 || _la === 377)) { + if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); } else { @@ -18430,23 +18476,23 @@ export class SparkSqlParser extends SQLParserBase { } public comment(): CommentContext { let localContext = new CommentContext(this.context, this.state); - this.enterRule(localContext, 388, SparkSqlParser.RULE_comment); + this.enterRule(localContext, 390, SparkSqlParser.RULE_comment); try { - this.state = 3951; + this.state = 3958; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 3949; + this.state = 3956; this.stringLit(); } break; case SparkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 3950; + this.state = 3957; this.match(SparkSqlParser.KW_NULL); } break; @@ -18470,15 +18516,15 @@ export class SparkSqlParser extends SQLParserBase { } public version(): VersionContext { let localContext = new VersionContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_version); + this.enterRule(localContext, 392, SparkSqlParser.RULE_version); try { - this.state = 3955; + this.state = 3962; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3953; + this.state = 3960; this.match(SparkSqlParser.INTEGER_VALUE); } break; @@ -18486,7 +18532,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 3954; + this.state = 3961; this.stringLit(); } break; @@ -18510,14 +18556,14 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 392, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 394, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3957; + this.state = 3964; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3852957567) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 805306367) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4020201927) !== 0) || ((((_la - 230)) & ~0x1F) === 0 && ((1 << (_la - 230)) & 4294442751) !== 0) || ((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 3758088175) !== 0) || ((((_la - 295)) & ~0x1F) === 0 && ((1 << (_la - 295)) & 3355402191) !== 0) || ((((_la - 327)) & ~0x1F) === 0 && ((1 << (_la - 327)) & 15892455) !== 0))) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -18542,14 +18588,14 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 394, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 396, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3959; + this.state = 3966; _la = this.tokenStream.LA(1); - if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 193 || _la === 202 || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 1064961) !== 0) || _la === 322 || _la === 331)) { + if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); } else { @@ -18574,14 +18620,14 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 396, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 398, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3961; + this.state = 3968; _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294966261) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4261412863) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294958911) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967279) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 2147481595) !== 0))) { + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -18607,15 +18653,15 @@ export class SparkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 45: + case 46: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 51: + case 52: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 137: + case 138: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 139: + case 140: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 141: + case 142: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18675,7 +18721,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,392,3964,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,393,3971,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -18708,1711 +18754,1713 @@ export class SparkSqlParser extends SQLParserBase { 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, - 7,197,2,198,7,198,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, - 1,1,3,1,409,8,1,1,2,1,2,3,2,413,8,2,1,2,1,2,1,2,3,2,418,8,2,1,2, - 1,2,1,2,1,2,1,2,3,2,425,8,2,1,2,1,2,1,2,3,2,430,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,5,2,438,8,2,10,2,12,2,441,9,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,459,8,2,1,2,1,2,3, - 2,463,8,2,1,2,1,2,1,2,1,2,3,2,469,8,2,1,2,3,2,472,8,2,1,2,3,2,475, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,482,8,2,1,2,3,2,485,8,2,1,2,1,2,3,2, - 489,8,2,1,2,3,2,492,8,2,1,2,1,2,1,2,3,2,497,8,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,508,8,2,10,2,12,2,511,9,2,1,2,1,2,1,2,1, - 2,1,2,3,2,518,8,2,1,2,3,2,521,8,2,1,2,1,2,3,2,525,8,2,1,2,3,2,528, - 8,2,1,2,1,2,1,2,1,2,3,2,534,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,3,2,545,8,2,1,2,1,2,1,2,1,2,3,2,551,8,2,1,2,1,2,1,2,3,2,556, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 7,197,2,198,7,198,2,199,7,199,1,0,5,0,402,8,0,10,0,12,0,405,9,0, + 1,0,1,0,1,1,1,1,3,1,411,8,1,1,2,1,2,3,2,415,8,2,1,2,1,2,1,2,3,2, + 420,8,2,1,2,1,2,1,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,3,2,432,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,5,2,440,8,2,10,2,12,2,443,9,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,461,8, + 2,1,2,1,2,3,2,465,8,2,1,2,1,2,1,2,1,2,3,2,471,8,2,1,2,3,2,474,8, + 2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,1,2,3,2,484,8,2,1,2,3,2,487,8, + 2,1,2,1,2,3,2,491,8,2,1,2,3,2,494,8,2,1,2,1,2,1,2,3,2,499,8,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,511,8,2,10,2,12,2,514, + 9,2,1,2,1,2,1,2,1,2,1,2,3,2,521,8,2,1,2,3,2,524,8,2,1,2,1,2,3,2, + 528,8,2,1,2,3,2,531,8,2,1,2,1,2,1,2,1,2,3,2,537,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,548,8,2,1,2,1,2,1,2,1,2,3,2,554,8,2, + 1,2,1,2,1,2,3,2,559,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,589,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,599,8,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,610,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,621,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 632,8,2,1,2,1,2,1,2,3,2,637,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 646,8,2,1,2,1,2,3,2,650,8,2,1,2,1,2,1,2,1,2,3,2,656,8,2,1,2,1,2, - 3,2,660,8,2,1,2,1,2,1,2,3,2,665,8,2,1,2,1,2,1,2,1,2,3,2,671,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,683,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,691,8,2,1,2,1,2,1,2,1,2,3,2,697,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,708,8,2,1,2,1,2,3,2,712,8,2,1,2,4,2, - 715,8,2,11,2,12,2,716,1,2,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,732,8,2,1,2,1,2,3,2,736,8,2,1,2,1,2,1,2,5,2,741,8, - 2,10,2,12,2,744,9,2,1,2,3,2,747,8,2,1,2,1,2,1,2,1,2,3,2,753,8,2, + 1,2,1,2,1,2,1,2,1,2,3,2,592,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,602,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,613,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,635,8,2,1,2,1,2,1,2,3,2,640,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,649,8,2,1,2,1,2,3,2,653,8,2,1,2,1,2,1,2,1,2, + 3,2,659,8,2,1,2,1,2,3,2,663,8,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2, + 1,2,1,2,3,2,674,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2,1,2,3,2, + 700,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,711,8,2,1,2,1,2, + 3,2,715,8,2,1,2,4,2,718,8,2,11,2,12,2,719,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,735,8,2,1,2,1,2,3,2,739,8,2,1, + 2,1,2,1,2,5,2,744,8,2,10,2,12,2,747,9,2,1,2,3,2,750,8,2,1,2,1,2, + 1,2,1,2,3,2,756,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,782,8,2,1,2,1,2, - 3,2,786,8,2,1,2,1,2,1,2,3,2,791,8,2,1,2,1,2,1,2,1,2,1,2,3,2,798, - 8,2,1,2,1,2,1,2,1,2,3,2,804,8,2,1,2,3,2,807,8,2,1,2,3,2,810,8,2, - 1,2,1,2,3,2,814,8,2,1,2,1,2,3,2,818,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 5,2,826,8,2,10,2,12,2,829,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,837,8, - 2,1,2,3,2,840,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,849,8,2,1,2,1, - 2,1,2,3,2,854,8,2,1,2,1,2,1,2,1,2,3,2,860,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,867,8,2,1,2,3,2,870,8,2,1,2,1,2,3,2,874,8,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,883,8,2,10,2,12,2,886,9,2,3,2,888,8,2,1,2,1,2, - 1,2,1,2,3,2,894,8,2,1,2,1,2,3,2,898,8,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,913,8,2,10,2,12,2,916,9,2,1,2,1, - 2,1,2,1,2,1,2,3,2,923,8,2,1,2,1,2,3,2,927,8,2,1,2,1,2,1,2,1,2,3, - 2,933,8,2,1,2,3,2,936,8,2,1,2,1,2,3,2,940,8,2,1,2,3,2,943,8,2,1, - 2,1,2,1,2,1,2,3,2,949,8,2,1,2,1,2,1,2,3,2,954,8,2,1,2,1,2,3,2,958, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,965,8,2,1,2,3,2,968,8,2,1,2,3,2,971, - 8,2,1,2,1,2,1,2,1,2,1,2,3,2,978,8,2,1,2,1,2,1,2,3,2,983,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,992,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 1000,8,2,1,2,1,2,1,2,1,2,3,2,1006,8,2,1,2,3,2,1009,8,2,1,2,3,2,1012, - 8,2,1,2,1,2,1,2,1,2,3,2,1018,8,2,1,2,1,2,3,2,1022,8,2,1,2,1,2,1, - 2,3,2,1027,8,2,1,2,3,2,1030,8,2,1,2,1,2,3,2,1034,8,2,3,2,1036,8, - 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1044,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1052,8,2,1,2,3,2,1055,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1062,8,2,1,2, - 3,2,1065,8,2,1,2,3,2,1068,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1077, - 8,2,1,2,1,2,1,2,3,2,1082,8,2,1,2,1,2,1,2,1,2,3,2,1088,8,2,1,2,1, - 2,1,2,3,2,1093,8,2,1,2,3,2,1096,8,2,1,2,1,2,3,2,1100,8,2,1,2,3,2, - 1103,8,2,1,2,1,2,3,2,1107,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5, - 2,1133,8,2,10,2,12,2,1136,9,2,3,2,1138,8,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1146,8,2,1,2,1,2,1,2,1,2,3,2,1152,8,2,1,2,3,2,1155,8,2,1,2, - 3,2,1158,8,2,1,2,1,2,1,2,3,2,1163,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1171,8,2,1,2,1,2,1,2,3,2,1176,8,2,1,2,1,2,1,2,1,2,3,2,1182,8,2, - 1,2,1,2,1,2,1,2,3,2,1188,8,2,1,2,3,2,1191,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1198,8,2,1,2,1,2,1,2,5,2,1203,8,2,10,2,12,2,1206,9,2,1,2,1, - 2,1,2,5,2,1211,8,2,10,2,12,2,1214,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,5,2,1228,8,2,10,2,12,2,1231,9,2,1,2,1,2,1, + 3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1,2,3,2,794,8,2,1,2,1,2, + 1,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,1,2,3,2,807,8,2,1,2,3,2,810, + 8,2,1,2,3,2,813,8,2,1,2,1,2,3,2,817,8,2,1,2,1,2,3,2,821,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,5,2,829,8,2,10,2,12,2,832,9,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,840,8,2,1,2,3,2,843,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,3,2,852,8,2,1,2,1,2,1,2,3,2,857,8,2,1,2,1,2,1,2,1,2,3,2,863,8, + 2,1,2,1,2,1,2,1,2,1,2,3,2,870,8,2,1,2,3,2,873,8,2,1,2,1,2,3,2,877, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,886,8,2,10,2,12,2,889,9,2,3, + 2,891,8,2,1,2,1,2,1,2,1,2,3,2,897,8,2,1,2,1,2,3,2,901,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,916,8,2,10,2,12, + 2,919,9,2,1,2,1,2,1,2,1,2,1,2,3,2,926,8,2,1,2,1,2,3,2,930,8,2,1, + 2,1,2,1,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,3,2,943,8,2,1, + 2,3,2,946,8,2,1,2,1,2,1,2,1,2,3,2,952,8,2,1,2,1,2,1,2,3,2,957,8, + 2,1,2,1,2,3,2,961,8,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,3,2,971, + 8,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,3,2,981,8,2,1,2,1,2,1,2, + 3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,995,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,3,2,1009,8,2,1,2,3,2,1012, + 8,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,1,2,3,2,1025, + 8,2,1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037,8, + 2,3,2,1039,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1047,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1055,8,2,1,2,3,2,1058,8,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1065,8,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,1,2,3, + 2,1091,8,2,1,2,1,2,1,2,3,2,1096,8,2,1,2,3,2,1099,8,2,1,2,1,2,3,2, + 1103,8,2,1,2,3,2,1106,8,2,1,2,1,2,3,2,1110,8,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,1255,8,2,10,2,12,2,1258,9,2,3,2,1260,8,2,1,2,1, - 2,5,2,1264,8,2,10,2,12,2,1267,9,2,1,2,1,2,1,2,1,2,5,2,1273,8,2,10, - 2,12,2,1276,9,2,1,2,1,2,1,2,1,2,5,2,1282,8,2,10,2,12,2,1285,9,2, - 1,2,1,2,1,2,3,2,1290,8,2,1,2,1,2,1,2,3,2,1295,8,2,1,2,1,2,1,2,3, - 2,1300,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1307,8,2,1,2,1,2,1,2,3,2,1312, - 8,2,1,2,1,2,1,2,3,2,1317,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1324,8,2,1, - 2,1,2,1,2,1,2,5,2,1330,8,2,10,2,12,2,1333,9,2,3,2,1335,8,2,1,3,1, - 3,3,3,1339,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1351, - 8,6,1,6,1,6,3,6,1355,8,6,1,6,1,6,1,6,1,6,1,6,3,6,1362,8,6,1,6,1, + 2,1,2,1,2,1,2,5,2,1136,8,2,10,2,12,2,1139,9,2,3,2,1141,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,3,2,1155,8,2,1,2, + 3,2,1158,8,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, + 2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,3,2,1179,8,2,1,2,1,2,1,2, + 1,2,3,2,1185,8,2,1,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,3,2,1194,8,2,1, + 2,1,2,1,2,1,2,1,2,3,2,1201,8,2,1,2,1,2,1,2,5,2,1206,8,2,10,2,12, + 2,1209,9,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,9,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1231,8,2,10,2,12,2,1234, + 9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1258,8,2,10,2,12,2,1261,9,2,3,2, + 1263,8,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270,9,2,1,2,1,2,1,2,1,2, + 5,2,1276,8,2,10,2,12,2,1279,9,2,1,2,1,2,1,2,1,2,5,2,1285,8,2,10, + 2,12,2,1288,9,2,1,2,1,2,1,2,3,2,1293,8,2,1,2,1,2,1,2,3,2,1298,8, + 2,1,2,1,2,1,2,3,2,1303,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1310,8,2,1,2, + 1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,3,2,1320,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1327,8,2,1,2,1,2,1,2,1,2,5,2,1333,8,2,10,2,12,2,1336,9,2,3, + 2,1338,8,2,1,3,1,3,3,3,1342,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, + 1,6,1,6,3,6,1354,8,6,1,6,1,6,3,6,1358,8,6,1,6,1,6,1,6,1,6,1,6,3, + 6,1365,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,3,6,1478,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1486,8,6,1,6,1,6,1,6, - 1,6,1,6,1,6,3,6,1494,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1503,8, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1513,8,6,1,7,1,7,3,7,1517, - 8,7,1,7,3,7,1520,8,7,1,7,1,7,3,7,1524,8,7,1,7,1,7,1,8,1,8,3,8,1530, - 8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9,1542,8,9,1,9,1,9, - 1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1554,8,10,1,10,1,10,1, - 10,3,10,1559,8,10,1,11,1,11,1,11,1,12,1,12,1,12,1,13,3,13,1568,8, - 13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1576,8,14,1,14,1,14,1,14,3, - 14,1581,8,14,3,14,1583,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1591, - 8,14,1,14,1,14,1,14,3,14,1596,8,14,1,14,1,14,3,14,1600,8,14,1,14, - 3,14,1603,8,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14,1611,8,14,1,14, - 1,14,1,14,3,14,1616,8,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,3,14, - 1625,8,14,1,14,1,14,1,14,3,14,1630,8,14,1,14,3,14,1633,8,14,1,14, - 1,14,1,14,3,14,1638,8,14,1,14,1,14,3,14,1642,8,14,1,14,1,14,1,14, - 3,14,1647,8,14,3,14,1649,8,14,1,15,1,15,3,15,1653,8,15,1,16,1,16, - 1,16,1,16,1,16,5,16,1660,8,16,10,16,12,16,1663,9,16,1,16,1,16,1, - 17,1,17,1,17,3,17,1670,8,17,1,17,1,17,1,17,1,17,3,17,1676,8,17,1, - 18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20,1687,8,20,1,21,1, - 21,1,21,5,21,1692,8,21,10,21,12,21,1695,9,21,1,22,1,22,1,22,1,22, - 5,22,1701,8,22,10,22,12,22,1704,9,22,1,23,1,23,3,23,1708,8,23,1, - 23,3,23,1711,8,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,25,1,25,1, - 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,5,25,1733,8, - 25,10,25,12,25,1736,9,25,1,26,1,26,1,26,1,26,5,26,1742,8,26,10,26, - 12,26,1745,9,26,1,26,1,26,1,27,1,27,3,27,1751,8,27,1,27,3,27,1754, - 8,27,1,28,1,28,1,28,5,28,1759,8,28,10,28,12,28,1762,9,28,1,28,3, - 28,1765,8,28,1,29,1,29,1,29,1,29,3,29,1771,8,29,1,30,1,30,1,30,1, - 30,5,30,1777,8,30,10,30,12,30,1780,9,30,1,30,1,30,1,31,1,31,3,31, - 1786,8,31,1,31,3,31,1789,8,31,1,32,1,32,1,32,1,32,5,32,1795,8,32, - 10,32,12,32,1798,9,32,1,32,1,32,1,33,1,33,1,33,1,33,5,33,1806,8, - 33,10,33,12,33,1809,9,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34, - 3,34,1819,8,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1827,8,35,1,36, - 1,36,1,36,1,36,3,36,1833,8,36,1,37,1,37,1,37,1,38,1,38,1,38,1,38, - 1,38,4,38,1843,8,38,11,38,12,38,1844,1,38,1,38,1,38,1,38,1,38,3, - 38,1852,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1859,8,38,1,38,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1871,8,38,1,38,1,38,1, - 38,1,38,5,38,1877,8,38,10,38,12,38,1880,9,38,1,38,5,38,1883,8,38, - 10,38,12,38,1886,9,38,1,38,5,38,1889,8,38,10,38,12,38,1892,9,38, - 3,38,1894,8,38,1,39,1,39,1,40,1,40,1,41,1,41,1,42,1,42,1,43,1,43, - 1,44,1,44,1,45,1,45,3,45,1910,8,45,1,46,1,46,1,46,5,46,1915,8,46, - 10,46,12,46,1918,9,46,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,3, - 48,1928,8,48,1,49,1,49,1,49,1,49,1,49,5,49,1935,8,49,10,49,12,49, - 1938,9,49,3,49,1940,8,49,1,49,1,49,1,49,1,49,1,49,5,49,1947,8,49, - 10,49,12,49,1950,9,49,3,49,1952,8,49,1,49,1,49,1,49,1,49,1,49,5, - 49,1959,8,49,10,49,12,49,1962,9,49,3,49,1964,8,49,1,49,1,49,1,49, - 1,49,1,49,5,49,1971,8,49,10,49,12,49,1974,9,49,3,49,1976,8,49,1, - 49,3,49,1979,8,49,1,49,1,49,1,49,3,49,1984,8,49,3,49,1986,8,49,1, - 49,1,49,3,49,1990,8,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1, - 51,3,51,2001,8,51,1,51,1,51,1,51,1,51,3,51,2007,8,51,1,51,1,51,1, - 51,1,51,3,51,2013,8,51,1,51,5,51,2016,8,51,10,51,12,51,2019,9,51, - 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2030,8,52,1,53, - 1,53,3,53,2034,8,53,1,53,3,53,2037,8,53,1,53,1,53,3,53,2041,8,53, - 1,54,1,54,4,54,2045,8,54,11,54,12,54,2046,1,55,1,55,3,55,2051,8, - 55,1,55,1,55,1,55,1,55,5,55,2057,8,55,10,55,12,55,2060,9,55,1,55, - 3,55,2063,8,55,1,55,3,55,2066,8,55,1,55,3,55,2069,8,55,1,55,3,55, - 2072,8,55,1,55,1,55,3,55,2076,8,55,1,56,1,56,3,56,2080,8,56,1,56, - 5,56,2083,8,56,10,56,12,56,2086,9,56,1,56,3,56,2089,8,56,1,56,3, - 56,2092,8,56,1,56,3,56,2095,8,56,1,56,3,56,2098,8,56,1,56,1,56,3, - 56,2102,8,56,1,56,5,56,2105,8,56,10,56,12,56,2108,9,56,1,56,3,56, - 2111,8,56,1,56,3,56,2114,8,56,1,56,3,56,2117,8,56,1,56,3,56,2120, - 8,56,3,56,2122,8,56,1,57,1,57,1,57,1,57,3,57,2128,8,57,1,57,1,57, - 1,57,1,57,1,57,3,57,2135,8,57,1,57,1,57,1,57,3,57,2140,8,57,1,57, - 3,57,2143,8,57,1,57,3,57,2146,8,57,1,57,1,57,3,57,2150,8,57,1,57, - 1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2160,8,57,1,57,1,57,3,57, - 2164,8,57,3,57,2166,8,57,1,57,3,57,2169,8,57,1,57,1,57,3,57,2173, - 8,57,1,58,1,58,5,58,2177,8,58,10,58,12,58,2180,9,58,1,58,3,58,2183, - 8,58,1,58,1,58,1,59,1,59,1,59,1,60,1,60,1,60,1,60,3,60,2194,8,60, - 1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,3,61,2204,8,61,1,61,1,61, - 3,61,2208,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62, - 3,62,2220,8,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 3,63,2232,8,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, - 1,64,5,64,2245,8,64,10,64,12,64,2248,9,64,1,64,1,64,3,64,2252,8, - 64,1,65,1,65,1,65,1,65,3,65,2258,8,65,1,66,1,66,1,66,5,66,2263,8, - 66,10,66,12,66,2266,9,66,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,69, - 1,69,1,69,1,70,1,70,1,70,3,70,2281,8,70,1,70,5,70,2284,8,70,10,70, - 12,70,2287,9,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2297, - 8,71,10,71,12,71,2300,9,71,1,71,1,71,3,71,2304,8,71,1,72,1,72,1, - 72,1,72,5,72,2310,8,72,10,72,12,72,2313,9,72,1,72,5,72,2316,8,72, - 10,72,12,72,2319,9,72,1,72,3,72,2322,8,72,1,72,3,72,2325,8,72,1, - 73,1,73,1,74,3,74,2330,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2337,8, - 74,1,74,1,74,1,74,1,74,3,74,2343,8,74,1,75,1,75,1,75,1,75,1,75,5, - 75,2350,8,75,10,75,12,75,2353,9,75,1,75,1,75,1,75,1,75,1,75,5,75, - 2360,8,75,10,75,12,75,2363,9,75,1,75,1,75,1,75,1,75,1,75,1,75,1, - 75,1,75,1,75,1,75,5,75,2375,8,75,10,75,12,75,2378,9,75,1,75,1,75, - 3,75,2382,8,75,3,75,2384,8,75,1,76,1,76,1,76,3,76,2389,8,76,1,77, - 1,77,1,77,1,77,1,77,5,77,2396,8,77,10,77,12,77,2399,9,77,1,77,1, - 77,1,77,1,77,1,77,1,77,1,77,1,77,5,77,2409,8,77,10,77,12,77,2412, - 9,77,1,77,1,77,3,77,2416,8,77,1,78,1,78,3,78,2420,8,78,1,79,1,79, - 1,79,1,79,1,79,3,79,2427,8,79,1,79,1,79,1,79,3,79,2432,8,79,5,79, - 2434,8,79,10,79,12,79,2437,9,79,3,79,2439,8,79,1,79,3,79,2442,8, - 79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2454,8, - 80,10,80,12,80,2457,9,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81, - 5,81,2467,8,81,10,81,12,81,2470,9,81,1,81,1,81,3,81,2474,8,81,1, - 82,1,82,3,82,2478,8,82,1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8, - 83,1,83,1,83,1,83,1,83,3,83,2491,8,83,1,83,3,83,2494,8,83,1,84,1, - 84,1,84,1,85,1,85,3,85,2501,8,85,1,86,1,86,1,86,1,86,1,86,1,86,1, - 86,1,86,5,86,2511,8,86,10,86,12,86,2514,9,86,1,86,1,86,1,87,1,87, - 1,87,1,87,5,87,2522,8,87,10,87,12,87,2525,9,87,1,87,1,87,1,87,1, - 87,1,87,1,87,1,87,1,87,5,87,2535,8,87,10,87,12,87,2538,9,87,1,87, - 1,87,1,88,1,88,1,88,1,88,5,88,2546,8,88,10,88,12,88,2549,9,88,1, - 88,1,88,3,88,2553,8,88,1,89,1,89,1,90,1,90,1,91,1,91,3,91,2561,8, - 91,1,92,1,92,1,93,3,93,2566,8,93,1,93,1,93,1,94,1,94,1,94,1,94,1, - 95,1,95,1,95,1,96,1,96,1,96,3,96,2580,8,96,1,96,1,96,1,96,1,96,1, - 96,5,96,2587,8,96,10,96,12,96,2590,9,96,3,96,2592,8,96,1,96,1,96, - 1,96,3,96,2597,8,96,1,96,1,96,1,96,5,96,2602,8,96,10,96,12,96,2605, - 9,96,3,96,2607,8,96,1,97,1,97,1,98,1,98,3,98,2613,8,98,1,98,1,98, - 5,98,2617,8,98,10,98,12,98,2620,9,98,3,98,2622,8,98,1,99,1,99,1, - 99,3,99,2627,8,99,1,100,1,100,1,100,3,100,2632,8,100,1,100,1,100, - 3,100,2636,8,100,1,100,1,100,1,100,1,100,3,100,2642,8,100,1,100, - 1,100,3,100,2646,8,100,1,101,3,101,2649,8,101,1,101,1,101,1,101, - 3,101,2654,8,101,1,101,3,101,2657,8,101,1,101,1,101,1,101,3,101, - 2662,8,101,1,101,1,101,3,101,2666,8,101,1,101,3,101,2669,8,101,1, - 101,3,101,2672,8,101,1,102,1,102,1,102,1,102,3,102,2678,8,102,1, - 103,1,103,1,103,3,103,2683,8,103,1,103,1,103,1,103,1,103,1,103,3, - 103,2690,8,103,1,104,3,104,2693,8,104,1,104,1,104,1,104,1,104,1, - 104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,3,104,2711,8,104,3,104,2713,8,104,1,104,3,104,2716,8,104,1, - 105,1,105,1,105,1,105,1,106,1,106,1,106,5,106,2725,8,106,10,106, - 12,106,2728,9,106,1,107,1,107,1,107,1,107,5,107,2734,8,107,10,107, - 12,107,2737,9,107,1,107,1,107,1,108,1,108,3,108,2743,8,108,1,109, - 1,109,1,109,1,109,5,109,2749,8,109,10,109,12,109,2752,9,109,1,109, - 1,109,1,110,1,110,3,110,2758,8,110,1,111,1,111,1,111,3,111,2763, - 8,111,1,111,3,111,2766,8,111,1,111,3,111,2769,8,111,1,111,1,111, - 1,111,1,111,1,111,1,111,3,111,2777,8,111,1,111,1,111,1,111,1,111, - 1,111,1,111,3,111,2785,8,111,1,111,1,111,1,111,1,111,3,111,2791, - 8,111,1,112,1,112,1,112,1,112,5,112,2797,8,112,10,112,12,112,2800, - 9,112,1,112,1,112,1,113,1,113,1,113,3,113,2807,8,113,1,113,1,113, - 1,113,1,113,1,113,3,113,2814,8,113,1,113,1,113,1,113,1,113,1,113, - 3,113,2821,8,113,3,113,2823,8,113,1,114,1,114,1,114,1,114,1,114, - 1,114,1,114,1,114,1,114,5,114,2834,8,114,10,114,12,114,2837,9,114, - 1,114,1,114,1,114,3,114,2842,8,114,3,114,2844,8,114,1,114,1,114, - 1,114,1,114,1,114,1,114,5,114,2852,8,114,10,114,12,114,2855,9,114, - 1,114,1,114,1,114,3,114,2860,8,114,3,114,2862,8,114,1,115,1,115, - 1,115,1,115,1,116,1,116,3,116,2870,8,116,1,117,1,117,3,117,2874, - 8,117,1,118,1,118,1,118,1,118,1,118,5,118,2881,8,118,10,118,12,118, - 2884,9,118,3,118,2886,8,118,1,118,1,118,1,118,1,119,3,119,2892,8, - 119,1,119,1,119,3,119,2896,8,119,3,119,2898,8,119,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,3,120,2907,8,120,1,120,1,120,1,120,1, - 120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,2919,8,120,3,120,2921, - 8,120,1,120,1,120,1,120,1,120,1,120,3,120,2928,8,120,1,120,1,120, - 1,120,1,120,1,120,3,120,2935,8,120,1,120,1,120,1,120,1,120,3,120, - 2941,8,120,1,120,1,120,1,120,1,120,3,120,2947,8,120,3,120,2949,8, - 120,1,121,1,121,1,121,5,121,2954,8,121,10,121,12,121,2957,9,121, - 1,122,1,122,1,122,5,122,2962,8,122,10,122,12,122,2965,9,122,1,123, - 1,123,1,123,5,123,2970,8,123,10,123,12,123,2973,9,123,1,124,1,124, - 1,124,3,124,2978,8,124,1,125,1,125,1,125,3,125,2983,8,125,1,125, - 1,125,1,126,1,126,1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127, - 3,127,2996,8,127,1,127,3,127,2999,8,127,1,127,1,127,3,127,3003,8, - 127,3,127,3005,8,127,1,128,1,128,1,128,5,128,3010,8,128,10,128,12, - 128,3013,9,128,1,129,1,129,1,129,1,129,5,129,3019,8,129,10,129,12, - 129,3022,9,129,1,129,1,129,1,130,1,130,3,130,3028,8,130,1,131,1, - 131,1,131,1,131,1,131,1,131,5,131,3036,8,131,10,131,12,131,3039, - 9,131,1,131,1,131,3,131,3043,8,131,1,132,1,132,3,132,3047,8,132, - 1,133,1,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,3057,8,135, - 1,136,1,136,1,136,5,136,3062,8,136,10,136,12,136,3065,9,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137,3077, - 8,137,3,137,3079,8,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137, - 3087,8,137,10,137,12,137,3090,9,137,1,138,3,138,3093,8,138,1,138, - 1,138,1,138,1,138,1,138,1,138,3,138,3101,8,138,1,138,1,138,1,138, - 1,138,1,138,5,138,3108,8,138,10,138,12,138,3111,9,138,1,138,1,138, - 1,138,3,138,3116,8,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138, - 3124,8,138,1,138,1,138,1,138,3,138,3129,8,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,5,138,3139,8,138,10,138,12,138,3142, - 9,138,1,138,1,138,3,138,3146,8,138,1,138,3,138,3149,8,138,1,138, - 1,138,1,138,1,138,3,138,3155,8,138,1,138,1,138,3,138,3159,8,138, - 1,138,1,138,1,138,3,138,3164,8,138,1,138,1,138,1,138,3,138,3169, - 8,138,1,138,1,138,1,138,3,138,3174,8,138,1,139,1,139,1,139,1,139, - 3,139,3180,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 5,139,3201,8,139,10,139,12,139,3204,9,139,1,140,1,140,1,141,1,141, - 1,141,1,141,1,141,1,141,3,141,3214,8,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3226,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3236,8,141,11,141,12,141, - 3237,1,141,1,141,3,141,3242,8,141,1,141,1,141,1,141,1,141,1,141, - 4,141,3249,8,141,11,141,12,141,3250,1,141,1,141,3,141,3255,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,5,141,3271,8,141,10,141,12,141,3274,9,141,3,141, - 3276,8,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3284,8,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3293,8,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3302,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,4,141,3323,8,141,11,141,12,141, - 3324,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,3,141,3341,8,141,1,141,1,141,1,141,5,141, - 3346,8,141,10,141,12,141,3349,9,141,3,141,3351,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,3,141,3360,8,141,1,141,1,141,3,141, - 3364,8,141,1,141,1,141,3,141,3368,8,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,4,141,3378,8,141,11,141,12,141,3379,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 3,141,3405,8,141,1,141,1,141,1,141,1,141,1,141,3,141,3412,8,141, - 1,141,3,141,3415,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3430,8,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,3,141,3451,8,141,1,141,1,141, - 3,141,3455,8,141,3,141,3457,8,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,5,141,3467,8,141,10,141,12,141,3470,9,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,3,142,3479,8,142,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,4,143,3492, - 8,143,11,143,12,143,3493,3,143,3496,8,143,1,144,1,144,1,145,1,145, - 1,146,1,146,1,147,1,147,1,148,1,148,1,148,3,148,3509,8,148,1,149, - 1,149,3,149,3513,8,149,1,150,1,150,1,150,4,150,3518,8,150,11,150, - 12,150,3519,1,151,1,151,1,151,3,151,3525,8,151,1,152,1,152,1,152, - 1,152,1,152,1,153,3,153,3533,8,153,1,153,1,153,1,153,3,153,3538, - 8,153,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156,3547,8,156, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,3579,8,157, + 6,1,6,1,6,1,6,1,6,3,6,1481,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1489, + 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6,1,6,1,6,1,6, + 1,6,3,6,1506,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1516,8,6,1, + 7,1,7,3,7,1520,8,7,1,7,3,7,1523,8,7,1,7,1,7,3,7,1527,8,7,1,7,1,7, + 1,8,1,8,3,8,1533,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, + 1545,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1557, + 8,10,1,10,1,10,1,10,3,10,1562,8,10,1,11,1,11,1,11,1,12,1,12,1,12, + 1,13,3,13,1571,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1579,8,14, + 1,14,1,14,1,14,3,14,1584,8,14,3,14,1586,8,14,1,14,1,14,1,14,1,14, + 1,14,1,14,3,14,1594,8,14,1,14,1,14,1,14,3,14,1599,8,14,1,14,1,14, + 3,14,1603,8,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,1,14,1,14,1,14, + 3,14,1614,8,14,1,14,1,14,1,14,3,14,1619,8,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,3,14,1628,8,14,1,14,1,14,1,14,3,14,1633,8,14,1,14, + 3,14,1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,1,14,3,14,1645, + 8,14,1,14,1,14,1,14,3,14,1650,8,14,3,14,1652,8,14,1,15,1,15,3,15, + 1656,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1663,8,16,10,16,12,16,1666, + 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1673,8,17,1,17,1,17,1,17,1,17, + 3,17,1679,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, + 1690,8,20,1,21,1,21,1,21,5,21,1695,8,21,10,21,12,21,1698,9,21,1, + 22,1,22,1,22,1,22,5,22,1704,8,22,10,22,12,22,1707,9,22,1,23,1,23, + 3,23,1711,8,23,1,23,3,23,1714,8,23,1,23,1,23,1,23,1,23,1,24,1,24, + 1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25, + 1,25,1,25,5,25,1737,8,25,10,25,12,25,1740,9,25,1,26,1,26,1,26,1, + 27,1,27,1,27,1,27,5,27,1749,8,27,10,27,12,27,1752,9,27,1,27,1,27, + 1,28,1,28,3,28,1758,8,28,1,28,3,28,1761,8,28,1,29,1,29,1,29,5,29, + 1766,8,29,10,29,12,29,1769,9,29,1,29,3,29,1772,8,29,1,30,1,30,1, + 30,1,30,3,30,1778,8,30,1,31,1,31,1,31,1,31,5,31,1784,8,31,10,31, + 12,31,1787,9,31,1,31,1,31,1,32,1,32,3,32,1793,8,32,1,32,3,32,1796, + 8,32,1,33,1,33,1,33,1,33,5,33,1802,8,33,10,33,12,33,1805,9,33,1, + 33,1,33,1,34,1,34,1,34,1,34,5,34,1813,8,34,10,34,12,34,1816,9,34, + 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1826,8,35,1,36,1,36, + 1,36,1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,37,3,37,1840, + 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1850,8,39,11,39, + 12,39,1851,1,39,1,39,1,39,1,39,1,39,3,39,1859,8,39,1,39,1,39,1,39, + 1,39,1,39,3,39,1866,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, + 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,5,39,1884,8,39,10,39, + 12,39,1887,9,39,1,39,5,39,1890,8,39,10,39,12,39,1893,9,39,1,39,5, + 39,1896,8,39,10,39,12,39,1899,9,39,3,39,1901,8,39,1,40,1,40,1,41, + 1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1917, + 8,46,1,47,1,47,1,47,5,47,1922,8,47,10,47,12,47,1925,9,47,1,48,1, + 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1935,8,49,1,50,1,50,1,50,1, + 50,1,50,5,50,1942,8,50,10,50,12,50,1945,9,50,3,50,1947,8,50,1,50, + 1,50,1,50,1,50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959, + 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9, + 50,3,50,1971,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50, + 12,50,1981,9,50,3,50,1983,8,50,1,50,3,50,1986,8,50,1,50,1,50,1,50, + 3,50,1991,8,50,3,50,1993,8,50,1,50,1,50,3,50,1997,8,50,1,51,1,51, + 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2008,8,52,1,52,1,52,1,52, + 1,52,3,52,2014,8,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,5,52, + 2023,8,52,10,52,12,52,2026,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,1,53,3,53,2037,8,53,1,54,1,54,3,54,2041,8,54,1,54,3,54,2044, + 8,54,1,54,1,54,3,54,2048,8,54,1,55,1,55,4,55,2052,8,55,11,55,12, + 55,2053,1,56,1,56,3,56,2058,8,56,1,56,1,56,1,56,1,56,5,56,2064,8, + 56,10,56,12,56,2067,9,56,1,56,3,56,2070,8,56,1,56,3,56,2073,8,56, + 1,56,3,56,2076,8,56,1,56,3,56,2079,8,56,1,56,1,56,3,56,2083,8,56, + 1,57,1,57,3,57,2087,8,57,1,57,5,57,2090,8,57,10,57,12,57,2093,9, + 57,1,57,3,57,2096,8,57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1, + 57,3,57,2105,8,57,1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10, + 57,12,57,2115,9,57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57, + 3,57,2124,8,57,1,57,3,57,2127,8,57,3,57,2129,8,57,1,58,1,58,1,58, + 1,58,3,58,2135,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2142,8,58,1,58, + 1,58,1,58,3,58,2147,8,58,1,58,3,58,2150,8,58,1,58,3,58,2153,8,58, + 1,58,1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 3,58,2167,8,58,1,58,1,58,3,58,2171,8,58,3,58,2173,8,58,1,58,3,58, + 2176,8,58,1,58,1,58,3,58,2180,8,58,1,59,1,59,5,59,2184,8,59,10,59, + 12,59,2187,9,59,1,59,3,59,2190,8,59,1,59,1,59,1,60,1,60,1,60,1,61, + 1,61,1,61,1,61,3,61,2201,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, + 1,62,3,62,2211,8,62,1,62,1,62,3,62,2215,8,62,1,62,1,62,1,62,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63,1,63,1,64, + 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2239,8,64,1,65,1,65,1,65,1,65, + 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2252,8,65,10,65,12,65,2255, + 9,65,1,65,1,65,3,65,2259,8,65,1,66,1,66,1,66,1,66,3,66,2265,8,66, + 1,67,1,67,1,67,5,67,2270,8,67,10,67,12,67,2273,9,67,1,68,1,68,1, + 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2288,8, + 71,1,71,5,71,2291,8,71,10,71,12,71,2294,9,71,1,71,1,71,1,72,1,72, + 1,72,1,72,1,72,1,72,5,72,2304,8,72,10,72,12,72,2307,9,72,1,72,1, + 72,3,72,2311,8,72,1,73,1,73,1,73,1,73,5,73,2317,8,73,10,73,12,73, + 2320,9,73,1,73,5,73,2323,8,73,10,73,12,73,2326,9,73,1,73,3,73,2329, + 8,73,1,73,3,73,2332,8,73,1,74,1,74,1,75,3,75,2337,8,75,1,75,1,75, + 1,75,1,75,1,75,3,75,2344,8,75,1,75,1,75,1,75,1,75,3,75,2350,8,75, + 1,76,1,76,1,76,1,76,1,76,5,76,2357,8,76,10,76,12,76,2360,9,76,1, + 76,1,76,1,76,1,76,1,76,5,76,2367,8,76,10,76,12,76,2370,9,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2382,8,76,10,76, + 12,76,2385,9,76,1,76,1,76,3,76,2389,8,76,3,76,2391,8,76,1,77,1,77, + 1,77,3,77,2396,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2403,8,78,10,78, + 12,78,2406,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2416, + 8,78,10,78,12,78,2419,9,78,1,78,1,78,3,78,2423,8,78,1,79,1,79,3, + 79,2427,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2434,8,80,1,80,1,80,1, + 80,3,80,2439,8,80,5,80,2441,8,80,10,80,12,80,2444,9,80,3,80,2446, + 8,80,1,80,3,80,2449,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 1,81,1,81,5,81,2461,8,81,10,81,12,81,2464,9,81,1,81,1,81,1,81,1, + 82,1,82,1,82,1,82,1,82,5,82,2474,8,82,10,82,12,82,2477,9,82,1,82, + 1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8,83,1,83,3,83,2488,8,83, + 1,84,1,84,3,84,2492,8,84,1,84,1,84,1,84,1,84,3,84,2498,8,84,1,84, + 3,84,2501,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2508,8,86,1,87,1,87, + 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2518,8,87,10,87,12,87,2521,9, + 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2529,8,88,10,88,12,88,2532, + 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2542,8,88,10,88, + 12,88,2545,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2553,8,89,10, + 89,12,89,2556,9,89,1,89,1,89,3,89,2560,8,89,1,90,1,90,1,91,1,91, + 1,92,1,92,3,92,2568,8,92,1,93,1,93,1,94,3,94,2573,8,94,1,94,1,94, + 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2587,8,97, + 1,97,1,97,1,97,1,97,1,97,5,97,2594,8,97,10,97,12,97,2597,9,97,3, + 97,2599,8,97,1,97,1,97,1,97,3,97,2604,8,97,1,97,1,97,1,97,5,97,2609, + 8,97,10,97,12,97,2612,9,97,3,97,2614,8,97,1,98,1,98,1,99,1,99,3, + 99,2620,8,99,1,99,1,99,5,99,2624,8,99,10,99,12,99,2627,9,99,3,99, + 2629,8,99,1,100,1,100,1,100,3,100,2634,8,100,1,101,1,101,1,101,3, + 101,2639,8,101,1,101,1,101,3,101,2643,8,101,1,101,1,101,1,101,1, + 101,3,101,2649,8,101,1,101,1,101,3,101,2653,8,101,1,102,3,102,2656, + 8,102,1,102,1,102,1,102,3,102,2661,8,102,1,102,3,102,2664,8,102, + 1,102,1,102,1,102,3,102,2669,8,102,1,102,1,102,3,102,2673,8,102, + 1,102,3,102,2676,8,102,1,102,3,102,2679,8,102,1,103,1,103,1,103, + 1,103,3,103,2685,8,103,1,104,1,104,1,104,3,104,2690,8,104,1,104, + 1,104,1,104,1,104,1,104,3,104,2697,8,104,1,105,3,105,2700,8,105, + 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,1,105,1,105,1,105,3,105,2718,8,105,3,105,2720,8,105, + 1,105,3,105,2723,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, + 5,107,2732,8,107,10,107,12,107,2735,9,107,1,108,1,108,1,108,1,108, + 5,108,2741,8,108,10,108,12,108,2744,9,108,1,108,1,108,1,109,1,109, + 3,109,2750,8,109,1,110,1,110,1,110,1,110,5,110,2756,8,110,10,110, + 12,110,2759,9,110,1,110,1,110,1,111,1,111,3,111,2765,8,111,1,112, + 1,112,1,112,3,112,2770,8,112,1,112,3,112,2773,8,112,1,112,3,112, + 2776,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2784,8,112, + 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2792,8,112,1,112,1,112, + 1,112,1,112,3,112,2798,8,112,1,113,1,113,1,113,1,113,5,113,2804, + 8,113,10,113,12,113,2807,9,113,1,113,1,113,1,114,1,114,1,114,3,114, + 2814,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2821,8,114,1,114, + 1,114,1,114,1,114,1,114,3,114,2828,8,114,3,114,2830,8,114,1,115, + 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2841,8,115, + 10,115,12,115,2844,9,115,1,115,1,115,1,115,3,115,2849,8,115,3,115, + 2851,8,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2859,8,115, + 10,115,12,115,2862,9,115,1,115,1,115,1,115,3,115,2867,8,115,3,115, + 2869,8,115,1,116,1,116,1,116,1,116,1,117,1,117,3,117,2877,8,117, + 1,118,1,118,3,118,2881,8,118,1,119,1,119,1,119,1,119,1,119,5,119, + 2888,8,119,10,119,12,119,2891,9,119,3,119,2893,8,119,1,119,1,119, + 1,119,1,120,3,120,2899,8,120,1,120,1,120,3,120,2903,8,120,3,120, + 2905,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2914, + 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 3,121,2926,8,121,3,121,2928,8,121,1,121,1,121,1,121,1,121,1,121, + 3,121,2935,8,121,1,121,1,121,1,121,1,121,1,121,3,121,2942,8,121, + 1,121,1,121,1,121,1,121,3,121,2948,8,121,1,121,1,121,1,121,1,121, + 3,121,2954,8,121,3,121,2956,8,121,1,122,1,122,1,122,5,122,2961,8, + 122,10,122,12,122,2964,9,122,1,123,1,123,1,123,5,123,2969,8,123, + 10,123,12,123,2972,9,123,1,124,1,124,1,124,5,124,2977,8,124,10,124, + 12,124,2980,9,124,1,125,1,125,1,125,3,125,2985,8,125,1,126,1,126, + 1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127,1,127,3,127,2997, + 8,127,1,127,1,127,1,128,1,128,3,128,3003,8,128,1,128,3,128,3006, + 8,128,1,128,1,128,3,128,3010,8,128,3,128,3012,8,128,1,129,1,129, + 1,129,5,129,3017,8,129,10,129,12,129,3020,9,129,1,130,1,130,1,130, + 1,130,5,130,3026,8,130,10,130,12,130,3029,9,130,1,130,1,130,1,131, + 1,131,3,131,3035,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, + 3043,8,132,10,132,12,132,3046,9,132,1,132,1,132,3,132,3050,8,132, + 1,133,1,133,3,133,3054,8,133,1,134,1,134,1,135,1,135,1,135,1,135, + 1,136,1,136,3,136,3064,8,136,1,137,1,137,1,137,5,137,3069,8,137, + 10,137,12,137,3072,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,3,138,3084,8,138,3,138,3086,8,138,1,138,1,138, + 1,138,1,138,1,138,1,138,5,138,3094,8,138,10,138,12,138,3097,9,138, + 1,139,3,139,3100,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, + 3108,8,139,1,139,1,139,1,139,1,139,1,139,5,139,3115,8,139,10,139, + 12,139,3118,9,139,1,139,1,139,1,139,3,139,3123,8,139,1,139,1,139, + 1,139,1,139,1,139,1,139,3,139,3131,8,139,1,139,1,139,1,139,3,139, + 3136,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,5,139, + 3146,8,139,10,139,12,139,3149,9,139,1,139,1,139,3,139,3153,8,139, + 1,139,3,139,3156,8,139,1,139,1,139,1,139,1,139,3,139,3162,8,139, + 1,139,1,139,3,139,3166,8,139,1,139,1,139,1,139,3,139,3171,8,139, + 1,139,1,139,1,139,3,139,3176,8,139,1,139,1,139,1,139,3,139,3181, + 8,139,1,140,1,140,1,140,1,140,3,140,3187,8,140,1,140,1,140,1,140, + 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,1,140,1,140,1,140,5,140,3208,8,140,10,140,12,140,3211, + 9,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3221, + 8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 3,142,3233,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 4,142,3243,8,142,11,142,12,142,3244,1,142,1,142,3,142,3249,8,142, + 1,142,1,142,1,142,1,142,1,142,4,142,3256,8,142,11,142,12,142,3257, + 1,142,1,142,3,142,3262,8,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3278,8,142, + 10,142,12,142,3281,9,142,3,142,3283,8,142,1,142,1,142,1,142,1,142, + 1,142,1,142,3,142,3291,8,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,3,142,3300,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 3,142,3309,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 4,142,3330,8,142,11,142,12,142,3331,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3348, + 8,142,1,142,1,142,1,142,5,142,3353,8,142,10,142,12,142,3356,9,142, + 3,142,3358,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, + 3367,8,142,1,142,1,142,3,142,3371,8,142,1,142,1,142,3,142,3375,8, + 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,4,142,3385,8, + 142,11,142,12,142,3386,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,3,142,3412,8,142,1,142,1,142,1,142, + 1,142,1,142,3,142,3419,8,142,1,142,3,142,3422,8,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 3,142,3437,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 3,142,3458,8,142,1,142,1,142,3,142,3462,8,142,3,142,3464,8,142,1, + 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3474,8,142,10, + 142,12,142,3477,9,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 3,143,3486,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,1,144,1,144,4,144,3499,8,144,11,144,12,144,3500,3,144,3503, + 8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149, + 1,149,3,149,3516,8,149,1,150,1,150,3,150,3520,8,150,1,151,1,151, + 1,151,4,151,3525,8,151,11,151,12,151,3526,1,152,1,152,1,152,3,152, + 3532,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,3540,8,154, + 1,154,1,154,1,154,3,154,3545,8,154,1,155,1,155,1,156,1,156,1,157, + 1,157,1,157,3,157,3554,8,157,1,158,1,158,1,158,1,158,1,158,1,158, 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,3,158,3596,8,158,1,158,1,158,3,158,3600, - 8,158,1,158,1,158,1,158,1,158,3,158,3606,8,158,1,158,1,158,1,158, - 1,158,3,158,3612,8,158,1,158,1,158,1,158,1,158,1,158,5,158,3619, - 8,158,10,158,12,158,3622,9,158,1,158,3,158,3625,8,158,3,158,3627, - 8,158,1,159,1,159,1,159,5,159,3632,8,159,10,159,12,159,3635,9,159, - 1,160,1,160,1,160,5,160,3640,8,160,10,160,12,160,3643,9,160,1,161, - 1,161,1,161,5,161,3648,8,161,10,161,12,161,3651,9,161,1,162,1,162, - 1,162,5,162,3656,8,162,10,162,12,162,3659,9,162,1,163,1,163,1,163, - 1,163,1,163,3,163,3666,8,163,1,164,1,164,1,164,1,165,1,165,1,165, - 1,166,1,166,1,166,5,166,3677,8,166,10,166,12,166,3680,9,166,1,167, - 1,167,1,167,1,167,3,167,3686,8,167,1,167,3,167,3689,8,167,1,168, - 1,168,1,168,5,168,3694,8,168,10,168,12,168,3697,9,168,1,169,1,169, - 1,169,5,169,3702,8,169,10,169,12,169,3705,9,169,1,170,1,170,1,170, - 1,170,1,170,3,170,3712,8,170,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,1,172,1,172,1,172,5,172,3724,8,172,10,172,12,172,3727,9,172, - 1,173,1,173,3,173,3731,8,173,1,173,1,173,1,173,3,173,3736,8,173, - 1,173,3,173,3739,8,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175, - 1,175,1,175,5,175,3750,8,175,10,175,12,175,3753,9,175,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,178,1,178,1,178,5,178,3774,8,178,10,178,12,178, - 3777,9,178,1,178,1,178,1,178,1,178,1,178,5,178,3784,8,178,10,178, - 12,178,3787,9,178,3,178,3789,8,178,1,178,1,178,1,178,1,178,1,178, - 5,178,3796,8,178,10,178,12,178,3799,9,178,3,178,3801,8,178,3,178, - 3803,8,178,1,178,3,178,3806,8,178,1,178,3,178,3809,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,1,179,1,179,3,179,3827,8,179,1,180,1,180,1,180,1,180, - 1,180,1,180,1,180,3,180,3836,8,180,1,181,1,181,1,181,5,181,3841, - 8,181,10,181,12,181,3844,9,181,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,3,182,3855,8,182,1,183,1,183,1,184,1,184,1,184, - 5,184,3862,8,184,10,184,12,184,3865,9,184,1,185,1,185,1,185,1,186, - 1,186,4,186,3872,8,186,11,186,12,186,3873,1,186,3,186,3877,8,186, - 1,187,1,187,3,187,3881,8,187,1,188,1,188,1,188,1,188,3,188,3887, - 8,188,1,189,1,189,1,190,1,190,1,191,3,191,3894,8,191,1,191,1,191, - 3,191,3898,8,191,1,191,1,191,3,191,3902,8,191,1,191,1,191,3,191, - 3906,8,191,1,191,1,191,3,191,3910,8,191,1,191,1,191,3,191,3914,8, - 191,1,191,1,191,3,191,3918,8,191,1,191,1,191,3,191,3922,8,191,1, - 191,1,191,3,191,3926,8,191,1,191,1,191,3,191,3930,8,191,1,191,3, - 191,3933,8,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1, - 192,1,192,1,192,3,192,3946,8,192,1,193,1,193,1,194,1,194,3,194,3952, - 8,194,1,195,1,195,3,195,3956,8,195,1,196,1,196,1,197,1,197,1,198, - 1,198,1,198,9,1134,1204,1212,1229,1256,1265,1274,1283,1331,4,102, - 274,278,282,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, - 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, - 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, - 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, - 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, - 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, - 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, - 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, - 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, - 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, - 374,376,378,380,382,384,386,388,390,392,394,396,0,64,2,0,78,78,228, - 228,2,0,34,34,246,246,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91, - 91,98,98,5,0,46,46,58,58,108,108,122,122,172,172,1,0,86,87,2,0,108, - 108,122,122,3,0,8,8,96,96,288,288,2,0,8,8,166,166,1,0,334,335,3, - 0,72,72,189,189,260,260,3,0,73,73,190,190,261,261,4,0,102,102,148, - 148,269,269,322,322,3,0,102,102,269,269,322,322,2,0,21,21,86,86, - 2,0,116,116,157,157,3,0,10,10,289,289,330,330,2,0,291,291,336,336, - 2,0,290,290,302,302,2,0,61,61,255,255,2,0,104,104,141,141,2,0,10, - 10,92,92,2,0,381,381,383,383,2,0,93,93,216,216,2,0,208,208,277,277, - 2,0,196,196,359,359,1,0,250,251,1,0,162,163,3,0,10,10,16,16,276, - 276,3,0,111,111,315,315,324,324,2,0,360,361,365,365,2,0,94,94,362, - 364,2,0,360,361,368,368,11,0,67,67,69,69,134,134,179,179,181,181, - 183,183,185,185,230,230,258,258,340,340,347,347,4,0,63,63,65,66, - 267,267,330,330,2,0,74,75,305,305,3,0,76,77,301,301,306,306,2,0, - 36,36,317,317,2,0,138,138,245,245,1,0,286,287,2,0,4,4,123,123,2, - 0,4,4,119,119,3,0,28,28,160,160,310,310,1,0,219,220,1,0,351,358, - 2,0,94,94,360,369,4,0,14,14,140,140,196,196,207,207,2,0,111,111, - 315,315,1,0,360,361,7,0,67,68,134,135,179,186,191,192,258,259,340, - 341,347,348,6,0,67,67,134,134,183,183,185,185,258,258,347,347,2, - 0,185,185,347,347,4,0,67,67,134,134,183,183,258,258,3,0,134,134, - 183,183,258,258,2,0,82,82,351,351,2,0,118,118,225,225,2,0,377,377, - 388,388,1,0,382,383,2,0,96,96,268,268,1,0,376,377,52,0,8,9,11,13, - 15,15,17,19,21,22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62, - 67,91,93,96,98,98,101,101,103,110,113,113,115,118,121,122,125,128, - 131,131,133,139,141,143,145,147,149,151,154,154,156,157,159,159, - 162,192,194,194,198,200,204,206,209,209,211,212,214,218,221,225, - 227,237,239,248,250,261,263,266,268,275,277,291,293,298,301,307, - 309,309,311,321,325,329,332,341,344,344,347,350,16,0,15,15,60,60, - 102,102,124,124,144,144,148,148,155,155,158,158,161,161,193,193, - 202,202,249,249,263,263,269,269,322,322,331,331,19,0,8,14,16,59, - 61,101,103,122,125,143,145,147,149,154,156,157,159,160,162,192,194, - 194,196,201,203,248,250,261,264,268,270,291,293,321,323,330,332, - 350,4578,0,401,1,0,0,0,2,406,1,0,0,0,4,1334,1,0,0,0,6,1338,1,0,0, - 0,8,1340,1,0,0,0,10,1342,1,0,0,0,12,1512,1,0,0,0,14,1514,1,0,0,0, - 16,1529,1,0,0,0,18,1535,1,0,0,0,20,1547,1,0,0,0,22,1560,1,0,0,0, - 24,1563,1,0,0,0,26,1567,1,0,0,0,28,1648,1,0,0,0,30,1650,1,0,0,0, - 32,1654,1,0,0,0,34,1675,1,0,0,0,36,1677,1,0,0,0,38,1679,1,0,0,0, - 40,1686,1,0,0,0,42,1688,1,0,0,0,44,1696,1,0,0,0,46,1705,1,0,0,0, - 48,1716,1,0,0,0,50,1734,1,0,0,0,52,1737,1,0,0,0,54,1748,1,0,0,0, - 56,1764,1,0,0,0,58,1770,1,0,0,0,60,1772,1,0,0,0,62,1783,1,0,0,0, - 64,1790,1,0,0,0,66,1801,1,0,0,0,68,1818,1,0,0,0,70,1826,1,0,0,0, - 72,1828,1,0,0,0,74,1834,1,0,0,0,76,1893,1,0,0,0,78,1895,1,0,0,0, - 80,1897,1,0,0,0,82,1899,1,0,0,0,84,1901,1,0,0,0,86,1903,1,0,0,0, - 88,1905,1,0,0,0,90,1909,1,0,0,0,92,1911,1,0,0,0,94,1919,1,0,0,0, - 96,1927,1,0,0,0,98,1939,1,0,0,0,100,1991,1,0,0,0,102,1994,1,0,0, - 0,104,2029,1,0,0,0,106,2033,1,0,0,0,108,2042,1,0,0,0,110,2075,1, - 0,0,0,112,2121,1,0,0,0,114,2142,1,0,0,0,116,2174,1,0,0,0,118,2186, - 1,0,0,0,120,2189,1,0,0,0,122,2198,1,0,0,0,124,2212,1,0,0,0,126,2231, - 1,0,0,0,128,2251,1,0,0,0,130,2257,1,0,0,0,132,2259,1,0,0,0,134,2267, - 1,0,0,0,136,2271,1,0,0,0,138,2274,1,0,0,0,140,2277,1,0,0,0,142,2303, - 1,0,0,0,144,2305,1,0,0,0,146,2326,1,0,0,0,148,2342,1,0,0,0,150,2383, - 1,0,0,0,152,2388,1,0,0,0,154,2415,1,0,0,0,156,2419,1,0,0,0,158,2441, - 1,0,0,0,160,2443,1,0,0,0,162,2473,1,0,0,0,164,2475,1,0,0,0,166,2482, - 1,0,0,0,168,2495,1,0,0,0,170,2500,1,0,0,0,172,2502,1,0,0,0,174,2517, - 1,0,0,0,176,2541,1,0,0,0,178,2554,1,0,0,0,180,2556,1,0,0,0,182,2558, - 1,0,0,0,184,2562,1,0,0,0,186,2565,1,0,0,0,188,2569,1,0,0,0,190,2573, - 1,0,0,0,192,2576,1,0,0,0,194,2608,1,0,0,0,196,2621,1,0,0,0,198,2626, - 1,0,0,0,200,2645,1,0,0,0,202,2671,1,0,0,0,204,2677,1,0,0,0,206,2679, - 1,0,0,0,208,2715,1,0,0,0,210,2717,1,0,0,0,212,2721,1,0,0,0,214,2729, - 1,0,0,0,216,2740,1,0,0,0,218,2744,1,0,0,0,220,2755,1,0,0,0,222,2790, - 1,0,0,0,224,2792,1,0,0,0,226,2822,1,0,0,0,228,2843,1,0,0,0,230,2863, - 1,0,0,0,232,2869,1,0,0,0,234,2873,1,0,0,0,236,2875,1,0,0,0,238,2897, - 1,0,0,0,240,2948,1,0,0,0,242,2950,1,0,0,0,244,2958,1,0,0,0,246,2966, - 1,0,0,0,248,2974,1,0,0,0,250,2982,1,0,0,0,252,2989,1,0,0,0,254,2995, - 1,0,0,0,256,3006,1,0,0,0,258,3014,1,0,0,0,260,3027,1,0,0,0,262,3042, - 1,0,0,0,264,3046,1,0,0,0,266,3048,1,0,0,0,268,3050,1,0,0,0,270,3056, - 1,0,0,0,272,3058,1,0,0,0,274,3078,1,0,0,0,276,3173,1,0,0,0,278,3179, - 1,0,0,0,280,3205,1,0,0,0,282,3456,1,0,0,0,284,3478,1,0,0,0,286,3495, - 1,0,0,0,288,3497,1,0,0,0,290,3499,1,0,0,0,292,3501,1,0,0,0,294,3503, - 1,0,0,0,296,3505,1,0,0,0,298,3510,1,0,0,0,300,3517,1,0,0,0,302,3521, - 1,0,0,0,304,3526,1,0,0,0,306,3532,1,0,0,0,308,3539,1,0,0,0,310,3541, - 1,0,0,0,312,3546,1,0,0,0,314,3578,1,0,0,0,316,3626,1,0,0,0,318,3628, - 1,0,0,0,320,3636,1,0,0,0,322,3644,1,0,0,0,324,3652,1,0,0,0,326,3665, - 1,0,0,0,328,3667,1,0,0,0,330,3670,1,0,0,0,332,3673,1,0,0,0,334,3681, - 1,0,0,0,336,3690,1,0,0,0,338,3698,1,0,0,0,340,3711,1,0,0,0,342,3713, - 1,0,0,0,344,3720,1,0,0,0,346,3728,1,0,0,0,348,3740,1,0,0,0,350,3745, - 1,0,0,0,352,3754,1,0,0,0,354,3758,1,0,0,0,356,3808,1,0,0,0,358,3826, - 1,0,0,0,360,3835,1,0,0,0,362,3837,1,0,0,0,364,3854,1,0,0,0,366,3856, - 1,0,0,0,368,3858,1,0,0,0,370,3866,1,0,0,0,372,3876,1,0,0,0,374,3880, - 1,0,0,0,376,3886,1,0,0,0,378,3888,1,0,0,0,380,3890,1,0,0,0,382,3932, - 1,0,0,0,384,3945,1,0,0,0,386,3947,1,0,0,0,388,3951,1,0,0,0,390,3955, - 1,0,0,0,392,3957,1,0,0,0,394,3959,1,0,0,0,396,3961,1,0,0,0,398,400, - 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, - 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, - 0,0,0,406,408,3,4,2,0,407,409,5,1,0,0,408,407,1,0,0,0,408,409,1, - 0,0,0,409,3,1,0,0,0,410,1335,3,26,13,0,411,413,3,44,22,0,412,411, - 1,0,0,0,412,413,1,0,0,0,413,414,1,0,0,0,414,1335,3,76,38,0,415,417, - 5,329,0,0,416,418,3,36,18,0,417,416,1,0,0,0,417,418,1,0,0,0,418, - 419,1,0,0,0,419,1335,3,78,39,0,420,421,5,268,0,0,421,424,5,37,0, - 0,422,425,3,374,187,0,423,425,3,386,193,0,424,422,1,0,0,0,424,423, - 1,0,0,0,425,1335,1,0,0,0,426,427,5,59,0,0,427,429,3,36,18,0,428, - 430,3,188,94,0,429,428,1,0,0,0,429,430,1,0,0,0,430,431,1,0,0,0,431, - 439,3,80,40,0,432,438,3,24,12,0,433,438,3,22,11,0,434,435,5,345, - 0,0,435,436,7,0,0,0,436,438,3,52,26,0,437,432,1,0,0,0,437,433,1, - 0,0,0,437,434,1,0,0,0,438,441,1,0,0,0,439,437,1,0,0,0,439,440,1, - 0,0,0,440,1335,1,0,0,0,441,439,1,0,0,0,442,443,5,11,0,0,443,444, - 3,36,18,0,444,445,3,78,39,0,445,446,5,268,0,0,446,447,7,0,0,0,447, - 448,3,52,26,0,448,1335,1,0,0,0,449,450,5,11,0,0,450,451,3,36,18, - 0,451,452,3,78,39,0,452,453,5,268,0,0,453,454,3,22,11,0,454,1335, - 1,0,0,0,455,456,5,96,0,0,456,458,3,36,18,0,457,459,3,190,95,0,458, - 457,1,0,0,0,458,459,1,0,0,0,459,460,1,0,0,0,460,462,3,78,39,0,461, - 463,7,1,0,0,462,461,1,0,0,0,462,463,1,0,0,0,463,1335,1,0,0,0,464, - 465,5,272,0,0,465,468,3,38,19,0,466,467,7,2,0,0,467,469,3,244,122, - 0,468,466,1,0,0,0,468,469,1,0,0,0,469,474,1,0,0,0,470,472,5,162, - 0,0,471,470,1,0,0,0,471,472,1,0,0,0,472,473,1,0,0,0,473,475,3,386, - 193,0,474,471,1,0,0,0,474,475,1,0,0,0,475,1335,1,0,0,0,476,481,3, - 14,7,0,477,478,5,2,0,0,478,479,3,336,168,0,479,480,5,3,0,0,480,482, - 1,0,0,0,481,477,1,0,0,0,481,482,1,0,0,0,482,484,1,0,0,0,483,485, - 3,48,24,0,484,483,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,491, - 3,50,25,0,487,489,5,20,0,0,488,487,1,0,0,0,488,489,1,0,0,0,489,490, - 1,0,0,0,490,492,3,26,13,0,491,488,1,0,0,0,491,492,1,0,0,0,492,1335, - 1,0,0,0,493,494,5,59,0,0,494,496,5,292,0,0,495,497,3,188,94,0,496, - 495,1,0,0,0,496,497,1,0,0,0,497,498,1,0,0,0,498,499,3,82,41,0,499, - 500,5,162,0,0,500,509,3,84,42,0,501,508,3,48,24,0,502,508,3,240, - 120,0,503,508,3,68,34,0,504,508,3,22,11,0,505,506,5,296,0,0,506, - 508,3,52,26,0,507,501,1,0,0,0,507,502,1,0,0,0,507,503,1,0,0,0,507, - 504,1,0,0,0,507,505,1,0,0,0,508,511,1,0,0,0,509,507,1,0,0,0,509, - 510,1,0,0,0,510,1335,1,0,0,0,511,509,1,0,0,0,512,517,3,16,8,0,513, - 514,5,2,0,0,514,515,3,336,168,0,515,516,5,3,0,0,516,518,1,0,0,0, - 517,513,1,0,0,0,517,518,1,0,0,0,518,520,1,0,0,0,519,521,3,48,24, - 0,520,519,1,0,0,0,520,521,1,0,0,0,521,522,1,0,0,0,522,527,3,50,25, - 0,523,525,5,20,0,0,524,523,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0, - 0,526,528,3,26,13,0,527,524,1,0,0,0,527,528,1,0,0,0,528,1335,1,0, - 0,0,529,530,5,13,0,0,530,531,5,292,0,0,531,533,3,84,42,0,532,534, - 3,32,16,0,533,532,1,0,0,0,533,534,1,0,0,0,534,535,1,0,0,0,535,536, - 5,55,0,0,536,544,5,281,0,0,537,545,5,195,0,0,538,539,5,119,0,0,539, - 540,5,50,0,0,540,545,3,92,46,0,541,542,5,119,0,0,542,543,5,10,0, - 0,543,545,5,50,0,0,544,537,1,0,0,0,544,538,1,0,0,0,544,541,1,0,0, - 0,544,545,1,0,0,0,545,1335,1,0,0,0,546,547,5,13,0,0,547,550,5,293, - 0,0,548,549,7,2,0,0,549,551,3,78,39,0,550,548,1,0,0,0,550,551,1, - 0,0,0,551,552,1,0,0,0,552,553,5,55,0,0,553,555,5,281,0,0,554,556, - 5,195,0,0,555,554,1,0,0,0,555,556,1,0,0,0,556,1335,1,0,0,0,557,558, - 5,11,0,0,558,559,5,292,0,0,559,560,3,84,42,0,560,561,5,8,0,0,561, - 562,5,49,0,0,562,563,3,320,160,0,563,1335,1,0,0,0,564,565,5,11,0, - 0,565,566,5,292,0,0,566,567,3,84,42,0,567,568,5,8,0,0,568,569,5, - 50,0,0,569,570,5,2,0,0,570,571,3,318,159,0,571,572,5,3,0,0,572,1335, - 1,0,0,0,573,574,5,11,0,0,574,575,5,292,0,0,575,576,3,84,42,0,576, - 577,5,240,0,0,577,578,5,49,0,0,578,579,3,90,45,0,579,580,5,308,0, - 0,580,581,3,94,47,0,581,1335,1,0,0,0,582,583,5,11,0,0,583,584,5, - 292,0,0,584,585,3,84,42,0,585,586,5,96,0,0,586,588,5,49,0,0,587, - 589,3,190,95,0,588,587,1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590, - 591,3,90,45,0,591,1335,1,0,0,0,592,593,5,11,0,0,593,594,5,292,0, - 0,594,595,3,84,42,0,595,596,5,96,0,0,596,598,5,50,0,0,597,599,3, - 190,95,0,598,597,1,0,0,0,598,599,1,0,0,0,599,600,1,0,0,0,600,601, - 5,2,0,0,601,602,3,92,46,0,602,603,5,3,0,0,603,1335,1,0,0,0,604,609, - 5,11,0,0,605,606,5,292,0,0,606,610,3,84,42,0,607,608,5,337,0,0,608, - 610,3,88,44,0,609,605,1,0,0,0,609,607,1,0,0,0,610,611,1,0,0,0,611, - 612,5,240,0,0,612,613,5,308,0,0,613,614,3,244,122,0,614,1335,1,0, - 0,0,615,620,5,11,0,0,616,617,5,292,0,0,617,621,3,84,42,0,618,619, - 5,337,0,0,619,621,3,88,44,0,620,616,1,0,0,0,620,618,1,0,0,0,621, - 622,1,0,0,0,622,623,5,268,0,0,623,624,5,296,0,0,624,625,3,52,26, - 0,625,1335,1,0,0,0,626,631,5,11,0,0,627,628,5,292,0,0,628,632,3, - 84,42,0,629,630,5,337,0,0,630,632,3,88,44,0,631,627,1,0,0,0,631, - 629,1,0,0,0,632,633,1,0,0,0,633,634,5,327,0,0,634,636,5,296,0,0, - 635,637,3,190,95,0,636,635,1,0,0,0,636,637,1,0,0,0,637,638,1,0,0, - 0,638,639,3,52,26,0,639,1335,1,0,0,0,640,641,5,11,0,0,641,642,5, - 292,0,0,642,643,3,84,42,0,643,645,7,3,0,0,644,646,5,49,0,0,645,644, - 1,0,0,0,645,646,1,0,0,0,646,647,1,0,0,0,647,649,3,90,45,0,648,650, - 3,384,192,0,649,648,1,0,0,0,649,650,1,0,0,0,650,1335,1,0,0,0,651, - 652,5,11,0,0,652,653,5,292,0,0,653,655,3,84,42,0,654,656,3,32,16, - 0,655,654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,659,5,39,0, - 0,658,660,5,49,0,0,659,658,1,0,0,0,659,660,1,0,0,0,660,661,1,0,0, - 0,661,662,3,90,45,0,662,664,3,334,167,0,663,665,3,312,156,0,664, - 663,1,0,0,0,664,665,1,0,0,0,665,1335,1,0,0,0,666,667,5,11,0,0,667, - 668,5,292,0,0,668,670,3,84,42,0,669,671,3,32,16,0,670,669,1,0,0, - 0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,5,243,0,0,673,674,5,50, - 0,0,674,675,5,2,0,0,675,676,3,322,161,0,676,677,5,3,0,0,677,1335, - 1,0,0,0,678,679,5,11,0,0,679,680,5,292,0,0,680,682,3,84,42,0,681, - 683,3,32,16,0,682,681,1,0,0,0,682,683,1,0,0,0,683,684,1,0,0,0,684, - 685,5,268,0,0,685,686,5,265,0,0,686,690,3,386,193,0,687,688,5,345, - 0,0,688,689,5,266,0,0,689,691,3,52,26,0,690,687,1,0,0,0,690,691, - 1,0,0,0,691,1335,1,0,0,0,692,693,5,11,0,0,693,694,5,292,0,0,694, - 696,3,84,42,0,695,697,3,32,16,0,696,695,1,0,0,0,696,697,1,0,0,0, - 697,698,1,0,0,0,698,699,5,268,0,0,699,700,5,266,0,0,700,701,3,52, - 26,0,701,1335,1,0,0,0,702,707,5,11,0,0,703,704,5,292,0,0,704,708, - 3,84,42,0,705,706,5,337,0,0,706,708,3,88,44,0,707,703,1,0,0,0,707, - 705,1,0,0,0,708,709,1,0,0,0,709,711,5,8,0,0,710,712,3,188,94,0,711, - 710,1,0,0,0,711,712,1,0,0,0,712,714,1,0,0,0,713,715,3,30,15,0,714, - 713,1,0,0,0,715,716,1,0,0,0,716,714,1,0,0,0,716,717,1,0,0,0,717, - 1335,1,0,0,0,718,719,5,11,0,0,719,720,5,292,0,0,720,721,3,84,42, - 0,721,722,3,32,16,0,722,723,5,240,0,0,723,724,5,308,0,0,724,725, - 3,32,16,0,725,1335,1,0,0,0,726,731,5,11,0,0,727,728,5,292,0,0,728, - 732,3,84,42,0,729,730,5,337,0,0,730,732,3,88,44,0,731,727,1,0,0, - 0,731,729,1,0,0,0,732,733,1,0,0,0,733,735,5,96,0,0,734,736,3,190, - 95,0,735,734,1,0,0,0,735,736,1,0,0,0,736,737,1,0,0,0,737,742,3,32, - 16,0,738,739,5,4,0,0,739,741,3,32,16,0,740,738,1,0,0,0,741,744,1, - 0,0,0,742,740,1,0,0,0,742,743,1,0,0,0,743,746,1,0,0,0,744,742,1, - 0,0,0,745,747,5,229,0,0,746,745,1,0,0,0,746,747,1,0,0,0,747,1335, - 1,0,0,0,748,749,5,11,0,0,749,750,5,292,0,0,750,752,3,84,42,0,751, - 753,3,32,16,0,752,751,1,0,0,0,752,753,1,0,0,0,753,754,1,0,0,0,754, - 755,5,268,0,0,755,756,3,22,11,0,756,1335,1,0,0,0,757,758,5,11,0, - 0,758,759,5,292,0,0,759,760,3,84,42,0,760,761,5,236,0,0,761,762, - 5,218,0,0,762,1335,1,0,0,0,763,764,5,11,0,0,764,765,5,175,0,0,765, - 766,5,337,0,0,766,767,3,88,44,0,767,768,7,4,0,0,768,769,5,247,0, - 0,769,1335,1,0,0,0,770,771,5,11,0,0,771,772,5,175,0,0,772,773,5, - 337,0,0,773,774,3,88,44,0,774,775,5,268,0,0,775,776,5,296,0,0,776, - 777,3,52,26,0,777,1335,1,0,0,0,778,779,5,96,0,0,779,781,5,292,0, - 0,780,782,3,190,95,0,781,780,1,0,0,0,781,782,1,0,0,0,782,783,1,0, - 0,0,783,785,3,84,42,0,784,786,5,229,0,0,785,784,1,0,0,0,785,786, - 1,0,0,0,786,1335,1,0,0,0,787,788,5,96,0,0,788,790,5,337,0,0,789, - 791,3,190,95,0,790,789,1,0,0,0,790,791,1,0,0,0,791,792,1,0,0,0,792, - 1335,3,88,44,0,793,794,5,96,0,0,794,795,5,175,0,0,795,797,5,337, - 0,0,796,798,3,190,95,0,797,796,1,0,0,0,797,798,1,0,0,0,798,799,1, - 0,0,0,799,1335,3,88,44,0,800,803,5,59,0,0,801,802,5,207,0,0,802, - 804,5,243,0,0,803,801,1,0,0,0,803,804,1,0,0,0,804,809,1,0,0,0,805, - 807,5,128,0,0,806,805,1,0,0,0,806,807,1,0,0,0,807,808,1,0,0,0,808, - 810,5,297,0,0,809,806,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811, - 813,5,337,0,0,812,814,3,188,94,0,813,812,1,0,0,0,813,814,1,0,0,0, - 814,815,1,0,0,0,815,817,3,86,43,0,816,818,3,218,109,0,817,816,1, - 0,0,0,817,818,1,0,0,0,818,827,1,0,0,0,819,826,3,24,12,0,820,821, - 5,217,0,0,821,822,5,202,0,0,822,826,3,210,105,0,823,824,5,296,0, - 0,824,826,3,52,26,0,825,819,1,0,0,0,825,820,1,0,0,0,825,823,1,0, - 0,0,826,829,1,0,0,0,827,825,1,0,0,0,827,828,1,0,0,0,828,830,1,0, - 0,0,829,827,1,0,0,0,830,831,5,20,0,0,831,832,3,26,13,0,832,1335, - 1,0,0,0,833,836,5,59,0,0,834,835,5,207,0,0,835,837,5,243,0,0,836, - 834,1,0,0,0,836,837,1,0,0,0,837,839,1,0,0,0,838,840,5,128,0,0,839, - 838,1,0,0,0,839,840,1,0,0,0,840,841,1,0,0,0,841,842,5,297,0,0,842, - 843,5,337,0,0,843,848,3,86,43,0,844,845,5,2,0,0,845,846,3,332,166, - 0,846,847,5,3,0,0,847,849,1,0,0,0,848,844,1,0,0,0,848,849,1,0,0, - 0,849,850,1,0,0,0,850,853,3,48,24,0,851,852,5,206,0,0,852,854,3, - 52,26,0,853,851,1,0,0,0,853,854,1,0,0,0,854,1335,1,0,0,0,855,856, - 5,11,0,0,856,857,5,337,0,0,857,859,3,88,44,0,858,860,5,20,0,0,859, - 858,1,0,0,0,859,860,1,0,0,0,860,861,1,0,0,0,861,862,3,26,13,0,862, - 1335,1,0,0,0,863,866,5,59,0,0,864,865,5,207,0,0,865,867,5,243,0, - 0,866,864,1,0,0,0,866,867,1,0,0,0,867,869,1,0,0,0,868,870,5,297, - 0,0,869,868,1,0,0,0,869,870,1,0,0,0,870,871,1,0,0,0,871,873,5,125, - 0,0,872,874,3,188,94,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1, - 0,0,0,875,876,3,366,183,0,876,877,5,20,0,0,877,887,3,386,193,0,878, - 879,5,331,0,0,879,884,3,74,37,0,880,881,5,4,0,0,881,883,3,74,37, - 0,882,880,1,0,0,0,883,886,1,0,0,0,884,882,1,0,0,0,884,885,1,0,0, - 0,885,888,1,0,0,0,886,884,1,0,0,0,887,878,1,0,0,0,887,888,1,0,0, - 0,888,1335,1,0,0,0,889,890,5,59,0,0,890,891,5,175,0,0,891,893,5, - 337,0,0,892,894,3,188,94,0,893,892,1,0,0,0,893,894,1,0,0,0,894,895, - 1,0,0,0,895,897,3,86,43,0,896,898,3,48,24,0,897,896,1,0,0,0,897, - 898,1,0,0,0,898,914,1,0,0,0,899,900,5,206,0,0,900,913,3,52,26,0, - 901,902,5,217,0,0,902,903,5,31,0,0,903,913,3,258,129,0,904,913,3, - 20,10,0,905,913,3,18,9,0,906,913,3,240,120,0,907,913,3,68,34,0,908, - 913,3,22,11,0,909,913,3,24,12,0,910,911,5,296,0,0,911,913,3,52,26, - 0,912,899,1,0,0,0,912,901,1,0,0,0,912,904,1,0,0,0,912,905,1,0,0, - 0,912,906,1,0,0,0,912,907,1,0,0,0,912,908,1,0,0,0,912,909,1,0,0, - 0,912,910,1,0,0,0,913,916,1,0,0,0,914,912,1,0,0,0,914,915,1,0,0, - 0,915,917,1,0,0,0,916,914,1,0,0,0,917,918,5,20,0,0,918,919,3,26, - 13,0,919,1335,1,0,0,0,920,922,5,96,0,0,921,923,5,297,0,0,922,921, - 1,0,0,0,922,923,1,0,0,0,923,924,1,0,0,0,924,926,5,125,0,0,925,927, - 3,190,95,0,926,925,1,0,0,0,926,927,1,0,0,0,927,928,1,0,0,0,928,1335, - 3,364,182,0,929,932,5,81,0,0,930,931,5,207,0,0,931,933,5,243,0,0, - 932,930,1,0,0,0,932,933,1,0,0,0,933,935,1,0,0,0,934,936,5,335,0, - 0,935,934,1,0,0,0,935,936,1,0,0,0,936,937,1,0,0,0,937,939,3,364, - 182,0,938,940,3,316,158,0,939,938,1,0,0,0,939,940,1,0,0,0,940,942, - 1,0,0,0,941,943,3,330,165,0,942,941,1,0,0,0,942,943,1,0,0,0,943, - 1335,1,0,0,0,944,945,5,96,0,0,945,946,5,297,0,0,946,948,5,335,0, - 0,947,949,3,190,95,0,948,947,1,0,0,0,948,949,1,0,0,0,949,953,1,0, - 0,0,950,954,3,84,42,0,951,954,3,88,44,0,952,954,3,364,182,0,953, - 950,1,0,0,0,953,951,1,0,0,0,953,952,1,0,0,0,954,1335,1,0,0,0,955, - 957,5,106,0,0,956,958,7,5,0,0,957,956,1,0,0,0,957,958,1,0,0,0,958, - 959,1,0,0,0,959,1335,3,4,2,0,960,961,5,272,0,0,961,964,5,293,0,0, - 962,963,7,2,0,0,963,965,3,78,39,0,964,962,1,0,0,0,964,965,1,0,0, - 0,965,970,1,0,0,0,966,968,5,162,0,0,967,966,1,0,0,0,967,968,1,0, - 0,0,968,969,1,0,0,0,969,971,3,386,193,0,970,967,1,0,0,0,970,971, - 1,0,0,0,971,1335,1,0,0,0,972,973,5,272,0,0,973,974,5,292,0,0,974, - 977,5,108,0,0,975,976,7,2,0,0,976,978,3,78,39,0,977,975,1,0,0,0, - 977,978,1,0,0,0,978,979,1,0,0,0,979,980,5,162,0,0,980,982,3,386, - 193,0,981,983,3,32,16,0,982,981,1,0,0,0,982,983,1,0,0,0,983,1335, - 1,0,0,0,984,985,5,272,0,0,985,986,5,296,0,0,986,991,3,84,42,0,987, - 988,5,2,0,0,988,989,3,56,28,0,989,990,5,3,0,0,990,992,1,0,0,0,991, - 987,1,0,0,0,991,992,1,0,0,0,992,1335,1,0,0,0,993,994,5,272,0,0,994, - 995,5,50,0,0,995,996,7,2,0,0,996,999,3,84,42,0,997,998,7,2,0,0,998, - 1000,3,78,39,0,999,997,1,0,0,0,999,1000,1,0,0,0,1000,1335,1,0,0, - 0,1001,1002,5,272,0,0,1002,1005,5,338,0,0,1003,1004,7,2,0,0,1004, - 1006,3,78,39,0,1005,1003,1,0,0,0,1005,1006,1,0,0,0,1006,1011,1,0, - 0,0,1007,1009,5,162,0,0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009, - 1010,1,0,0,0,1010,1012,3,386,193,0,1011,1008,1,0,0,0,1011,1012,1, - 0,0,0,1012,1335,1,0,0,0,1013,1014,5,272,0,0,1014,1015,5,218,0,0, - 1015,1017,3,84,42,0,1016,1018,3,32,16,0,1017,1016,1,0,0,0,1017,1018, - 1,0,0,0,1018,1335,1,0,0,0,1019,1021,5,272,0,0,1020,1022,3,146,73, - 0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0,0,1023,1026, - 5,126,0,0,1024,1025,7,2,0,0,1025,1027,3,78,39,0,1026,1024,1,0,0, - 0,1026,1027,1,0,0,0,1027,1035,1,0,0,0,1028,1030,5,162,0,0,1029,1028, - 1,0,0,0,1029,1030,1,0,0,0,1030,1033,1,0,0,0,1031,1034,3,244,122, - 0,1032,1034,3,386,193,0,1033,1031,1,0,0,0,1033,1032,1,0,0,0,1034, - 1036,1,0,0,0,1035,1029,1,0,0,0,1035,1036,1,0,0,0,1036,1335,1,0,0, - 0,1037,1038,5,272,0,0,1038,1039,5,59,0,0,1039,1040,5,292,0,0,1040, - 1043,3,84,42,0,1041,1042,5,20,0,0,1042,1044,5,265,0,0,1043,1041, - 1,0,0,0,1043,1044,1,0,0,0,1044,1335,1,0,0,0,1045,1046,5,272,0,0, - 1046,1047,5,62,0,0,1047,1335,3,36,18,0,1048,1049,5,272,0,0,1049, - 1054,5,38,0,0,1050,1052,5,162,0,0,1051,1050,1,0,0,0,1051,1052,1, - 0,0,0,1052,1053,1,0,0,0,1053,1055,3,386,193,0,1054,1051,1,0,0,0, - 1054,1055,1,0,0,0,1055,1335,1,0,0,0,1056,1057,5,272,0,0,1057,1058, - 5,175,0,0,1058,1061,5,338,0,0,1059,1060,7,2,0,0,1060,1062,3,78,39, - 0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1067,1,0,0,0,1063,1065, - 5,162,0,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0, - 1066,1068,3,386,193,0,1067,1064,1,0,0,0,1067,1068,1,0,0,0,1068,1335, - 1,0,0,0,1069,1070,5,272,0,0,1070,1071,5,59,0,0,1071,1072,5,175,0, - 0,1072,1073,5,337,0,0,1073,1076,3,88,44,0,1074,1075,5,20,0,0,1075, - 1077,5,265,0,0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,1335,1,0, - 0,0,1078,1079,7,6,0,0,1079,1081,5,125,0,0,1080,1082,5,108,0,0,1081, - 1080,1,0,0,0,1081,1082,1,0,0,0,1082,1083,1,0,0,0,1083,1335,3,40, - 20,0,1084,1085,7,6,0,0,1085,1087,5,72,0,0,1086,1088,5,108,0,0,1087, - 1086,1,0,0,0,1087,1088,1,0,0,0,1088,1089,1,0,0,0,1089,1335,3,78, - 39,0,1090,1092,7,6,0,0,1091,1093,5,292,0,0,1092,1091,1,0,0,0,1092, - 1093,1,0,0,0,1093,1095,1,0,0,0,1094,1096,7,7,0,0,1095,1094,1,0,0, - 0,1095,1096,1,0,0,0,1096,1097,1,0,0,0,1097,1099,3,84,42,0,1098,1100, - 3,32,16,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1102,1,0,0,0, - 1101,1103,3,42,21,0,1102,1101,1,0,0,0,1102,1103,1,0,0,0,1103,1335, - 1,0,0,0,1104,1106,7,6,0,0,1105,1107,5,231,0,0,1106,1105,1,0,0,0, - 1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1335,3,26,13,0,1109,1110, - 5,51,0,0,1110,1111,5,202,0,0,1111,1112,3,36,18,0,1112,1113,3,78, - 39,0,1113,1114,5,153,0,0,1114,1115,3,388,194,0,1115,1335,1,0,0,0, - 1116,1117,5,51,0,0,1117,1118,5,202,0,0,1118,1119,5,292,0,0,1119, - 1120,3,84,42,0,1120,1121,5,153,0,0,1121,1122,3,388,194,0,1122,1335, - 1,0,0,0,1123,1124,5,239,0,0,1124,1125,5,292,0,0,1125,1335,3,84,42, - 0,1126,1127,5,239,0,0,1127,1128,5,125,0,0,1128,1335,3,364,182,0, - 1129,1137,5,239,0,0,1130,1138,3,386,193,0,1131,1133,9,0,0,0,1132, - 1131,1,0,0,0,1133,1136,1,0,0,0,1134,1135,1,0,0,0,1134,1132,1,0,0, - 0,1135,1138,1,0,0,0,1136,1134,1,0,0,0,1137,1130,1,0,0,0,1137,1134, - 1,0,0,0,1138,1335,1,0,0,0,1139,1140,5,239,0,0,1140,1141,5,175,0, - 0,1141,1142,5,337,0,0,1142,1335,3,88,44,0,1143,1145,5,33,0,0,1144, - 1146,5,159,0,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1147,1,0, - 0,0,1147,1148,5,292,0,0,1148,1151,3,84,42,0,1149,1150,5,206,0,0, - 1150,1152,3,52,26,0,1151,1149,1,0,0,0,1151,1152,1,0,0,0,1152,1157, - 1,0,0,0,1153,1155,5,20,0,0,1154,1153,1,0,0,0,1154,1155,1,0,0,0,1155, - 1156,1,0,0,0,1156,1158,3,26,13,0,1157,1154,1,0,0,0,1157,1158,1,0, - 0,0,1158,1335,1,0,0,0,1159,1160,5,321,0,0,1160,1162,5,292,0,0,1161, - 1163,3,190,95,0,1162,1161,1,0,0,0,1162,1163,1,0,0,0,1163,1164,1, - 0,0,0,1164,1335,3,84,42,0,1165,1166,5,43,0,0,1166,1335,5,33,0,0, - 1167,1168,5,167,0,0,1168,1170,5,70,0,0,1169,1171,5,168,0,0,1170, - 1169,1,0,0,0,1170,1171,1,0,0,0,1171,1172,1,0,0,0,1172,1173,5,145, - 0,0,1173,1175,3,386,193,0,1174,1176,5,215,0,0,1175,1174,1,0,0,0, - 1175,1176,1,0,0,0,1176,1177,1,0,0,0,1177,1178,5,152,0,0,1178,1179, - 5,292,0,0,1179,1181,3,84,42,0,1180,1182,3,32,16,0,1181,1180,1,0, - 0,0,1181,1182,1,0,0,0,1182,1335,1,0,0,0,1183,1184,5,316,0,0,1184, - 1185,5,292,0,0,1185,1187,3,84,42,0,1186,1188,3,32,16,0,1187,1186, - 1,0,0,0,1187,1188,1,0,0,0,1188,1335,1,0,0,0,1189,1191,5,187,0,0, - 1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1192,1,0,0,0,1192,1193, - 5,241,0,0,1193,1194,5,292,0,0,1194,1197,3,84,42,0,1195,1196,7,8, - 0,0,1196,1198,5,218,0,0,1197,1195,1,0,0,0,1197,1198,1,0,0,0,1198, - 1335,1,0,0,0,1199,1200,7,9,0,0,1200,1204,3,374,187,0,1201,1203,9, - 0,0,0,1202,1201,1,0,0,0,1203,1206,1,0,0,0,1204,1205,1,0,0,0,1204, - 1202,1,0,0,0,1205,1335,1,0,0,0,1206,1204,1,0,0,0,1207,1208,5,268, - 0,0,1208,1212,5,252,0,0,1209,1211,9,0,0,0,1210,1209,1,0,0,0,1211, - 1214,1,0,0,0,1212,1213,1,0,0,0,1212,1210,1,0,0,0,1213,1335,1,0,0, - 0,1214,1212,1,0,0,0,1215,1216,5,268,0,0,1216,1217,5,300,0,0,1217, - 1218,5,349,0,0,1218,1335,3,296,148,0,1219,1220,5,268,0,0,1220,1221, - 5,300,0,0,1221,1222,5,349,0,0,1222,1335,3,6,3,0,1223,1224,5,268, - 0,0,1224,1225,5,300,0,0,1225,1229,5,349,0,0,1226,1228,9,0,0,0,1227, - 1226,1,0,0,0,1228,1231,1,0,0,0,1229,1230,1,0,0,0,1229,1227,1,0,0, - 0,1230,1335,1,0,0,0,1231,1229,1,0,0,0,1232,1233,5,268,0,0,1233,1234, - 7,10,0,0,1234,1335,3,132,66,0,1235,1236,5,268,0,0,1236,1237,7,10, - 0,0,1237,1238,5,2,0,0,1238,1239,3,242,121,0,1239,1240,5,3,0,0,1240, - 1241,5,351,0,0,1241,1242,5,2,0,0,1242,1243,3,26,13,0,1243,1244,5, - 3,0,0,1244,1335,1,0,0,0,1245,1246,5,268,0,0,1246,1247,3,8,4,0,1247, - 1248,5,351,0,0,1248,1249,3,10,5,0,1249,1335,1,0,0,0,1250,1251,5, - 268,0,0,1251,1259,3,8,4,0,1252,1256,5,351,0,0,1253,1255,9,0,0,0, - 1254,1253,1,0,0,0,1255,1258,1,0,0,0,1256,1257,1,0,0,0,1256,1254, - 1,0,0,0,1257,1260,1,0,0,0,1258,1256,1,0,0,0,1259,1252,1,0,0,0,1259, - 1260,1,0,0,0,1260,1335,1,0,0,0,1261,1265,5,268,0,0,1262,1264,9,0, - 0,0,1263,1262,1,0,0,0,1264,1267,1,0,0,0,1265,1266,1,0,0,0,1265,1263, - 1,0,0,0,1266,1268,1,0,0,0,1267,1265,1,0,0,0,1268,1269,5,351,0,0, - 1269,1335,3,10,5,0,1270,1274,5,268,0,0,1271,1273,9,0,0,0,1272,1271, - 1,0,0,0,1273,1276,1,0,0,0,1274,1275,1,0,0,0,1274,1272,1,0,0,0,1275, - 1335,1,0,0,0,1276,1274,1,0,0,0,1277,1278,5,244,0,0,1278,1335,3,8, - 4,0,1279,1283,5,244,0,0,1280,1282,9,0,0,0,1281,1280,1,0,0,0,1282, - 1285,1,0,0,0,1283,1284,1,0,0,0,1283,1281,1,0,0,0,1284,1335,1,0,0, - 0,1285,1283,1,0,0,0,1286,1287,5,59,0,0,1287,1289,5,142,0,0,1288, - 1290,3,188,94,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1, - 0,0,0,1291,1292,3,374,187,0,1292,1294,5,202,0,0,1293,1295,5,292, - 0,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1299, - 3,84,42,0,1297,1298,5,331,0,0,1298,1300,3,374,187,0,1299,1297,1, - 0,0,0,1299,1300,1,0,0,0,1300,1301,1,0,0,0,1301,1302,5,2,0,0,1302, - 1303,3,246,123,0,1303,1306,5,3,0,0,1304,1305,5,206,0,0,1305,1307, - 3,52,26,0,1306,1304,1,0,0,0,1306,1307,1,0,0,0,1307,1335,1,0,0,0, - 1308,1309,5,96,0,0,1309,1311,5,142,0,0,1310,1312,3,190,95,0,1311, - 1310,1,0,0,0,1311,1312,1,0,0,0,1312,1313,1,0,0,0,1313,1314,3,374, - 187,0,1314,1316,5,202,0,0,1315,1317,5,292,0,0,1316,1315,1,0,0,0, - 1316,1317,1,0,0,0,1317,1318,1,0,0,0,1318,1319,3,84,42,0,1319,1335, - 1,0,0,0,1320,1321,5,204,0,0,1321,1323,3,84,42,0,1322,1324,3,136, - 68,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325, - 1326,3,352,176,0,1326,1335,1,0,0,0,1327,1331,3,12,6,0,1328,1330, - 9,0,0,0,1329,1328,1,0,0,0,1330,1333,1,0,0,0,1331,1332,1,0,0,0,1331, - 1329,1,0,0,0,1332,1335,1,0,0,0,1333,1331,1,0,0,0,1334,410,1,0,0, - 0,1334,412,1,0,0,0,1334,415,1,0,0,0,1334,420,1,0,0,0,1334,426,1, - 0,0,0,1334,442,1,0,0,0,1334,449,1,0,0,0,1334,455,1,0,0,0,1334,464, - 1,0,0,0,1334,476,1,0,0,0,1334,493,1,0,0,0,1334,512,1,0,0,0,1334, - 529,1,0,0,0,1334,546,1,0,0,0,1334,557,1,0,0,0,1334,564,1,0,0,0,1334, - 573,1,0,0,0,1334,582,1,0,0,0,1334,592,1,0,0,0,1334,604,1,0,0,0,1334, - 615,1,0,0,0,1334,626,1,0,0,0,1334,640,1,0,0,0,1334,651,1,0,0,0,1334, - 666,1,0,0,0,1334,678,1,0,0,0,1334,692,1,0,0,0,1334,702,1,0,0,0,1334, - 718,1,0,0,0,1334,726,1,0,0,0,1334,748,1,0,0,0,1334,757,1,0,0,0,1334, - 763,1,0,0,0,1334,770,1,0,0,0,1334,778,1,0,0,0,1334,787,1,0,0,0,1334, - 793,1,0,0,0,1334,800,1,0,0,0,1334,833,1,0,0,0,1334,855,1,0,0,0,1334, - 863,1,0,0,0,1334,889,1,0,0,0,1334,920,1,0,0,0,1334,929,1,0,0,0,1334, - 944,1,0,0,0,1334,955,1,0,0,0,1334,960,1,0,0,0,1334,972,1,0,0,0,1334, - 984,1,0,0,0,1334,993,1,0,0,0,1334,1001,1,0,0,0,1334,1013,1,0,0,0, - 1334,1019,1,0,0,0,1334,1037,1,0,0,0,1334,1045,1,0,0,0,1334,1048, - 1,0,0,0,1334,1056,1,0,0,0,1334,1069,1,0,0,0,1334,1078,1,0,0,0,1334, - 1084,1,0,0,0,1334,1090,1,0,0,0,1334,1104,1,0,0,0,1334,1109,1,0,0, - 0,1334,1116,1,0,0,0,1334,1123,1,0,0,0,1334,1126,1,0,0,0,1334,1129, - 1,0,0,0,1334,1139,1,0,0,0,1334,1143,1,0,0,0,1334,1159,1,0,0,0,1334, - 1165,1,0,0,0,1334,1167,1,0,0,0,1334,1183,1,0,0,0,1334,1190,1,0,0, - 0,1334,1199,1,0,0,0,1334,1207,1,0,0,0,1334,1215,1,0,0,0,1334,1219, - 1,0,0,0,1334,1223,1,0,0,0,1334,1232,1,0,0,0,1334,1235,1,0,0,0,1334, - 1245,1,0,0,0,1334,1250,1,0,0,0,1334,1261,1,0,0,0,1334,1270,1,0,0, - 0,1334,1277,1,0,0,0,1334,1279,1,0,0,0,1334,1286,1,0,0,0,1334,1308, - 1,0,0,0,1334,1320,1,0,0,0,1334,1327,1,0,0,0,1335,5,1,0,0,0,1336, - 1339,3,386,193,0,1337,1339,5,168,0,0,1338,1336,1,0,0,0,1338,1337, - 1,0,0,0,1339,7,1,0,0,0,1340,1341,3,378,189,0,1341,9,1,0,0,0,1342, - 1343,3,380,190,0,1343,11,1,0,0,0,1344,1345,5,59,0,0,1345,1513,5, - 252,0,0,1346,1347,5,96,0,0,1347,1513,5,252,0,0,1348,1350,5,129,0, - 0,1349,1351,5,252,0,0,1350,1349,1,0,0,0,1350,1351,1,0,0,0,1351,1513, - 1,0,0,0,1352,1354,5,248,0,0,1353,1355,5,252,0,0,1354,1353,1,0,0, - 0,1354,1355,1,0,0,0,1355,1513,1,0,0,0,1356,1357,5,272,0,0,1357,1513, - 5,129,0,0,1358,1359,5,272,0,0,1359,1361,5,252,0,0,1360,1362,5,129, - 0,0,1361,1360,1,0,0,0,1361,1362,1,0,0,0,1362,1513,1,0,0,0,1363,1364, - 5,272,0,0,1364,1513,5,227,0,0,1365,1366,5,272,0,0,1366,1513,5,253, - 0,0,1367,1368,5,272,0,0,1368,1369,5,62,0,0,1369,1513,5,253,0,0,1370, - 1371,5,107,0,0,1371,1513,5,292,0,0,1372,1373,5,139,0,0,1373,1513, - 5,292,0,0,1374,1375,5,272,0,0,1375,1513,5,54,0,0,1376,1377,5,272, - 0,0,1377,1378,5,59,0,0,1378,1513,5,292,0,0,1379,1380,5,272,0,0,1380, - 1513,5,312,0,0,1381,1382,5,272,0,0,1382,1513,5,143,0,0,1383,1384, - 5,272,0,0,1384,1513,5,171,0,0,1385,1386,5,59,0,0,1386,1513,5,142, - 0,0,1387,1388,5,96,0,0,1388,1513,5,142,0,0,1389,1390,5,11,0,0,1390, - 1513,5,142,0,0,1391,1392,5,170,0,0,1392,1513,5,292,0,0,1393,1394, - 5,170,0,0,1394,1513,5,72,0,0,1395,1396,5,325,0,0,1396,1513,5,292, - 0,0,1397,1398,5,325,0,0,1398,1513,5,72,0,0,1399,1400,5,59,0,0,1400, - 1401,5,297,0,0,1401,1513,5,174,0,0,1402,1403,5,96,0,0,1403,1404, - 5,297,0,0,1404,1513,5,174,0,0,1405,1406,5,11,0,0,1406,1407,5,292, - 0,0,1407,1408,3,84,42,0,1408,1409,5,196,0,0,1409,1410,5,45,0,0,1410, - 1513,1,0,0,0,1411,1412,5,11,0,0,1412,1413,5,292,0,0,1413,1414,3, - 84,42,0,1414,1415,5,45,0,0,1415,1416,5,31,0,0,1416,1513,1,0,0,0, - 1417,1418,5,11,0,0,1418,1419,5,292,0,0,1419,1420,3,84,42,0,1420, - 1421,5,196,0,0,1421,1422,5,278,0,0,1422,1513,1,0,0,0,1423,1424,5, - 11,0,0,1424,1425,5,292,0,0,1425,1426,3,84,42,0,1426,1427,5,274,0, - 0,1427,1428,5,31,0,0,1428,1513,1,0,0,0,1429,1430,5,11,0,0,1430,1431, - 5,292,0,0,1431,1432,3,84,42,0,1432,1433,5,196,0,0,1433,1434,5,274, - 0,0,1434,1513,1,0,0,0,1435,1436,5,11,0,0,1436,1437,5,292,0,0,1437, - 1438,3,84,42,0,1438,1439,5,196,0,0,1439,1440,5,282,0,0,1440,1441, - 5,20,0,0,1441,1442,5,89,0,0,1442,1513,1,0,0,0,1443,1444,5,11,0,0, - 1444,1445,5,292,0,0,1445,1446,3,84,42,0,1446,1447,5,268,0,0,1447, - 1448,5,274,0,0,1448,1449,5,169,0,0,1449,1513,1,0,0,0,1450,1451,5, - 11,0,0,1451,1452,5,292,0,0,1452,1453,3,84,42,0,1453,1454,5,103,0, - 0,1454,1455,5,216,0,0,1455,1513,1,0,0,0,1456,1457,5,11,0,0,1457, - 1458,5,292,0,0,1458,1459,3,84,42,0,1459,1460,5,18,0,0,1460,1461, - 5,216,0,0,1461,1513,1,0,0,0,1462,1463,5,11,0,0,1463,1464,5,292,0, - 0,1464,1465,3,84,42,0,1465,1466,5,319,0,0,1466,1467,5,216,0,0,1467, - 1513,1,0,0,0,1468,1469,5,11,0,0,1469,1470,5,292,0,0,1470,1471,3, - 84,42,0,1471,1472,5,309,0,0,1472,1513,1,0,0,0,1473,1474,5,11,0,0, - 1474,1475,5,292,0,0,1475,1477,3,84,42,0,1476,1478,3,32,16,0,1477, - 1476,1,0,0,0,1477,1478,1,0,0,0,1478,1479,1,0,0,0,1479,1480,5,53, - 0,0,1480,1513,1,0,0,0,1481,1482,5,11,0,0,1482,1483,5,292,0,0,1483, - 1485,3,84,42,0,1484,1486,3,32,16,0,1485,1484,1,0,0,0,1485,1486,1, - 0,0,0,1486,1487,1,0,0,0,1487,1488,5,56,0,0,1488,1513,1,0,0,0,1489, - 1490,5,11,0,0,1490,1491,5,292,0,0,1491,1493,3,84,42,0,1492,1494, - 3,32,16,0,1493,1492,1,0,0,0,1493,1494,1,0,0,0,1494,1495,1,0,0,0, - 1495,1496,5,268,0,0,1496,1497,5,115,0,0,1497,1513,1,0,0,0,1498,1499, - 5,11,0,0,1499,1500,5,292,0,0,1500,1502,3,84,42,0,1501,1503,3,32, - 16,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1504,1,0,0,0,1504, - 1505,5,243,0,0,1505,1506,5,50,0,0,1506,1513,1,0,0,0,1507,1508,5, - 280,0,0,1508,1513,5,311,0,0,1509,1513,5,52,0,0,1510,1513,5,254,0, - 0,1511,1513,5,88,0,0,1512,1344,1,0,0,0,1512,1346,1,0,0,0,1512,1348, - 1,0,0,0,1512,1352,1,0,0,0,1512,1356,1,0,0,0,1512,1358,1,0,0,0,1512, - 1363,1,0,0,0,1512,1365,1,0,0,0,1512,1367,1,0,0,0,1512,1370,1,0,0, - 0,1512,1372,1,0,0,0,1512,1374,1,0,0,0,1512,1376,1,0,0,0,1512,1379, - 1,0,0,0,1512,1381,1,0,0,0,1512,1383,1,0,0,0,1512,1385,1,0,0,0,1512, - 1387,1,0,0,0,1512,1389,1,0,0,0,1512,1391,1,0,0,0,1512,1393,1,0,0, - 0,1512,1395,1,0,0,0,1512,1397,1,0,0,0,1512,1399,1,0,0,0,1512,1402, - 1,0,0,0,1512,1405,1,0,0,0,1512,1411,1,0,0,0,1512,1417,1,0,0,0,1512, - 1423,1,0,0,0,1512,1429,1,0,0,0,1512,1435,1,0,0,0,1512,1443,1,0,0, - 0,1512,1450,1,0,0,0,1512,1456,1,0,0,0,1512,1462,1,0,0,0,1512,1468, - 1,0,0,0,1512,1473,1,0,0,0,1512,1481,1,0,0,0,1512,1489,1,0,0,0,1512, - 1498,1,0,0,0,1512,1507,1,0,0,0,1512,1509,1,0,0,0,1512,1510,1,0,0, - 0,1512,1511,1,0,0,0,1513,13,1,0,0,0,1514,1516,5,59,0,0,1515,1517, - 5,297,0,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517,1519,1,0,0,0, - 1518,1520,5,109,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1521, - 1,0,0,0,1521,1523,5,292,0,0,1522,1524,3,188,94,0,1523,1522,1,0,0, - 0,1523,1524,1,0,0,0,1524,1525,1,0,0,0,1525,1526,3,82,41,0,1526,15, - 1,0,0,0,1527,1528,5,59,0,0,1528,1530,5,207,0,0,1529,1527,1,0,0,0, - 1529,1530,1,0,0,0,1530,1531,1,0,0,0,1531,1532,5,243,0,0,1532,1533, - 5,292,0,0,1533,1534,3,82,41,0,1534,17,1,0,0,0,1535,1536,5,45,0,0, - 1536,1537,5,31,0,0,1537,1541,3,210,105,0,1538,1539,5,278,0,0,1539, - 1540,5,31,0,0,1540,1542,3,214,107,0,1541,1538,1,0,0,0,1541,1542, - 1,0,0,0,1542,1543,1,0,0,0,1543,1544,5,152,0,0,1544,1545,5,381,0, - 0,1545,1546,5,30,0,0,1546,19,1,0,0,0,1547,1548,5,274,0,0,1548,1549, - 5,31,0,0,1549,1550,3,210,105,0,1550,1553,5,202,0,0,1551,1554,3,64, - 32,0,1552,1554,3,66,33,0,1553,1551,1,0,0,0,1553,1552,1,0,0,0,1554, - 1558,1,0,0,0,1555,1556,5,282,0,0,1556,1557,5,20,0,0,1557,1559,5, - 89,0,0,1558,1555,1,0,0,0,1558,1559,1,0,0,0,1559,21,1,0,0,0,1560, - 1561,5,169,0,0,1561,1562,3,386,193,0,1562,23,1,0,0,0,1563,1564,5, - 51,0,0,1564,1565,3,386,193,0,1565,25,1,0,0,0,1566,1568,3,44,22,0, - 1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1569,1,0,0,0,1569,1570, - 3,102,51,0,1570,1571,3,98,49,0,1571,27,1,0,0,0,1572,1573,5,147,0, - 0,1573,1575,5,215,0,0,1574,1576,5,292,0,0,1575,1574,1,0,0,0,1575, - 1576,1,0,0,0,1576,1577,1,0,0,0,1577,1582,3,84,42,0,1578,1580,3,32, - 16,0,1579,1581,3,188,94,0,1580,1579,1,0,0,0,1580,1581,1,0,0,0,1581, - 1583,1,0,0,0,1582,1578,1,0,0,0,1582,1583,1,0,0,0,1583,1590,1,0,0, - 0,1584,1585,5,31,0,0,1585,1591,5,188,0,0,1586,1587,5,2,0,0,1587, - 1588,3,92,46,0,1588,1589,5,3,0,0,1589,1591,1,0,0,0,1590,1584,1,0, - 0,0,1590,1586,1,0,0,0,1590,1591,1,0,0,0,1591,1649,1,0,0,0,1592,1593, - 5,147,0,0,1593,1595,5,152,0,0,1594,1596,5,292,0,0,1595,1594,1,0, - 0,0,1595,1596,1,0,0,0,1596,1597,1,0,0,0,1597,1599,3,84,42,0,1598, - 1600,3,32,16,0,1599,1598,1,0,0,0,1599,1600,1,0,0,0,1600,1602,1,0, - 0,0,1601,1603,3,188,94,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603, - 1610,1,0,0,0,1604,1605,5,31,0,0,1605,1611,5,188,0,0,1606,1607,5, - 2,0,0,1607,1608,3,92,46,0,1608,1609,5,3,0,0,1609,1611,1,0,0,0,1610, - 1604,1,0,0,0,1610,1606,1,0,0,0,1610,1611,1,0,0,0,1611,1649,1,0,0, - 0,1612,1613,5,147,0,0,1613,1615,5,152,0,0,1614,1616,5,292,0,0,1615, - 1614,1,0,0,0,1615,1616,1,0,0,0,1616,1617,1,0,0,0,1617,1618,3,84, - 42,0,1618,1619,5,243,0,0,1619,1620,3,136,68,0,1620,1649,1,0,0,0, - 1621,1622,5,147,0,0,1622,1624,5,215,0,0,1623,1625,5,168,0,0,1624, - 1623,1,0,0,0,1624,1625,1,0,0,0,1625,1626,1,0,0,0,1626,1627,5,90, - 0,0,1627,1629,3,386,193,0,1628,1630,3,240,120,0,1629,1628,1,0,0, - 0,1629,1630,1,0,0,0,1630,1632,1,0,0,0,1631,1633,3,68,34,0,1632,1631, - 1,0,0,0,1632,1633,1,0,0,0,1633,1649,1,0,0,0,1634,1635,5,147,0,0, - 1635,1637,5,215,0,0,1636,1638,5,168,0,0,1637,1636,1,0,0,0,1637,1638, - 1,0,0,0,1638,1639,1,0,0,0,1639,1641,5,90,0,0,1640,1642,3,386,193, - 0,1641,1640,1,0,0,0,1641,1642,1,0,0,0,1642,1643,1,0,0,0,1643,1646, - 3,48,24,0,1644,1645,5,206,0,0,1645,1647,3,52,26,0,1646,1644,1,0, - 0,0,1646,1647,1,0,0,0,1647,1649,1,0,0,0,1648,1572,1,0,0,0,1648,1592, - 1,0,0,0,1648,1612,1,0,0,0,1648,1621,1,0,0,0,1648,1634,1,0,0,0,1649, - 29,1,0,0,0,1650,1652,3,32,16,0,1651,1653,3,22,11,0,1652,1651,1,0, - 0,0,1652,1653,1,0,0,0,1653,31,1,0,0,0,1654,1655,5,216,0,0,1655,1656, - 5,2,0,0,1656,1661,3,34,17,0,1657,1658,5,4,0,0,1658,1660,3,34,17, - 0,1659,1657,1,0,0,0,1660,1663,1,0,0,0,1661,1659,1,0,0,0,1661,1662, - 1,0,0,0,1662,1664,1,0,0,0,1663,1661,1,0,0,0,1664,1665,5,3,0,0,1665, - 33,1,0,0,0,1666,1669,3,374,187,0,1667,1668,5,351,0,0,1668,1670,3, - 286,143,0,1669,1667,1,0,0,0,1669,1670,1,0,0,0,1670,1676,1,0,0,0, - 1671,1672,3,374,187,0,1672,1673,5,351,0,0,1673,1674,5,82,0,0,1674, - 1676,1,0,0,0,1675,1666,1,0,0,0,1675,1671,1,0,0,0,1676,35,1,0,0,0, - 1677,1678,7,11,0,0,1678,37,1,0,0,0,1679,1680,7,12,0,0,1680,39,1, - 0,0,0,1681,1687,3,96,48,0,1682,1687,3,386,193,0,1683,1687,3,288, - 144,0,1684,1687,3,290,145,0,1685,1687,3,292,146,0,1686,1681,1,0, - 0,0,1686,1682,1,0,0,0,1686,1683,1,0,0,0,1686,1684,1,0,0,0,1686,1685, - 1,0,0,0,1687,41,1,0,0,0,1688,1693,3,374,187,0,1689,1690,5,5,0,0, - 1690,1692,3,374,187,0,1691,1689,1,0,0,0,1692,1695,1,0,0,0,1693,1691, - 1,0,0,0,1693,1694,1,0,0,0,1694,43,1,0,0,0,1695,1693,1,0,0,0,1696, - 1697,5,345,0,0,1697,1702,3,46,23,0,1698,1699,5,4,0,0,1699,1701,3, - 46,23,0,1700,1698,1,0,0,0,1701,1704,1,0,0,0,1702,1700,1,0,0,0,1702, - 1703,1,0,0,0,1703,45,1,0,0,0,1704,1702,1,0,0,0,1705,1707,3,370,185, - 0,1706,1708,3,210,105,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708, - 1710,1,0,0,0,1709,1711,5,20,0,0,1710,1709,1,0,0,0,1710,1711,1,0, - 0,0,1711,1712,1,0,0,0,1712,1713,5,2,0,0,1713,1714,3,26,13,0,1714, - 1715,5,3,0,0,1715,47,1,0,0,0,1716,1717,5,331,0,0,1717,1718,3,244, - 122,0,1718,49,1,0,0,0,1719,1720,5,206,0,0,1720,1733,3,60,30,0,1721, - 1722,5,217,0,0,1722,1723,5,31,0,0,1723,1733,3,258,129,0,1724,1733, - 3,20,10,0,1725,1733,3,18,9,0,1726,1733,3,240,120,0,1727,1733,3,68, - 34,0,1728,1733,3,22,11,0,1729,1733,3,24,12,0,1730,1731,5,296,0,0, - 1731,1733,3,52,26,0,1732,1719,1,0,0,0,1732,1721,1,0,0,0,1732,1724, - 1,0,0,0,1732,1725,1,0,0,0,1732,1726,1,0,0,0,1732,1727,1,0,0,0,1732, - 1728,1,0,0,0,1732,1729,1,0,0,0,1732,1730,1,0,0,0,1733,1736,1,0,0, - 0,1734,1732,1,0,0,0,1734,1735,1,0,0,0,1735,51,1,0,0,0,1736,1734, - 1,0,0,0,1737,1738,5,2,0,0,1738,1743,3,54,27,0,1739,1740,5,4,0,0, - 1740,1742,3,54,27,0,1741,1739,1,0,0,0,1742,1745,1,0,0,0,1743,1741, - 1,0,0,0,1743,1744,1,0,0,0,1744,1746,1,0,0,0,1745,1743,1,0,0,0,1746, - 1747,5,3,0,0,1747,53,1,0,0,0,1748,1753,3,56,28,0,1749,1751,5,351, - 0,0,1750,1749,1,0,0,0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754, - 3,58,29,0,1753,1750,1,0,0,0,1753,1754,1,0,0,0,1754,55,1,0,0,0,1755, - 1760,3,374,187,0,1756,1757,5,5,0,0,1757,1759,3,374,187,0,1758,1756, - 1,0,0,0,1759,1762,1,0,0,0,1760,1758,1,0,0,0,1760,1761,1,0,0,0,1761, - 1765,1,0,0,0,1762,1760,1,0,0,0,1763,1765,3,386,193,0,1764,1755,1, - 0,0,0,1764,1763,1,0,0,0,1765,57,1,0,0,0,1766,1771,5,381,0,0,1767, - 1771,5,383,0,0,1768,1771,3,294,147,0,1769,1771,3,386,193,0,1770, - 1766,1,0,0,0,1770,1767,1,0,0,0,1770,1768,1,0,0,0,1770,1769,1,0,0, - 0,1771,59,1,0,0,0,1772,1773,5,2,0,0,1773,1778,3,62,31,0,1774,1775, - 5,4,0,0,1775,1777,3,62,31,0,1776,1774,1,0,0,0,1777,1780,1,0,0,0, - 1778,1776,1,0,0,0,1778,1779,1,0,0,0,1779,1781,1,0,0,0,1780,1778, - 1,0,0,0,1781,1782,5,3,0,0,1782,61,1,0,0,0,1783,1788,3,56,28,0,1784, - 1786,5,351,0,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786,1787,1,0, - 0,0,1787,1789,3,266,133,0,1788,1785,1,0,0,0,1788,1789,1,0,0,0,1789, - 63,1,0,0,0,1790,1791,5,2,0,0,1791,1796,3,286,143,0,1792,1793,5,4, - 0,0,1793,1795,3,286,143,0,1794,1792,1,0,0,0,1795,1798,1,0,0,0,1796, - 1794,1,0,0,0,1796,1797,1,0,0,0,1797,1799,1,0,0,0,1798,1796,1,0,0, - 0,1799,1800,5,3,0,0,1800,65,1,0,0,0,1801,1802,5,2,0,0,1802,1807, - 3,64,32,0,1803,1804,5,4,0,0,1804,1806,3,64,32,0,1805,1803,1,0,0, - 0,1806,1809,1,0,0,0,1807,1805,1,0,0,0,1807,1808,1,0,0,0,1808,1810, - 1,0,0,0,1809,1807,1,0,0,0,1810,1811,5,3,0,0,1811,67,1,0,0,0,1812, - 1813,5,282,0,0,1813,1814,5,20,0,0,1814,1819,3,70,35,0,1815,1816, - 5,282,0,0,1816,1817,5,31,0,0,1817,1819,3,72,36,0,1818,1812,1,0,0, - 0,1818,1815,1,0,0,0,1819,69,1,0,0,0,1820,1821,5,146,0,0,1821,1822, - 3,386,193,0,1822,1823,5,211,0,0,1823,1824,3,386,193,0,1824,1827, - 1,0,0,0,1825,1827,3,374,187,0,1826,1820,1,0,0,0,1826,1825,1,0,0, - 0,1827,71,1,0,0,0,1828,1832,3,386,193,0,1829,1830,5,345,0,0,1830, - 1831,5,266,0,0,1831,1833,3,52,26,0,1832,1829,1,0,0,0,1832,1833,1, - 0,0,0,1833,73,1,0,0,0,1834,1835,3,374,187,0,1835,1836,3,386,193, - 0,1836,75,1,0,0,0,1837,1838,3,28,14,0,1838,1839,3,26,13,0,1839,1894, - 1,0,0,0,1840,1842,3,144,72,0,1841,1843,3,100,50,0,1842,1841,1,0, - 0,0,1843,1844,1,0,0,0,1844,1842,1,0,0,0,1844,1845,1,0,0,0,1845,1894, - 1,0,0,0,1846,1847,5,84,0,0,1847,1848,5,123,0,0,1848,1849,3,84,42, - 0,1849,1851,3,238,119,0,1850,1852,3,136,68,0,1851,1850,1,0,0,0,1851, - 1852,1,0,0,0,1852,1894,1,0,0,0,1853,1854,5,328,0,0,1854,1855,3,84, - 42,0,1855,1856,3,238,119,0,1856,1858,3,118,59,0,1857,1859,3,136, - 68,0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1894,1,0,0,0,1860, - 1861,5,178,0,0,1861,1862,5,152,0,0,1862,1863,3,84,42,0,1863,1864, - 3,238,119,0,1864,1870,5,331,0,0,1865,1871,3,96,48,0,1866,1867,5, - 2,0,0,1867,1868,3,26,13,0,1868,1869,5,3,0,0,1869,1871,1,0,0,0,1870, - 1865,1,0,0,0,1870,1866,1,0,0,0,1871,1872,1,0,0,0,1872,1873,3,238, - 119,0,1873,1874,5,202,0,0,1874,1878,3,274,137,0,1875,1877,3,120, - 60,0,1876,1875,1,0,0,0,1877,1880,1,0,0,0,1878,1876,1,0,0,0,1878, - 1879,1,0,0,0,1879,1884,1,0,0,0,1880,1878,1,0,0,0,1881,1883,3,122, - 61,0,1882,1881,1,0,0,0,1883,1886,1,0,0,0,1884,1882,1,0,0,0,1884, - 1885,1,0,0,0,1885,1890,1,0,0,0,1886,1884,1,0,0,0,1887,1889,3,124, - 62,0,1888,1887,1,0,0,0,1889,1892,1,0,0,0,1890,1888,1,0,0,0,1890, - 1891,1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0,0,1893,1837,1,0,0, - 0,1893,1840,1,0,0,0,1893,1846,1,0,0,0,1893,1853,1,0,0,0,1893,1860, - 1,0,0,0,1894,77,1,0,0,0,1895,1896,3,96,48,0,1896,79,1,0,0,0,1897, - 1898,3,96,48,0,1898,81,1,0,0,0,1899,1900,3,250,125,0,1900,83,1,0, - 0,0,1901,1902,3,250,125,0,1902,85,1,0,0,0,1903,1904,3,252,126,0, - 1904,87,1,0,0,0,1905,1906,3,252,126,0,1906,89,1,0,0,0,1907,1910, - 3,244,122,0,1908,1910,4,45,0,0,1909,1907,1,0,0,0,1909,1908,1,0,0, - 0,1910,91,1,0,0,0,1911,1916,3,90,45,0,1912,1913,5,4,0,0,1913,1915, - 3,90,45,0,1914,1912,1,0,0,0,1915,1918,1,0,0,0,1916,1914,1,0,0,0, - 1916,1917,1,0,0,0,1917,93,1,0,0,0,1918,1916,1,0,0,0,1919,1920,3, - 370,185,0,1920,95,1,0,0,0,1921,1922,5,136,0,0,1922,1923,5,2,0,0, - 1923,1924,3,266,133,0,1924,1925,5,3,0,0,1925,1928,1,0,0,0,1926,1928, - 3,244,122,0,1927,1921,1,0,0,0,1927,1926,1,0,0,0,1928,97,1,0,0,0, - 1929,1930,5,208,0,0,1930,1931,5,31,0,0,1931,1936,3,106,53,0,1932, - 1933,5,4,0,0,1933,1935,3,106,53,0,1934,1932,1,0,0,0,1935,1938,1, - 0,0,0,1936,1934,1,0,0,0,1936,1937,1,0,0,0,1937,1940,1,0,0,0,1938, - 1936,1,0,0,0,1939,1929,1,0,0,0,1939,1940,1,0,0,0,1940,1951,1,0,0, - 0,1941,1942,5,44,0,0,1942,1943,5,31,0,0,1943,1948,3,266,133,0,1944, - 1945,5,4,0,0,1945,1947,3,266,133,0,1946,1944,1,0,0,0,1947,1950,1, - 0,0,0,1948,1946,1,0,0,0,1948,1949,1,0,0,0,1949,1952,1,0,0,0,1950, - 1948,1,0,0,0,1951,1941,1,0,0,0,1951,1952,1,0,0,0,1952,1963,1,0,0, - 0,1953,1954,5,93,0,0,1954,1955,5,31,0,0,1955,1960,3,266,133,0,1956, - 1957,5,4,0,0,1957,1959,3,266,133,0,1958,1956,1,0,0,0,1959,1962,1, - 0,0,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1964,1,0,0,0,1962, - 1960,1,0,0,0,1963,1953,1,0,0,0,1963,1964,1,0,0,0,1964,1975,1,0,0, - 0,1965,1966,5,277,0,0,1966,1967,5,31,0,0,1967,1972,3,106,53,0,1968, - 1969,5,4,0,0,1969,1971,3,106,53,0,1970,1968,1,0,0,0,1971,1974,1, - 0,0,0,1972,1970,1,0,0,0,1972,1973,1,0,0,0,1973,1976,1,0,0,0,1974, - 1972,1,0,0,0,1975,1965,1,0,0,0,1975,1976,1,0,0,0,1976,1978,1,0,0, - 0,1977,1979,3,350,175,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979, - 1985,1,0,0,0,1980,1983,5,164,0,0,1981,1984,5,10,0,0,1982,1984,3, - 266,133,0,1983,1981,1,0,0,0,1983,1982,1,0,0,0,1984,1986,1,0,0,0, - 1985,1980,1,0,0,0,1985,1986,1,0,0,0,1986,1989,1,0,0,0,1987,1988, - 5,201,0,0,1988,1990,3,266,133,0,1989,1987,1,0,0,0,1989,1990,1,0, - 0,0,1990,99,1,0,0,0,1991,1992,3,28,14,0,1992,1993,3,110,55,0,1993, - 101,1,0,0,0,1994,1995,6,51,-1,0,1995,1996,3,104,52,0,1996,2017,1, - 0,0,0,1997,1998,10,3,0,0,1998,2000,7,13,0,0,1999,2001,3,194,97,0, - 2000,1999,1,0,0,0,2000,2001,1,0,0,0,2001,2002,1,0,0,0,2002,2016, - 3,102,51,4,2003,2004,10,2,0,0,2004,2006,5,148,0,0,2005,2007,3,194, - 97,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008, - 2016,3,102,51,3,2009,2010,10,1,0,0,2010,2012,7,14,0,0,2011,2013, - 3,194,97,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014,1,0,0,0, - 2014,2016,3,102,51,2,2015,1997,1,0,0,0,2015,2003,1,0,0,0,2015,2009, - 1,0,0,0,2016,2019,1,0,0,0,2017,2015,1,0,0,0,2017,2018,1,0,0,0,2018, - 103,1,0,0,0,2019,2017,1,0,0,0,2020,2030,3,112,56,0,2021,2030,3,108, - 54,0,2022,2023,5,292,0,0,2023,2030,3,84,42,0,2024,2030,3,224,112, - 0,2025,2026,5,2,0,0,2026,2027,3,26,13,0,2027,2028,5,3,0,0,2028,2030, - 1,0,0,0,2029,2020,1,0,0,0,2029,2021,1,0,0,0,2029,2022,1,0,0,0,2029, - 2024,1,0,0,0,2029,2025,1,0,0,0,2030,105,1,0,0,0,2031,2034,3,90,45, - 0,2032,2034,3,266,133,0,2033,2031,1,0,0,0,2033,2032,1,0,0,0,2034, - 2036,1,0,0,0,2035,2037,7,15,0,0,2036,2035,1,0,0,0,2036,2037,1,0, - 0,0,2037,2040,1,0,0,0,2038,2039,5,198,0,0,2039,2041,7,16,0,0,2040, - 2038,1,0,0,0,2040,2041,1,0,0,0,2041,107,1,0,0,0,2042,2044,3,144, - 72,0,2043,2045,3,110,55,0,2044,2043,1,0,0,0,2045,2046,1,0,0,0,2046, - 2044,1,0,0,0,2046,2047,1,0,0,0,2047,109,1,0,0,0,2048,2050,3,114, - 57,0,2049,2051,3,136,68,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, - 2052,1,0,0,0,2052,2053,3,98,49,0,2053,2076,1,0,0,0,2054,2058,3,116, - 58,0,2055,2057,3,192,96,0,2056,2055,1,0,0,0,2057,2060,1,0,0,0,2058, - 2056,1,0,0,0,2058,2059,1,0,0,0,2059,2062,1,0,0,0,2060,2058,1,0,0, - 0,2061,2063,3,136,68,0,2062,2061,1,0,0,0,2062,2063,1,0,0,0,2063, - 2065,1,0,0,0,2064,2066,3,150,75,0,2065,2064,1,0,0,0,2065,2066,1, - 0,0,0,2066,2068,1,0,0,0,2067,2069,3,138,69,0,2068,2067,1,0,0,0,2068, - 2069,1,0,0,0,2069,2071,1,0,0,0,2070,2072,3,350,175,0,2071,2070,1, - 0,0,0,2071,2072,1,0,0,0,2072,2073,1,0,0,0,2073,2074,3,98,49,0,2074, - 2076,1,0,0,0,2075,2048,1,0,0,0,2075,2054,1,0,0,0,2076,111,1,0,0, - 0,2077,2079,3,114,57,0,2078,2080,3,144,72,0,2079,2078,1,0,0,0,2079, - 2080,1,0,0,0,2080,2084,1,0,0,0,2081,2083,3,192,96,0,2082,2081,1, - 0,0,0,2083,2086,1,0,0,0,2084,2082,1,0,0,0,2084,2085,1,0,0,0,2085, - 2088,1,0,0,0,2086,2084,1,0,0,0,2087,2089,3,136,68,0,2088,2087,1, - 0,0,0,2088,2089,1,0,0,0,2089,2091,1,0,0,0,2090,2092,3,150,75,0,2091, - 2090,1,0,0,0,2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2095,3,138, - 69,0,2094,2093,1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096, - 2098,3,350,175,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2122,1, - 0,0,0,2099,2101,3,116,58,0,2100,2102,3,144,72,0,2101,2100,1,0,0, - 0,2101,2102,1,0,0,0,2102,2106,1,0,0,0,2103,2105,3,192,96,0,2104, - 2103,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107,1,0,0, - 0,2107,2110,1,0,0,0,2108,2106,1,0,0,0,2109,2111,3,136,68,0,2110, - 2109,1,0,0,0,2110,2111,1,0,0,0,2111,2113,1,0,0,0,2112,2114,3,150, - 75,0,2113,2112,1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115, - 2117,3,138,69,0,2116,2115,1,0,0,0,2116,2117,1,0,0,0,2117,2119,1, - 0,0,0,2118,2120,3,350,175,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0, - 2120,2122,1,0,0,0,2121,2077,1,0,0,0,2121,2099,1,0,0,0,2122,113,1, - 0,0,0,2123,2124,5,262,0,0,2124,2125,5,313,0,0,2125,2127,5,2,0,0, - 2126,2128,3,194,97,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0,2128,2129, - 1,0,0,0,2129,2130,3,272,136,0,2130,2131,5,3,0,0,2131,2143,1,0,0, - 0,2132,2134,5,176,0,0,2133,2135,3,194,97,0,2134,2133,1,0,0,0,2134, - 2135,1,0,0,0,2135,2136,1,0,0,0,2136,2143,3,272,136,0,2137,2139,5, - 237,0,0,2138,2140,3,194,97,0,2139,2138,1,0,0,0,2139,2140,1,0,0,0, - 2140,2141,1,0,0,0,2141,2143,3,272,136,0,2142,2123,1,0,0,0,2142,2132, - 1,0,0,0,2142,2137,1,0,0,0,2143,2145,1,0,0,0,2144,2146,3,240,120, - 0,2145,2144,1,0,0,0,2145,2146,1,0,0,0,2146,2149,1,0,0,0,2147,2148, - 5,235,0,0,2148,2150,3,386,193,0,2149,2147,1,0,0,0,2149,2150,1,0, - 0,0,2150,2151,1,0,0,0,2151,2152,5,331,0,0,2152,2165,3,386,193,0, - 2153,2163,5,20,0,0,2154,2164,3,212,106,0,2155,2164,3,332,166,0,2156, - 2159,5,2,0,0,2157,2160,3,212,106,0,2158,2160,3,332,166,0,2159,2157, - 1,0,0,0,2159,2158,1,0,0,0,2160,2161,1,0,0,0,2161,2162,5,3,0,0,2162, - 2164,1,0,0,0,2163,2154,1,0,0,0,2163,2155,1,0,0,0,2163,2156,1,0,0, - 0,2164,2166,1,0,0,0,2165,2153,1,0,0,0,2165,2166,1,0,0,0,2166,2168, - 1,0,0,0,2167,2169,3,240,120,0,2168,2167,1,0,0,0,2168,2169,1,0,0, - 0,2169,2172,1,0,0,0,2170,2171,5,234,0,0,2171,2173,3,386,193,0,2172, - 2170,1,0,0,0,2172,2173,1,0,0,0,2173,115,1,0,0,0,2174,2178,5,262, - 0,0,2175,2177,3,140,70,0,2176,2175,1,0,0,0,2177,2180,1,0,0,0,2178, - 2176,1,0,0,0,2178,2179,1,0,0,0,2179,2182,1,0,0,0,2180,2178,1,0,0, - 0,2181,2183,3,194,97,0,2182,2181,1,0,0,0,2182,2183,1,0,0,0,2183, - 2184,1,0,0,0,2184,2185,3,256,128,0,2185,117,1,0,0,0,2186,2187,5, - 268,0,0,2187,2188,3,132,66,0,2188,119,1,0,0,0,2189,2190,5,342,0, - 0,2190,2193,5,177,0,0,2191,2192,5,14,0,0,2192,2194,3,274,137,0,2193, - 2191,1,0,0,0,2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2196,5,299, - 0,0,2196,2197,3,126,63,0,2197,121,1,0,0,0,2198,2199,5,342,0,0,2199, - 2200,5,196,0,0,2200,2203,5,177,0,0,2201,2202,5,31,0,0,2202,2204, - 5,295,0,0,2203,2201,1,0,0,0,2203,2204,1,0,0,0,2204,2207,1,0,0,0, - 2205,2206,5,14,0,0,2206,2208,3,274,137,0,2207,2205,1,0,0,0,2207, - 2208,1,0,0,0,2208,2209,1,0,0,0,2209,2210,5,299,0,0,2210,2211,3,128, - 64,0,2211,123,1,0,0,0,2212,2213,5,342,0,0,2213,2214,5,196,0,0,2214, - 2215,5,177,0,0,2215,2216,5,31,0,0,2216,2219,5,279,0,0,2217,2218, - 5,14,0,0,2218,2220,3,274,137,0,2219,2217,1,0,0,0,2219,2220,1,0,0, - 0,2220,2221,1,0,0,0,2221,2222,5,299,0,0,2222,2223,3,130,65,0,2223, - 125,1,0,0,0,2224,2232,5,84,0,0,2225,2226,5,328,0,0,2226,2227,5,268, - 0,0,2227,2232,5,362,0,0,2228,2229,5,328,0,0,2229,2230,5,268,0,0, - 2230,2232,3,132,66,0,2231,2224,1,0,0,0,2231,2225,1,0,0,0,2231,2228, - 1,0,0,0,2232,127,1,0,0,0,2233,2234,5,147,0,0,2234,2252,5,362,0,0, - 2235,2236,5,147,0,0,2236,2237,5,2,0,0,2237,2238,3,242,121,0,2238, - 2239,5,3,0,0,2239,2240,5,332,0,0,2240,2241,5,2,0,0,2241,2246,3,266, - 133,0,2242,2243,5,4,0,0,2243,2245,3,266,133,0,2244,2242,1,0,0,0, - 2245,2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2249, - 1,0,0,0,2248,2246,1,0,0,0,2249,2250,5,3,0,0,2250,2252,1,0,0,0,2251, - 2233,1,0,0,0,2251,2235,1,0,0,0,2252,129,1,0,0,0,2253,2258,5,84,0, - 0,2254,2255,5,328,0,0,2255,2256,5,268,0,0,2256,2258,3,132,66,0,2257, - 2253,1,0,0,0,2257,2254,1,0,0,0,2258,131,1,0,0,0,2259,2264,3,134, - 67,0,2260,2261,5,4,0,0,2261,2263,3,134,67,0,2262,2260,1,0,0,0,2263, - 2266,1,0,0,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,133,1,0,0, - 0,2266,2264,1,0,0,0,2267,2268,3,244,122,0,2268,2269,5,351,0,0,2269, - 2270,3,266,133,0,2270,135,1,0,0,0,2271,2272,5,343,0,0,2272,2273, - 3,274,137,0,2273,137,1,0,0,0,2274,2275,5,132,0,0,2275,2276,3,274, - 137,0,2276,139,1,0,0,0,2277,2278,5,373,0,0,2278,2285,3,142,71,0, - 2279,2281,5,4,0,0,2280,2279,1,0,0,0,2280,2281,1,0,0,0,2281,2282, - 1,0,0,0,2282,2284,3,142,71,0,2283,2280,1,0,0,0,2284,2287,1,0,0,0, - 2285,2283,1,0,0,0,2285,2286,1,0,0,0,2286,2288,1,0,0,0,2287,2285, - 1,0,0,0,2288,2289,5,374,0,0,2289,141,1,0,0,0,2290,2304,3,374,187, - 0,2291,2292,3,374,187,0,2292,2293,5,2,0,0,2293,2298,3,282,141,0, - 2294,2295,5,4,0,0,2295,2297,3,282,141,0,2296,2294,1,0,0,0,2297,2300, - 1,0,0,0,2298,2296,1,0,0,0,2298,2299,1,0,0,0,2299,2301,1,0,0,0,2300, - 2298,1,0,0,0,2301,2302,5,3,0,0,2302,2304,1,0,0,0,2303,2290,1,0,0, - 0,2303,2291,1,0,0,0,2304,143,1,0,0,0,2305,2306,5,123,0,0,2306,2311, - 3,196,98,0,2307,2308,5,4,0,0,2308,2310,3,196,98,0,2309,2307,1,0, - 0,0,2310,2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0,0,2312,2317, - 1,0,0,0,2313,2311,1,0,0,0,2314,2316,3,192,96,0,2315,2314,1,0,0,0, - 2316,2319,1,0,0,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318,2321, - 1,0,0,0,2319,2317,1,0,0,0,2320,2322,3,160,80,0,2321,2320,1,0,0,0, - 2321,2322,1,0,0,0,2322,2324,1,0,0,0,2323,2325,3,166,83,0,2324,2323, - 1,0,0,0,2324,2325,1,0,0,0,2325,145,1,0,0,0,2326,2327,7,17,0,0,2327, - 147,1,0,0,0,2328,2330,5,119,0,0,2329,2328,1,0,0,0,2329,2330,1,0, - 0,0,2330,2331,1,0,0,0,2331,2332,7,18,0,0,2332,2333,5,20,0,0,2333, - 2334,5,200,0,0,2334,2343,3,390,195,0,2335,2337,5,119,0,0,2336,2335, - 1,0,0,0,2336,2337,1,0,0,0,2337,2338,1,0,0,0,2338,2339,7,19,0,0,2339, - 2340,5,20,0,0,2340,2341,5,200,0,0,2341,2343,3,278,139,0,2342,2329, - 1,0,0,0,2342,2336,1,0,0,0,2343,149,1,0,0,0,2344,2345,5,130,0,0,2345, - 2346,5,31,0,0,2346,2351,3,152,76,0,2347,2348,5,4,0,0,2348,2350,3, - 152,76,0,2349,2347,1,0,0,0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2351, - 2352,1,0,0,0,2352,2384,1,0,0,0,2353,2351,1,0,0,0,2354,2355,5,130, - 0,0,2355,2356,5,31,0,0,2356,2361,3,266,133,0,2357,2358,5,4,0,0,2358, - 2360,3,266,133,0,2359,2357,1,0,0,0,2360,2363,1,0,0,0,2361,2359,1, - 0,0,0,2361,2362,1,0,0,0,2362,2381,1,0,0,0,2363,2361,1,0,0,0,2364, - 2365,5,345,0,0,2365,2382,5,255,0,0,2366,2367,5,345,0,0,2367,2382, - 5,61,0,0,2368,2369,5,131,0,0,2369,2370,5,270,0,0,2370,2371,5,2,0, - 0,2371,2376,3,158,79,0,2372,2373,5,4,0,0,2373,2375,3,158,79,0,2374, - 2372,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1,0,0,0,2376,2377,1,0,0, - 0,2377,2379,1,0,0,0,2378,2376,1,0,0,0,2379,2380,5,3,0,0,2380,2382, - 1,0,0,0,2381,2364,1,0,0,0,2381,2366,1,0,0,0,2381,2368,1,0,0,0,2381, - 2382,1,0,0,0,2382,2384,1,0,0,0,2383,2344,1,0,0,0,2383,2354,1,0,0, - 0,2384,151,1,0,0,0,2385,2389,3,90,45,0,2386,2389,3,154,77,0,2387, - 2389,3,266,133,0,2388,2385,1,0,0,0,2388,2386,1,0,0,0,2388,2387,1, - 0,0,0,2389,153,1,0,0,0,2390,2391,7,20,0,0,2391,2392,5,2,0,0,2392, - 2397,3,158,79,0,2393,2394,5,4,0,0,2394,2396,3,158,79,0,2395,2393, - 1,0,0,0,2396,2399,1,0,0,0,2397,2395,1,0,0,0,2397,2398,1,0,0,0,2398, - 2400,1,0,0,0,2399,2397,1,0,0,0,2400,2401,5,3,0,0,2401,2416,1,0,0, - 0,2402,2403,5,131,0,0,2403,2404,5,270,0,0,2404,2405,5,2,0,0,2405, - 2410,3,156,78,0,2406,2407,5,4,0,0,2407,2409,3,156,78,0,2408,2406, - 1,0,0,0,2409,2412,1,0,0,0,2410,2408,1,0,0,0,2410,2411,1,0,0,0,2411, - 2413,1,0,0,0,2412,2410,1,0,0,0,2413,2414,5,3,0,0,2414,2416,1,0,0, - 0,2415,2390,1,0,0,0,2415,2402,1,0,0,0,2416,155,1,0,0,0,2417,2420, - 3,154,77,0,2418,2420,3,158,79,0,2419,2417,1,0,0,0,2419,2418,1,0, - 0,0,2420,157,1,0,0,0,2421,2442,3,90,45,0,2422,2442,3,266,133,0,2423, - 2438,5,2,0,0,2424,2427,3,90,45,0,2425,2427,3,266,133,0,2426,2424, - 1,0,0,0,2426,2425,1,0,0,0,2427,2435,1,0,0,0,2428,2431,5,4,0,0,2429, - 2432,3,90,45,0,2430,2432,3,266,133,0,2431,2429,1,0,0,0,2431,2430, - 1,0,0,0,2432,2434,1,0,0,0,2433,2428,1,0,0,0,2434,2437,1,0,0,0,2435, - 2433,1,0,0,0,2435,2436,1,0,0,0,2436,2439,1,0,0,0,2437,2435,1,0,0, - 0,2438,2426,1,0,0,0,2438,2439,1,0,0,0,2439,2440,1,0,0,0,2440,2442, - 5,3,0,0,2441,2421,1,0,0,0,2441,2422,1,0,0,0,2441,2423,1,0,0,0,2442, - 159,1,0,0,0,2443,2444,5,222,0,0,2444,2445,5,2,0,0,2445,2446,3,256, - 128,0,2446,2447,5,119,0,0,2447,2448,3,162,81,0,2448,2449,5,140,0, - 0,2449,2450,5,2,0,0,2450,2455,3,164,82,0,2451,2452,5,4,0,0,2452, - 2454,3,164,82,0,2453,2451,1,0,0,0,2454,2457,1,0,0,0,2455,2453,1, - 0,0,0,2455,2456,1,0,0,0,2456,2458,1,0,0,0,2457,2455,1,0,0,0,2458, - 2459,5,3,0,0,2459,2460,5,3,0,0,2460,161,1,0,0,0,2461,2474,3,374, - 187,0,2462,2463,5,2,0,0,2463,2468,3,374,187,0,2464,2465,5,4,0,0, - 2465,2467,3,374,187,0,2466,2464,1,0,0,0,2467,2470,1,0,0,0,2468,2466, - 1,0,0,0,2468,2469,1,0,0,0,2469,2471,1,0,0,0,2470,2468,1,0,0,0,2471, - 2472,5,3,0,0,2472,2474,1,0,0,0,2473,2461,1,0,0,0,2473,2462,1,0,0, - 0,2474,163,1,0,0,0,2475,2480,3,266,133,0,2476,2478,5,20,0,0,2477, - 2476,1,0,0,0,2477,2478,1,0,0,0,2478,2479,1,0,0,0,2479,2481,3,374, - 187,0,2480,2477,1,0,0,0,2480,2481,1,0,0,0,2481,165,1,0,0,0,2482, - 2484,5,326,0,0,2483,2485,3,168,84,0,2484,2483,1,0,0,0,2484,2485, - 1,0,0,0,2485,2486,1,0,0,0,2486,2487,5,2,0,0,2487,2488,3,170,85,0, - 2488,2493,5,3,0,0,2489,2491,5,20,0,0,2490,2489,1,0,0,0,2490,2491, - 1,0,0,0,2491,2492,1,0,0,0,2492,2494,3,374,187,0,2493,2490,1,0,0, - 0,2493,2494,1,0,0,0,2494,167,1,0,0,0,2495,2496,7,21,0,0,2496,2497, - 5,198,0,0,2497,169,1,0,0,0,2498,2501,3,172,86,0,2499,2501,3,174, - 87,0,2500,2498,1,0,0,0,2500,2499,1,0,0,0,2501,171,1,0,0,0,2502,2503, - 3,178,89,0,2503,2504,5,119,0,0,2504,2505,3,180,90,0,2505,2506,5, - 140,0,0,2506,2507,5,2,0,0,2507,2512,3,182,91,0,2508,2509,5,4,0,0, - 2509,2511,3,182,91,0,2510,2508,1,0,0,0,2511,2514,1,0,0,0,2512,2510, - 1,0,0,0,2512,2513,1,0,0,0,2513,2515,1,0,0,0,2514,2512,1,0,0,0,2515, - 2516,5,3,0,0,2516,173,1,0,0,0,2517,2518,5,2,0,0,2518,2523,3,178, - 89,0,2519,2520,5,4,0,0,2520,2522,3,178,89,0,2521,2519,1,0,0,0,2522, - 2525,1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2526,1,0,0, - 0,2525,2523,1,0,0,0,2526,2527,5,3,0,0,2527,2528,5,119,0,0,2528,2529, - 3,180,90,0,2529,2530,5,140,0,0,2530,2531,5,2,0,0,2531,2536,3,176, - 88,0,2532,2533,5,4,0,0,2533,2535,3,176,88,0,2534,2532,1,0,0,0,2535, - 2538,1,0,0,0,2536,2534,1,0,0,0,2536,2537,1,0,0,0,2537,2539,1,0,0, - 0,2538,2536,1,0,0,0,2539,2540,5,3,0,0,2540,175,1,0,0,0,2541,2542, - 5,2,0,0,2542,2547,3,184,92,0,2543,2544,5,4,0,0,2544,2546,3,184,92, - 0,2545,2543,1,0,0,0,2546,2549,1,0,0,0,2547,2545,1,0,0,0,2547,2548, - 1,0,0,0,2548,2550,1,0,0,0,2549,2547,1,0,0,0,2550,2552,5,3,0,0,2551, - 2553,3,186,93,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553,177,1,0, - 0,0,2554,2555,3,374,187,0,2555,179,1,0,0,0,2556,2557,3,374,187,0, - 2557,181,1,0,0,0,2558,2560,3,184,92,0,2559,2561,3,186,93,0,2560, - 2559,1,0,0,0,2560,2561,1,0,0,0,2561,183,1,0,0,0,2562,2563,3,244, - 122,0,2563,185,1,0,0,0,2564,2566,5,20,0,0,2565,2564,1,0,0,0,2565, - 2566,1,0,0,0,2566,2567,1,0,0,0,2567,2568,3,374,187,0,2568,187,1, - 0,0,0,2569,2570,5,137,0,0,2570,2571,5,196,0,0,2571,2572,5,105,0, - 0,2572,189,1,0,0,0,2573,2574,5,137,0,0,2574,2575,5,105,0,0,2575, - 191,1,0,0,0,2576,2577,5,158,0,0,2577,2579,5,337,0,0,2578,2580,5, - 210,0,0,2579,2578,1,0,0,0,2579,2580,1,0,0,0,2580,2581,1,0,0,0,2581, - 2582,3,88,44,0,2582,2591,5,2,0,0,2583,2588,3,266,133,0,2584,2585, - 5,4,0,0,2585,2587,3,266,133,0,2586,2584,1,0,0,0,2587,2590,1,0,0, - 0,2588,2586,1,0,0,0,2588,2589,1,0,0,0,2589,2592,1,0,0,0,2590,2588, - 1,0,0,0,2591,2583,1,0,0,0,2591,2592,1,0,0,0,2592,2593,1,0,0,0,2593, - 2594,5,3,0,0,2594,2606,3,238,119,0,2595,2597,5,20,0,0,2596,2595, - 1,0,0,0,2596,2597,1,0,0,0,2597,2598,1,0,0,0,2598,2603,3,374,187, - 0,2599,2600,5,4,0,0,2600,2602,3,374,187,0,2601,2599,1,0,0,0,2602, - 2605,1,0,0,0,2603,2601,1,0,0,0,2603,2604,1,0,0,0,2604,2607,1,0,0, - 0,2605,2603,1,0,0,0,2606,2596,1,0,0,0,2606,2607,1,0,0,0,2607,193, - 1,0,0,0,2608,2609,7,22,0,0,2609,195,1,0,0,0,2610,2622,3,84,42,0, - 2611,2613,5,158,0,0,2612,2611,1,0,0,0,2612,2613,1,0,0,0,2613,2614, - 1,0,0,0,2614,2618,3,222,111,0,2615,2617,3,198,99,0,2616,2615,1,0, - 0,0,2617,2620,1,0,0,0,2618,2616,1,0,0,0,2618,2619,1,0,0,0,2619,2622, - 1,0,0,0,2620,2618,1,0,0,0,2621,2610,1,0,0,0,2621,2612,1,0,0,0,2622, - 197,1,0,0,0,2623,2627,3,200,100,0,2624,2627,3,160,80,0,2625,2627, - 3,166,83,0,2626,2623,1,0,0,0,2626,2624,1,0,0,0,2626,2625,1,0,0,0, - 2627,199,1,0,0,0,2628,2629,3,202,101,0,2629,2631,5,155,0,0,2630, - 2632,5,158,0,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,2633,1,0, - 0,0,2633,2635,3,222,111,0,2634,2636,3,204,102,0,2635,2634,1,0,0, - 0,2635,2636,1,0,0,0,2636,2646,1,0,0,0,2637,2638,5,193,0,0,2638,2639, - 3,202,101,0,2639,2641,5,155,0,0,2640,2642,5,158,0,0,2641,2640,1, - 0,0,0,2641,2642,1,0,0,0,2642,2643,1,0,0,0,2643,2644,3,222,111,0, - 2644,2646,1,0,0,0,2645,2628,1,0,0,0,2645,2637,1,0,0,0,2646,201,1, - 0,0,0,2647,2649,5,144,0,0,2648,2647,1,0,0,0,2648,2649,1,0,0,0,2649, - 2672,1,0,0,0,2650,2672,5,60,0,0,2651,2653,5,161,0,0,2652,2654,5, - 210,0,0,2653,2652,1,0,0,0,2653,2654,1,0,0,0,2654,2672,1,0,0,0,2655, - 2657,5,161,0,0,2656,2655,1,0,0,0,2656,2657,1,0,0,0,2657,2658,1,0, - 0,0,2658,2672,5,263,0,0,2659,2661,5,249,0,0,2660,2662,5,210,0,0, - 2661,2660,1,0,0,0,2661,2662,1,0,0,0,2662,2672,1,0,0,0,2663,2665, - 5,124,0,0,2664,2666,5,210,0,0,2665,2664,1,0,0,0,2665,2666,1,0,0, - 0,2666,2672,1,0,0,0,2667,2669,5,161,0,0,2668,2667,1,0,0,0,2668,2669, - 1,0,0,0,2669,2670,1,0,0,0,2670,2672,5,15,0,0,2671,2648,1,0,0,0,2671, - 2650,1,0,0,0,2671,2651,1,0,0,0,2671,2656,1,0,0,0,2671,2659,1,0,0, - 0,2671,2663,1,0,0,0,2671,2668,1,0,0,0,2672,203,1,0,0,0,2673,2674, - 5,202,0,0,2674,2678,3,274,137,0,2675,2676,5,331,0,0,2676,2678,3, - 210,105,0,2677,2673,1,0,0,0,2677,2675,1,0,0,0,2678,205,1,0,0,0,2679, - 2680,5,294,0,0,2680,2682,5,2,0,0,2681,2683,3,208,104,0,2682,2681, - 1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2689,5,3,0,0,2685, - 2686,5,242,0,0,2686,2687,5,2,0,0,2687,2688,5,381,0,0,2688,2690,5, - 3,0,0,2689,2685,1,0,0,0,2689,2690,1,0,0,0,2690,207,1,0,0,0,2691, - 2693,5,361,0,0,2692,2691,1,0,0,0,2692,2693,1,0,0,0,2693,2694,1,0, - 0,0,2694,2695,7,23,0,0,2695,2716,5,221,0,0,2696,2697,3,266,133,0, - 2697,2698,5,257,0,0,2698,2716,1,0,0,0,2699,2700,5,29,0,0,2700,2701, - 5,381,0,0,2701,2702,5,209,0,0,2702,2703,5,200,0,0,2703,2712,5,381, - 0,0,2704,2710,5,202,0,0,2705,2711,3,374,187,0,2706,2707,3,368,184, - 0,2707,2708,5,2,0,0,2708,2709,5,3,0,0,2709,2711,1,0,0,0,2710,2705, - 1,0,0,0,2710,2706,1,0,0,0,2711,2713,1,0,0,0,2712,2704,1,0,0,0,2712, - 2713,1,0,0,0,2713,2716,1,0,0,0,2714,2716,3,266,133,0,2715,2692,1, - 0,0,0,2715,2696,1,0,0,0,2715,2699,1,0,0,0,2715,2714,1,0,0,0,2716, - 209,1,0,0,0,2717,2718,5,2,0,0,2718,2719,3,212,106,0,2719,2720,5, - 3,0,0,2720,211,1,0,0,0,2721,2726,3,370,185,0,2722,2723,5,4,0,0,2723, - 2725,3,370,185,0,2724,2722,1,0,0,0,2725,2728,1,0,0,0,2726,2724,1, - 0,0,0,2726,2727,1,0,0,0,2727,213,1,0,0,0,2728,2726,1,0,0,0,2729, - 2730,5,2,0,0,2730,2735,3,216,108,0,2731,2732,5,4,0,0,2732,2734,3, - 216,108,0,2733,2731,1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0, - 2735,2736,1,0,0,0,2736,2738,1,0,0,0,2737,2735,1,0,0,0,2738,2739, - 5,3,0,0,2739,215,1,0,0,0,2740,2742,3,370,185,0,2741,2743,7,15,0, - 0,2742,2741,1,0,0,0,2742,2743,1,0,0,0,2743,217,1,0,0,0,2744,2745, - 5,2,0,0,2745,2750,3,220,110,0,2746,2747,5,4,0,0,2747,2749,3,220, - 110,0,2748,2746,1,0,0,0,2749,2752,1,0,0,0,2750,2748,1,0,0,0,2750, - 2751,1,0,0,0,2751,2753,1,0,0,0,2752,2750,1,0,0,0,2753,2754,5,3,0, - 0,2754,219,1,0,0,0,2755,2757,3,94,47,0,2756,2758,3,24,12,0,2757, - 2756,1,0,0,0,2757,2758,1,0,0,0,2758,221,1,0,0,0,2759,2763,3,84,42, - 0,2760,2763,3,88,44,0,2761,2763,3,96,48,0,2762,2759,1,0,0,0,2762, - 2760,1,0,0,0,2762,2761,1,0,0,0,2763,2765,1,0,0,0,2764,2766,3,148, - 74,0,2765,2764,1,0,0,0,2765,2766,1,0,0,0,2766,2768,1,0,0,0,2767, - 2769,3,206,103,0,2768,2767,1,0,0,0,2768,2769,1,0,0,0,2769,2770,1, - 0,0,0,2770,2771,3,238,119,0,2771,2791,1,0,0,0,2772,2773,5,2,0,0, - 2773,2774,3,26,13,0,2774,2776,5,3,0,0,2775,2777,3,206,103,0,2776, - 2775,1,0,0,0,2776,2777,1,0,0,0,2777,2778,1,0,0,0,2778,2779,3,238, - 119,0,2779,2791,1,0,0,0,2780,2781,5,2,0,0,2781,2782,3,196,98,0,2782, - 2784,5,3,0,0,2783,2785,3,206,103,0,2784,2783,1,0,0,0,2784,2785,1, - 0,0,0,2785,2786,1,0,0,0,2786,2787,3,238,119,0,2787,2791,1,0,0,0, - 2788,2791,3,224,112,0,2789,2791,3,236,118,0,2790,2762,1,0,0,0,2790, - 2772,1,0,0,0,2790,2780,1,0,0,0,2790,2788,1,0,0,0,2790,2789,1,0,0, - 0,2791,223,1,0,0,0,2792,2793,5,332,0,0,2793,2798,3,266,133,0,2794, - 2795,5,4,0,0,2795,2797,3,266,133,0,2796,2794,1,0,0,0,2797,2800,1, - 0,0,0,2798,2796,1,0,0,0,2798,2799,1,0,0,0,2799,2801,1,0,0,0,2800, - 2798,1,0,0,0,2801,2802,3,238,119,0,2802,225,1,0,0,0,2803,2804,5, - 292,0,0,2804,2806,3,84,42,0,2805,2807,3,228,114,0,2806,2805,1,0, - 0,0,2806,2807,1,0,0,0,2807,2823,1,0,0,0,2808,2809,5,292,0,0,2809, - 2810,5,2,0,0,2810,2811,3,84,42,0,2811,2813,5,3,0,0,2812,2814,3,228, - 114,0,2813,2812,1,0,0,0,2813,2814,1,0,0,0,2814,2823,1,0,0,0,2815, - 2816,5,292,0,0,2816,2817,5,2,0,0,2817,2818,3,26,13,0,2818,2820,5, - 3,0,0,2819,2821,3,228,114,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0, - 2821,2823,1,0,0,0,2822,2803,1,0,0,0,2822,2808,1,0,0,0,2822,2815, - 1,0,0,0,2823,227,1,0,0,0,2824,2825,5,345,0,0,2825,2826,5,273,0,0, - 2826,2844,5,216,0,0,2827,2828,7,24,0,0,2828,2841,5,31,0,0,2829,2830, - 5,2,0,0,2830,2835,3,266,133,0,2831,2832,5,4,0,0,2832,2834,3,266, - 133,0,2833,2831,1,0,0,0,2834,2837,1,0,0,0,2835,2833,1,0,0,0,2835, - 2836,1,0,0,0,2836,2838,1,0,0,0,2837,2835,1,0,0,0,2838,2839,5,3,0, - 0,2839,2842,1,0,0,0,2840,2842,3,266,133,0,2841,2829,1,0,0,0,2841, - 2840,1,0,0,0,2842,2844,1,0,0,0,2843,2824,1,0,0,0,2843,2827,1,0,0, - 0,2844,2861,1,0,0,0,2845,2846,7,25,0,0,2846,2859,5,31,0,0,2847,2848, - 5,2,0,0,2848,2853,3,106,53,0,2849,2850,5,4,0,0,2850,2852,3,106,53, - 0,2851,2849,1,0,0,0,2852,2855,1,0,0,0,2853,2851,1,0,0,0,2853,2854, - 1,0,0,0,2854,2856,1,0,0,0,2855,2853,1,0,0,0,2856,2857,5,3,0,0,2857, - 2860,1,0,0,0,2858,2860,3,106,53,0,2859,2847,1,0,0,0,2859,2858,1, - 0,0,0,2860,2862,1,0,0,0,2861,2845,1,0,0,0,2861,2862,1,0,0,0,2862, - 229,1,0,0,0,2863,2864,3,374,187,0,2864,2865,5,372,0,0,2865,2866, - 3,226,113,0,2866,231,1,0,0,0,2867,2870,3,226,113,0,2868,2870,3,230, - 115,0,2869,2867,1,0,0,0,2869,2868,1,0,0,0,2870,233,1,0,0,0,2871, - 2874,3,232,116,0,2872,2874,3,270,135,0,2873,2871,1,0,0,0,2873,2872, - 1,0,0,0,2874,235,1,0,0,0,2875,2876,3,364,182,0,2876,2885,5,2,0,0, - 2877,2882,3,234,117,0,2878,2879,5,4,0,0,2879,2881,3,234,117,0,2880, - 2878,1,0,0,0,2881,2884,1,0,0,0,2882,2880,1,0,0,0,2882,2883,1,0,0, - 0,2883,2886,1,0,0,0,2884,2882,1,0,0,0,2885,2877,1,0,0,0,2885,2886, - 1,0,0,0,2886,2887,1,0,0,0,2887,2888,5,3,0,0,2888,2889,3,238,119, - 0,2889,237,1,0,0,0,2890,2892,5,20,0,0,2891,2890,1,0,0,0,2891,2892, - 1,0,0,0,2892,2893,1,0,0,0,2893,2895,3,376,188,0,2894,2896,3,210, - 105,0,2895,2894,1,0,0,0,2895,2896,1,0,0,0,2896,2898,1,0,0,0,2897, - 2891,1,0,0,0,2897,2898,1,0,0,0,2898,239,1,0,0,0,2899,2900,5,256, - 0,0,2900,2901,5,121,0,0,2901,2902,5,265,0,0,2902,2906,3,386,193, - 0,2903,2904,5,345,0,0,2904,2905,5,266,0,0,2905,2907,3,52,26,0,2906, - 2903,1,0,0,0,2906,2907,1,0,0,0,2907,2949,1,0,0,0,2908,2909,5,256, - 0,0,2909,2910,5,121,0,0,2910,2920,5,85,0,0,2911,2912,5,113,0,0,2912, - 2913,5,298,0,0,2913,2914,5,31,0,0,2914,2918,3,386,193,0,2915,2916, - 5,101,0,0,2916,2917,5,31,0,0,2917,2919,3,386,193,0,2918,2915,1,0, - 0,0,2918,2919,1,0,0,0,2919,2921,1,0,0,0,2920,2911,1,0,0,0,2920,2921, - 1,0,0,0,2921,2927,1,0,0,0,2922,2923,5,48,0,0,2923,2924,5,154,0,0, - 2924,2925,5,298,0,0,2925,2926,5,31,0,0,2926,2928,3,386,193,0,2927, - 2922,1,0,0,0,2927,2928,1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,176, - 0,0,2930,2931,5,156,0,0,2931,2932,5,298,0,0,2932,2933,5,31,0,0,2933, - 2935,3,386,193,0,2934,2929,1,0,0,0,2934,2935,1,0,0,0,2935,2940,1, - 0,0,0,2936,2937,5,165,0,0,2937,2938,5,298,0,0,2938,2939,5,31,0,0, - 2939,2941,3,386,193,0,2940,2936,1,0,0,0,2940,2941,1,0,0,0,2941,2946, - 1,0,0,0,2942,2943,5,197,0,0,2943,2944,5,83,0,0,2944,2945,5,20,0, - 0,2945,2947,3,386,193,0,2946,2942,1,0,0,0,2946,2947,1,0,0,0,2947, - 2949,1,0,0,0,2948,2899,1,0,0,0,2948,2908,1,0,0,0,2949,241,1,0,0, - 0,2950,2955,3,244,122,0,2951,2952,5,4,0,0,2952,2954,3,244,122,0, - 2953,2951,1,0,0,0,2954,2957,1,0,0,0,2955,2953,1,0,0,0,2955,2956, - 1,0,0,0,2956,243,1,0,0,0,2957,2955,1,0,0,0,2958,2963,3,370,185,0, - 2959,2960,5,5,0,0,2960,2962,3,370,185,0,2961,2959,1,0,0,0,2962,2965, - 1,0,0,0,2963,2961,1,0,0,0,2963,2964,1,0,0,0,2964,245,1,0,0,0,2965, - 2963,1,0,0,0,2966,2971,3,248,124,0,2967,2968,5,4,0,0,2968,2970,3, - 248,124,0,2969,2967,1,0,0,0,2970,2973,1,0,0,0,2971,2969,1,0,0,0, - 2971,2972,1,0,0,0,2972,247,1,0,0,0,2973,2971,1,0,0,0,2974,2977,3, - 244,122,0,2975,2976,5,206,0,0,2976,2978,3,52,26,0,2977,2975,1,0, - 0,0,2977,2978,1,0,0,0,2978,249,1,0,0,0,2979,2980,3,370,185,0,2980, - 2981,5,5,0,0,2981,2983,1,0,0,0,2982,2979,1,0,0,0,2982,2983,1,0,0, - 0,2983,2984,1,0,0,0,2984,2985,3,370,185,0,2985,251,1,0,0,0,2986, - 2987,3,370,185,0,2987,2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1, - 0,0,0,2989,2990,1,0,0,0,2990,2991,1,0,0,0,2991,2992,3,370,185,0, - 2992,253,1,0,0,0,2993,2996,3,90,45,0,2994,2996,3,266,133,0,2995, - 2993,1,0,0,0,2995,2994,1,0,0,0,2996,3004,1,0,0,0,2997,2999,5,20, - 0,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999,3002,1,0,0,0,3000,3003, - 3,370,185,0,3001,3003,3,210,105,0,3002,3000,1,0,0,0,3002,3001,1, - 0,0,0,3003,3005,1,0,0,0,3004,2998,1,0,0,0,3004,3005,1,0,0,0,3005, - 255,1,0,0,0,3006,3011,3,254,127,0,3007,3008,5,4,0,0,3008,3010,3, - 254,127,0,3009,3007,1,0,0,0,3010,3013,1,0,0,0,3011,3009,1,0,0,0, - 3011,3012,1,0,0,0,3012,257,1,0,0,0,3013,3011,1,0,0,0,3014,3015,5, - 2,0,0,3015,3020,3,260,130,0,3016,3017,5,4,0,0,3017,3019,3,260,130, - 0,3018,3016,1,0,0,0,3019,3022,1,0,0,0,3020,3018,1,0,0,0,3020,3021, - 1,0,0,0,3021,3023,1,0,0,0,3022,3020,1,0,0,0,3023,3024,5,3,0,0,3024, - 259,1,0,0,0,3025,3028,3,262,131,0,3026,3028,3,334,167,0,3027,3025, - 1,0,0,0,3027,3026,1,0,0,0,3028,261,1,0,0,0,3029,3043,3,368,184,0, - 3030,3031,3,374,187,0,3031,3032,5,2,0,0,3032,3037,3,264,132,0,3033, - 3034,5,4,0,0,3034,3036,3,264,132,0,3035,3033,1,0,0,0,3036,3039,1, - 0,0,0,3037,3035,1,0,0,0,3037,3038,1,0,0,0,3038,3040,1,0,0,0,3039, - 3037,1,0,0,0,3040,3041,5,3,0,0,3041,3043,1,0,0,0,3042,3029,1,0,0, - 0,3042,3030,1,0,0,0,3043,263,1,0,0,0,3044,3047,3,368,184,0,3045, - 3047,3,286,143,0,3046,3044,1,0,0,0,3046,3045,1,0,0,0,3047,265,1, - 0,0,0,3048,3049,3,274,137,0,3049,267,1,0,0,0,3050,3051,3,374,187, - 0,3051,3052,5,372,0,0,3052,3053,3,266,133,0,3053,269,1,0,0,0,3054, - 3057,3,266,133,0,3055,3057,3,268,134,0,3056,3054,1,0,0,0,3056,3055, - 1,0,0,0,3057,271,1,0,0,0,3058,3063,3,266,133,0,3059,3060,5,4,0,0, - 3060,3062,3,266,133,0,3061,3059,1,0,0,0,3062,3065,1,0,0,0,3063,3061, - 1,0,0,0,3063,3064,1,0,0,0,3064,273,1,0,0,0,3065,3063,1,0,0,0,3066, - 3067,6,137,-1,0,3067,3068,7,26,0,0,3068,3079,3,274,137,5,3069,3070, - 5,105,0,0,3070,3071,5,2,0,0,3071,3072,3,26,13,0,3072,3073,5,3,0, - 0,3073,3079,1,0,0,0,3074,3076,3,278,139,0,3075,3077,3,276,138,0, - 3076,3075,1,0,0,0,3076,3077,1,0,0,0,3077,3079,1,0,0,0,3078,3066, - 1,0,0,0,3078,3069,1,0,0,0,3078,3074,1,0,0,0,3079,3088,1,0,0,0,3080, - 3081,10,2,0,0,3081,3082,5,14,0,0,3082,3087,3,274,137,3,3083,3084, - 10,1,0,0,3084,3085,5,207,0,0,3085,3087,3,274,137,2,3086,3080,1,0, - 0,0,3086,3083,1,0,0,0,3087,3090,1,0,0,0,3088,3086,1,0,0,0,3088,3089, - 1,0,0,0,3089,275,1,0,0,0,3090,3088,1,0,0,0,3091,3093,5,196,0,0,3092, - 3091,1,0,0,0,3092,3093,1,0,0,0,3093,3094,1,0,0,0,3094,3095,5,24, - 0,0,3095,3096,3,278,139,0,3096,3097,5,14,0,0,3097,3098,3,278,139, - 0,3098,3174,1,0,0,0,3099,3101,5,196,0,0,3100,3099,1,0,0,0,3100,3101, - 1,0,0,0,3101,3102,1,0,0,0,3102,3103,5,140,0,0,3103,3104,5,2,0,0, - 3104,3109,3,266,133,0,3105,3106,5,4,0,0,3106,3108,3,266,133,0,3107, - 3105,1,0,0,0,3108,3111,1,0,0,0,3109,3107,1,0,0,0,3109,3110,1,0,0, - 0,3110,3112,1,0,0,0,3111,3109,1,0,0,0,3112,3113,5,3,0,0,3113,3174, - 1,0,0,0,3114,3116,5,196,0,0,3115,3114,1,0,0,0,3115,3116,1,0,0,0, - 3116,3117,1,0,0,0,3117,3118,5,140,0,0,3118,3119,5,2,0,0,3119,3120, - 3,26,13,0,3120,3121,5,3,0,0,3121,3174,1,0,0,0,3122,3124,5,196,0, - 0,3123,3122,1,0,0,0,3123,3124,1,0,0,0,3124,3125,1,0,0,0,3125,3126, - 7,27,0,0,3126,3174,3,278,139,0,3127,3129,5,196,0,0,3128,3127,1,0, - 0,0,3128,3129,1,0,0,0,3129,3130,1,0,0,0,3130,3131,7,28,0,0,3131, - 3145,7,29,0,0,3132,3133,5,2,0,0,3133,3146,5,3,0,0,3134,3135,5,2, - 0,0,3135,3140,3,266,133,0,3136,3137,5,4,0,0,3137,3139,3,266,133, - 0,3138,3136,1,0,0,0,3139,3142,1,0,0,0,3140,3138,1,0,0,0,3140,3141, - 1,0,0,0,3141,3143,1,0,0,0,3142,3140,1,0,0,0,3143,3144,5,3,0,0,3144, - 3146,1,0,0,0,3145,3132,1,0,0,0,3145,3134,1,0,0,0,3146,3174,1,0,0, - 0,3147,3149,5,196,0,0,3148,3147,1,0,0,0,3148,3149,1,0,0,0,3149,3150, - 1,0,0,0,3150,3151,7,28,0,0,3151,3154,3,278,139,0,3152,3153,5,100, - 0,0,3153,3155,3,386,193,0,3154,3152,1,0,0,0,3154,3155,1,0,0,0,3155, - 3174,1,0,0,0,3156,3158,5,153,0,0,3157,3159,5,196,0,0,3158,3157,1, - 0,0,0,3158,3159,1,0,0,0,3159,3160,1,0,0,0,3160,3174,5,197,0,0,3161, - 3163,5,153,0,0,3162,3164,5,196,0,0,3163,3162,1,0,0,0,3163,3164,1, - 0,0,0,3164,3165,1,0,0,0,3165,3174,7,30,0,0,3166,3168,5,153,0,0,3167, - 3169,5,196,0,0,3168,3167,1,0,0,0,3168,3169,1,0,0,0,3169,3170,1,0, - 0,0,3170,3171,5,92,0,0,3171,3172,5,123,0,0,3172,3174,3,278,139,0, - 3173,3092,1,0,0,0,3173,3100,1,0,0,0,3173,3115,1,0,0,0,3173,3123, - 1,0,0,0,3173,3128,1,0,0,0,3173,3148,1,0,0,0,3173,3156,1,0,0,0,3173, - 3161,1,0,0,0,3173,3166,1,0,0,0,3174,277,1,0,0,0,3175,3176,6,139, - -1,0,3176,3180,3,282,141,0,3177,3178,7,31,0,0,3178,3180,3,278,139, - 7,3179,3175,1,0,0,0,3179,3177,1,0,0,0,3180,3202,1,0,0,0,3181,3182, - 10,6,0,0,3182,3183,7,32,0,0,3183,3201,3,278,139,7,3184,3185,10,5, - 0,0,3185,3186,7,33,0,0,3186,3201,3,278,139,6,3187,3188,10,4,0,0, - 3188,3189,5,366,0,0,3189,3201,3,278,139,5,3190,3191,10,3,0,0,3191, - 3192,5,369,0,0,3192,3201,3,278,139,4,3193,3194,10,2,0,0,3194,3195, - 5,367,0,0,3195,3201,3,278,139,3,3196,3197,10,1,0,0,3197,3198,3,288, - 144,0,3198,3199,3,278,139,2,3199,3201,1,0,0,0,3200,3181,1,0,0,0, - 3200,3184,1,0,0,0,3200,3187,1,0,0,0,3200,3190,1,0,0,0,3200,3193, - 1,0,0,0,3200,3196,1,0,0,0,3201,3204,1,0,0,0,3202,3200,1,0,0,0,3202, - 3203,1,0,0,0,3203,279,1,0,0,0,3204,3202,1,0,0,0,3205,3206,7,34,0, - 0,3206,281,1,0,0,0,3207,3208,6,141,-1,0,3208,3457,7,35,0,0,3209, - 3210,7,36,0,0,3210,3213,5,2,0,0,3211,3214,3,280,140,0,3212,3214, - 3,386,193,0,3213,3211,1,0,0,0,3213,3212,1,0,0,0,3214,3215,1,0,0, - 0,3215,3216,5,4,0,0,3216,3217,3,278,139,0,3217,3218,5,4,0,0,3218, - 3219,3,278,139,0,3219,3220,5,3,0,0,3220,3457,1,0,0,0,3221,3222,7, - 37,0,0,3222,3225,5,2,0,0,3223,3226,3,280,140,0,3224,3226,3,386,193, - 0,3225,3223,1,0,0,0,3225,3224,1,0,0,0,3226,3227,1,0,0,0,3227,3228, - 5,4,0,0,3228,3229,3,278,139,0,3229,3230,5,4,0,0,3230,3231,3,278, - 139,0,3231,3232,5,3,0,0,3232,3457,1,0,0,0,3233,3235,5,35,0,0,3234, - 3236,3,348,174,0,3235,3234,1,0,0,0,3236,3237,1,0,0,0,3237,3235,1, - 0,0,0,3237,3238,1,0,0,0,3238,3241,1,0,0,0,3239,3240,5,97,0,0,3240, - 3242,3,266,133,0,3241,3239,1,0,0,0,3241,3242,1,0,0,0,3242,3243,1, - 0,0,0,3243,3244,5,99,0,0,3244,3457,1,0,0,0,3245,3246,5,35,0,0,3246, - 3248,3,266,133,0,3247,3249,3,348,174,0,3248,3247,1,0,0,0,3249,3250, - 1,0,0,0,3250,3248,1,0,0,0,3250,3251,1,0,0,0,3251,3254,1,0,0,0,3252, - 3253,5,97,0,0,3253,3255,3,266,133,0,3254,3252,1,0,0,0,3254,3255, - 1,0,0,0,3255,3256,1,0,0,0,3256,3257,5,99,0,0,3257,3457,1,0,0,0,3258, - 3259,7,38,0,0,3259,3260,5,2,0,0,3260,3261,3,266,133,0,3261,3262, - 5,20,0,0,3262,3263,3,316,158,0,3263,3264,5,3,0,0,3264,3457,1,0,0, - 0,3265,3266,5,285,0,0,3266,3275,5,2,0,0,3267,3272,3,254,127,0,3268, - 3269,5,4,0,0,3269,3271,3,254,127,0,3270,3268,1,0,0,0,3271,3274,1, - 0,0,0,3272,3270,1,0,0,0,3272,3273,1,0,0,0,3273,3276,1,0,0,0,3274, - 3272,1,0,0,0,3275,3267,1,0,0,0,3275,3276,1,0,0,0,3276,3277,1,0,0, - 0,3277,3457,5,3,0,0,3278,3279,5,116,0,0,3279,3280,5,2,0,0,3280,3283, - 3,266,133,0,3281,3282,5,138,0,0,3282,3284,5,198,0,0,3283,3281,1, - 0,0,0,3283,3284,1,0,0,0,3284,3285,1,0,0,0,3285,3286,5,3,0,0,3286, - 3457,1,0,0,0,3287,3288,5,17,0,0,3288,3289,5,2,0,0,3289,3292,3,266, - 133,0,3290,3291,5,138,0,0,3291,3293,5,198,0,0,3292,3290,1,0,0,0, - 3292,3293,1,0,0,0,3293,3294,1,0,0,0,3294,3295,5,3,0,0,3295,3457, - 1,0,0,0,3296,3297,5,157,0,0,3297,3298,5,2,0,0,3298,3301,3,266,133, - 0,3299,3300,5,138,0,0,3300,3302,5,198,0,0,3301,3299,1,0,0,0,3301, - 3302,1,0,0,0,3302,3303,1,0,0,0,3303,3304,5,3,0,0,3304,3457,1,0,0, - 0,3305,3306,5,224,0,0,3306,3307,5,2,0,0,3307,3308,3,278,139,0,3308, - 3309,5,140,0,0,3309,3310,3,278,139,0,3310,3311,5,3,0,0,3311,3457, - 1,0,0,0,3312,3457,3,286,143,0,3313,3457,5,362,0,0,3314,3315,3,368, - 184,0,3315,3316,5,5,0,0,3316,3317,5,362,0,0,3317,3457,1,0,0,0,3318, - 3319,5,2,0,0,3319,3322,3,254,127,0,3320,3321,5,4,0,0,3321,3323,3, - 254,127,0,3322,3320,1,0,0,0,3323,3324,1,0,0,0,3324,3322,1,0,0,0, - 3324,3325,1,0,0,0,3325,3326,1,0,0,0,3326,3327,5,3,0,0,3327,3457, - 1,0,0,0,3328,3329,5,2,0,0,3329,3330,3,26,13,0,3330,3331,5,3,0,0, - 3331,3457,1,0,0,0,3332,3333,5,136,0,0,3333,3334,5,2,0,0,3334,3335, - 3,266,133,0,3335,3336,5,3,0,0,3336,3457,1,0,0,0,3337,3338,3,364, - 182,0,3338,3350,5,2,0,0,3339,3341,3,194,97,0,3340,3339,1,0,0,0,3340, - 3341,1,0,0,0,3341,3342,1,0,0,0,3342,3347,3,270,135,0,3343,3344,5, - 4,0,0,3344,3346,3,270,135,0,3345,3343,1,0,0,0,3346,3349,1,0,0,0, - 3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3351,1,0,0,0,3349,3347, - 1,0,0,0,3350,3340,1,0,0,0,3350,3351,1,0,0,0,3351,3352,1,0,0,0,3352, - 3359,5,3,0,0,3353,3354,5,114,0,0,3354,3355,5,2,0,0,3355,3356,5,343, - 0,0,3356,3357,3,274,137,0,3357,3358,5,3,0,0,3358,3360,1,0,0,0,3359, - 3353,1,0,0,0,3359,3360,1,0,0,0,3360,3363,1,0,0,0,3361,3362,7,39, - 0,0,3362,3364,5,198,0,0,3363,3361,1,0,0,0,3363,3364,1,0,0,0,3364, - 3367,1,0,0,0,3365,3366,5,212,0,0,3366,3368,3,356,178,0,3367,3365, - 1,0,0,0,3367,3368,1,0,0,0,3368,3457,1,0,0,0,3369,3370,3,374,187, - 0,3370,3371,5,371,0,0,3371,3372,3,266,133,0,3372,3457,1,0,0,0,3373, - 3374,5,2,0,0,3374,3377,3,374,187,0,3375,3376,5,4,0,0,3376,3378,3, - 374,187,0,3377,3375,1,0,0,0,3378,3379,1,0,0,0,3379,3377,1,0,0,0, - 3379,3380,1,0,0,0,3380,3381,1,0,0,0,3381,3382,5,3,0,0,3382,3383, - 5,371,0,0,3383,3384,3,266,133,0,3384,3457,1,0,0,0,3385,3457,3,374, - 187,0,3386,3387,5,2,0,0,3387,3388,3,266,133,0,3388,3389,5,3,0,0, - 3389,3457,1,0,0,0,3390,3391,5,110,0,0,3391,3392,5,2,0,0,3392,3393, - 3,374,187,0,3393,3394,5,123,0,0,3394,3395,3,278,139,0,3395,3396, - 5,3,0,0,3396,3457,1,0,0,0,3397,3398,7,40,0,0,3398,3399,5,2,0,0,3399, - 3400,3,278,139,0,3400,3401,7,41,0,0,3401,3404,3,278,139,0,3402,3403, - 7,42,0,0,3403,3405,3,278,139,0,3404,3402,1,0,0,0,3404,3405,1,0,0, - 0,3405,3406,1,0,0,0,3406,3407,5,3,0,0,3407,3457,1,0,0,0,3408,3409, - 5,314,0,0,3409,3411,5,2,0,0,3410,3412,7,43,0,0,3411,3410,1,0,0,0, - 3411,3412,1,0,0,0,3412,3414,1,0,0,0,3413,3415,3,278,139,0,3414,3413, - 1,0,0,0,3414,3415,1,0,0,0,3415,3416,1,0,0,0,3416,3417,5,123,0,0, - 3417,3418,3,278,139,0,3418,3419,5,3,0,0,3419,3457,1,0,0,0,3420,3421, - 5,214,0,0,3421,3422,5,2,0,0,3422,3423,3,278,139,0,3423,3424,5,223, - 0,0,3424,3425,3,278,139,0,3425,3426,5,123,0,0,3426,3429,3,278,139, - 0,3427,3428,5,119,0,0,3428,3430,3,278,139,0,3429,3427,1,0,0,0,3429, - 3430,1,0,0,0,3430,3431,1,0,0,0,3431,3432,5,3,0,0,3432,3457,1,0,0, - 0,3433,3434,7,44,0,0,3434,3435,5,2,0,0,3435,3436,3,278,139,0,3436, - 3437,5,3,0,0,3437,3438,5,346,0,0,3438,3439,5,130,0,0,3439,3440,5, - 2,0,0,3440,3441,5,208,0,0,3441,3442,5,31,0,0,3442,3443,3,106,53, - 0,3443,3450,5,3,0,0,3444,3445,5,114,0,0,3445,3446,5,2,0,0,3446,3447, - 5,343,0,0,3447,3448,3,274,137,0,3448,3449,5,3,0,0,3449,3451,1,0, - 0,0,3450,3444,1,0,0,0,3450,3451,1,0,0,0,3451,3454,1,0,0,0,3452,3453, - 5,212,0,0,3453,3455,3,356,178,0,3454,3452,1,0,0,0,3454,3455,1,0, - 0,0,3455,3457,1,0,0,0,3456,3207,1,0,0,0,3456,3209,1,0,0,0,3456,3221, - 1,0,0,0,3456,3233,1,0,0,0,3456,3245,1,0,0,0,3456,3258,1,0,0,0,3456, - 3265,1,0,0,0,3456,3278,1,0,0,0,3456,3287,1,0,0,0,3456,3296,1,0,0, - 0,3456,3305,1,0,0,0,3456,3312,1,0,0,0,3456,3313,1,0,0,0,3456,3314, - 1,0,0,0,3456,3318,1,0,0,0,3456,3328,1,0,0,0,3456,3332,1,0,0,0,3456, - 3337,1,0,0,0,3456,3369,1,0,0,0,3456,3373,1,0,0,0,3456,3385,1,0,0, - 0,3456,3386,1,0,0,0,3456,3390,1,0,0,0,3456,3397,1,0,0,0,3456,3408, - 1,0,0,0,3456,3420,1,0,0,0,3456,3433,1,0,0,0,3457,3468,1,0,0,0,3458, - 3459,10,9,0,0,3459,3460,5,6,0,0,3460,3461,3,278,139,0,3461,3462, - 5,7,0,0,3462,3467,1,0,0,0,3463,3464,10,7,0,0,3464,3465,5,5,0,0,3465, - 3467,3,374,187,0,3466,3458,1,0,0,0,3466,3463,1,0,0,0,3467,3470,1, - 0,0,0,3468,3466,1,0,0,0,3468,3469,1,0,0,0,3469,283,1,0,0,0,3470, - 3468,1,0,0,0,3471,3479,5,71,0,0,3472,3479,5,302,0,0,3473,3479,5, - 303,0,0,3474,3479,5,304,0,0,3475,3479,5,149,0,0,3476,3479,5,133, - 0,0,3477,3479,3,374,187,0,3478,3471,1,0,0,0,3478,3472,1,0,0,0,3478, - 3473,1,0,0,0,3478,3474,1,0,0,0,3478,3475,1,0,0,0,3478,3476,1,0,0, - 0,3478,3477,1,0,0,0,3479,285,1,0,0,0,3480,3496,5,197,0,0,3481,3496, - 5,375,0,0,3482,3483,5,370,0,0,3483,3496,3,374,187,0,3484,3496,3, - 296,148,0,3485,3486,3,284,142,0,3486,3487,3,386,193,0,3487,3496, - 1,0,0,0,3488,3496,3,382,191,0,3489,3496,3,294,147,0,3490,3492,3, - 386,193,0,3491,3490,1,0,0,0,3492,3493,1,0,0,0,3493,3491,1,0,0,0, - 3493,3494,1,0,0,0,3494,3496,1,0,0,0,3495,3480,1,0,0,0,3495,3481, - 1,0,0,0,3495,3482,1,0,0,0,3495,3484,1,0,0,0,3495,3485,1,0,0,0,3495, - 3488,1,0,0,0,3495,3489,1,0,0,0,3495,3491,1,0,0,0,3496,287,1,0,0, - 0,3497,3498,7,45,0,0,3498,289,1,0,0,0,3499,3500,7,46,0,0,3500,291, - 1,0,0,0,3501,3502,7,47,0,0,3502,293,1,0,0,0,3503,3504,7,48,0,0,3504, - 295,1,0,0,0,3505,3508,5,149,0,0,3506,3509,3,298,149,0,3507,3509, - 3,302,151,0,3508,3506,1,0,0,0,3508,3507,1,0,0,0,3509,297,1,0,0,0, - 3510,3512,3,300,150,0,3511,3513,3,304,152,0,3512,3511,1,0,0,0,3512, - 3513,1,0,0,0,3513,299,1,0,0,0,3514,3515,3,306,153,0,3515,3516,3, - 308,154,0,3516,3518,1,0,0,0,3517,3514,1,0,0,0,3518,3519,1,0,0,0, - 3519,3517,1,0,0,0,3519,3520,1,0,0,0,3520,301,1,0,0,0,3521,3524,3, - 304,152,0,3522,3525,3,300,150,0,3523,3525,3,304,152,0,3524,3522, - 1,0,0,0,3524,3523,1,0,0,0,3524,3525,1,0,0,0,3525,303,1,0,0,0,3526, - 3527,3,306,153,0,3527,3528,3,310,155,0,3528,3529,5,308,0,0,3529, - 3530,3,310,155,0,3530,305,1,0,0,0,3531,3533,7,49,0,0,3532,3531,1, - 0,0,0,3532,3533,1,0,0,0,3533,3537,1,0,0,0,3534,3538,5,381,0,0,3535, - 3538,5,383,0,0,3536,3538,3,386,193,0,3537,3534,1,0,0,0,3537,3535, - 1,0,0,0,3537,3536,1,0,0,0,3538,307,1,0,0,0,3539,3540,7,50,0,0,3540, - 309,1,0,0,0,3541,3542,7,51,0,0,3542,311,1,0,0,0,3543,3547,5,116, - 0,0,3544,3545,5,9,0,0,3545,3547,3,370,185,0,3546,3543,1,0,0,0,3546, - 3544,1,0,0,0,3547,313,1,0,0,0,3548,3579,5,27,0,0,3549,3579,5,307, - 0,0,3550,3579,5,32,0,0,3551,3579,5,275,0,0,3552,3579,5,271,0,0,3553, - 3579,5,150,0,0,3554,3579,5,151,0,0,3555,3579,5,25,0,0,3556,3579, - 5,173,0,0,3557,3579,5,117,0,0,3558,3579,5,233,0,0,3559,3579,5,95, - 0,0,3560,3579,5,71,0,0,3561,3579,5,302,0,0,3562,3579,5,304,0,0,3563, - 3579,5,303,0,0,3564,3579,5,284,0,0,3565,3579,5,41,0,0,3566,3579, - 5,40,0,0,3567,3579,5,333,0,0,3568,3579,5,26,0,0,3569,3579,5,80,0, - 0,3570,3579,5,79,0,0,3571,3579,5,199,0,0,3572,3579,5,339,0,0,3573, - 3579,5,149,0,0,3574,3579,5,19,0,0,3575,3579,5,285,0,0,3576,3579, - 5,176,0,0,3577,3579,3,374,187,0,3578,3548,1,0,0,0,3578,3549,1,0, - 0,0,3578,3550,1,0,0,0,3578,3551,1,0,0,0,3578,3552,1,0,0,0,3578,3553, - 1,0,0,0,3578,3554,1,0,0,0,3578,3555,1,0,0,0,3578,3556,1,0,0,0,3578, - 3557,1,0,0,0,3578,3558,1,0,0,0,3578,3559,1,0,0,0,3578,3560,1,0,0, - 0,3578,3561,1,0,0,0,3578,3562,1,0,0,0,3578,3563,1,0,0,0,3578,3564, - 1,0,0,0,3578,3565,1,0,0,0,3578,3566,1,0,0,0,3578,3567,1,0,0,0,3578, - 3568,1,0,0,0,3578,3569,1,0,0,0,3578,3570,1,0,0,0,3578,3571,1,0,0, - 0,3578,3572,1,0,0,0,3578,3573,1,0,0,0,3578,3574,1,0,0,0,3578,3575, - 1,0,0,0,3578,3576,1,0,0,0,3578,3577,1,0,0,0,3579,315,1,0,0,0,3580, - 3581,5,19,0,0,3581,3582,5,355,0,0,3582,3583,3,316,158,0,3583,3584, - 5,357,0,0,3584,3627,1,0,0,0,3585,3586,5,176,0,0,3586,3587,5,355, - 0,0,3587,3588,3,316,158,0,3588,3589,5,4,0,0,3589,3590,3,316,158, - 0,3590,3591,5,357,0,0,3591,3627,1,0,0,0,3592,3599,5,285,0,0,3593, - 3595,5,355,0,0,3594,3596,3,344,172,0,3595,3594,1,0,0,0,3595,3596, - 1,0,0,0,3596,3597,1,0,0,0,3597,3600,5,357,0,0,3598,3600,5,353,0, - 0,3599,3593,1,0,0,0,3599,3598,1,0,0,0,3600,3627,1,0,0,0,3601,3602, - 5,149,0,0,3602,3605,7,52,0,0,3603,3604,5,308,0,0,3604,3606,5,185, - 0,0,3605,3603,1,0,0,0,3605,3606,1,0,0,0,3606,3627,1,0,0,0,3607,3608, - 5,149,0,0,3608,3611,7,53,0,0,3609,3610,5,308,0,0,3610,3612,7,54, - 0,0,3611,3609,1,0,0,0,3611,3612,1,0,0,0,3612,3627,1,0,0,0,3613,3624, - 3,314,157,0,3614,3615,5,2,0,0,3615,3620,5,381,0,0,3616,3617,5,4, - 0,0,3617,3619,5,381,0,0,3618,3616,1,0,0,0,3619,3622,1,0,0,0,3620, - 3618,1,0,0,0,3620,3621,1,0,0,0,3621,3623,1,0,0,0,3622,3620,1,0,0, - 0,3623,3625,5,3,0,0,3624,3614,1,0,0,0,3624,3625,1,0,0,0,3625,3627, - 1,0,0,0,3626,3580,1,0,0,0,3626,3585,1,0,0,0,3626,3592,1,0,0,0,3626, - 3601,1,0,0,0,3626,3607,1,0,0,0,3626,3613,1,0,0,0,3627,317,1,0,0, - 0,3628,3633,3,320,160,0,3629,3630,5,4,0,0,3630,3632,3,320,160,0, - 3631,3629,1,0,0,0,3632,3635,1,0,0,0,3633,3631,1,0,0,0,3633,3634, - 1,0,0,0,3634,319,1,0,0,0,3635,3633,1,0,0,0,3636,3637,3,94,47,0,3637, - 3641,3,316,158,0,3638,3640,3,326,163,0,3639,3638,1,0,0,0,3640,3643, - 1,0,0,0,3641,3639,1,0,0,0,3641,3642,1,0,0,0,3642,321,1,0,0,0,3643, - 3641,1,0,0,0,3644,3649,3,324,162,0,3645,3646,5,4,0,0,3646,3648,3, - 324,162,0,3647,3645,1,0,0,0,3648,3651,1,0,0,0,3649,3647,1,0,0,0, - 3649,3650,1,0,0,0,3650,323,1,0,0,0,3651,3649,1,0,0,0,3652,3653,3, - 90,45,0,3653,3657,3,316,158,0,3654,3656,3,326,163,0,3655,3654,1, - 0,0,0,3656,3659,1,0,0,0,3657,3655,1,0,0,0,3657,3658,1,0,0,0,3658, - 325,1,0,0,0,3659,3657,1,0,0,0,3660,3661,5,196,0,0,3661,3666,5,197, - 0,0,3662,3666,3,328,164,0,3663,3666,3,24,12,0,3664,3666,3,312,156, - 0,3665,3660,1,0,0,0,3665,3662,1,0,0,0,3665,3663,1,0,0,0,3665,3664, - 1,0,0,0,3666,327,1,0,0,0,3667,3668,5,82,0,0,3668,3669,3,266,133, - 0,3669,329,1,0,0,0,3670,3671,7,55,0,0,3671,3672,3,266,133,0,3672, - 331,1,0,0,0,3673,3678,3,334,167,0,3674,3675,5,4,0,0,3675,3677,3, - 334,167,0,3676,3674,1,0,0,0,3677,3680,1,0,0,0,3678,3676,1,0,0,0, - 3678,3679,1,0,0,0,3679,333,1,0,0,0,3680,3678,1,0,0,0,3681,3682,3, - 370,185,0,3682,3685,3,316,158,0,3683,3684,5,196,0,0,3684,3686,5, - 197,0,0,3685,3683,1,0,0,0,3685,3686,1,0,0,0,3686,3688,1,0,0,0,3687, - 3689,3,24,12,0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,335,1,0, - 0,0,3690,3695,3,338,169,0,3691,3692,5,4,0,0,3692,3694,3,338,169, - 0,3693,3691,1,0,0,0,3694,3697,1,0,0,0,3695,3693,1,0,0,0,3695,3696, - 1,0,0,0,3696,337,1,0,0,0,3697,3695,1,0,0,0,3698,3699,3,94,47,0,3699, - 3703,3,316,158,0,3700,3702,3,340,170,0,3701,3700,1,0,0,0,3702,3705, - 1,0,0,0,3703,3701,1,0,0,0,3703,3704,1,0,0,0,3704,339,1,0,0,0,3705, - 3703,1,0,0,0,3706,3707,5,196,0,0,3707,3712,5,197,0,0,3708,3712,3, - 328,164,0,3709,3712,3,342,171,0,3710,3712,3,24,12,0,3711,3706,1, - 0,0,0,3711,3708,1,0,0,0,3711,3709,1,0,0,0,3711,3710,1,0,0,0,3712, - 341,1,0,0,0,3713,3714,5,127,0,0,3714,3715,5,12,0,0,3715,3716,5,20, - 0,0,3716,3717,5,2,0,0,3717,3718,3,266,133,0,3718,3719,5,3,0,0,3719, - 343,1,0,0,0,3720,3725,3,346,173,0,3721,3722,5,4,0,0,3722,3724,3, - 346,173,0,3723,3721,1,0,0,0,3724,3727,1,0,0,0,3725,3723,1,0,0,0, - 3725,3726,1,0,0,0,3726,345,1,0,0,0,3727,3725,1,0,0,0,3728,3730,3, - 374,187,0,3729,3731,5,370,0,0,3730,3729,1,0,0,0,3730,3731,1,0,0, - 0,3731,3732,1,0,0,0,3732,3735,3,316,158,0,3733,3734,5,196,0,0,3734, - 3736,5,197,0,0,3735,3733,1,0,0,0,3735,3736,1,0,0,0,3736,3738,1,0, - 0,0,3737,3739,3,24,12,0,3738,3737,1,0,0,0,3738,3739,1,0,0,0,3739, - 347,1,0,0,0,3740,3741,5,342,0,0,3741,3742,3,266,133,0,3742,3743, - 5,299,0,0,3743,3744,3,266,133,0,3744,349,1,0,0,0,3745,3746,5,344, - 0,0,3746,3751,3,354,177,0,3747,3748,5,4,0,0,3748,3750,3,354,177, - 0,3749,3747,1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3751,3752, - 1,0,0,0,3752,351,1,0,0,0,3753,3751,1,0,0,0,3754,3755,5,350,0,0,3755, - 3756,5,31,0,0,3756,3757,3,92,46,0,3757,353,1,0,0,0,3758,3759,3,370, - 185,0,3759,3760,5,20,0,0,3760,3761,3,356,178,0,3761,355,1,0,0,0, - 3762,3809,3,370,185,0,3763,3764,5,2,0,0,3764,3765,3,370,185,0,3765, - 3766,5,3,0,0,3766,3809,1,0,0,0,3767,3802,5,2,0,0,3768,3769,5,44, - 0,0,3769,3770,5,31,0,0,3770,3775,3,266,133,0,3771,3772,5,4,0,0,3772, - 3774,3,266,133,0,3773,3771,1,0,0,0,3774,3777,1,0,0,0,3775,3773,1, - 0,0,0,3775,3776,1,0,0,0,3776,3803,1,0,0,0,3777,3775,1,0,0,0,3778, - 3779,7,24,0,0,3779,3780,5,31,0,0,3780,3785,3,266,133,0,3781,3782, - 5,4,0,0,3782,3784,3,266,133,0,3783,3781,1,0,0,0,3784,3787,1,0,0, - 0,3785,3783,1,0,0,0,3785,3786,1,0,0,0,3786,3789,1,0,0,0,3787,3785, - 1,0,0,0,3788,3778,1,0,0,0,3788,3789,1,0,0,0,3789,3800,1,0,0,0,3790, - 3791,7,25,0,0,3791,3792,5,31,0,0,3792,3797,3,106,53,0,3793,3794, - 5,4,0,0,3794,3796,3,106,53,0,3795,3793,1,0,0,0,3796,3799,1,0,0,0, - 3797,3795,1,0,0,0,3797,3798,1,0,0,0,3798,3801,1,0,0,0,3799,3797, - 1,0,0,0,3800,3790,1,0,0,0,3800,3801,1,0,0,0,3801,3803,1,0,0,0,3802, - 3768,1,0,0,0,3802,3788,1,0,0,0,3803,3805,1,0,0,0,3804,3806,3,358, - 179,0,3805,3804,1,0,0,0,3805,3806,1,0,0,0,3806,3807,1,0,0,0,3807, - 3809,5,3,0,0,3808,3762,1,0,0,0,3808,3763,1,0,0,0,3808,3767,1,0,0, - 0,3809,357,1,0,0,0,3810,3811,5,232,0,0,3811,3827,3,360,180,0,3812, - 3813,5,257,0,0,3813,3827,3,360,180,0,3814,3815,5,232,0,0,3815,3816, - 5,24,0,0,3816,3817,3,360,180,0,3817,3818,5,14,0,0,3818,3819,3,360, - 180,0,3819,3827,1,0,0,0,3820,3821,5,257,0,0,3821,3822,5,24,0,0,3822, - 3823,3,360,180,0,3823,3824,5,14,0,0,3824,3825,3,360,180,0,3825,3827, - 1,0,0,0,3826,3810,1,0,0,0,3826,3812,1,0,0,0,3826,3814,1,0,0,0,3826, - 3820,1,0,0,0,3827,359,1,0,0,0,3828,3829,5,320,0,0,3829,3836,7,56, - 0,0,3830,3831,5,62,0,0,3831,3836,5,256,0,0,3832,3833,3,266,133,0, - 3833,3834,7,56,0,0,3834,3836,1,0,0,0,3835,3828,1,0,0,0,3835,3830, - 1,0,0,0,3835,3832,1,0,0,0,3836,361,1,0,0,0,3837,3842,3,368,184,0, - 3838,3839,5,4,0,0,3839,3841,3,368,184,0,3840,3838,1,0,0,0,3841,3844, - 1,0,0,0,3842,3840,1,0,0,0,3842,3843,1,0,0,0,3843,363,1,0,0,0,3844, - 3842,1,0,0,0,3845,3846,5,136,0,0,3846,3847,5,2,0,0,3847,3848,3,266, - 133,0,3848,3849,5,3,0,0,3849,3855,1,0,0,0,3850,3855,3,368,184,0, - 3851,3855,5,114,0,0,3852,3855,5,161,0,0,3853,3855,5,249,0,0,3854, - 3845,1,0,0,0,3854,3850,1,0,0,0,3854,3851,1,0,0,0,3854,3852,1,0,0, - 0,3854,3853,1,0,0,0,3855,365,1,0,0,0,3856,3857,3,368,184,0,3857, - 367,1,0,0,0,3858,3863,3,374,187,0,3859,3860,5,5,0,0,3860,3862,3, - 374,187,0,3861,3859,1,0,0,0,3862,3865,1,0,0,0,3863,3861,1,0,0,0, - 3863,3864,1,0,0,0,3864,369,1,0,0,0,3865,3863,1,0,0,0,3866,3867,3, - 374,187,0,3867,3868,3,372,186,0,3868,371,1,0,0,0,3869,3870,5,361, - 0,0,3870,3872,3,374,187,0,3871,3869,1,0,0,0,3872,3873,1,0,0,0,3873, - 3871,1,0,0,0,3873,3874,1,0,0,0,3874,3877,1,0,0,0,3875,3877,1,0,0, - 0,3876,3871,1,0,0,0,3876,3875,1,0,0,0,3877,373,1,0,0,0,3878,3881, - 3,376,188,0,3879,3881,3,394,197,0,3880,3878,1,0,0,0,3880,3879,1, - 0,0,0,3881,375,1,0,0,0,3882,3887,5,387,0,0,3883,3887,3,378,189,0, - 3884,3887,3,392,196,0,3885,3887,3,396,198,0,3886,3882,1,0,0,0,3886, - 3883,1,0,0,0,3886,3884,1,0,0,0,3886,3885,1,0,0,0,3887,377,1,0,0, - 0,3888,3889,7,57,0,0,3889,379,1,0,0,0,3890,3891,5,388,0,0,3891,381, - 1,0,0,0,3892,3894,5,361,0,0,3893,3892,1,0,0,0,3893,3894,1,0,0,0, - 3894,3895,1,0,0,0,3895,3933,5,382,0,0,3896,3898,5,361,0,0,3897,3896, - 1,0,0,0,3897,3898,1,0,0,0,3898,3899,1,0,0,0,3899,3933,5,383,0,0, - 3900,3902,5,361,0,0,3901,3900,1,0,0,0,3901,3902,1,0,0,0,3902,3903, - 1,0,0,0,3903,3933,7,58,0,0,3904,3906,5,361,0,0,3905,3904,1,0,0,0, - 3905,3906,1,0,0,0,3906,3907,1,0,0,0,3907,3933,5,381,0,0,3908,3910, - 5,361,0,0,3909,3908,1,0,0,0,3909,3910,1,0,0,0,3910,3911,1,0,0,0, - 3911,3933,5,378,0,0,3912,3914,5,361,0,0,3913,3912,1,0,0,0,3913,3914, - 1,0,0,0,3914,3915,1,0,0,0,3915,3933,5,379,0,0,3916,3918,5,361,0, - 0,3917,3916,1,0,0,0,3917,3918,1,0,0,0,3918,3919,1,0,0,0,3919,3933, - 5,380,0,0,3920,3922,5,361,0,0,3921,3920,1,0,0,0,3921,3922,1,0,0, - 0,3922,3923,1,0,0,0,3923,3933,5,385,0,0,3924,3926,5,361,0,0,3925, - 3924,1,0,0,0,3925,3926,1,0,0,0,3926,3927,1,0,0,0,3927,3933,5,384, - 0,0,3928,3930,5,361,0,0,3929,3928,1,0,0,0,3929,3930,1,0,0,0,3930, - 3931,1,0,0,0,3931,3933,5,386,0,0,3932,3893,1,0,0,0,3932,3897,1,0, - 0,0,3932,3901,1,0,0,0,3932,3905,1,0,0,0,3932,3909,1,0,0,0,3932,3913, - 1,0,0,0,3932,3917,1,0,0,0,3932,3921,1,0,0,0,3932,3925,1,0,0,0,3932, - 3929,1,0,0,0,3933,383,1,0,0,0,3934,3935,5,318,0,0,3935,3946,3,316, - 158,0,3936,3946,3,24,12,0,3937,3946,3,312,156,0,3938,3939,7,59,0, - 0,3939,3940,5,196,0,0,3940,3946,5,197,0,0,3941,3942,5,268,0,0,3942, - 3946,3,328,164,0,3943,3944,5,96,0,0,3944,3946,5,82,0,0,3945,3934, - 1,0,0,0,3945,3936,1,0,0,0,3945,3937,1,0,0,0,3945,3938,1,0,0,0,3945, - 3941,1,0,0,0,3945,3943,1,0,0,0,3946,385,1,0,0,0,3947,3948,7,60,0, - 0,3948,387,1,0,0,0,3949,3952,3,386,193,0,3950,3952,5,197,0,0,3951, - 3949,1,0,0,0,3951,3950,1,0,0,0,3952,389,1,0,0,0,3953,3956,5,381, - 0,0,3954,3956,3,386,193,0,3955,3953,1,0,0,0,3955,3954,1,0,0,0,3956, - 391,1,0,0,0,3957,3958,7,61,0,0,3958,393,1,0,0,0,3959,3960,7,62,0, - 0,3960,395,1,0,0,0,3961,3962,7,63,0,0,3962,397,1,0,0,0,517,401,408, - 412,417,424,429,437,439,458,462,468,471,474,481,484,488,491,496, - 507,509,517,520,524,527,533,544,550,555,588,598,609,620,631,636, - 645,649,655,659,664,670,682,690,696,707,711,716,731,735,742,746, - 752,781,785,790,797,803,806,809,813,817,825,827,836,839,848,853, - 859,866,869,873,884,887,893,897,912,914,922,926,932,935,939,942, - 948,953,957,964,967,970,977,982,991,999,1005,1008,1011,1017,1021, - 1026,1029,1033,1035,1043,1051,1054,1061,1064,1067,1076,1081,1087, - 1092,1095,1099,1102,1106,1134,1137,1145,1151,1154,1157,1162,1170, - 1175,1181,1187,1190,1197,1204,1212,1229,1256,1259,1265,1274,1283, - 1289,1294,1299,1306,1311,1316,1323,1331,1334,1338,1350,1354,1361, - 1477,1485,1493,1502,1512,1516,1519,1523,1529,1541,1553,1558,1567, - 1575,1580,1582,1590,1595,1599,1602,1610,1615,1624,1629,1632,1637, - 1641,1646,1648,1652,1661,1669,1675,1686,1693,1702,1707,1710,1732, - 1734,1743,1750,1753,1760,1764,1770,1778,1785,1788,1796,1807,1818, - 1826,1832,1844,1851,1858,1870,1878,1884,1890,1893,1909,1916,1927, - 1936,1939,1948,1951,1960,1963,1972,1975,1978,1983,1985,1989,2000, - 2006,2012,2015,2017,2029,2033,2036,2040,2046,2050,2058,2062,2065, - 2068,2071,2075,2079,2084,2088,2091,2094,2097,2101,2106,2110,2113, - 2116,2119,2121,2127,2134,2139,2142,2145,2149,2159,2163,2165,2168, - 2172,2178,2182,2193,2203,2207,2219,2231,2246,2251,2257,2264,2280, - 2285,2298,2303,2311,2317,2321,2324,2329,2336,2342,2351,2361,2376, - 2381,2383,2388,2397,2410,2415,2419,2426,2431,2435,2438,2441,2455, - 2468,2473,2477,2480,2484,2490,2493,2500,2512,2523,2536,2547,2552, - 2560,2565,2579,2588,2591,2596,2603,2606,2612,2618,2621,2626,2631, - 2635,2641,2645,2648,2653,2656,2661,2665,2668,2671,2677,2682,2689, - 2692,2710,2712,2715,2726,2735,2742,2750,2757,2762,2765,2768,2776, - 2784,2790,2798,2806,2813,2820,2822,2835,2841,2843,2853,2859,2861, - 2869,2873,2882,2885,2891,2895,2897,2906,2918,2920,2927,2934,2940, - 2946,2948,2955,2963,2971,2977,2982,2989,2995,2998,3002,3004,3011, - 3020,3027,3037,3042,3046,3056,3063,3076,3078,3086,3088,3092,3100, - 3109,3115,3123,3128,3140,3145,3148,3154,3158,3163,3168,3173,3179, - 3200,3202,3213,3225,3237,3241,3250,3254,3272,3275,3283,3292,3301, - 3324,3340,3347,3350,3359,3363,3367,3379,3404,3411,3414,3429,3450, - 3454,3456,3466,3468,3478,3493,3495,3508,3512,3519,3524,3532,3537, - 3546,3578,3595,3599,3605,3611,3620,3624,3626,3633,3641,3649,3657, - 3665,3678,3685,3688,3695,3703,3711,3725,3730,3735,3738,3751,3775, - 3785,3788,3797,3800,3802,3805,3808,3826,3835,3842,3854,3863,3873, - 3876,3880,3886,3893,3897,3901,3905,3909,3913,3917,3921,3925,3929, - 3932,3945,3951,3955 + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, + 1,158,1,158,3,158,3586,8,158,1,159,1,159,1,159,1,159,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3603, + 8,159,1,159,1,159,3,159,3607,8,159,1,159,1,159,1,159,1,159,3,159, + 3613,8,159,1,159,1,159,1,159,1,159,3,159,3619,8,159,1,159,1,159, + 1,159,1,159,1,159,5,159,3626,8,159,10,159,12,159,3629,9,159,1,159, + 3,159,3632,8,159,3,159,3634,8,159,1,160,1,160,1,160,5,160,3639,8, + 160,10,160,12,160,3642,9,160,1,161,1,161,1,161,5,161,3647,8,161, + 10,161,12,161,3650,9,161,1,162,1,162,1,162,5,162,3655,8,162,10,162, + 12,162,3658,9,162,1,163,1,163,1,163,5,163,3663,8,163,10,163,12,163, + 3666,9,163,1,164,1,164,1,164,1,164,1,164,3,164,3673,8,164,1,165, + 1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,5,167,3684,8,167, + 10,167,12,167,3687,9,167,1,168,1,168,1,168,1,168,3,168,3693,8,168, + 1,168,3,168,3696,8,168,1,169,1,169,1,169,5,169,3701,8,169,10,169, + 12,169,3704,9,169,1,170,1,170,1,170,5,170,3709,8,170,10,170,12,170, + 3712,9,170,1,171,1,171,1,171,1,171,1,171,3,171,3719,8,171,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3731, + 8,173,10,173,12,173,3734,9,173,1,174,1,174,3,174,3738,8,174,1,174, + 1,174,1,174,3,174,3743,8,174,1,174,3,174,3746,8,174,1,175,1,175, + 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,3757,8,176,10,176, + 12,176,3760,9,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, + 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 5,179,3781,8,179,10,179,12,179,3784,9,179,1,179,1,179,1,179,1,179, + 1,179,5,179,3791,8,179,10,179,12,179,3794,9,179,3,179,3796,8,179, + 1,179,1,179,1,179,1,179,1,179,5,179,3803,8,179,10,179,12,179,3806, + 9,179,3,179,3808,8,179,3,179,3810,8,179,1,179,3,179,3813,8,179,1, + 179,3,179,3816,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1, + 180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,3834,8, + 180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3843,8,181,1, + 182,1,182,1,182,5,182,3848,8,182,10,182,12,182,3851,9,182,1,183, + 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,3862,8,183, + 1,184,1,184,1,185,1,185,1,185,5,185,3869,8,185,10,185,12,185,3872, + 9,185,1,186,1,186,1,186,1,187,1,187,4,187,3879,8,187,11,187,12,187, + 3880,1,187,3,187,3884,8,187,1,188,1,188,3,188,3888,8,188,1,189,1, + 189,1,189,1,189,3,189,3894,8,189,1,190,1,190,1,191,1,191,1,192,3, + 192,3901,8,192,1,192,1,192,3,192,3905,8,192,1,192,1,192,3,192,3909, + 8,192,1,192,1,192,3,192,3913,8,192,1,192,1,192,3,192,3917,8,192, + 1,192,1,192,3,192,3921,8,192,1,192,1,192,3,192,3925,8,192,1,192, + 1,192,3,192,3929,8,192,1,192,1,192,3,192,3933,8,192,1,192,1,192, + 3,192,3937,8,192,1,192,3,192,3940,8,192,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3953,8,193,1,194, + 1,194,1,195,1,195,3,195,3959,8,195,1,196,1,196,3,196,3963,8,196, + 1,197,1,197,1,198,1,198,1,199,1,199,1,199,9,1137,1207,1215,1232, + 1259,1268,1277,1286,1334,4,104,276,280,284,200,0,2,4,6,8,10,12,14, + 16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58, + 60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100, + 102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, + 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, + 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, + 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, + 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, + 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, + 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, + 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, + 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, + 390,392,394,396,398,0,64,2,0,78,78,229,229,2,0,34,34,247,247,2,0, + 123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58, + 108,108,122,122,173,173,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96, + 96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72,190,190,261,261, + 3,0,73,73,191,191,262,262,4,0,102,102,148,148,270,270,323,323,3, + 0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,3, + 0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291,291,303,303, + 2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,382,382, + 384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360, + 1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316, + 316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369, + 369,11,0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231, + 231,259,259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0, + 74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138, + 138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28, + 160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14, + 14,140,140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67, + 68,134,135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134, + 134,184,184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67, + 134,134,184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352, + 352,2,0,118,118,226,226,2,0,378,378,389,389,1,0,383,384,2,0,96,96, + 269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34, + 37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103, + 110,113,113,115,118,121,122,125,128,131,131,133,139,141,143,145, + 147,149,151,154,154,156,157,159,159,163,193,195,195,199,201,205, + 207,210,210,212,213,215,219,222,226,228,238,240,249,251,262,264, + 267,269,276,278,292,294,299,302,308,310,310,312,322,326,330,333, + 342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144,144,148, + 148,155,155,158,158,161,161,194,194,203,203,250,250,264,264,270, + 270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143,145,147, + 149,154,156,157,159,160,162,193,195,195,197,202,204,249,251,262, + 265,269,271,292,294,322,324,331,333,351,4586,0,403,1,0,0,0,2,408, + 1,0,0,0,4,1337,1,0,0,0,6,1341,1,0,0,0,8,1343,1,0,0,0,10,1345,1,0, + 0,0,12,1515,1,0,0,0,14,1517,1,0,0,0,16,1532,1,0,0,0,18,1538,1,0, + 0,0,20,1550,1,0,0,0,22,1563,1,0,0,0,24,1566,1,0,0,0,26,1570,1,0, + 0,0,28,1651,1,0,0,0,30,1653,1,0,0,0,32,1657,1,0,0,0,34,1678,1,0, + 0,0,36,1680,1,0,0,0,38,1682,1,0,0,0,40,1689,1,0,0,0,42,1691,1,0, + 0,0,44,1699,1,0,0,0,46,1708,1,0,0,0,48,1719,1,0,0,0,50,1738,1,0, + 0,0,52,1741,1,0,0,0,54,1744,1,0,0,0,56,1755,1,0,0,0,58,1771,1,0, + 0,0,60,1777,1,0,0,0,62,1779,1,0,0,0,64,1790,1,0,0,0,66,1797,1,0, + 0,0,68,1808,1,0,0,0,70,1825,1,0,0,0,72,1833,1,0,0,0,74,1835,1,0, + 0,0,76,1841,1,0,0,0,78,1900,1,0,0,0,80,1902,1,0,0,0,82,1904,1,0, + 0,0,84,1906,1,0,0,0,86,1908,1,0,0,0,88,1910,1,0,0,0,90,1912,1,0, + 0,0,92,1916,1,0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1934,1,0, + 0,0,100,1946,1,0,0,0,102,1998,1,0,0,0,104,2001,1,0,0,0,106,2036, + 1,0,0,0,108,2040,1,0,0,0,110,2049,1,0,0,0,112,2082,1,0,0,0,114,2128, + 1,0,0,0,116,2149,1,0,0,0,118,2181,1,0,0,0,120,2193,1,0,0,0,122,2196, + 1,0,0,0,124,2205,1,0,0,0,126,2219,1,0,0,0,128,2238,1,0,0,0,130,2258, + 1,0,0,0,132,2264,1,0,0,0,134,2266,1,0,0,0,136,2274,1,0,0,0,138,2278, + 1,0,0,0,140,2281,1,0,0,0,142,2284,1,0,0,0,144,2310,1,0,0,0,146,2312, + 1,0,0,0,148,2333,1,0,0,0,150,2349,1,0,0,0,152,2390,1,0,0,0,154,2395, + 1,0,0,0,156,2422,1,0,0,0,158,2426,1,0,0,0,160,2448,1,0,0,0,162,2450, + 1,0,0,0,164,2480,1,0,0,0,166,2482,1,0,0,0,168,2489,1,0,0,0,170,2502, + 1,0,0,0,172,2507,1,0,0,0,174,2509,1,0,0,0,176,2524,1,0,0,0,178,2548, + 1,0,0,0,180,2561,1,0,0,0,182,2563,1,0,0,0,184,2565,1,0,0,0,186,2569, + 1,0,0,0,188,2572,1,0,0,0,190,2576,1,0,0,0,192,2580,1,0,0,0,194,2583, + 1,0,0,0,196,2615,1,0,0,0,198,2628,1,0,0,0,200,2633,1,0,0,0,202,2652, + 1,0,0,0,204,2678,1,0,0,0,206,2684,1,0,0,0,208,2686,1,0,0,0,210,2722, + 1,0,0,0,212,2724,1,0,0,0,214,2728,1,0,0,0,216,2736,1,0,0,0,218,2747, + 1,0,0,0,220,2751,1,0,0,0,222,2762,1,0,0,0,224,2797,1,0,0,0,226,2799, + 1,0,0,0,228,2829,1,0,0,0,230,2850,1,0,0,0,232,2870,1,0,0,0,234,2876, + 1,0,0,0,236,2880,1,0,0,0,238,2882,1,0,0,0,240,2904,1,0,0,0,242,2955, + 1,0,0,0,244,2957,1,0,0,0,246,2965,1,0,0,0,248,2973,1,0,0,0,250,2981, + 1,0,0,0,252,2989,1,0,0,0,254,2996,1,0,0,0,256,3002,1,0,0,0,258,3013, + 1,0,0,0,260,3021,1,0,0,0,262,3034,1,0,0,0,264,3049,1,0,0,0,266,3053, + 1,0,0,0,268,3055,1,0,0,0,270,3057,1,0,0,0,272,3063,1,0,0,0,274,3065, + 1,0,0,0,276,3085,1,0,0,0,278,3180,1,0,0,0,280,3186,1,0,0,0,282,3212, + 1,0,0,0,284,3463,1,0,0,0,286,3485,1,0,0,0,288,3502,1,0,0,0,290,3504, + 1,0,0,0,292,3506,1,0,0,0,294,3508,1,0,0,0,296,3510,1,0,0,0,298,3512, + 1,0,0,0,300,3517,1,0,0,0,302,3524,1,0,0,0,304,3528,1,0,0,0,306,3533, + 1,0,0,0,308,3539,1,0,0,0,310,3546,1,0,0,0,312,3548,1,0,0,0,314,3553, + 1,0,0,0,316,3585,1,0,0,0,318,3633,1,0,0,0,320,3635,1,0,0,0,322,3643, + 1,0,0,0,324,3651,1,0,0,0,326,3659,1,0,0,0,328,3672,1,0,0,0,330,3674, + 1,0,0,0,332,3677,1,0,0,0,334,3680,1,0,0,0,336,3688,1,0,0,0,338,3697, + 1,0,0,0,340,3705,1,0,0,0,342,3718,1,0,0,0,344,3720,1,0,0,0,346,3727, + 1,0,0,0,348,3735,1,0,0,0,350,3747,1,0,0,0,352,3752,1,0,0,0,354,3761, + 1,0,0,0,356,3765,1,0,0,0,358,3815,1,0,0,0,360,3833,1,0,0,0,362,3842, + 1,0,0,0,364,3844,1,0,0,0,366,3861,1,0,0,0,368,3863,1,0,0,0,370,3865, + 1,0,0,0,372,3873,1,0,0,0,374,3883,1,0,0,0,376,3887,1,0,0,0,378,3893, + 1,0,0,0,380,3895,1,0,0,0,382,3897,1,0,0,0,384,3939,1,0,0,0,386,3952, + 1,0,0,0,388,3954,1,0,0,0,390,3958,1,0,0,0,392,3962,1,0,0,0,394,3964, + 1,0,0,0,396,3966,1,0,0,0,398,3968,1,0,0,0,400,402,3,2,1,0,401,400, + 1,0,0,0,402,405,1,0,0,0,403,401,1,0,0,0,403,404,1,0,0,0,404,406, + 1,0,0,0,405,403,1,0,0,0,406,407,5,0,0,1,407,1,1,0,0,0,408,410,3, + 4,2,0,409,411,5,1,0,0,410,409,1,0,0,0,410,411,1,0,0,0,411,3,1,0, + 0,0,412,1338,3,26,13,0,413,415,3,44,22,0,414,413,1,0,0,0,414,415, + 1,0,0,0,415,416,1,0,0,0,416,1338,3,78,39,0,417,419,5,330,0,0,418, + 420,3,36,18,0,419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, + 1338,3,80,40,0,422,423,5,269,0,0,423,426,5,37,0,0,424,427,3,376, + 188,0,425,427,3,388,194,0,426,424,1,0,0,0,426,425,1,0,0,0,427,1338, + 1,0,0,0,428,429,5,59,0,0,429,431,3,36,18,0,430,432,3,190,95,0,431, + 430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,441,3,82,41,0,434, + 440,3,24,12,0,435,440,3,22,11,0,436,437,5,346,0,0,437,438,7,0,0, + 0,438,440,3,54,27,0,439,434,1,0,0,0,439,435,1,0,0,0,439,436,1,0, + 0,0,440,443,1,0,0,0,441,439,1,0,0,0,441,442,1,0,0,0,442,1338,1,0, + 0,0,443,441,1,0,0,0,444,445,5,11,0,0,445,446,3,36,18,0,446,447,3, + 80,40,0,447,448,5,269,0,0,448,449,7,0,0,0,449,450,3,54,27,0,450, + 1338,1,0,0,0,451,452,5,11,0,0,452,453,3,36,18,0,453,454,3,80,40, + 0,454,455,5,269,0,0,455,456,3,22,11,0,456,1338,1,0,0,0,457,458,5, + 96,0,0,458,460,3,36,18,0,459,461,3,192,96,0,460,459,1,0,0,0,460, + 461,1,0,0,0,461,462,1,0,0,0,462,464,3,80,40,0,463,465,7,1,0,0,464, + 463,1,0,0,0,464,465,1,0,0,0,465,1338,1,0,0,0,466,467,5,273,0,0,467, + 470,3,38,19,0,468,469,7,2,0,0,469,471,3,246,123,0,470,468,1,0,0, + 0,470,471,1,0,0,0,471,476,1,0,0,0,472,474,5,163,0,0,473,472,1,0, + 0,0,473,474,1,0,0,0,474,475,1,0,0,0,475,477,3,388,194,0,476,473, + 1,0,0,0,476,477,1,0,0,0,477,1338,1,0,0,0,478,483,3,14,7,0,479,480, + 5,2,0,0,480,481,3,338,169,0,481,482,5,3,0,0,482,484,1,0,0,0,483, + 479,1,0,0,0,483,484,1,0,0,0,484,486,1,0,0,0,485,487,3,48,24,0,486, + 485,1,0,0,0,486,487,1,0,0,0,487,488,1,0,0,0,488,493,3,50,25,0,489, + 491,5,20,0,0,490,489,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492, + 494,3,26,13,0,493,490,1,0,0,0,493,494,1,0,0,0,494,1338,1,0,0,0,495, + 496,5,59,0,0,496,498,5,293,0,0,497,499,3,190,95,0,498,497,1,0,0, + 0,498,499,1,0,0,0,499,500,1,0,0,0,500,501,3,84,42,0,501,502,5,163, + 0,0,502,512,3,86,43,0,503,511,3,48,24,0,504,511,3,242,121,0,505, + 511,3,70,35,0,506,511,3,22,11,0,507,508,5,297,0,0,508,511,3,54,27, + 0,509,511,3,52,26,0,510,503,1,0,0,0,510,504,1,0,0,0,510,505,1,0, + 0,0,510,506,1,0,0,0,510,507,1,0,0,0,510,509,1,0,0,0,511,514,1,0, + 0,0,512,510,1,0,0,0,512,513,1,0,0,0,513,1338,1,0,0,0,514,512,1,0, + 0,0,515,520,3,16,8,0,516,517,5,2,0,0,517,518,3,338,169,0,518,519, + 5,3,0,0,519,521,1,0,0,0,520,516,1,0,0,0,520,521,1,0,0,0,521,523, + 1,0,0,0,522,524,3,48,24,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525, + 1,0,0,0,525,530,3,50,25,0,526,528,5,20,0,0,527,526,1,0,0,0,527,528, + 1,0,0,0,528,529,1,0,0,0,529,531,3,26,13,0,530,527,1,0,0,0,530,531, + 1,0,0,0,531,1338,1,0,0,0,532,533,5,13,0,0,533,534,5,293,0,0,534, + 536,3,86,43,0,535,537,3,32,16,0,536,535,1,0,0,0,536,537,1,0,0,0, + 537,538,1,0,0,0,538,539,5,55,0,0,539,547,5,282,0,0,540,548,5,196, + 0,0,541,542,5,119,0,0,542,543,5,50,0,0,543,548,3,94,47,0,544,545, + 5,119,0,0,545,546,5,10,0,0,546,548,5,50,0,0,547,540,1,0,0,0,547, + 541,1,0,0,0,547,544,1,0,0,0,547,548,1,0,0,0,548,1338,1,0,0,0,549, + 550,5,13,0,0,550,553,5,294,0,0,551,552,7,2,0,0,552,554,3,80,40,0, + 553,551,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,5,55,0,0, + 556,558,5,282,0,0,557,559,5,196,0,0,558,557,1,0,0,0,558,559,1,0, + 0,0,559,1338,1,0,0,0,560,561,5,11,0,0,561,562,5,293,0,0,562,563, + 3,86,43,0,563,564,5,8,0,0,564,565,5,49,0,0,565,566,3,322,161,0,566, + 1338,1,0,0,0,567,568,5,11,0,0,568,569,5,293,0,0,569,570,3,86,43, + 0,570,571,5,8,0,0,571,572,5,50,0,0,572,573,5,2,0,0,573,574,3,320, + 160,0,574,575,5,3,0,0,575,1338,1,0,0,0,576,577,5,11,0,0,577,578, + 5,293,0,0,578,579,3,86,43,0,579,580,5,241,0,0,580,581,5,49,0,0,581, + 582,3,92,46,0,582,583,5,309,0,0,583,584,3,96,48,0,584,1338,1,0,0, + 0,585,586,5,11,0,0,586,587,5,293,0,0,587,588,3,86,43,0,588,589,5, + 96,0,0,589,591,5,49,0,0,590,592,3,192,96,0,591,590,1,0,0,0,591,592, + 1,0,0,0,592,593,1,0,0,0,593,594,3,92,46,0,594,1338,1,0,0,0,595,596, + 5,11,0,0,596,597,5,293,0,0,597,598,3,86,43,0,598,599,5,96,0,0,599, + 601,5,50,0,0,600,602,3,192,96,0,601,600,1,0,0,0,601,602,1,0,0,0, + 602,603,1,0,0,0,603,604,5,2,0,0,604,605,3,94,47,0,605,606,5,3,0, + 0,606,1338,1,0,0,0,607,612,5,11,0,0,608,609,5,293,0,0,609,613,3, + 86,43,0,610,611,5,338,0,0,611,613,3,90,45,0,612,608,1,0,0,0,612, + 610,1,0,0,0,613,614,1,0,0,0,614,615,5,241,0,0,615,616,5,309,0,0, + 616,617,3,246,123,0,617,1338,1,0,0,0,618,623,5,11,0,0,619,620,5, + 293,0,0,620,624,3,86,43,0,621,622,5,338,0,0,622,624,3,90,45,0,623, + 619,1,0,0,0,623,621,1,0,0,0,624,625,1,0,0,0,625,626,5,269,0,0,626, + 627,5,297,0,0,627,628,3,54,27,0,628,1338,1,0,0,0,629,634,5,11,0, + 0,630,631,5,293,0,0,631,635,3,86,43,0,632,633,5,338,0,0,633,635, + 3,90,45,0,634,630,1,0,0,0,634,632,1,0,0,0,635,636,1,0,0,0,636,637, + 5,328,0,0,637,639,5,297,0,0,638,640,3,192,96,0,639,638,1,0,0,0,639, + 640,1,0,0,0,640,641,1,0,0,0,641,642,3,54,27,0,642,1338,1,0,0,0,643, + 644,5,11,0,0,644,645,5,293,0,0,645,646,3,86,43,0,646,648,7,3,0,0, + 647,649,5,49,0,0,648,647,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0, + 650,652,3,92,46,0,651,653,3,386,193,0,652,651,1,0,0,0,652,653,1, + 0,0,0,653,1338,1,0,0,0,654,655,5,11,0,0,655,656,5,293,0,0,656,658, + 3,86,43,0,657,659,3,32,16,0,658,657,1,0,0,0,658,659,1,0,0,0,659, + 660,1,0,0,0,660,662,5,39,0,0,661,663,5,49,0,0,662,661,1,0,0,0,662, + 663,1,0,0,0,663,664,1,0,0,0,664,665,3,92,46,0,665,667,3,336,168, + 0,666,668,3,314,157,0,667,666,1,0,0,0,667,668,1,0,0,0,668,1338,1, + 0,0,0,669,670,5,11,0,0,670,671,5,293,0,0,671,673,3,86,43,0,672,674, + 3,32,16,0,673,672,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676, + 5,244,0,0,676,677,5,50,0,0,677,678,5,2,0,0,678,679,3,324,162,0,679, + 680,5,3,0,0,680,1338,1,0,0,0,681,682,5,11,0,0,682,683,5,293,0,0, + 683,685,3,86,43,0,684,686,3,32,16,0,685,684,1,0,0,0,685,686,1,0, + 0,0,686,687,1,0,0,0,687,688,5,269,0,0,688,689,5,266,0,0,689,693, + 3,388,194,0,690,691,5,346,0,0,691,692,5,267,0,0,692,694,3,54,27, + 0,693,690,1,0,0,0,693,694,1,0,0,0,694,1338,1,0,0,0,695,696,5,11, + 0,0,696,697,5,293,0,0,697,699,3,86,43,0,698,700,3,32,16,0,699,698, + 1,0,0,0,699,700,1,0,0,0,700,701,1,0,0,0,701,702,5,269,0,0,702,703, + 5,267,0,0,703,704,3,54,27,0,704,1338,1,0,0,0,705,710,5,11,0,0,706, + 707,5,293,0,0,707,711,3,86,43,0,708,709,5,338,0,0,709,711,3,90,45, + 0,710,706,1,0,0,0,710,708,1,0,0,0,711,712,1,0,0,0,712,714,5,8,0, + 0,713,715,3,190,95,0,714,713,1,0,0,0,714,715,1,0,0,0,715,717,1,0, + 0,0,716,718,3,30,15,0,717,716,1,0,0,0,718,719,1,0,0,0,719,717,1, + 0,0,0,719,720,1,0,0,0,720,1338,1,0,0,0,721,722,5,11,0,0,722,723, + 5,293,0,0,723,724,3,86,43,0,724,725,3,32,16,0,725,726,5,241,0,0, + 726,727,5,309,0,0,727,728,3,32,16,0,728,1338,1,0,0,0,729,734,5,11, + 0,0,730,731,5,293,0,0,731,735,3,86,43,0,732,733,5,338,0,0,733,735, + 3,90,45,0,734,730,1,0,0,0,734,732,1,0,0,0,735,736,1,0,0,0,736,738, + 5,96,0,0,737,739,3,192,96,0,738,737,1,0,0,0,738,739,1,0,0,0,739, + 740,1,0,0,0,740,745,3,32,16,0,741,742,5,4,0,0,742,744,3,32,16,0, + 743,741,1,0,0,0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0, + 746,749,1,0,0,0,747,745,1,0,0,0,748,750,5,230,0,0,749,748,1,0,0, + 0,749,750,1,0,0,0,750,1338,1,0,0,0,751,752,5,11,0,0,752,753,5,293, + 0,0,753,755,3,86,43,0,754,756,3,32,16,0,755,754,1,0,0,0,755,756, + 1,0,0,0,756,757,1,0,0,0,757,758,5,269,0,0,758,759,3,22,11,0,759, + 1338,1,0,0,0,760,761,5,11,0,0,761,762,5,293,0,0,762,763,3,86,43, + 0,763,764,5,237,0,0,764,765,5,219,0,0,765,1338,1,0,0,0,766,767,5, + 11,0,0,767,768,5,176,0,0,768,769,5,338,0,0,769,770,3,90,45,0,770, + 771,7,4,0,0,771,772,5,248,0,0,772,1338,1,0,0,0,773,774,5,11,0,0, + 774,775,5,176,0,0,775,776,5,338,0,0,776,777,3,90,45,0,777,778,5, + 269,0,0,778,779,5,297,0,0,779,780,3,54,27,0,780,1338,1,0,0,0,781, + 782,5,96,0,0,782,784,5,293,0,0,783,785,3,192,96,0,784,783,1,0,0, + 0,784,785,1,0,0,0,785,786,1,0,0,0,786,788,3,86,43,0,787,789,5,230, + 0,0,788,787,1,0,0,0,788,789,1,0,0,0,789,1338,1,0,0,0,790,791,5,96, + 0,0,791,793,5,338,0,0,792,794,3,192,96,0,793,792,1,0,0,0,793,794, + 1,0,0,0,794,795,1,0,0,0,795,1338,3,90,45,0,796,797,5,96,0,0,797, + 798,5,176,0,0,798,800,5,338,0,0,799,801,3,192,96,0,800,799,1,0,0, + 0,800,801,1,0,0,0,801,802,1,0,0,0,802,1338,3,90,45,0,803,806,5,59, + 0,0,804,805,5,208,0,0,805,807,5,244,0,0,806,804,1,0,0,0,806,807, + 1,0,0,0,807,812,1,0,0,0,808,810,5,128,0,0,809,808,1,0,0,0,809,810, + 1,0,0,0,810,811,1,0,0,0,811,813,5,298,0,0,812,809,1,0,0,0,812,813, + 1,0,0,0,813,814,1,0,0,0,814,816,5,338,0,0,815,817,3,190,95,0,816, + 815,1,0,0,0,816,817,1,0,0,0,817,818,1,0,0,0,818,820,3,88,44,0,819, + 821,3,220,110,0,820,819,1,0,0,0,820,821,1,0,0,0,821,830,1,0,0,0, + 822,829,3,24,12,0,823,824,5,218,0,0,824,825,5,203,0,0,825,829,3, + 212,106,0,826,827,5,297,0,0,827,829,3,54,27,0,828,822,1,0,0,0,828, + 823,1,0,0,0,828,826,1,0,0,0,829,832,1,0,0,0,830,828,1,0,0,0,830, + 831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0,833,834,5,20,0,0,834, + 835,3,26,13,0,835,1338,1,0,0,0,836,839,5,59,0,0,837,838,5,208,0, + 0,838,840,5,244,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0, + 0,0,841,843,5,128,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1, + 0,0,0,844,845,5,298,0,0,845,846,5,338,0,0,846,851,3,88,44,0,847, + 848,5,2,0,0,848,849,3,334,167,0,849,850,5,3,0,0,850,852,1,0,0,0, + 851,847,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853,856,3,48,24, + 0,854,855,5,207,0,0,855,857,3,54,27,0,856,854,1,0,0,0,856,857,1, + 0,0,0,857,1338,1,0,0,0,858,859,5,11,0,0,859,860,5,338,0,0,860,862, + 3,90,45,0,861,863,5,20,0,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864, + 1,0,0,0,864,865,3,26,13,0,865,1338,1,0,0,0,866,869,5,59,0,0,867, + 868,5,208,0,0,868,870,5,244,0,0,869,867,1,0,0,0,869,870,1,0,0,0, + 870,872,1,0,0,0,871,873,5,298,0,0,872,871,1,0,0,0,872,873,1,0,0, + 0,873,874,1,0,0,0,874,876,5,125,0,0,875,877,3,190,95,0,876,875,1, + 0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,368,184,0,879,880, + 5,20,0,0,880,890,3,388,194,0,881,882,5,332,0,0,882,887,3,76,38,0, + 883,884,5,4,0,0,884,886,3,76,38,0,885,883,1,0,0,0,886,889,1,0,0, + 0,887,885,1,0,0,0,887,888,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0, + 0,890,881,1,0,0,0,890,891,1,0,0,0,891,1338,1,0,0,0,892,893,5,59, + 0,0,893,894,5,176,0,0,894,896,5,338,0,0,895,897,3,190,95,0,896,895, + 1,0,0,0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,3,88,44,0,899,901, + 3,48,24,0,900,899,1,0,0,0,900,901,1,0,0,0,901,917,1,0,0,0,902,903, + 5,207,0,0,903,916,3,54,27,0,904,905,5,218,0,0,905,906,5,31,0,0,906, + 916,3,260,130,0,907,916,3,20,10,0,908,916,3,18,9,0,909,916,3,242, + 121,0,910,916,3,70,35,0,911,916,3,22,11,0,912,916,3,24,12,0,913, + 914,5,297,0,0,914,916,3,54,27,0,915,902,1,0,0,0,915,904,1,0,0,0, + 915,907,1,0,0,0,915,908,1,0,0,0,915,909,1,0,0,0,915,910,1,0,0,0, + 915,911,1,0,0,0,915,912,1,0,0,0,915,913,1,0,0,0,916,919,1,0,0,0, + 917,915,1,0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,917,1,0,0,0, + 920,921,5,20,0,0,921,922,3,26,13,0,922,1338,1,0,0,0,923,925,5,96, + 0,0,924,926,5,298,0,0,925,924,1,0,0,0,925,926,1,0,0,0,926,927,1, + 0,0,0,927,929,5,125,0,0,928,930,3,192,96,0,929,928,1,0,0,0,929,930, + 1,0,0,0,930,931,1,0,0,0,931,1338,3,366,183,0,932,935,5,81,0,0,933, + 934,5,208,0,0,934,936,5,244,0,0,935,933,1,0,0,0,935,936,1,0,0,0, + 936,938,1,0,0,0,937,939,5,336,0,0,938,937,1,0,0,0,938,939,1,0,0, + 0,939,940,1,0,0,0,940,942,3,366,183,0,941,943,3,318,159,0,942,941, + 1,0,0,0,942,943,1,0,0,0,943,945,1,0,0,0,944,946,3,332,166,0,945, + 944,1,0,0,0,945,946,1,0,0,0,946,1338,1,0,0,0,947,948,5,96,0,0,948, + 949,5,298,0,0,949,951,5,336,0,0,950,952,3,192,96,0,951,950,1,0,0, + 0,951,952,1,0,0,0,952,956,1,0,0,0,953,957,3,86,43,0,954,957,3,90, + 45,0,955,957,3,366,183,0,956,953,1,0,0,0,956,954,1,0,0,0,956,955, + 1,0,0,0,957,1338,1,0,0,0,958,960,5,106,0,0,959,961,7,5,0,0,960,959, + 1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,1338,3,4,2,0,963,964, + 5,273,0,0,964,967,5,294,0,0,965,966,7,2,0,0,966,968,3,80,40,0,967, + 965,1,0,0,0,967,968,1,0,0,0,968,973,1,0,0,0,969,971,5,163,0,0,970, + 969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,388,194,0, + 973,970,1,0,0,0,973,974,1,0,0,0,974,1338,1,0,0,0,975,976,5,273,0, + 0,976,977,5,293,0,0,977,980,5,108,0,0,978,979,7,2,0,0,979,981,3, + 80,40,0,980,978,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983, + 5,163,0,0,983,985,3,388,194,0,984,986,3,32,16,0,985,984,1,0,0,0, + 985,986,1,0,0,0,986,1338,1,0,0,0,987,988,5,273,0,0,988,989,5,297, + 0,0,989,994,3,86,43,0,990,991,5,2,0,0,991,992,3,58,29,0,992,993, + 5,3,0,0,993,995,1,0,0,0,994,990,1,0,0,0,994,995,1,0,0,0,995,1338, + 1,0,0,0,996,997,5,273,0,0,997,998,5,50,0,0,998,999,7,2,0,0,999,1002, + 3,86,43,0,1000,1001,7,2,0,0,1001,1003,3,80,40,0,1002,1000,1,0,0, + 0,1002,1003,1,0,0,0,1003,1338,1,0,0,0,1004,1005,5,273,0,0,1005,1008, + 5,339,0,0,1006,1007,7,2,0,0,1007,1009,3,80,40,0,1008,1006,1,0,0, + 0,1008,1009,1,0,0,0,1009,1014,1,0,0,0,1010,1012,5,163,0,0,1011,1010, + 1,0,0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1015,3,388,194, + 0,1014,1011,1,0,0,0,1014,1015,1,0,0,0,1015,1338,1,0,0,0,1016,1017, + 5,273,0,0,1017,1018,5,219,0,0,1018,1020,3,86,43,0,1019,1021,3,32, + 16,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1338,1,0,0,0,1022, + 1024,5,273,0,0,1023,1025,3,148,74,0,1024,1023,1,0,0,0,1024,1025, + 1,0,0,0,1025,1026,1,0,0,0,1026,1029,5,126,0,0,1027,1028,7,2,0,0, + 1028,1030,3,80,40,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1038, + 1,0,0,0,1031,1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0, + 1033,1036,1,0,0,0,1034,1037,3,246,123,0,1035,1037,3,388,194,0,1036, + 1034,1,0,0,0,1036,1035,1,0,0,0,1037,1039,1,0,0,0,1038,1032,1,0,0, + 0,1038,1039,1,0,0,0,1039,1338,1,0,0,0,1040,1041,5,273,0,0,1041,1042, + 5,59,0,0,1042,1043,5,293,0,0,1043,1046,3,86,43,0,1044,1045,5,20, + 0,0,1045,1047,5,266,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, + 1338,1,0,0,0,1048,1049,5,273,0,0,1049,1050,5,62,0,0,1050,1338,3, + 36,18,0,1051,1052,5,273,0,0,1052,1057,5,38,0,0,1053,1055,5,163,0, + 0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056,1,0,0,0,1056,1058, + 3,388,194,0,1057,1054,1,0,0,0,1057,1058,1,0,0,0,1058,1338,1,0,0, + 0,1059,1060,5,273,0,0,1060,1061,5,176,0,0,1061,1064,5,339,0,0,1062, + 1063,7,2,0,0,1063,1065,3,80,40,0,1064,1062,1,0,0,0,1064,1065,1,0, + 0,0,1065,1070,1,0,0,0,1066,1068,5,163,0,0,1067,1066,1,0,0,0,1067, + 1068,1,0,0,0,1068,1069,1,0,0,0,1069,1071,3,388,194,0,1070,1067,1, + 0,0,0,1070,1071,1,0,0,0,1071,1338,1,0,0,0,1072,1073,5,273,0,0,1073, + 1074,5,59,0,0,1074,1075,5,176,0,0,1075,1076,5,338,0,0,1076,1079, + 3,90,45,0,1077,1078,5,20,0,0,1078,1080,5,266,0,0,1079,1077,1,0,0, + 0,1079,1080,1,0,0,0,1080,1338,1,0,0,0,1081,1082,7,6,0,0,1082,1084, + 5,125,0,0,1083,1085,5,108,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0, + 0,1085,1086,1,0,0,0,1086,1338,3,40,20,0,1087,1088,7,6,0,0,1088,1090, + 5,72,0,0,1089,1091,5,108,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0, + 1091,1092,1,0,0,0,1092,1338,3,80,40,0,1093,1095,7,6,0,0,1094,1096, + 5,293,0,0,1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, + 1097,1099,7,7,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100, + 1,0,0,0,1100,1102,3,86,43,0,1101,1103,3,32,16,0,1102,1101,1,0,0, + 0,1102,1103,1,0,0,0,1103,1105,1,0,0,0,1104,1106,3,42,21,0,1105,1104, + 1,0,0,0,1105,1106,1,0,0,0,1106,1338,1,0,0,0,1107,1109,7,6,0,0,1108, + 1110,5,232,0,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0, + 0,0,1111,1338,3,26,13,0,1112,1113,5,51,0,0,1113,1114,5,203,0,0,1114, + 1115,3,36,18,0,1115,1116,3,80,40,0,1116,1117,5,153,0,0,1117,1118, + 3,390,195,0,1118,1338,1,0,0,0,1119,1120,5,51,0,0,1120,1121,5,203, + 0,0,1121,1122,5,293,0,0,1122,1123,3,86,43,0,1123,1124,5,153,0,0, + 1124,1125,3,390,195,0,1125,1338,1,0,0,0,1126,1127,5,240,0,0,1127, + 1128,5,293,0,0,1128,1338,3,86,43,0,1129,1130,5,240,0,0,1130,1131, + 5,125,0,0,1131,1338,3,366,183,0,1132,1140,5,240,0,0,1133,1141,3, + 388,194,0,1134,1136,9,0,0,0,1135,1134,1,0,0,0,1136,1139,1,0,0,0, + 1137,1138,1,0,0,0,1137,1135,1,0,0,0,1138,1141,1,0,0,0,1139,1137, + 1,0,0,0,1140,1133,1,0,0,0,1140,1137,1,0,0,0,1141,1338,1,0,0,0,1142, + 1143,5,240,0,0,1143,1144,5,176,0,0,1144,1145,5,338,0,0,1145,1338, + 3,90,45,0,1146,1148,5,33,0,0,1147,1149,5,159,0,0,1148,1147,1,0,0, + 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,293,0,0,1151,1154, + 3,86,43,0,1152,1153,5,207,0,0,1153,1155,3,54,27,0,1154,1152,1,0, + 0,0,1154,1155,1,0,0,0,1155,1160,1,0,0,0,1156,1158,5,20,0,0,1157, + 1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1161,3,26, + 13,0,1160,1157,1,0,0,0,1160,1161,1,0,0,0,1161,1338,1,0,0,0,1162, + 1163,5,322,0,0,1163,1165,5,293,0,0,1164,1166,3,192,96,0,1165,1164, + 1,0,0,0,1165,1166,1,0,0,0,1166,1167,1,0,0,0,1167,1338,3,86,43,0, + 1168,1169,5,43,0,0,1169,1338,5,33,0,0,1170,1171,5,168,0,0,1171,1173, + 5,70,0,0,1172,1174,5,169,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0, + 1174,1175,1,0,0,0,1175,1176,5,145,0,0,1176,1178,3,388,194,0,1177, + 1179,5,216,0,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1180,1,0, + 0,0,1180,1181,5,152,0,0,1181,1182,5,293,0,0,1182,1184,3,86,43,0, + 1183,1185,3,32,16,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1338, + 1,0,0,0,1186,1187,5,317,0,0,1187,1188,5,293,0,0,1188,1190,3,86,43, + 0,1189,1191,3,32,16,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1338, + 1,0,0,0,1192,1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, + 1194,1195,1,0,0,0,1195,1196,5,242,0,0,1196,1197,5,293,0,0,1197,1200, + 3,86,43,0,1198,1199,7,8,0,0,1199,1201,5,219,0,0,1200,1198,1,0,0, + 0,1200,1201,1,0,0,0,1201,1338,1,0,0,0,1202,1203,7,9,0,0,1203,1207, + 3,376,188,0,1204,1206,9,0,0,0,1205,1204,1,0,0,0,1206,1209,1,0,0, + 0,1207,1208,1,0,0,0,1207,1205,1,0,0,0,1208,1338,1,0,0,0,1209,1207, + 1,0,0,0,1210,1211,5,269,0,0,1211,1215,5,253,0,0,1212,1214,9,0,0, + 0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215,1213, + 1,0,0,0,1216,1338,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269,0,0, + 1219,1220,5,301,0,0,1220,1221,5,350,0,0,1221,1338,3,298,149,0,1222, + 1223,5,269,0,0,1223,1224,5,301,0,0,1224,1225,5,350,0,0,1225,1338, + 3,6,3,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228,1232,5,350, + 0,0,1229,1231,9,0,0,0,1230,1229,1,0,0,0,1231,1234,1,0,0,0,1232,1233, + 1,0,0,0,1232,1230,1,0,0,0,1233,1338,1,0,0,0,1234,1232,1,0,0,0,1235, + 1236,5,269,0,0,1236,1237,7,10,0,0,1237,1338,3,134,67,0,1238,1239, + 5,269,0,0,1239,1240,7,10,0,0,1240,1241,5,2,0,0,1241,1242,3,244,122, + 0,1242,1243,5,3,0,0,1243,1244,5,352,0,0,1244,1245,5,2,0,0,1245,1246, + 3,26,13,0,1246,1247,5,3,0,0,1247,1338,1,0,0,0,1248,1249,5,269,0, + 0,1249,1250,3,8,4,0,1250,1251,5,352,0,0,1251,1252,3,10,5,0,1252, + 1338,1,0,0,0,1253,1254,5,269,0,0,1254,1262,3,8,4,0,1255,1259,5,352, + 0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259,1260, + 1,0,0,0,1259,1257,1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1262, + 1255,1,0,0,0,1262,1263,1,0,0,0,1263,1338,1,0,0,0,1264,1268,5,269, + 0,0,1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, + 1,0,0,0,1268,1266,1,0,0,0,1269,1271,1,0,0,0,1270,1268,1,0,0,0,1271, + 1272,5,352,0,0,1272,1338,3,10,5,0,1273,1277,5,269,0,0,1274,1276, + 9,0,0,0,1275,1274,1,0,0,0,1276,1279,1,0,0,0,1277,1278,1,0,0,0,1277, + 1275,1,0,0,0,1278,1338,1,0,0,0,1279,1277,1,0,0,0,1280,1281,5,245, + 0,0,1281,1338,3,8,4,0,1282,1286,5,245,0,0,1283,1285,9,0,0,0,1284, + 1283,1,0,0,0,1285,1288,1,0,0,0,1286,1287,1,0,0,0,1286,1284,1,0,0, + 0,1287,1338,1,0,0,0,1288,1286,1,0,0,0,1289,1290,5,59,0,0,1290,1292, + 5,142,0,0,1291,1293,3,190,95,0,1292,1291,1,0,0,0,1292,1293,1,0,0, + 0,1293,1294,1,0,0,0,1294,1295,3,376,188,0,1295,1297,5,203,0,0,1296, + 1298,5,293,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, + 0,0,1299,1302,3,86,43,0,1300,1301,5,332,0,0,1301,1303,3,376,188, + 0,1302,1300,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, + 5,2,0,0,1305,1306,3,248,124,0,1306,1309,5,3,0,0,1307,1308,5,207, + 0,0,1308,1310,3,54,27,0,1309,1307,1,0,0,0,1309,1310,1,0,0,0,1310, + 1338,1,0,0,0,1311,1312,5,96,0,0,1312,1314,5,142,0,0,1313,1315,3, + 192,96,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316, + 1317,3,376,188,0,1317,1319,5,203,0,0,1318,1320,5,293,0,0,1319,1318, + 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,86,43,0, + 1322,1338,1,0,0,0,1323,1324,5,205,0,0,1324,1326,3,86,43,0,1325,1327, + 3,138,69,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0, + 1328,1329,3,354,177,0,1329,1338,1,0,0,0,1330,1334,3,12,6,0,1331, + 1333,9,0,0,0,1332,1331,1,0,0,0,1333,1336,1,0,0,0,1334,1335,1,0,0, + 0,1334,1332,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0,1337,412, + 1,0,0,0,1337,414,1,0,0,0,1337,417,1,0,0,0,1337,422,1,0,0,0,1337, + 428,1,0,0,0,1337,444,1,0,0,0,1337,451,1,0,0,0,1337,457,1,0,0,0,1337, + 466,1,0,0,0,1337,478,1,0,0,0,1337,495,1,0,0,0,1337,515,1,0,0,0,1337, + 532,1,0,0,0,1337,549,1,0,0,0,1337,560,1,0,0,0,1337,567,1,0,0,0,1337, + 576,1,0,0,0,1337,585,1,0,0,0,1337,595,1,0,0,0,1337,607,1,0,0,0,1337, + 618,1,0,0,0,1337,629,1,0,0,0,1337,643,1,0,0,0,1337,654,1,0,0,0,1337, + 669,1,0,0,0,1337,681,1,0,0,0,1337,695,1,0,0,0,1337,705,1,0,0,0,1337, + 721,1,0,0,0,1337,729,1,0,0,0,1337,751,1,0,0,0,1337,760,1,0,0,0,1337, + 766,1,0,0,0,1337,773,1,0,0,0,1337,781,1,0,0,0,1337,790,1,0,0,0,1337, + 796,1,0,0,0,1337,803,1,0,0,0,1337,836,1,0,0,0,1337,858,1,0,0,0,1337, + 866,1,0,0,0,1337,892,1,0,0,0,1337,923,1,0,0,0,1337,932,1,0,0,0,1337, + 947,1,0,0,0,1337,958,1,0,0,0,1337,963,1,0,0,0,1337,975,1,0,0,0,1337, + 987,1,0,0,0,1337,996,1,0,0,0,1337,1004,1,0,0,0,1337,1016,1,0,0,0, + 1337,1022,1,0,0,0,1337,1040,1,0,0,0,1337,1048,1,0,0,0,1337,1051, + 1,0,0,0,1337,1059,1,0,0,0,1337,1072,1,0,0,0,1337,1081,1,0,0,0,1337, + 1087,1,0,0,0,1337,1093,1,0,0,0,1337,1107,1,0,0,0,1337,1112,1,0,0, + 0,1337,1119,1,0,0,0,1337,1126,1,0,0,0,1337,1129,1,0,0,0,1337,1132, + 1,0,0,0,1337,1142,1,0,0,0,1337,1146,1,0,0,0,1337,1162,1,0,0,0,1337, + 1168,1,0,0,0,1337,1170,1,0,0,0,1337,1186,1,0,0,0,1337,1193,1,0,0, + 0,1337,1202,1,0,0,0,1337,1210,1,0,0,0,1337,1218,1,0,0,0,1337,1222, + 1,0,0,0,1337,1226,1,0,0,0,1337,1235,1,0,0,0,1337,1238,1,0,0,0,1337, + 1248,1,0,0,0,1337,1253,1,0,0,0,1337,1264,1,0,0,0,1337,1273,1,0,0, + 0,1337,1280,1,0,0,0,1337,1282,1,0,0,0,1337,1289,1,0,0,0,1337,1311, + 1,0,0,0,1337,1323,1,0,0,0,1337,1330,1,0,0,0,1338,5,1,0,0,0,1339, + 1342,3,388,194,0,1340,1342,5,169,0,0,1341,1339,1,0,0,0,1341,1340, + 1,0,0,0,1342,7,1,0,0,0,1343,1344,3,380,190,0,1344,9,1,0,0,0,1345, + 1346,3,382,191,0,1346,11,1,0,0,0,1347,1348,5,59,0,0,1348,1516,5, + 253,0,0,1349,1350,5,96,0,0,1350,1516,5,253,0,0,1351,1353,5,129,0, + 0,1352,1354,5,253,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1516, + 1,0,0,0,1355,1357,5,249,0,0,1356,1358,5,253,0,0,1357,1356,1,0,0, + 0,1357,1358,1,0,0,0,1358,1516,1,0,0,0,1359,1360,5,273,0,0,1360,1516, + 5,129,0,0,1361,1362,5,273,0,0,1362,1364,5,253,0,0,1363,1365,5,129, + 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1516,1,0,0,0,1366,1367, + 5,273,0,0,1367,1516,5,228,0,0,1368,1369,5,273,0,0,1369,1516,5,254, + 0,0,1370,1371,5,273,0,0,1371,1372,5,62,0,0,1372,1516,5,254,0,0,1373, + 1374,5,107,0,0,1374,1516,5,293,0,0,1375,1376,5,139,0,0,1376,1516, + 5,293,0,0,1377,1378,5,273,0,0,1378,1516,5,54,0,0,1379,1380,5,273, + 0,0,1380,1381,5,59,0,0,1381,1516,5,293,0,0,1382,1383,5,273,0,0,1383, + 1516,5,313,0,0,1384,1385,5,273,0,0,1385,1516,5,143,0,0,1386,1387, + 5,273,0,0,1387,1516,5,172,0,0,1388,1389,5,59,0,0,1389,1516,5,142, + 0,0,1390,1391,5,96,0,0,1391,1516,5,142,0,0,1392,1393,5,11,0,0,1393, + 1516,5,142,0,0,1394,1395,5,171,0,0,1395,1516,5,293,0,0,1396,1397, + 5,171,0,0,1397,1516,5,72,0,0,1398,1399,5,326,0,0,1399,1516,5,293, + 0,0,1400,1401,5,326,0,0,1401,1516,5,72,0,0,1402,1403,5,59,0,0,1403, + 1404,5,298,0,0,1404,1516,5,175,0,0,1405,1406,5,96,0,0,1406,1407, + 5,298,0,0,1407,1516,5,175,0,0,1408,1409,5,11,0,0,1409,1410,5,293, + 0,0,1410,1411,3,86,43,0,1411,1412,5,197,0,0,1412,1413,5,45,0,0,1413, + 1516,1,0,0,0,1414,1415,5,11,0,0,1415,1416,5,293,0,0,1416,1417,3, + 86,43,0,1417,1418,5,45,0,0,1418,1419,5,31,0,0,1419,1516,1,0,0,0, + 1420,1421,5,11,0,0,1421,1422,5,293,0,0,1422,1423,3,86,43,0,1423, + 1424,5,197,0,0,1424,1425,5,279,0,0,1425,1516,1,0,0,0,1426,1427,5, + 11,0,0,1427,1428,5,293,0,0,1428,1429,3,86,43,0,1429,1430,5,275,0, + 0,1430,1431,5,31,0,0,1431,1516,1,0,0,0,1432,1433,5,11,0,0,1433,1434, + 5,293,0,0,1434,1435,3,86,43,0,1435,1436,5,197,0,0,1436,1437,5,275, + 0,0,1437,1516,1,0,0,0,1438,1439,5,11,0,0,1439,1440,5,293,0,0,1440, + 1441,3,86,43,0,1441,1442,5,197,0,0,1442,1443,5,283,0,0,1443,1444, + 5,20,0,0,1444,1445,5,89,0,0,1445,1516,1,0,0,0,1446,1447,5,11,0,0, + 1447,1448,5,293,0,0,1448,1449,3,86,43,0,1449,1450,5,269,0,0,1450, + 1451,5,275,0,0,1451,1452,5,170,0,0,1452,1516,1,0,0,0,1453,1454,5, + 11,0,0,1454,1455,5,293,0,0,1455,1456,3,86,43,0,1456,1457,5,103,0, + 0,1457,1458,5,217,0,0,1458,1516,1,0,0,0,1459,1460,5,11,0,0,1460, + 1461,5,293,0,0,1461,1462,3,86,43,0,1462,1463,5,18,0,0,1463,1464, + 5,217,0,0,1464,1516,1,0,0,0,1465,1466,5,11,0,0,1466,1467,5,293,0, + 0,1467,1468,3,86,43,0,1468,1469,5,320,0,0,1469,1470,5,217,0,0,1470, + 1516,1,0,0,0,1471,1472,5,11,0,0,1472,1473,5,293,0,0,1473,1474,3, + 86,43,0,1474,1475,5,310,0,0,1475,1516,1,0,0,0,1476,1477,5,11,0,0, + 1477,1478,5,293,0,0,1478,1480,3,86,43,0,1479,1481,3,32,16,0,1480, + 1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1483,5,53, + 0,0,1483,1516,1,0,0,0,1484,1485,5,11,0,0,1485,1486,5,293,0,0,1486, + 1488,3,86,43,0,1487,1489,3,32,16,0,1488,1487,1,0,0,0,1488,1489,1, + 0,0,0,1489,1490,1,0,0,0,1490,1491,5,56,0,0,1491,1516,1,0,0,0,1492, + 1493,5,11,0,0,1493,1494,5,293,0,0,1494,1496,3,86,43,0,1495,1497, + 3,32,16,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0, + 1498,1499,5,269,0,0,1499,1500,5,115,0,0,1500,1516,1,0,0,0,1501,1502, + 5,11,0,0,1502,1503,5,293,0,0,1503,1505,3,86,43,0,1504,1506,3,32, + 16,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507, + 1508,5,244,0,0,1508,1509,5,50,0,0,1509,1516,1,0,0,0,1510,1511,5, + 281,0,0,1511,1516,5,312,0,0,1512,1516,5,52,0,0,1513,1516,5,255,0, + 0,1514,1516,5,88,0,0,1515,1347,1,0,0,0,1515,1349,1,0,0,0,1515,1351, + 1,0,0,0,1515,1355,1,0,0,0,1515,1359,1,0,0,0,1515,1361,1,0,0,0,1515, + 1366,1,0,0,0,1515,1368,1,0,0,0,1515,1370,1,0,0,0,1515,1373,1,0,0, + 0,1515,1375,1,0,0,0,1515,1377,1,0,0,0,1515,1379,1,0,0,0,1515,1382, + 1,0,0,0,1515,1384,1,0,0,0,1515,1386,1,0,0,0,1515,1388,1,0,0,0,1515, + 1390,1,0,0,0,1515,1392,1,0,0,0,1515,1394,1,0,0,0,1515,1396,1,0,0, + 0,1515,1398,1,0,0,0,1515,1400,1,0,0,0,1515,1402,1,0,0,0,1515,1405, + 1,0,0,0,1515,1408,1,0,0,0,1515,1414,1,0,0,0,1515,1420,1,0,0,0,1515, + 1426,1,0,0,0,1515,1432,1,0,0,0,1515,1438,1,0,0,0,1515,1446,1,0,0, + 0,1515,1453,1,0,0,0,1515,1459,1,0,0,0,1515,1465,1,0,0,0,1515,1471, + 1,0,0,0,1515,1476,1,0,0,0,1515,1484,1,0,0,0,1515,1492,1,0,0,0,1515, + 1501,1,0,0,0,1515,1510,1,0,0,0,1515,1512,1,0,0,0,1515,1513,1,0,0, + 0,1515,1514,1,0,0,0,1516,13,1,0,0,0,1517,1519,5,59,0,0,1518,1520, + 5,298,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, + 1521,1523,5,109,0,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524, + 1,0,0,0,1524,1526,5,293,0,0,1525,1527,3,190,95,0,1526,1525,1,0,0, + 0,1526,1527,1,0,0,0,1527,1528,1,0,0,0,1528,1529,3,84,42,0,1529,15, + 1,0,0,0,1530,1531,5,59,0,0,1531,1533,5,208,0,0,1532,1530,1,0,0,0, + 1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534,1535,5,244,0,0,1535,1536, + 5,293,0,0,1536,1537,3,84,42,0,1537,17,1,0,0,0,1538,1539,5,45,0,0, + 1539,1540,5,31,0,0,1540,1544,3,212,106,0,1541,1542,5,279,0,0,1542, + 1543,5,31,0,0,1543,1545,3,216,108,0,1544,1541,1,0,0,0,1544,1545, + 1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,152,0,0,1547,1548,5,382,0, + 0,1548,1549,5,30,0,0,1549,19,1,0,0,0,1550,1551,5,275,0,0,1551,1552, + 5,31,0,0,1552,1553,3,212,106,0,1553,1556,5,203,0,0,1554,1557,3,66, + 33,0,1555,1557,3,68,34,0,1556,1554,1,0,0,0,1556,1555,1,0,0,0,1557, + 1561,1,0,0,0,1558,1559,5,283,0,0,1559,1560,5,20,0,0,1560,1562,5, + 89,0,0,1561,1558,1,0,0,0,1561,1562,1,0,0,0,1562,21,1,0,0,0,1563, + 1564,5,170,0,0,1564,1565,3,388,194,0,1565,23,1,0,0,0,1566,1567,5, + 51,0,0,1567,1568,3,388,194,0,1568,25,1,0,0,0,1569,1571,3,44,22,0, + 1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573, + 3,104,52,0,1573,1574,3,100,50,0,1574,27,1,0,0,0,1575,1576,5,147, + 0,0,1576,1578,5,216,0,0,1577,1579,5,293,0,0,1578,1577,1,0,0,0,1578, + 1579,1,0,0,0,1579,1580,1,0,0,0,1580,1585,3,86,43,0,1581,1583,3,32, + 16,0,1582,1584,3,190,95,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584, + 1586,1,0,0,0,1585,1581,1,0,0,0,1585,1586,1,0,0,0,1586,1593,1,0,0, + 0,1587,1588,5,31,0,0,1588,1594,5,189,0,0,1589,1590,5,2,0,0,1590, + 1591,3,94,47,0,1591,1592,5,3,0,0,1592,1594,1,0,0,0,1593,1587,1,0, + 0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1652,1,0,0,0,1595,1596, + 5,147,0,0,1596,1598,5,152,0,0,1597,1599,5,293,0,0,1598,1597,1,0, + 0,0,1598,1599,1,0,0,0,1599,1600,1,0,0,0,1600,1602,3,86,43,0,1601, + 1603,3,32,16,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1605,1,0, + 0,0,1604,1606,3,190,95,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606, + 1613,1,0,0,0,1607,1608,5,31,0,0,1608,1614,5,189,0,0,1609,1610,5, + 2,0,0,1610,1611,3,94,47,0,1611,1612,5,3,0,0,1612,1614,1,0,0,0,1613, + 1607,1,0,0,0,1613,1609,1,0,0,0,1613,1614,1,0,0,0,1614,1652,1,0,0, + 0,1615,1616,5,147,0,0,1616,1618,5,152,0,0,1617,1619,5,293,0,0,1618, + 1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1621,3,86, + 43,0,1621,1622,5,244,0,0,1622,1623,3,138,69,0,1623,1652,1,0,0,0, + 1624,1625,5,147,0,0,1625,1627,5,216,0,0,1626,1628,5,169,0,0,1627, + 1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629,1630,5,90, + 0,0,1630,1632,3,388,194,0,1631,1633,3,242,121,0,1632,1631,1,0,0, + 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,70,35,0,1635,1634, + 1,0,0,0,1635,1636,1,0,0,0,1636,1652,1,0,0,0,1637,1638,5,147,0,0, + 1638,1640,5,216,0,0,1639,1641,5,169,0,0,1640,1639,1,0,0,0,1640,1641, + 1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,90,0,0,1643,1645,3,388,194, + 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0,0,0,1646,1649, + 3,48,24,0,1647,1648,5,207,0,0,1648,1650,3,54,27,0,1649,1647,1,0, + 0,0,1649,1650,1,0,0,0,1650,1652,1,0,0,0,1651,1575,1,0,0,0,1651,1595, + 1,0,0,0,1651,1615,1,0,0,0,1651,1624,1,0,0,0,1651,1637,1,0,0,0,1652, + 29,1,0,0,0,1653,1655,3,32,16,0,1654,1656,3,22,11,0,1655,1654,1,0, + 0,0,1655,1656,1,0,0,0,1656,31,1,0,0,0,1657,1658,5,217,0,0,1658,1659, + 5,2,0,0,1659,1664,3,34,17,0,1660,1661,5,4,0,0,1661,1663,3,34,17, + 0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664,1662,1,0,0,0,1664,1665, + 1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0,0,1667,1668,5,3,0,0,1668, + 33,1,0,0,0,1669,1672,3,376,188,0,1670,1671,5,352,0,0,1671,1673,3, + 288,144,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,1679,1,0,0,0, + 1674,1675,3,376,188,0,1675,1676,5,352,0,0,1676,1677,5,82,0,0,1677, + 1679,1,0,0,0,1678,1669,1,0,0,0,1678,1674,1,0,0,0,1679,35,1,0,0,0, + 1680,1681,7,11,0,0,1681,37,1,0,0,0,1682,1683,7,12,0,0,1683,39,1, + 0,0,0,1684,1690,3,98,49,0,1685,1690,3,388,194,0,1686,1690,3,290, + 145,0,1687,1690,3,292,146,0,1688,1690,3,294,147,0,1689,1684,1,0, + 0,0,1689,1685,1,0,0,0,1689,1686,1,0,0,0,1689,1687,1,0,0,0,1689,1688, + 1,0,0,0,1690,41,1,0,0,0,1691,1696,3,376,188,0,1692,1693,5,5,0,0, + 1693,1695,3,376,188,0,1694,1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694, + 1,0,0,0,1696,1697,1,0,0,0,1697,43,1,0,0,0,1698,1696,1,0,0,0,1699, + 1700,5,346,0,0,1700,1705,3,46,23,0,1701,1702,5,4,0,0,1702,1704,3, + 46,23,0,1703,1701,1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705, + 1706,1,0,0,0,1706,45,1,0,0,0,1707,1705,1,0,0,0,1708,1710,3,372,186, + 0,1709,1711,3,212,106,0,1710,1709,1,0,0,0,1710,1711,1,0,0,0,1711, + 1713,1,0,0,0,1712,1714,5,20,0,0,1713,1712,1,0,0,0,1713,1714,1,0, + 0,0,1714,1715,1,0,0,0,1715,1716,5,2,0,0,1716,1717,3,26,13,0,1717, + 1718,5,3,0,0,1718,47,1,0,0,0,1719,1720,5,332,0,0,1720,1721,3,246, + 123,0,1721,49,1,0,0,0,1722,1723,5,207,0,0,1723,1737,3,62,31,0,1724, + 1725,5,218,0,0,1725,1726,5,31,0,0,1726,1737,3,260,130,0,1727,1737, + 3,20,10,0,1728,1737,3,18,9,0,1729,1737,3,242,121,0,1730,1737,3,70, + 35,0,1731,1737,3,22,11,0,1732,1737,3,24,12,0,1733,1734,5,297,0,0, + 1734,1737,3,54,27,0,1735,1737,3,52,26,0,1736,1722,1,0,0,0,1736,1724, + 1,0,0,0,1736,1727,1,0,0,0,1736,1728,1,0,0,0,1736,1729,1,0,0,0,1736, + 1730,1,0,0,0,1736,1731,1,0,0,0,1736,1732,1,0,0,0,1736,1733,1,0,0, + 0,1736,1735,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, + 1,0,0,0,1739,51,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,162,0,0,1742, + 1743,5,382,0,0,1743,53,1,0,0,0,1744,1745,5,2,0,0,1745,1750,3,56, + 28,0,1746,1747,5,4,0,0,1747,1749,3,56,28,0,1748,1746,1,0,0,0,1749, + 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0, + 0,1752,1750,1,0,0,0,1753,1754,5,3,0,0,1754,55,1,0,0,0,1755,1760, + 3,58,29,0,1756,1758,5,352,0,0,1757,1756,1,0,0,0,1757,1758,1,0,0, + 0,1758,1759,1,0,0,0,1759,1761,3,60,30,0,1760,1757,1,0,0,0,1760,1761, + 1,0,0,0,1761,57,1,0,0,0,1762,1767,3,376,188,0,1763,1764,5,5,0,0, + 1764,1766,3,376,188,0,1765,1763,1,0,0,0,1766,1769,1,0,0,0,1767,1765, + 1,0,0,0,1767,1768,1,0,0,0,1768,1772,1,0,0,0,1769,1767,1,0,0,0,1770, + 1772,3,388,194,0,1771,1762,1,0,0,0,1771,1770,1,0,0,0,1772,59,1,0, + 0,0,1773,1778,5,382,0,0,1774,1778,5,384,0,0,1775,1778,3,296,148, + 0,1776,1778,3,388,194,0,1777,1773,1,0,0,0,1777,1774,1,0,0,0,1777, + 1775,1,0,0,0,1777,1776,1,0,0,0,1778,61,1,0,0,0,1779,1780,5,2,0,0, + 1780,1785,3,64,32,0,1781,1782,5,4,0,0,1782,1784,3,64,32,0,1783,1781, + 1,0,0,0,1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786, + 1788,1,0,0,0,1787,1785,1,0,0,0,1788,1789,5,3,0,0,1789,63,1,0,0,0, + 1790,1795,3,58,29,0,1791,1793,5,352,0,0,1792,1791,1,0,0,0,1792,1793, + 1,0,0,0,1793,1794,1,0,0,0,1794,1796,3,268,134,0,1795,1792,1,0,0, + 0,1795,1796,1,0,0,0,1796,65,1,0,0,0,1797,1798,5,2,0,0,1798,1803, + 3,288,144,0,1799,1800,5,4,0,0,1800,1802,3,288,144,0,1801,1799,1, + 0,0,0,1802,1805,1,0,0,0,1803,1801,1,0,0,0,1803,1804,1,0,0,0,1804, + 1806,1,0,0,0,1805,1803,1,0,0,0,1806,1807,5,3,0,0,1807,67,1,0,0,0, + 1808,1809,5,2,0,0,1809,1814,3,66,33,0,1810,1811,5,4,0,0,1811,1813, + 3,66,33,0,1812,1810,1,0,0,0,1813,1816,1,0,0,0,1814,1812,1,0,0,0, + 1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1814,1,0,0,0,1817,1818, + 5,3,0,0,1818,69,1,0,0,0,1819,1820,5,283,0,0,1820,1821,5,20,0,0,1821, + 1826,3,72,36,0,1822,1823,5,283,0,0,1823,1824,5,31,0,0,1824,1826, + 3,74,37,0,1825,1819,1,0,0,0,1825,1822,1,0,0,0,1826,71,1,0,0,0,1827, + 1828,5,146,0,0,1828,1829,3,388,194,0,1829,1830,5,212,0,0,1830,1831, + 3,388,194,0,1831,1834,1,0,0,0,1832,1834,3,376,188,0,1833,1827,1, + 0,0,0,1833,1832,1,0,0,0,1834,73,1,0,0,0,1835,1839,3,388,194,0,1836, + 1837,5,346,0,0,1837,1838,5,267,0,0,1838,1840,3,54,27,0,1839,1836, + 1,0,0,0,1839,1840,1,0,0,0,1840,75,1,0,0,0,1841,1842,3,376,188,0, + 1842,1843,3,388,194,0,1843,77,1,0,0,0,1844,1845,3,28,14,0,1845,1846, + 3,26,13,0,1846,1901,1,0,0,0,1847,1849,3,146,73,0,1848,1850,3,102, + 51,0,1849,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1849,1,0,0,0,1851, + 1852,1,0,0,0,1852,1901,1,0,0,0,1853,1854,5,84,0,0,1854,1855,5,123, + 0,0,1855,1856,3,86,43,0,1856,1858,3,240,120,0,1857,1859,3,138,69, + 0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1901,1,0,0,0,1860,1861, + 5,329,0,0,1861,1862,3,86,43,0,1862,1863,3,240,120,0,1863,1865,3, + 120,60,0,1864,1866,3,138,69,0,1865,1864,1,0,0,0,1865,1866,1,0,0, + 0,1866,1901,1,0,0,0,1867,1868,5,179,0,0,1868,1869,5,152,0,0,1869, + 1870,3,86,43,0,1870,1871,3,240,120,0,1871,1877,5,332,0,0,1872,1878, + 3,98,49,0,1873,1874,5,2,0,0,1874,1875,3,26,13,0,1875,1876,5,3,0, + 0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877,1873,1,0,0,0,1878,1879, + 1,0,0,0,1879,1880,3,240,120,0,1880,1881,5,203,0,0,1881,1885,3,276, + 138,0,1882,1884,3,122,61,0,1883,1882,1,0,0,0,1884,1887,1,0,0,0,1885, + 1883,1,0,0,0,1885,1886,1,0,0,0,1886,1891,1,0,0,0,1887,1885,1,0,0, + 0,1888,1890,3,124,62,0,1889,1888,1,0,0,0,1890,1893,1,0,0,0,1891, + 1889,1,0,0,0,1891,1892,1,0,0,0,1892,1897,1,0,0,0,1893,1891,1,0,0, + 0,1894,1896,3,126,63,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, + 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0, + 0,1900,1844,1,0,0,0,1900,1847,1,0,0,0,1900,1853,1,0,0,0,1900,1860, + 1,0,0,0,1900,1867,1,0,0,0,1901,79,1,0,0,0,1902,1903,3,98,49,0,1903, + 81,1,0,0,0,1904,1905,3,98,49,0,1905,83,1,0,0,0,1906,1907,3,252,126, + 0,1907,85,1,0,0,0,1908,1909,3,252,126,0,1909,87,1,0,0,0,1910,1911, + 3,254,127,0,1911,89,1,0,0,0,1912,1913,3,254,127,0,1913,91,1,0,0, + 0,1914,1917,3,246,123,0,1915,1917,4,46,0,0,1916,1914,1,0,0,0,1916, + 1915,1,0,0,0,1917,93,1,0,0,0,1918,1923,3,92,46,0,1919,1920,5,4,0, + 0,1920,1922,3,92,46,0,1921,1919,1,0,0,0,1922,1925,1,0,0,0,1923,1921, + 1,0,0,0,1923,1924,1,0,0,0,1924,95,1,0,0,0,1925,1923,1,0,0,0,1926, + 1927,3,372,186,0,1927,97,1,0,0,0,1928,1929,5,136,0,0,1929,1930,5, + 2,0,0,1930,1931,3,268,134,0,1931,1932,5,3,0,0,1932,1935,1,0,0,0, + 1933,1935,3,246,123,0,1934,1928,1,0,0,0,1934,1933,1,0,0,0,1935,99, + 1,0,0,0,1936,1937,5,209,0,0,1937,1938,5,31,0,0,1938,1943,3,108,54, + 0,1939,1940,5,4,0,0,1940,1942,3,108,54,0,1941,1939,1,0,0,0,1942, + 1945,1,0,0,0,1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,1947,1,0,0, + 0,1945,1943,1,0,0,0,1946,1936,1,0,0,0,1946,1947,1,0,0,0,1947,1958, + 1,0,0,0,1948,1949,5,44,0,0,1949,1950,5,31,0,0,1950,1955,3,268,134, + 0,1951,1952,5,4,0,0,1952,1954,3,268,134,0,1953,1951,1,0,0,0,1954, + 1957,1,0,0,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0, + 0,1957,1955,1,0,0,0,1958,1948,1,0,0,0,1958,1959,1,0,0,0,1959,1970, + 1,0,0,0,1960,1961,5,93,0,0,1961,1962,5,31,0,0,1962,1967,3,268,134, + 0,1963,1964,5,4,0,0,1964,1966,3,268,134,0,1965,1963,1,0,0,0,1966, + 1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0,0,1968,1971,1,0,0, + 0,1969,1967,1,0,0,0,1970,1960,1,0,0,0,1970,1971,1,0,0,0,1971,1982, + 1,0,0,0,1972,1973,5,278,0,0,1973,1974,5,31,0,0,1974,1979,3,108,54, + 0,1975,1976,5,4,0,0,1976,1978,3,108,54,0,1977,1975,1,0,0,0,1978, + 1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980,1983,1,0,0, + 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1985, + 1,0,0,0,1984,1986,3,352,176,0,1985,1984,1,0,0,0,1985,1986,1,0,0, + 0,1986,1992,1,0,0,0,1987,1990,5,165,0,0,1988,1991,5,10,0,0,1989, + 1991,3,268,134,0,1990,1988,1,0,0,0,1990,1989,1,0,0,0,1991,1993,1, + 0,0,0,1992,1987,1,0,0,0,1992,1993,1,0,0,0,1993,1996,1,0,0,0,1994, + 1995,5,202,0,0,1995,1997,3,268,134,0,1996,1994,1,0,0,0,1996,1997, + 1,0,0,0,1997,101,1,0,0,0,1998,1999,3,28,14,0,1999,2000,3,112,56, + 0,2000,103,1,0,0,0,2001,2002,6,52,-1,0,2002,2003,3,106,53,0,2003, + 2024,1,0,0,0,2004,2005,10,3,0,0,2005,2007,7,13,0,0,2006,2008,3,196, + 98,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009, + 2023,3,104,52,4,2010,2011,10,2,0,0,2011,2013,5,148,0,0,2012,2014, + 3,196,98,0,2013,2012,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0, + 2015,2023,3,104,52,3,2016,2017,10,1,0,0,2017,2019,7,14,0,0,2018, + 2020,3,196,98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1, + 0,0,0,2021,2023,3,104,52,2,2022,2004,1,0,0,0,2022,2010,1,0,0,0,2022, + 2016,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025,1,0,0, + 0,2025,105,1,0,0,0,2026,2024,1,0,0,0,2027,2037,3,114,57,0,2028,2037, + 3,110,55,0,2029,2030,5,293,0,0,2030,2037,3,86,43,0,2031,2037,3,226, + 113,0,2032,2033,5,2,0,0,2033,2034,3,26,13,0,2034,2035,5,3,0,0,2035, + 2037,1,0,0,0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0, + 0,2036,2031,1,0,0,0,2036,2032,1,0,0,0,2037,107,1,0,0,0,2038,2041, + 3,92,46,0,2039,2041,3,268,134,0,2040,2038,1,0,0,0,2040,2039,1,0, + 0,0,2041,2043,1,0,0,0,2042,2044,7,15,0,0,2043,2042,1,0,0,0,2043, + 2044,1,0,0,0,2044,2047,1,0,0,0,2045,2046,5,199,0,0,2046,2048,7,16, + 0,0,2047,2045,1,0,0,0,2047,2048,1,0,0,0,2048,109,1,0,0,0,2049,2051, + 3,146,73,0,2050,2052,3,112,56,0,2051,2050,1,0,0,0,2052,2053,1,0, + 0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,111,1,0,0,0,2055,2057, + 3,116,58,0,2056,2058,3,138,69,0,2057,2056,1,0,0,0,2057,2058,1,0, + 0,0,2058,2059,1,0,0,0,2059,2060,3,100,50,0,2060,2083,1,0,0,0,2061, + 2065,3,118,59,0,2062,2064,3,194,97,0,2063,2062,1,0,0,0,2064,2067, + 1,0,0,0,2065,2063,1,0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067, + 2065,1,0,0,0,2068,2070,3,138,69,0,2069,2068,1,0,0,0,2069,2070,1, + 0,0,0,2070,2072,1,0,0,0,2071,2073,3,152,76,0,2072,2071,1,0,0,0,2072, + 2073,1,0,0,0,2073,2075,1,0,0,0,2074,2076,3,140,70,0,2075,2074,1, + 0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077,2079,3,352,176,0, + 2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2081, + 3,100,50,0,2081,2083,1,0,0,0,2082,2055,1,0,0,0,2082,2061,1,0,0,0, + 2083,113,1,0,0,0,2084,2086,3,116,58,0,2085,2087,3,146,73,0,2086, + 2085,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0,0,2088,2090,3,194, + 97,0,2089,2088,1,0,0,0,2090,2093,1,0,0,0,2091,2089,1,0,0,0,2091, + 2092,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2094,2096,3,138, + 69,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097, + 2099,3,152,76,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1, + 0,0,0,2100,2102,3,140,70,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, + 2104,1,0,0,0,2103,2105,3,352,176,0,2104,2103,1,0,0,0,2104,2105,1, + 0,0,0,2105,2129,1,0,0,0,2106,2108,3,118,59,0,2107,2109,3,146,73, + 0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110,2112, + 3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0, + 2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116,2118, + 3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, + 2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, + 1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, + 2124,2126,1,0,0,0,2125,2127,3,352,176,0,2126,2125,1,0,0,0,2126,2127, + 1,0,0,0,2127,2129,1,0,0,0,2128,2084,1,0,0,0,2128,2106,1,0,0,0,2129, + 115,1,0,0,0,2130,2131,5,263,0,0,2131,2132,5,314,0,0,2132,2134,5, + 2,0,0,2133,2135,3,196,98,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, + 2136,1,0,0,0,2136,2137,3,274,137,0,2137,2138,5,3,0,0,2138,2150,1, + 0,0,0,2139,2141,5,177,0,0,2140,2142,3,196,98,0,2141,2140,1,0,0,0, + 2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2150,3,274,137,0,2144,2146, + 5,238,0,0,2145,2147,3,196,98,0,2146,2145,1,0,0,0,2146,2147,1,0,0, + 0,2147,2148,1,0,0,0,2148,2150,3,274,137,0,2149,2130,1,0,0,0,2149, + 2139,1,0,0,0,2149,2144,1,0,0,0,2150,2152,1,0,0,0,2151,2153,3,242, + 121,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2156,1,0,0,0,2154, + 2155,5,236,0,0,2155,2157,3,388,194,0,2156,2154,1,0,0,0,2156,2157, + 1,0,0,0,2157,2158,1,0,0,0,2158,2159,5,332,0,0,2159,2172,3,388,194, + 0,2160,2170,5,20,0,0,2161,2171,3,214,107,0,2162,2171,3,334,167,0, + 2163,2166,5,2,0,0,2164,2167,3,214,107,0,2165,2167,3,334,167,0,2166, + 2164,1,0,0,0,2166,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2169,5,3,0, + 0,2169,2171,1,0,0,0,2170,2161,1,0,0,0,2170,2162,1,0,0,0,2170,2163, + 1,0,0,0,2171,2173,1,0,0,0,2172,2160,1,0,0,0,2172,2173,1,0,0,0,2173, + 2175,1,0,0,0,2174,2176,3,242,121,0,2175,2174,1,0,0,0,2175,2176,1, + 0,0,0,2176,2179,1,0,0,0,2177,2178,5,235,0,0,2178,2180,3,388,194, + 0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,117,1,0,0,0,2181,2185, + 5,263,0,0,2182,2184,3,142,71,0,2183,2182,1,0,0,0,2184,2187,1,0,0, + 0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2189,1,0,0,0,2187,2185, + 1,0,0,0,2188,2190,3,196,98,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0, + 2190,2191,1,0,0,0,2191,2192,3,258,129,0,2192,119,1,0,0,0,2193,2194, + 5,269,0,0,2194,2195,3,134,67,0,2195,121,1,0,0,0,2196,2197,5,343, + 0,0,2197,2200,5,178,0,0,2198,2199,5,14,0,0,2199,2201,3,276,138,0, + 2200,2198,1,0,0,0,2200,2201,1,0,0,0,2201,2202,1,0,0,0,2202,2203, + 5,300,0,0,2203,2204,3,128,64,0,2204,123,1,0,0,0,2205,2206,5,343, + 0,0,2206,2207,5,197,0,0,2207,2210,5,178,0,0,2208,2209,5,31,0,0,2209, + 2211,5,296,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2214,1,0, + 0,0,2212,2213,5,14,0,0,2213,2215,3,276,138,0,2214,2212,1,0,0,0,2214, + 2215,1,0,0,0,2215,2216,1,0,0,0,2216,2217,5,300,0,0,2217,2218,3,130, + 65,0,2218,125,1,0,0,0,2219,2220,5,343,0,0,2220,2221,5,197,0,0,2221, + 2222,5,178,0,0,2222,2223,5,31,0,0,2223,2226,5,280,0,0,2224,2225, + 5,14,0,0,2225,2227,3,276,138,0,2226,2224,1,0,0,0,2226,2227,1,0,0, + 0,2227,2228,1,0,0,0,2228,2229,5,300,0,0,2229,2230,3,132,66,0,2230, + 127,1,0,0,0,2231,2239,5,84,0,0,2232,2233,5,329,0,0,2233,2234,5,269, + 0,0,2234,2239,5,363,0,0,2235,2236,5,329,0,0,2236,2237,5,269,0,0, + 2237,2239,3,134,67,0,2238,2231,1,0,0,0,2238,2232,1,0,0,0,2238,2235, + 1,0,0,0,2239,129,1,0,0,0,2240,2241,5,147,0,0,2241,2259,5,363,0,0, + 2242,2243,5,147,0,0,2243,2244,5,2,0,0,2244,2245,3,244,122,0,2245, + 2246,5,3,0,0,2246,2247,5,333,0,0,2247,2248,5,2,0,0,2248,2253,3,268, + 134,0,2249,2250,5,4,0,0,2250,2252,3,268,134,0,2251,2249,1,0,0,0, + 2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256, + 1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,3,0,0,2257,2259,1,0,0,0,2258, + 2240,1,0,0,0,2258,2242,1,0,0,0,2259,131,1,0,0,0,2260,2265,5,84,0, + 0,2261,2262,5,329,0,0,2262,2263,5,269,0,0,2263,2265,3,134,67,0,2264, + 2260,1,0,0,0,2264,2261,1,0,0,0,2265,133,1,0,0,0,2266,2271,3,136, + 68,0,2267,2268,5,4,0,0,2268,2270,3,136,68,0,2269,2267,1,0,0,0,2270, + 2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0, + 0,2273,2271,1,0,0,0,2274,2275,3,246,123,0,2275,2276,5,352,0,0,2276, + 2277,3,268,134,0,2277,137,1,0,0,0,2278,2279,5,344,0,0,2279,2280, + 3,276,138,0,2280,139,1,0,0,0,2281,2282,5,132,0,0,2282,2283,3,276, + 138,0,2283,141,1,0,0,0,2284,2285,5,374,0,0,2285,2292,3,144,72,0, + 2286,2288,5,4,0,0,2287,2286,1,0,0,0,2287,2288,1,0,0,0,2288,2289, + 1,0,0,0,2289,2291,3,144,72,0,2290,2287,1,0,0,0,2291,2294,1,0,0,0, + 2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292, + 1,0,0,0,2295,2296,5,375,0,0,2296,143,1,0,0,0,2297,2311,3,376,188, + 0,2298,2299,3,376,188,0,2299,2300,5,2,0,0,2300,2305,3,284,142,0, + 2301,2302,5,4,0,0,2302,2304,3,284,142,0,2303,2301,1,0,0,0,2304,2307, + 1,0,0,0,2305,2303,1,0,0,0,2305,2306,1,0,0,0,2306,2308,1,0,0,0,2307, + 2305,1,0,0,0,2308,2309,5,3,0,0,2309,2311,1,0,0,0,2310,2297,1,0,0, + 0,2310,2298,1,0,0,0,2311,145,1,0,0,0,2312,2313,5,123,0,0,2313,2318, + 3,198,99,0,2314,2315,5,4,0,0,2315,2317,3,198,99,0,2316,2314,1,0, + 0,0,2317,2320,1,0,0,0,2318,2316,1,0,0,0,2318,2319,1,0,0,0,2319,2324, + 1,0,0,0,2320,2318,1,0,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0,0, + 2323,2326,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2328, + 1,0,0,0,2326,2324,1,0,0,0,2327,2329,3,162,81,0,2328,2327,1,0,0,0, + 2328,2329,1,0,0,0,2329,2331,1,0,0,0,2330,2332,3,168,84,0,2331,2330, + 1,0,0,0,2331,2332,1,0,0,0,2332,147,1,0,0,0,2333,2334,7,17,0,0,2334, + 149,1,0,0,0,2335,2337,5,119,0,0,2336,2335,1,0,0,0,2336,2337,1,0, + 0,0,2337,2338,1,0,0,0,2338,2339,7,18,0,0,2339,2340,5,20,0,0,2340, + 2341,5,201,0,0,2341,2350,3,392,196,0,2342,2344,5,119,0,0,2343,2342, + 1,0,0,0,2343,2344,1,0,0,0,2344,2345,1,0,0,0,2345,2346,7,19,0,0,2346, + 2347,5,20,0,0,2347,2348,5,201,0,0,2348,2350,3,280,140,0,2349,2336, + 1,0,0,0,2349,2343,1,0,0,0,2350,151,1,0,0,0,2351,2352,5,130,0,0,2352, + 2353,5,31,0,0,2353,2358,3,154,77,0,2354,2355,5,4,0,0,2355,2357,3, + 154,77,0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358, + 2359,1,0,0,0,2359,2391,1,0,0,0,2360,2358,1,0,0,0,2361,2362,5,130, + 0,0,2362,2363,5,31,0,0,2363,2368,3,268,134,0,2364,2365,5,4,0,0,2365, + 2367,3,268,134,0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1, + 0,0,0,2368,2369,1,0,0,0,2369,2388,1,0,0,0,2370,2368,1,0,0,0,2371, + 2372,5,346,0,0,2372,2389,5,256,0,0,2373,2374,5,346,0,0,2374,2389, + 5,61,0,0,2375,2376,5,131,0,0,2376,2377,5,271,0,0,2377,2378,5,2,0, + 0,2378,2383,3,160,80,0,2379,2380,5,4,0,0,2380,2382,3,160,80,0,2381, + 2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0, + 0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,3,0,0,2387,2389, + 1,0,0,0,2388,2371,1,0,0,0,2388,2373,1,0,0,0,2388,2375,1,0,0,0,2388, + 2389,1,0,0,0,2389,2391,1,0,0,0,2390,2351,1,0,0,0,2390,2361,1,0,0, + 0,2391,153,1,0,0,0,2392,2396,3,92,46,0,2393,2396,3,156,78,0,2394, + 2396,3,268,134,0,2395,2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1, + 0,0,0,2396,155,1,0,0,0,2397,2398,7,20,0,0,2398,2399,5,2,0,0,2399, + 2404,3,160,80,0,2400,2401,5,4,0,0,2401,2403,3,160,80,0,2402,2400, + 1,0,0,0,2403,2406,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, + 2407,1,0,0,0,2406,2404,1,0,0,0,2407,2408,5,3,0,0,2408,2423,1,0,0, + 0,2409,2410,5,131,0,0,2410,2411,5,271,0,0,2411,2412,5,2,0,0,2412, + 2417,3,158,79,0,2413,2414,5,4,0,0,2414,2416,3,158,79,0,2415,2413, + 1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418, + 2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421,2423,1,0,0, + 0,2422,2397,1,0,0,0,2422,2409,1,0,0,0,2423,157,1,0,0,0,2424,2427, + 3,156,78,0,2425,2427,3,160,80,0,2426,2424,1,0,0,0,2426,2425,1,0, + 0,0,2427,159,1,0,0,0,2428,2449,3,92,46,0,2429,2449,3,268,134,0,2430, + 2445,5,2,0,0,2431,2434,3,92,46,0,2432,2434,3,268,134,0,2433,2431, + 1,0,0,0,2433,2432,1,0,0,0,2434,2442,1,0,0,0,2435,2438,5,4,0,0,2436, + 2439,3,92,46,0,2437,2439,3,268,134,0,2438,2436,1,0,0,0,2438,2437, + 1,0,0,0,2439,2441,1,0,0,0,2440,2435,1,0,0,0,2441,2444,1,0,0,0,2442, + 2440,1,0,0,0,2442,2443,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0, + 0,2445,2433,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447,2449, + 5,3,0,0,2448,2428,1,0,0,0,2448,2429,1,0,0,0,2448,2430,1,0,0,0,2449, + 161,1,0,0,0,2450,2451,5,223,0,0,2451,2452,5,2,0,0,2452,2453,3,258, + 129,0,2453,2454,5,119,0,0,2454,2455,3,164,82,0,2455,2456,5,140,0, + 0,2456,2457,5,2,0,0,2457,2462,3,166,83,0,2458,2459,5,4,0,0,2459, + 2461,3,166,83,0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1, + 0,0,0,2462,2463,1,0,0,0,2463,2465,1,0,0,0,2464,2462,1,0,0,0,2465, + 2466,5,3,0,0,2466,2467,5,3,0,0,2467,163,1,0,0,0,2468,2481,3,376, + 188,0,2469,2470,5,2,0,0,2470,2475,3,376,188,0,2471,2472,5,4,0,0, + 2472,2474,3,376,188,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473, + 1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478, + 2479,5,3,0,0,2479,2481,1,0,0,0,2480,2468,1,0,0,0,2480,2469,1,0,0, + 0,2481,165,1,0,0,0,2482,2487,3,268,134,0,2483,2485,5,20,0,0,2484, + 2483,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1,0,0,0,2486,2488,3,376, + 188,0,2487,2484,1,0,0,0,2487,2488,1,0,0,0,2488,167,1,0,0,0,2489, + 2491,5,327,0,0,2490,2492,3,170,85,0,2491,2490,1,0,0,0,2491,2492, + 1,0,0,0,2492,2493,1,0,0,0,2493,2494,5,2,0,0,2494,2495,3,172,86,0, + 2495,2500,5,3,0,0,2496,2498,5,20,0,0,2497,2496,1,0,0,0,2497,2498, + 1,0,0,0,2498,2499,1,0,0,0,2499,2501,3,376,188,0,2500,2497,1,0,0, + 0,2500,2501,1,0,0,0,2501,169,1,0,0,0,2502,2503,7,21,0,0,2503,2504, + 5,199,0,0,2504,171,1,0,0,0,2505,2508,3,174,87,0,2506,2508,3,176, + 88,0,2507,2505,1,0,0,0,2507,2506,1,0,0,0,2508,173,1,0,0,0,2509,2510, + 3,180,90,0,2510,2511,5,119,0,0,2511,2512,3,182,91,0,2512,2513,5, + 140,0,0,2513,2514,5,2,0,0,2514,2519,3,184,92,0,2515,2516,5,4,0,0, + 2516,2518,3,184,92,0,2517,2515,1,0,0,0,2518,2521,1,0,0,0,2519,2517, + 1,0,0,0,2519,2520,1,0,0,0,2520,2522,1,0,0,0,2521,2519,1,0,0,0,2522, + 2523,5,3,0,0,2523,175,1,0,0,0,2524,2525,5,2,0,0,2525,2530,3,180, + 90,0,2526,2527,5,4,0,0,2527,2529,3,180,90,0,2528,2526,1,0,0,0,2529, + 2532,1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0, + 0,2532,2530,1,0,0,0,2533,2534,5,3,0,0,2534,2535,5,119,0,0,2535,2536, + 3,182,91,0,2536,2537,5,140,0,0,2537,2538,5,2,0,0,2538,2543,3,178, + 89,0,2539,2540,5,4,0,0,2540,2542,3,178,89,0,2541,2539,1,0,0,0,2542, + 2545,1,0,0,0,2543,2541,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, + 0,2545,2543,1,0,0,0,2546,2547,5,3,0,0,2547,177,1,0,0,0,2548,2549, + 5,2,0,0,2549,2554,3,186,93,0,2550,2551,5,4,0,0,2551,2553,3,186,93, + 0,2552,2550,1,0,0,0,2553,2556,1,0,0,0,2554,2552,1,0,0,0,2554,2555, + 1,0,0,0,2555,2557,1,0,0,0,2556,2554,1,0,0,0,2557,2559,5,3,0,0,2558, + 2560,3,188,94,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,179,1,0, + 0,0,2561,2562,3,376,188,0,2562,181,1,0,0,0,2563,2564,3,376,188,0, + 2564,183,1,0,0,0,2565,2567,3,186,93,0,2566,2568,3,188,94,0,2567, + 2566,1,0,0,0,2567,2568,1,0,0,0,2568,185,1,0,0,0,2569,2570,3,246, + 123,0,2570,187,1,0,0,0,2571,2573,5,20,0,0,2572,2571,1,0,0,0,2572, + 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2575,3,376,188,0,2575,189,1, + 0,0,0,2576,2577,5,137,0,0,2577,2578,5,197,0,0,2578,2579,5,105,0, + 0,2579,191,1,0,0,0,2580,2581,5,137,0,0,2581,2582,5,105,0,0,2582, + 193,1,0,0,0,2583,2584,5,158,0,0,2584,2586,5,338,0,0,2585,2587,5, + 211,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0,2588, + 2589,3,90,45,0,2589,2598,5,2,0,0,2590,2595,3,268,134,0,2591,2592, + 5,4,0,0,2592,2594,3,268,134,0,2593,2591,1,0,0,0,2594,2597,1,0,0, + 0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2599,1,0,0,0,2597,2595, + 1,0,0,0,2598,2590,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, + 2601,5,3,0,0,2601,2613,3,240,120,0,2602,2604,5,20,0,0,2603,2602, + 1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605,2610,3,376,188, + 0,2606,2607,5,4,0,0,2607,2609,3,376,188,0,2608,2606,1,0,0,0,2609, + 2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2614,1,0,0, + 0,2612,2610,1,0,0,0,2613,2603,1,0,0,0,2613,2614,1,0,0,0,2614,195, + 1,0,0,0,2615,2616,7,22,0,0,2616,197,1,0,0,0,2617,2629,3,86,43,0, + 2618,2620,5,158,0,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,2621, + 1,0,0,0,2621,2625,3,224,112,0,2622,2624,3,200,100,0,2623,2622,1, + 0,0,0,2624,2627,1,0,0,0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626, + 2629,1,0,0,0,2627,2625,1,0,0,0,2628,2617,1,0,0,0,2628,2619,1,0,0, + 0,2629,199,1,0,0,0,2630,2634,3,202,101,0,2631,2634,3,162,81,0,2632, + 2634,3,168,84,0,2633,2630,1,0,0,0,2633,2631,1,0,0,0,2633,2632,1, + 0,0,0,2634,201,1,0,0,0,2635,2636,3,204,102,0,2636,2638,5,155,0,0, + 2637,2639,5,158,0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640, + 1,0,0,0,2640,2642,3,224,112,0,2641,2643,3,206,103,0,2642,2641,1, + 0,0,0,2642,2643,1,0,0,0,2643,2653,1,0,0,0,2644,2645,5,194,0,0,2645, + 2646,3,204,102,0,2646,2648,5,155,0,0,2647,2649,5,158,0,0,2648,2647, + 1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,224,112, + 0,2651,2653,1,0,0,0,2652,2635,1,0,0,0,2652,2644,1,0,0,0,2653,203, + 1,0,0,0,2654,2656,5,144,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0, + 2656,2679,1,0,0,0,2657,2679,5,60,0,0,2658,2660,5,161,0,0,2659,2661, + 5,211,0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2679,1,0,0,0, + 2662,2664,5,161,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, + 1,0,0,0,2665,2679,5,264,0,0,2666,2668,5,250,0,0,2667,2669,5,211, + 0,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2679,1,0,0,0,2670,2672, + 5,124,0,0,2671,2673,5,211,0,0,2672,2671,1,0,0,0,2672,2673,1,0,0, + 0,2673,2679,1,0,0,0,2674,2676,5,161,0,0,2675,2674,1,0,0,0,2675,2676, + 1,0,0,0,2676,2677,1,0,0,0,2677,2679,5,15,0,0,2678,2655,1,0,0,0,2678, + 2657,1,0,0,0,2678,2658,1,0,0,0,2678,2663,1,0,0,0,2678,2666,1,0,0, + 0,2678,2670,1,0,0,0,2678,2675,1,0,0,0,2679,205,1,0,0,0,2680,2681, + 5,203,0,0,2681,2685,3,276,138,0,2682,2683,5,332,0,0,2683,2685,3, + 212,106,0,2684,2680,1,0,0,0,2684,2682,1,0,0,0,2685,207,1,0,0,0,2686, + 2687,5,295,0,0,2687,2689,5,2,0,0,2688,2690,3,210,105,0,2689,2688, + 1,0,0,0,2689,2690,1,0,0,0,2690,2691,1,0,0,0,2691,2696,5,3,0,0,2692, + 2693,5,243,0,0,2693,2694,5,2,0,0,2694,2695,5,382,0,0,2695,2697,5, + 3,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,209,1,0,0,0,2698, + 2700,5,362,0,0,2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0, + 0,0,2701,2702,7,23,0,0,2702,2723,5,222,0,0,2703,2704,3,268,134,0, + 2704,2705,5,258,0,0,2705,2723,1,0,0,0,2706,2707,5,29,0,0,2707,2708, + 5,382,0,0,2708,2709,5,210,0,0,2709,2710,5,201,0,0,2710,2719,5,382, + 0,0,2711,2717,5,203,0,0,2712,2718,3,376,188,0,2713,2714,3,370,185, + 0,2714,2715,5,2,0,0,2715,2716,5,3,0,0,2716,2718,1,0,0,0,2717,2712, + 1,0,0,0,2717,2713,1,0,0,0,2718,2720,1,0,0,0,2719,2711,1,0,0,0,2719, + 2720,1,0,0,0,2720,2723,1,0,0,0,2721,2723,3,268,134,0,2722,2699,1, + 0,0,0,2722,2703,1,0,0,0,2722,2706,1,0,0,0,2722,2721,1,0,0,0,2723, + 211,1,0,0,0,2724,2725,5,2,0,0,2725,2726,3,214,107,0,2726,2727,5, + 3,0,0,2727,213,1,0,0,0,2728,2733,3,372,186,0,2729,2730,5,4,0,0,2730, + 2732,3,372,186,0,2731,2729,1,0,0,0,2732,2735,1,0,0,0,2733,2731,1, + 0,0,0,2733,2734,1,0,0,0,2734,215,1,0,0,0,2735,2733,1,0,0,0,2736, + 2737,5,2,0,0,2737,2742,3,218,109,0,2738,2739,5,4,0,0,2739,2741,3, + 218,109,0,2740,2738,1,0,0,0,2741,2744,1,0,0,0,2742,2740,1,0,0,0, + 2742,2743,1,0,0,0,2743,2745,1,0,0,0,2744,2742,1,0,0,0,2745,2746, + 5,3,0,0,2746,217,1,0,0,0,2747,2749,3,372,186,0,2748,2750,7,15,0, + 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,219,1,0,0,0,2751,2752, + 5,2,0,0,2752,2757,3,222,111,0,2753,2754,5,4,0,0,2754,2756,3,222, + 111,0,2755,2753,1,0,0,0,2756,2759,1,0,0,0,2757,2755,1,0,0,0,2757, + 2758,1,0,0,0,2758,2760,1,0,0,0,2759,2757,1,0,0,0,2760,2761,5,3,0, + 0,2761,221,1,0,0,0,2762,2764,3,96,48,0,2763,2765,3,24,12,0,2764, + 2763,1,0,0,0,2764,2765,1,0,0,0,2765,223,1,0,0,0,2766,2770,3,86,43, + 0,2767,2770,3,90,45,0,2768,2770,3,98,49,0,2769,2766,1,0,0,0,2769, + 2767,1,0,0,0,2769,2768,1,0,0,0,2770,2772,1,0,0,0,2771,2773,3,150, + 75,0,2772,2771,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0,0,2774, + 2776,3,208,104,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2777,1, + 0,0,0,2777,2778,3,240,120,0,2778,2798,1,0,0,0,2779,2780,5,2,0,0, + 2780,2781,3,26,13,0,2781,2783,5,3,0,0,2782,2784,3,208,104,0,2783, + 2782,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0,0,2785,2786,3,240, + 120,0,2786,2798,1,0,0,0,2787,2788,5,2,0,0,2788,2789,3,198,99,0,2789, + 2791,5,3,0,0,2790,2792,3,208,104,0,2791,2790,1,0,0,0,2791,2792,1, + 0,0,0,2792,2793,1,0,0,0,2793,2794,3,240,120,0,2794,2798,1,0,0,0, + 2795,2798,3,226,113,0,2796,2798,3,238,119,0,2797,2769,1,0,0,0,2797, + 2779,1,0,0,0,2797,2787,1,0,0,0,2797,2795,1,0,0,0,2797,2796,1,0,0, + 0,2798,225,1,0,0,0,2799,2800,5,333,0,0,2800,2805,3,268,134,0,2801, + 2802,5,4,0,0,2802,2804,3,268,134,0,2803,2801,1,0,0,0,2804,2807,1, + 0,0,0,2805,2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807, + 2805,1,0,0,0,2808,2809,3,240,120,0,2809,227,1,0,0,0,2810,2811,5, + 293,0,0,2811,2813,3,86,43,0,2812,2814,3,230,115,0,2813,2812,1,0, + 0,0,2813,2814,1,0,0,0,2814,2830,1,0,0,0,2815,2816,5,293,0,0,2816, + 2817,5,2,0,0,2817,2818,3,86,43,0,2818,2820,5,3,0,0,2819,2821,3,230, + 115,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0,2821,2830,1,0,0,0,2822, + 2823,5,293,0,0,2823,2824,5,2,0,0,2824,2825,3,26,13,0,2825,2827,5, + 3,0,0,2826,2828,3,230,115,0,2827,2826,1,0,0,0,2827,2828,1,0,0,0, + 2828,2830,1,0,0,0,2829,2810,1,0,0,0,2829,2815,1,0,0,0,2829,2822, + 1,0,0,0,2830,229,1,0,0,0,2831,2832,5,346,0,0,2832,2833,5,274,0,0, + 2833,2851,5,217,0,0,2834,2835,7,24,0,0,2835,2848,5,31,0,0,2836,2837, + 5,2,0,0,2837,2842,3,268,134,0,2838,2839,5,4,0,0,2839,2841,3,268, + 134,0,2840,2838,1,0,0,0,2841,2844,1,0,0,0,2842,2840,1,0,0,0,2842, + 2843,1,0,0,0,2843,2845,1,0,0,0,2844,2842,1,0,0,0,2845,2846,5,3,0, + 0,2846,2849,1,0,0,0,2847,2849,3,268,134,0,2848,2836,1,0,0,0,2848, + 2847,1,0,0,0,2849,2851,1,0,0,0,2850,2831,1,0,0,0,2850,2834,1,0,0, + 0,2851,2868,1,0,0,0,2852,2853,7,25,0,0,2853,2866,5,31,0,0,2854,2855, + 5,2,0,0,2855,2860,3,108,54,0,2856,2857,5,4,0,0,2857,2859,3,108,54, + 0,2858,2856,1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861, + 1,0,0,0,2861,2863,1,0,0,0,2862,2860,1,0,0,0,2863,2864,5,3,0,0,2864, + 2867,1,0,0,0,2865,2867,3,108,54,0,2866,2854,1,0,0,0,2866,2865,1, + 0,0,0,2867,2869,1,0,0,0,2868,2852,1,0,0,0,2868,2869,1,0,0,0,2869, + 231,1,0,0,0,2870,2871,3,376,188,0,2871,2872,5,373,0,0,2872,2873, + 3,228,114,0,2873,233,1,0,0,0,2874,2877,3,228,114,0,2875,2877,3,232, + 116,0,2876,2874,1,0,0,0,2876,2875,1,0,0,0,2877,235,1,0,0,0,2878, + 2881,3,234,117,0,2879,2881,3,272,136,0,2880,2878,1,0,0,0,2880,2879, + 1,0,0,0,2881,237,1,0,0,0,2882,2883,3,366,183,0,2883,2892,5,2,0,0, + 2884,2889,3,236,118,0,2885,2886,5,4,0,0,2886,2888,3,236,118,0,2887, + 2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1,0,0,0,2889,2890,1,0,0, + 0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2892,2884,1,0,0,0,2892,2893, + 1,0,0,0,2893,2894,1,0,0,0,2894,2895,5,3,0,0,2895,2896,3,240,120, + 0,2896,239,1,0,0,0,2897,2899,5,20,0,0,2898,2897,1,0,0,0,2898,2899, + 1,0,0,0,2899,2900,1,0,0,0,2900,2902,3,378,189,0,2901,2903,3,212, + 106,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904, + 2898,1,0,0,0,2904,2905,1,0,0,0,2905,241,1,0,0,0,2906,2907,5,257, + 0,0,2907,2908,5,121,0,0,2908,2909,5,266,0,0,2909,2913,3,388,194, + 0,2910,2911,5,346,0,0,2911,2912,5,267,0,0,2912,2914,3,54,27,0,2913, + 2910,1,0,0,0,2913,2914,1,0,0,0,2914,2956,1,0,0,0,2915,2916,5,257, + 0,0,2916,2917,5,121,0,0,2917,2927,5,85,0,0,2918,2919,5,113,0,0,2919, + 2920,5,299,0,0,2920,2921,5,31,0,0,2921,2925,3,388,194,0,2922,2923, + 5,101,0,0,2923,2924,5,31,0,0,2924,2926,3,388,194,0,2925,2922,1,0, + 0,0,2925,2926,1,0,0,0,2926,2928,1,0,0,0,2927,2918,1,0,0,0,2927,2928, + 1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,48,0,0,2930,2931,5,154,0,0, + 2931,2932,5,299,0,0,2932,2933,5,31,0,0,2933,2935,3,388,194,0,2934, + 2929,1,0,0,0,2934,2935,1,0,0,0,2935,2941,1,0,0,0,2936,2937,5,177, + 0,0,2937,2938,5,156,0,0,2938,2939,5,299,0,0,2939,2940,5,31,0,0,2940, + 2942,3,388,194,0,2941,2936,1,0,0,0,2941,2942,1,0,0,0,2942,2947,1, + 0,0,0,2943,2944,5,166,0,0,2944,2945,5,299,0,0,2945,2946,5,31,0,0, + 2946,2948,3,388,194,0,2947,2943,1,0,0,0,2947,2948,1,0,0,0,2948,2953, + 1,0,0,0,2949,2950,5,198,0,0,2950,2951,5,83,0,0,2951,2952,5,20,0, + 0,2952,2954,3,388,194,0,2953,2949,1,0,0,0,2953,2954,1,0,0,0,2954, + 2956,1,0,0,0,2955,2906,1,0,0,0,2955,2915,1,0,0,0,2956,243,1,0,0, + 0,2957,2962,3,246,123,0,2958,2959,5,4,0,0,2959,2961,3,246,123,0, + 2960,2958,1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963, + 1,0,0,0,2963,245,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,372,186,0, + 2966,2967,5,5,0,0,2967,2969,3,372,186,0,2968,2966,1,0,0,0,2969,2972, + 1,0,0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,247,1,0,0,0,2972, + 2970,1,0,0,0,2973,2978,3,250,125,0,2974,2975,5,4,0,0,2975,2977,3, + 250,125,0,2976,2974,1,0,0,0,2977,2980,1,0,0,0,2978,2976,1,0,0,0, + 2978,2979,1,0,0,0,2979,249,1,0,0,0,2980,2978,1,0,0,0,2981,2984,3, + 246,123,0,2982,2983,5,207,0,0,2983,2985,3,54,27,0,2984,2982,1,0, + 0,0,2984,2985,1,0,0,0,2985,251,1,0,0,0,2986,2987,3,372,186,0,2987, + 2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1,0,0,0,2989,2990,1,0,0, + 0,2990,2991,1,0,0,0,2991,2992,3,372,186,0,2992,253,1,0,0,0,2993, + 2994,3,372,186,0,2994,2995,5,5,0,0,2995,2997,1,0,0,0,2996,2993,1, + 0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,2999,3,372,186,0, + 2999,255,1,0,0,0,3000,3003,3,92,46,0,3001,3003,3,268,134,0,3002, + 3000,1,0,0,0,3002,3001,1,0,0,0,3003,3011,1,0,0,0,3004,3006,5,20, + 0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006,3009,1,0,0,0,3007,3010, + 3,372,186,0,3008,3010,3,212,106,0,3009,3007,1,0,0,0,3009,3008,1, + 0,0,0,3010,3012,1,0,0,0,3011,3005,1,0,0,0,3011,3012,1,0,0,0,3012, + 257,1,0,0,0,3013,3018,3,256,128,0,3014,3015,5,4,0,0,3015,3017,3, + 256,128,0,3016,3014,1,0,0,0,3017,3020,1,0,0,0,3018,3016,1,0,0,0, + 3018,3019,1,0,0,0,3019,259,1,0,0,0,3020,3018,1,0,0,0,3021,3022,5, + 2,0,0,3022,3027,3,262,131,0,3023,3024,5,4,0,0,3024,3026,3,262,131, + 0,3025,3023,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028, + 1,0,0,0,3028,3030,1,0,0,0,3029,3027,1,0,0,0,3030,3031,5,3,0,0,3031, + 261,1,0,0,0,3032,3035,3,264,132,0,3033,3035,3,336,168,0,3034,3032, + 1,0,0,0,3034,3033,1,0,0,0,3035,263,1,0,0,0,3036,3050,3,370,185,0, + 3037,3038,3,376,188,0,3038,3039,5,2,0,0,3039,3044,3,266,133,0,3040, + 3041,5,4,0,0,3041,3043,3,266,133,0,3042,3040,1,0,0,0,3043,3046,1, + 0,0,0,3044,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3047,1,0,0,0,3046, + 3044,1,0,0,0,3047,3048,5,3,0,0,3048,3050,1,0,0,0,3049,3036,1,0,0, + 0,3049,3037,1,0,0,0,3050,265,1,0,0,0,3051,3054,3,370,185,0,3052, + 3054,3,288,144,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,267,1, + 0,0,0,3055,3056,3,276,138,0,3056,269,1,0,0,0,3057,3058,3,376,188, + 0,3058,3059,5,373,0,0,3059,3060,3,268,134,0,3060,271,1,0,0,0,3061, + 3064,3,268,134,0,3062,3064,3,270,135,0,3063,3061,1,0,0,0,3063,3062, + 1,0,0,0,3064,273,1,0,0,0,3065,3070,3,268,134,0,3066,3067,5,4,0,0, + 3067,3069,3,268,134,0,3068,3066,1,0,0,0,3069,3072,1,0,0,0,3070,3068, + 1,0,0,0,3070,3071,1,0,0,0,3071,275,1,0,0,0,3072,3070,1,0,0,0,3073, + 3074,6,138,-1,0,3074,3075,7,26,0,0,3075,3086,3,276,138,5,3076,3077, + 5,105,0,0,3077,3078,5,2,0,0,3078,3079,3,26,13,0,3079,3080,5,3,0, + 0,3080,3086,1,0,0,0,3081,3083,3,280,140,0,3082,3084,3,278,139,0, + 3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1,0,0,0,3085,3073, + 1,0,0,0,3085,3076,1,0,0,0,3085,3081,1,0,0,0,3086,3095,1,0,0,0,3087, + 3088,10,2,0,0,3088,3089,5,14,0,0,3089,3094,3,276,138,3,3090,3091, + 10,1,0,0,3091,3092,5,208,0,0,3092,3094,3,276,138,2,3093,3087,1,0, + 0,0,3093,3090,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096, + 1,0,0,0,3096,277,1,0,0,0,3097,3095,1,0,0,0,3098,3100,5,197,0,0,3099, + 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,24, + 0,0,3102,3103,3,280,140,0,3103,3104,5,14,0,0,3104,3105,3,280,140, + 0,3105,3181,1,0,0,0,3106,3108,5,197,0,0,3107,3106,1,0,0,0,3107,3108, + 1,0,0,0,3108,3109,1,0,0,0,3109,3110,5,140,0,0,3110,3111,5,2,0,0, + 3111,3116,3,268,134,0,3112,3113,5,4,0,0,3113,3115,3,268,134,0,3114, + 3112,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3116,3117,1,0,0, + 0,3117,3119,1,0,0,0,3118,3116,1,0,0,0,3119,3120,5,3,0,0,3120,3181, + 1,0,0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, + 3123,3124,1,0,0,0,3124,3125,5,140,0,0,3125,3126,5,2,0,0,3126,3127, + 3,26,13,0,3127,3128,5,3,0,0,3128,3181,1,0,0,0,3129,3131,5,197,0, + 0,3130,3129,1,0,0,0,3130,3131,1,0,0,0,3131,3132,1,0,0,0,3132,3133, + 7,27,0,0,3133,3181,3,280,140,0,3134,3136,5,197,0,0,3135,3134,1,0, + 0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,7,28,0,0,3138, + 3152,7,29,0,0,3139,3140,5,2,0,0,3140,3153,5,3,0,0,3141,3142,5,2, + 0,0,3142,3147,3,268,134,0,3143,3144,5,4,0,0,3144,3146,3,268,134, + 0,3145,3143,1,0,0,0,3146,3149,1,0,0,0,3147,3145,1,0,0,0,3147,3148, + 1,0,0,0,3148,3150,1,0,0,0,3149,3147,1,0,0,0,3150,3151,5,3,0,0,3151, + 3153,1,0,0,0,3152,3139,1,0,0,0,3152,3141,1,0,0,0,3153,3181,1,0,0, + 0,3154,3156,5,197,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3157, + 1,0,0,0,3157,3158,7,28,0,0,3158,3161,3,280,140,0,3159,3160,5,100, + 0,0,3160,3162,3,388,194,0,3161,3159,1,0,0,0,3161,3162,1,0,0,0,3162, + 3181,1,0,0,0,3163,3165,5,153,0,0,3164,3166,5,197,0,0,3165,3164,1, + 0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3181,5,198,0,0,3168, + 3170,5,153,0,0,3169,3171,5,197,0,0,3170,3169,1,0,0,0,3170,3171,1, + 0,0,0,3171,3172,1,0,0,0,3172,3181,7,30,0,0,3173,3175,5,153,0,0,3174, + 3176,5,197,0,0,3175,3174,1,0,0,0,3175,3176,1,0,0,0,3176,3177,1,0, + 0,0,3177,3178,5,92,0,0,3178,3179,5,123,0,0,3179,3181,3,280,140,0, + 3180,3099,1,0,0,0,3180,3107,1,0,0,0,3180,3122,1,0,0,0,3180,3130, + 1,0,0,0,3180,3135,1,0,0,0,3180,3155,1,0,0,0,3180,3163,1,0,0,0,3180, + 3168,1,0,0,0,3180,3173,1,0,0,0,3181,279,1,0,0,0,3182,3183,6,140, + -1,0,3183,3187,3,284,142,0,3184,3185,7,31,0,0,3185,3187,3,280,140, + 7,3186,3182,1,0,0,0,3186,3184,1,0,0,0,3187,3209,1,0,0,0,3188,3189, + 10,6,0,0,3189,3190,7,32,0,0,3190,3208,3,280,140,7,3191,3192,10,5, + 0,0,3192,3193,7,33,0,0,3193,3208,3,280,140,6,3194,3195,10,4,0,0, + 3195,3196,5,367,0,0,3196,3208,3,280,140,5,3197,3198,10,3,0,0,3198, + 3199,5,370,0,0,3199,3208,3,280,140,4,3200,3201,10,2,0,0,3201,3202, + 5,368,0,0,3202,3208,3,280,140,3,3203,3204,10,1,0,0,3204,3205,3,290, + 145,0,3205,3206,3,280,140,2,3206,3208,1,0,0,0,3207,3188,1,0,0,0, + 3207,3191,1,0,0,0,3207,3194,1,0,0,0,3207,3197,1,0,0,0,3207,3200, + 1,0,0,0,3207,3203,1,0,0,0,3208,3211,1,0,0,0,3209,3207,1,0,0,0,3209, + 3210,1,0,0,0,3210,281,1,0,0,0,3211,3209,1,0,0,0,3212,3213,7,34,0, + 0,3213,283,1,0,0,0,3214,3215,6,142,-1,0,3215,3464,7,35,0,0,3216, + 3217,7,36,0,0,3217,3220,5,2,0,0,3218,3221,3,282,141,0,3219,3221, + 3,388,194,0,3220,3218,1,0,0,0,3220,3219,1,0,0,0,3221,3222,1,0,0, + 0,3222,3223,5,4,0,0,3223,3224,3,280,140,0,3224,3225,5,4,0,0,3225, + 3226,3,280,140,0,3226,3227,5,3,0,0,3227,3464,1,0,0,0,3228,3229,7, + 37,0,0,3229,3232,5,2,0,0,3230,3233,3,282,141,0,3231,3233,3,388,194, + 0,3232,3230,1,0,0,0,3232,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235, + 5,4,0,0,3235,3236,3,280,140,0,3236,3237,5,4,0,0,3237,3238,3,280, + 140,0,3238,3239,5,3,0,0,3239,3464,1,0,0,0,3240,3242,5,35,0,0,3241, + 3243,3,350,175,0,3242,3241,1,0,0,0,3243,3244,1,0,0,0,3244,3242,1, + 0,0,0,3244,3245,1,0,0,0,3245,3248,1,0,0,0,3246,3247,5,97,0,0,3247, + 3249,3,268,134,0,3248,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1, + 0,0,0,3250,3251,5,99,0,0,3251,3464,1,0,0,0,3252,3253,5,35,0,0,3253, + 3255,3,268,134,0,3254,3256,3,350,175,0,3255,3254,1,0,0,0,3256,3257, + 1,0,0,0,3257,3255,1,0,0,0,3257,3258,1,0,0,0,3258,3261,1,0,0,0,3259, + 3260,5,97,0,0,3260,3262,3,268,134,0,3261,3259,1,0,0,0,3261,3262, + 1,0,0,0,3262,3263,1,0,0,0,3263,3264,5,99,0,0,3264,3464,1,0,0,0,3265, + 3266,7,38,0,0,3266,3267,5,2,0,0,3267,3268,3,268,134,0,3268,3269, + 5,20,0,0,3269,3270,3,318,159,0,3270,3271,5,3,0,0,3271,3464,1,0,0, + 0,3272,3273,5,286,0,0,3273,3282,5,2,0,0,3274,3279,3,256,128,0,3275, + 3276,5,4,0,0,3276,3278,3,256,128,0,3277,3275,1,0,0,0,3278,3281,1, + 0,0,0,3279,3277,1,0,0,0,3279,3280,1,0,0,0,3280,3283,1,0,0,0,3281, + 3279,1,0,0,0,3282,3274,1,0,0,0,3282,3283,1,0,0,0,3283,3284,1,0,0, + 0,3284,3464,5,3,0,0,3285,3286,5,116,0,0,3286,3287,5,2,0,0,3287,3290, + 3,268,134,0,3288,3289,5,138,0,0,3289,3291,5,199,0,0,3290,3288,1, + 0,0,0,3290,3291,1,0,0,0,3291,3292,1,0,0,0,3292,3293,5,3,0,0,3293, + 3464,1,0,0,0,3294,3295,5,17,0,0,3295,3296,5,2,0,0,3296,3299,3,268, + 134,0,3297,3298,5,138,0,0,3298,3300,5,199,0,0,3299,3297,1,0,0,0, + 3299,3300,1,0,0,0,3300,3301,1,0,0,0,3301,3302,5,3,0,0,3302,3464, + 1,0,0,0,3303,3304,5,157,0,0,3304,3305,5,2,0,0,3305,3308,3,268,134, + 0,3306,3307,5,138,0,0,3307,3309,5,199,0,0,3308,3306,1,0,0,0,3308, + 3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,3,0,0,3311,3464,1,0,0, + 0,3312,3313,5,225,0,0,3313,3314,5,2,0,0,3314,3315,3,280,140,0,3315, + 3316,5,140,0,0,3316,3317,3,280,140,0,3317,3318,5,3,0,0,3318,3464, + 1,0,0,0,3319,3464,3,288,144,0,3320,3464,5,363,0,0,3321,3322,3,370, + 185,0,3322,3323,5,5,0,0,3323,3324,5,363,0,0,3324,3464,1,0,0,0,3325, + 3326,5,2,0,0,3326,3329,3,256,128,0,3327,3328,5,4,0,0,3328,3330,3, + 256,128,0,3329,3327,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0, + 3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3334,5,3,0,0,3334,3464, + 1,0,0,0,3335,3336,5,2,0,0,3336,3337,3,26,13,0,3337,3338,5,3,0,0, + 3338,3464,1,0,0,0,3339,3340,5,136,0,0,3340,3341,5,2,0,0,3341,3342, + 3,268,134,0,3342,3343,5,3,0,0,3343,3464,1,0,0,0,3344,3345,3,366, + 183,0,3345,3357,5,2,0,0,3346,3348,3,196,98,0,3347,3346,1,0,0,0,3347, + 3348,1,0,0,0,3348,3349,1,0,0,0,3349,3354,3,272,136,0,3350,3351,5, + 4,0,0,3351,3353,3,272,136,0,3352,3350,1,0,0,0,3353,3356,1,0,0,0, + 3354,3352,1,0,0,0,3354,3355,1,0,0,0,3355,3358,1,0,0,0,3356,3354, + 1,0,0,0,3357,3347,1,0,0,0,3357,3358,1,0,0,0,3358,3359,1,0,0,0,3359, + 3366,5,3,0,0,3360,3361,5,114,0,0,3361,3362,5,2,0,0,3362,3363,5,344, + 0,0,3363,3364,3,276,138,0,3364,3365,5,3,0,0,3365,3367,1,0,0,0,3366, + 3360,1,0,0,0,3366,3367,1,0,0,0,3367,3370,1,0,0,0,3368,3369,7,39, + 0,0,3369,3371,5,199,0,0,3370,3368,1,0,0,0,3370,3371,1,0,0,0,3371, + 3374,1,0,0,0,3372,3373,5,213,0,0,3373,3375,3,358,179,0,3374,3372, + 1,0,0,0,3374,3375,1,0,0,0,3375,3464,1,0,0,0,3376,3377,3,376,188, + 0,3377,3378,5,372,0,0,3378,3379,3,268,134,0,3379,3464,1,0,0,0,3380, + 3381,5,2,0,0,3381,3384,3,376,188,0,3382,3383,5,4,0,0,3383,3385,3, + 376,188,0,3384,3382,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, + 3386,3387,1,0,0,0,3387,3388,1,0,0,0,3388,3389,5,3,0,0,3389,3390, + 5,372,0,0,3390,3391,3,268,134,0,3391,3464,1,0,0,0,3392,3464,3,376, + 188,0,3393,3394,5,2,0,0,3394,3395,3,268,134,0,3395,3396,5,3,0,0, + 3396,3464,1,0,0,0,3397,3398,5,110,0,0,3398,3399,5,2,0,0,3399,3400, + 3,376,188,0,3400,3401,5,123,0,0,3401,3402,3,280,140,0,3402,3403, + 5,3,0,0,3403,3464,1,0,0,0,3404,3405,7,40,0,0,3405,3406,5,2,0,0,3406, + 3407,3,280,140,0,3407,3408,7,41,0,0,3408,3411,3,280,140,0,3409,3410, + 7,42,0,0,3410,3412,3,280,140,0,3411,3409,1,0,0,0,3411,3412,1,0,0, + 0,3412,3413,1,0,0,0,3413,3414,5,3,0,0,3414,3464,1,0,0,0,3415,3416, + 5,315,0,0,3416,3418,5,2,0,0,3417,3419,7,43,0,0,3418,3417,1,0,0,0, + 3418,3419,1,0,0,0,3419,3421,1,0,0,0,3420,3422,3,280,140,0,3421,3420, + 1,0,0,0,3421,3422,1,0,0,0,3422,3423,1,0,0,0,3423,3424,5,123,0,0, + 3424,3425,3,280,140,0,3425,3426,5,3,0,0,3426,3464,1,0,0,0,3427,3428, + 5,215,0,0,3428,3429,5,2,0,0,3429,3430,3,280,140,0,3430,3431,5,224, + 0,0,3431,3432,3,280,140,0,3432,3433,5,123,0,0,3433,3436,3,280,140, + 0,3434,3435,5,119,0,0,3435,3437,3,280,140,0,3436,3434,1,0,0,0,3436, + 3437,1,0,0,0,3437,3438,1,0,0,0,3438,3439,5,3,0,0,3439,3464,1,0,0, + 0,3440,3441,7,44,0,0,3441,3442,5,2,0,0,3442,3443,3,280,140,0,3443, + 3444,5,3,0,0,3444,3445,5,347,0,0,3445,3446,5,130,0,0,3446,3447,5, + 2,0,0,3447,3448,5,209,0,0,3448,3449,5,31,0,0,3449,3450,3,108,54, + 0,3450,3457,5,3,0,0,3451,3452,5,114,0,0,3452,3453,5,2,0,0,3453,3454, + 5,344,0,0,3454,3455,3,276,138,0,3455,3456,5,3,0,0,3456,3458,1,0, + 0,0,3457,3451,1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3460, + 5,213,0,0,3460,3462,3,358,179,0,3461,3459,1,0,0,0,3461,3462,1,0, + 0,0,3462,3464,1,0,0,0,3463,3214,1,0,0,0,3463,3216,1,0,0,0,3463,3228, + 1,0,0,0,3463,3240,1,0,0,0,3463,3252,1,0,0,0,3463,3265,1,0,0,0,3463, + 3272,1,0,0,0,3463,3285,1,0,0,0,3463,3294,1,0,0,0,3463,3303,1,0,0, + 0,3463,3312,1,0,0,0,3463,3319,1,0,0,0,3463,3320,1,0,0,0,3463,3321, + 1,0,0,0,3463,3325,1,0,0,0,3463,3335,1,0,0,0,3463,3339,1,0,0,0,3463, + 3344,1,0,0,0,3463,3376,1,0,0,0,3463,3380,1,0,0,0,3463,3392,1,0,0, + 0,3463,3393,1,0,0,0,3463,3397,1,0,0,0,3463,3404,1,0,0,0,3463,3415, + 1,0,0,0,3463,3427,1,0,0,0,3463,3440,1,0,0,0,3464,3475,1,0,0,0,3465, + 3466,10,9,0,0,3466,3467,5,6,0,0,3467,3468,3,280,140,0,3468,3469, + 5,7,0,0,3469,3474,1,0,0,0,3470,3471,10,7,0,0,3471,3472,5,5,0,0,3472, + 3474,3,376,188,0,3473,3465,1,0,0,0,3473,3470,1,0,0,0,3474,3477,1, + 0,0,0,3475,3473,1,0,0,0,3475,3476,1,0,0,0,3476,285,1,0,0,0,3477, + 3475,1,0,0,0,3478,3486,5,71,0,0,3479,3486,5,303,0,0,3480,3486,5, + 304,0,0,3481,3486,5,305,0,0,3482,3486,5,149,0,0,3483,3486,5,133, + 0,0,3484,3486,3,376,188,0,3485,3478,1,0,0,0,3485,3479,1,0,0,0,3485, + 3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485,3483,1,0,0, + 0,3485,3484,1,0,0,0,3486,287,1,0,0,0,3487,3503,5,198,0,0,3488,3503, + 5,376,0,0,3489,3490,5,371,0,0,3490,3503,3,376,188,0,3491,3503,3, + 298,149,0,3492,3493,3,286,143,0,3493,3494,3,388,194,0,3494,3503, + 1,0,0,0,3495,3503,3,384,192,0,3496,3503,3,296,148,0,3497,3499,3, + 388,194,0,3498,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3498,1,0,0,0, + 3500,3501,1,0,0,0,3501,3503,1,0,0,0,3502,3487,1,0,0,0,3502,3488, + 1,0,0,0,3502,3489,1,0,0,0,3502,3491,1,0,0,0,3502,3492,1,0,0,0,3502, + 3495,1,0,0,0,3502,3496,1,0,0,0,3502,3498,1,0,0,0,3503,289,1,0,0, + 0,3504,3505,7,45,0,0,3505,291,1,0,0,0,3506,3507,7,46,0,0,3507,293, + 1,0,0,0,3508,3509,7,47,0,0,3509,295,1,0,0,0,3510,3511,7,48,0,0,3511, + 297,1,0,0,0,3512,3515,5,149,0,0,3513,3516,3,300,150,0,3514,3516, + 3,304,152,0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,299,1,0,0,0, + 3517,3519,3,302,151,0,3518,3520,3,306,153,0,3519,3518,1,0,0,0,3519, + 3520,1,0,0,0,3520,301,1,0,0,0,3521,3522,3,308,154,0,3522,3523,3, + 310,155,0,3523,3525,1,0,0,0,3524,3521,1,0,0,0,3525,3526,1,0,0,0, + 3526,3524,1,0,0,0,3526,3527,1,0,0,0,3527,303,1,0,0,0,3528,3531,3, + 306,153,0,3529,3532,3,302,151,0,3530,3532,3,306,153,0,3531,3529, + 1,0,0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,305,1,0,0,0,3533, + 3534,3,308,154,0,3534,3535,3,312,156,0,3535,3536,5,309,0,0,3536, + 3537,3,312,156,0,3537,307,1,0,0,0,3538,3540,7,49,0,0,3539,3538,1, + 0,0,0,3539,3540,1,0,0,0,3540,3544,1,0,0,0,3541,3545,5,382,0,0,3542, + 3545,5,384,0,0,3543,3545,3,388,194,0,3544,3541,1,0,0,0,3544,3542, + 1,0,0,0,3544,3543,1,0,0,0,3545,309,1,0,0,0,3546,3547,7,50,0,0,3547, + 311,1,0,0,0,3548,3549,7,51,0,0,3549,313,1,0,0,0,3550,3554,5,116, + 0,0,3551,3552,5,9,0,0,3552,3554,3,372,186,0,3553,3550,1,0,0,0,3553, + 3551,1,0,0,0,3554,315,1,0,0,0,3555,3586,5,27,0,0,3556,3586,5,308, + 0,0,3557,3586,5,32,0,0,3558,3586,5,276,0,0,3559,3586,5,272,0,0,3560, + 3586,5,150,0,0,3561,3586,5,151,0,0,3562,3586,5,25,0,0,3563,3586, + 5,174,0,0,3564,3586,5,117,0,0,3565,3586,5,234,0,0,3566,3586,5,95, + 0,0,3567,3586,5,71,0,0,3568,3586,5,303,0,0,3569,3586,5,305,0,0,3570, + 3586,5,304,0,0,3571,3586,5,285,0,0,3572,3586,5,41,0,0,3573,3586, + 5,40,0,0,3574,3586,5,334,0,0,3575,3586,5,26,0,0,3576,3586,5,80,0, + 0,3577,3586,5,79,0,0,3578,3586,5,200,0,0,3579,3586,5,340,0,0,3580, + 3586,5,149,0,0,3581,3586,5,19,0,0,3582,3586,5,286,0,0,3583,3586, + 5,177,0,0,3584,3586,3,376,188,0,3585,3555,1,0,0,0,3585,3556,1,0, + 0,0,3585,3557,1,0,0,0,3585,3558,1,0,0,0,3585,3559,1,0,0,0,3585,3560, + 1,0,0,0,3585,3561,1,0,0,0,3585,3562,1,0,0,0,3585,3563,1,0,0,0,3585, + 3564,1,0,0,0,3585,3565,1,0,0,0,3585,3566,1,0,0,0,3585,3567,1,0,0, + 0,3585,3568,1,0,0,0,3585,3569,1,0,0,0,3585,3570,1,0,0,0,3585,3571, + 1,0,0,0,3585,3572,1,0,0,0,3585,3573,1,0,0,0,3585,3574,1,0,0,0,3585, + 3575,1,0,0,0,3585,3576,1,0,0,0,3585,3577,1,0,0,0,3585,3578,1,0,0, + 0,3585,3579,1,0,0,0,3585,3580,1,0,0,0,3585,3581,1,0,0,0,3585,3582, + 1,0,0,0,3585,3583,1,0,0,0,3585,3584,1,0,0,0,3586,317,1,0,0,0,3587, + 3588,5,19,0,0,3588,3589,5,356,0,0,3589,3590,3,318,159,0,3590,3591, + 5,358,0,0,3591,3634,1,0,0,0,3592,3593,5,177,0,0,3593,3594,5,356, + 0,0,3594,3595,3,318,159,0,3595,3596,5,4,0,0,3596,3597,3,318,159, + 0,3597,3598,5,358,0,0,3598,3634,1,0,0,0,3599,3606,5,286,0,0,3600, + 3602,5,356,0,0,3601,3603,3,346,173,0,3602,3601,1,0,0,0,3602,3603, + 1,0,0,0,3603,3604,1,0,0,0,3604,3607,5,358,0,0,3605,3607,5,354,0, + 0,3606,3600,1,0,0,0,3606,3605,1,0,0,0,3607,3634,1,0,0,0,3608,3609, + 5,149,0,0,3609,3612,7,52,0,0,3610,3611,5,309,0,0,3611,3613,5,186, + 0,0,3612,3610,1,0,0,0,3612,3613,1,0,0,0,3613,3634,1,0,0,0,3614,3615, + 5,149,0,0,3615,3618,7,53,0,0,3616,3617,5,309,0,0,3617,3619,7,54, + 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3634,1,0,0,0,3620,3631, + 3,316,158,0,3621,3622,5,2,0,0,3622,3627,5,382,0,0,3623,3624,5,4, + 0,0,3624,3626,5,382,0,0,3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627, + 3625,1,0,0,0,3627,3628,1,0,0,0,3628,3630,1,0,0,0,3629,3627,1,0,0, + 0,3630,3632,5,3,0,0,3631,3621,1,0,0,0,3631,3632,1,0,0,0,3632,3634, + 1,0,0,0,3633,3587,1,0,0,0,3633,3592,1,0,0,0,3633,3599,1,0,0,0,3633, + 3608,1,0,0,0,3633,3614,1,0,0,0,3633,3620,1,0,0,0,3634,319,1,0,0, + 0,3635,3640,3,322,161,0,3636,3637,5,4,0,0,3637,3639,3,322,161,0, + 3638,3636,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641, + 1,0,0,0,3641,321,1,0,0,0,3642,3640,1,0,0,0,3643,3644,3,96,48,0,3644, + 3648,3,318,159,0,3645,3647,3,328,164,0,3646,3645,1,0,0,0,3647,3650, + 1,0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,323,1,0,0,0,3650, + 3648,1,0,0,0,3651,3656,3,326,163,0,3652,3653,5,4,0,0,3653,3655,3, + 326,163,0,3654,3652,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0,0, + 3656,3657,1,0,0,0,3657,325,1,0,0,0,3658,3656,1,0,0,0,3659,3660,3, + 92,46,0,3660,3664,3,318,159,0,3661,3663,3,328,164,0,3662,3661,1, + 0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3664,3665,1,0,0,0,3665, + 327,1,0,0,0,3666,3664,1,0,0,0,3667,3668,5,197,0,0,3668,3673,5,198, + 0,0,3669,3673,3,330,165,0,3670,3673,3,24,12,0,3671,3673,3,314,157, + 0,3672,3667,1,0,0,0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671, + 1,0,0,0,3673,329,1,0,0,0,3674,3675,5,82,0,0,3675,3676,3,268,134, + 0,3676,331,1,0,0,0,3677,3678,7,55,0,0,3678,3679,3,268,134,0,3679, + 333,1,0,0,0,3680,3685,3,336,168,0,3681,3682,5,4,0,0,3682,3684,3, + 336,168,0,3683,3681,1,0,0,0,3684,3687,1,0,0,0,3685,3683,1,0,0,0, + 3685,3686,1,0,0,0,3686,335,1,0,0,0,3687,3685,1,0,0,0,3688,3689,3, + 372,186,0,3689,3692,3,318,159,0,3690,3691,5,197,0,0,3691,3693,5, + 198,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694, + 3696,3,24,12,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,337,1,0, + 0,0,3697,3702,3,340,170,0,3698,3699,5,4,0,0,3699,3701,3,340,170, + 0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, + 1,0,0,0,3703,339,1,0,0,0,3704,3702,1,0,0,0,3705,3706,3,96,48,0,3706, + 3710,3,318,159,0,3707,3709,3,342,171,0,3708,3707,1,0,0,0,3709,3712, + 1,0,0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,341,1,0,0,0,3712, + 3710,1,0,0,0,3713,3714,5,197,0,0,3714,3719,5,198,0,0,3715,3719,3, + 330,165,0,3716,3719,3,344,172,0,3717,3719,3,24,12,0,3718,3713,1, + 0,0,0,3718,3715,1,0,0,0,3718,3716,1,0,0,0,3718,3717,1,0,0,0,3719, + 343,1,0,0,0,3720,3721,5,127,0,0,3721,3722,5,12,0,0,3722,3723,5,20, + 0,0,3723,3724,5,2,0,0,3724,3725,3,268,134,0,3725,3726,5,3,0,0,3726, + 345,1,0,0,0,3727,3732,3,348,174,0,3728,3729,5,4,0,0,3729,3731,3, + 348,174,0,3730,3728,1,0,0,0,3731,3734,1,0,0,0,3732,3730,1,0,0,0, + 3732,3733,1,0,0,0,3733,347,1,0,0,0,3734,3732,1,0,0,0,3735,3737,3, + 376,188,0,3736,3738,5,371,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0, + 0,3738,3739,1,0,0,0,3739,3742,3,318,159,0,3740,3741,5,197,0,0,3741, + 3743,5,198,0,0,3742,3740,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0, + 0,0,3744,3746,3,24,12,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746, + 349,1,0,0,0,3747,3748,5,343,0,0,3748,3749,3,268,134,0,3749,3750, + 5,300,0,0,3750,3751,3,268,134,0,3751,351,1,0,0,0,3752,3753,5,345, + 0,0,3753,3758,3,356,178,0,3754,3755,5,4,0,0,3755,3757,3,356,178, + 0,3756,3754,1,0,0,0,3757,3760,1,0,0,0,3758,3756,1,0,0,0,3758,3759, + 1,0,0,0,3759,353,1,0,0,0,3760,3758,1,0,0,0,3761,3762,5,351,0,0,3762, + 3763,5,31,0,0,3763,3764,3,94,47,0,3764,355,1,0,0,0,3765,3766,3,372, + 186,0,3766,3767,5,20,0,0,3767,3768,3,358,179,0,3768,357,1,0,0,0, + 3769,3816,3,372,186,0,3770,3771,5,2,0,0,3771,3772,3,372,186,0,3772, + 3773,5,3,0,0,3773,3816,1,0,0,0,3774,3809,5,2,0,0,3775,3776,5,44, + 0,0,3776,3777,5,31,0,0,3777,3782,3,268,134,0,3778,3779,5,4,0,0,3779, + 3781,3,268,134,0,3780,3778,1,0,0,0,3781,3784,1,0,0,0,3782,3780,1, + 0,0,0,3782,3783,1,0,0,0,3783,3810,1,0,0,0,3784,3782,1,0,0,0,3785, + 3786,7,24,0,0,3786,3787,5,31,0,0,3787,3792,3,268,134,0,3788,3789, + 5,4,0,0,3789,3791,3,268,134,0,3790,3788,1,0,0,0,3791,3794,1,0,0, + 0,3792,3790,1,0,0,0,3792,3793,1,0,0,0,3793,3796,1,0,0,0,3794,3792, + 1,0,0,0,3795,3785,1,0,0,0,3795,3796,1,0,0,0,3796,3807,1,0,0,0,3797, + 3798,7,25,0,0,3798,3799,5,31,0,0,3799,3804,3,108,54,0,3800,3801, + 5,4,0,0,3801,3803,3,108,54,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0, + 3804,3802,1,0,0,0,3804,3805,1,0,0,0,3805,3808,1,0,0,0,3806,3804, + 1,0,0,0,3807,3797,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809, + 3775,1,0,0,0,3809,3795,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,360, + 180,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0,0,3814, + 3816,5,3,0,0,3815,3769,1,0,0,0,3815,3770,1,0,0,0,3815,3774,1,0,0, + 0,3816,359,1,0,0,0,3817,3818,5,233,0,0,3818,3834,3,362,181,0,3819, + 3820,5,258,0,0,3820,3834,3,362,181,0,3821,3822,5,233,0,0,3822,3823, + 5,24,0,0,3823,3824,3,362,181,0,3824,3825,5,14,0,0,3825,3826,3,362, + 181,0,3826,3834,1,0,0,0,3827,3828,5,258,0,0,3828,3829,5,24,0,0,3829, + 3830,3,362,181,0,3830,3831,5,14,0,0,3831,3832,3,362,181,0,3832,3834, + 1,0,0,0,3833,3817,1,0,0,0,3833,3819,1,0,0,0,3833,3821,1,0,0,0,3833, + 3827,1,0,0,0,3834,361,1,0,0,0,3835,3836,5,321,0,0,3836,3843,7,56, + 0,0,3837,3838,5,62,0,0,3838,3843,5,257,0,0,3839,3840,3,268,134,0, + 3840,3841,7,56,0,0,3841,3843,1,0,0,0,3842,3835,1,0,0,0,3842,3837, + 1,0,0,0,3842,3839,1,0,0,0,3843,363,1,0,0,0,3844,3849,3,370,185,0, + 3845,3846,5,4,0,0,3846,3848,3,370,185,0,3847,3845,1,0,0,0,3848,3851, + 1,0,0,0,3849,3847,1,0,0,0,3849,3850,1,0,0,0,3850,365,1,0,0,0,3851, + 3849,1,0,0,0,3852,3853,5,136,0,0,3853,3854,5,2,0,0,3854,3855,3,268, + 134,0,3855,3856,5,3,0,0,3856,3862,1,0,0,0,3857,3862,3,370,185,0, + 3858,3862,5,114,0,0,3859,3862,5,161,0,0,3860,3862,5,250,0,0,3861, + 3852,1,0,0,0,3861,3857,1,0,0,0,3861,3858,1,0,0,0,3861,3859,1,0,0, + 0,3861,3860,1,0,0,0,3862,367,1,0,0,0,3863,3864,3,370,185,0,3864, + 369,1,0,0,0,3865,3870,3,376,188,0,3866,3867,5,5,0,0,3867,3869,3, + 376,188,0,3868,3866,1,0,0,0,3869,3872,1,0,0,0,3870,3868,1,0,0,0, + 3870,3871,1,0,0,0,3871,371,1,0,0,0,3872,3870,1,0,0,0,3873,3874,3, + 376,188,0,3874,3875,3,374,187,0,3875,373,1,0,0,0,3876,3877,5,362, + 0,0,3877,3879,3,376,188,0,3878,3876,1,0,0,0,3879,3880,1,0,0,0,3880, + 3878,1,0,0,0,3880,3881,1,0,0,0,3881,3884,1,0,0,0,3882,3884,1,0,0, + 0,3883,3878,1,0,0,0,3883,3882,1,0,0,0,3884,375,1,0,0,0,3885,3888, + 3,378,189,0,3886,3888,3,396,198,0,3887,3885,1,0,0,0,3887,3886,1, + 0,0,0,3888,377,1,0,0,0,3889,3894,5,388,0,0,3890,3894,3,380,190,0, + 3891,3894,3,394,197,0,3892,3894,3,398,199,0,3893,3889,1,0,0,0,3893, + 3890,1,0,0,0,3893,3891,1,0,0,0,3893,3892,1,0,0,0,3894,379,1,0,0, + 0,3895,3896,7,57,0,0,3896,381,1,0,0,0,3897,3898,5,389,0,0,3898,383, + 1,0,0,0,3899,3901,5,362,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, + 3901,3902,1,0,0,0,3902,3940,5,383,0,0,3903,3905,5,362,0,0,3904,3903, + 1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3940,5,384,0,0, + 3907,3909,5,362,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910, + 1,0,0,0,3910,3940,7,58,0,0,3911,3913,5,362,0,0,3912,3911,1,0,0,0, + 3912,3913,1,0,0,0,3913,3914,1,0,0,0,3914,3940,5,382,0,0,3915,3917, + 5,362,0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0, + 3918,3940,5,379,0,0,3919,3921,5,362,0,0,3920,3919,1,0,0,0,3920,3921, + 1,0,0,0,3921,3922,1,0,0,0,3922,3940,5,380,0,0,3923,3925,5,362,0, + 0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3940, + 5,381,0,0,3927,3929,5,362,0,0,3928,3927,1,0,0,0,3928,3929,1,0,0, + 0,3929,3930,1,0,0,0,3930,3940,5,386,0,0,3931,3933,5,362,0,0,3932, + 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3940,5,385, + 0,0,3935,3937,5,362,0,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0,3937, + 3938,1,0,0,0,3938,3940,5,387,0,0,3939,3900,1,0,0,0,3939,3904,1,0, + 0,0,3939,3908,1,0,0,0,3939,3912,1,0,0,0,3939,3916,1,0,0,0,3939,3920, + 1,0,0,0,3939,3924,1,0,0,0,3939,3928,1,0,0,0,3939,3932,1,0,0,0,3939, + 3936,1,0,0,0,3940,385,1,0,0,0,3941,3942,5,319,0,0,3942,3953,3,318, + 159,0,3943,3953,3,24,12,0,3944,3953,3,314,157,0,3945,3946,7,59,0, + 0,3946,3947,5,197,0,0,3947,3953,5,198,0,0,3948,3949,5,269,0,0,3949, + 3953,3,330,165,0,3950,3951,5,96,0,0,3951,3953,5,82,0,0,3952,3941, + 1,0,0,0,3952,3943,1,0,0,0,3952,3944,1,0,0,0,3952,3945,1,0,0,0,3952, + 3948,1,0,0,0,3952,3950,1,0,0,0,3953,387,1,0,0,0,3954,3955,7,60,0, + 0,3955,389,1,0,0,0,3956,3959,3,388,194,0,3957,3959,5,198,0,0,3958, + 3956,1,0,0,0,3958,3957,1,0,0,0,3959,391,1,0,0,0,3960,3963,5,382, + 0,0,3961,3963,3,388,194,0,3962,3960,1,0,0,0,3962,3961,1,0,0,0,3963, + 393,1,0,0,0,3964,3965,7,61,0,0,3965,395,1,0,0,0,3966,3967,7,62,0, + 0,3967,397,1,0,0,0,3968,3969,7,63,0,0,3969,399,1,0,0,0,517,403,410, + 414,419,426,431,439,441,460,464,470,473,476,483,486,490,493,498, + 510,512,520,523,527,530,536,547,553,558,591,601,612,623,634,639, + 648,652,658,662,667,673,685,693,699,710,714,719,734,738,745,749, + 755,784,788,793,800,806,809,812,816,820,828,830,839,842,851,856, + 862,869,872,876,887,890,896,900,915,917,925,929,935,938,942,945, + 951,956,960,967,970,973,980,985,994,1002,1008,1011,1014,1020,1024, + 1029,1032,1036,1038,1046,1054,1057,1064,1067,1070,1079,1084,1090, + 1095,1098,1102,1105,1109,1137,1140,1148,1154,1157,1160,1165,1173, + 1178,1184,1190,1193,1200,1207,1215,1232,1259,1262,1268,1277,1286, + 1292,1297,1302,1309,1314,1319,1326,1334,1337,1341,1353,1357,1364, + 1480,1488,1496,1505,1515,1519,1522,1526,1532,1544,1556,1561,1570, + 1578,1583,1585,1593,1598,1602,1605,1613,1618,1627,1632,1635,1640, + 1644,1649,1651,1655,1664,1672,1678,1689,1696,1705,1710,1713,1736, + 1738,1750,1757,1760,1767,1771,1777,1785,1792,1795,1803,1814,1825, + 1833,1839,1851,1858,1865,1877,1885,1891,1897,1900,1916,1923,1934, + 1943,1946,1955,1958,1967,1970,1979,1982,1985,1990,1992,1996,2007, + 2013,2019,2022,2024,2036,2040,2043,2047,2053,2057,2065,2069,2072, + 2075,2078,2082,2086,2091,2095,2098,2101,2104,2108,2113,2117,2120, + 2123,2126,2128,2134,2141,2146,2149,2152,2156,2166,2170,2172,2175, + 2179,2185,2189,2200,2210,2214,2226,2238,2253,2258,2264,2271,2287, + 2292,2305,2310,2318,2324,2328,2331,2336,2343,2349,2358,2368,2383, + 2388,2390,2395,2404,2417,2422,2426,2433,2438,2442,2445,2448,2462, + 2475,2480,2484,2487,2491,2497,2500,2507,2519,2530,2543,2554,2559, + 2567,2572,2586,2595,2598,2603,2610,2613,2619,2625,2628,2633,2638, + 2642,2648,2652,2655,2660,2663,2668,2672,2675,2678,2684,2689,2696, + 2699,2717,2719,2722,2733,2742,2749,2757,2764,2769,2772,2775,2783, + 2791,2797,2805,2813,2820,2827,2829,2842,2848,2850,2860,2866,2868, + 2876,2880,2889,2892,2898,2902,2904,2913,2925,2927,2934,2941,2947, + 2953,2955,2962,2970,2978,2984,2989,2996,3002,3005,3009,3011,3018, + 3027,3034,3044,3049,3053,3063,3070,3083,3085,3093,3095,3099,3107, + 3116,3122,3130,3135,3147,3152,3155,3161,3165,3170,3175,3180,3186, + 3207,3209,3220,3232,3244,3248,3257,3261,3279,3282,3290,3299,3308, + 3331,3347,3354,3357,3366,3370,3374,3386,3411,3418,3421,3436,3457, + 3461,3463,3473,3475,3485,3500,3502,3515,3519,3526,3531,3539,3544, + 3553,3585,3602,3606,3612,3618,3627,3631,3633,3640,3648,3656,3664, + 3672,3685,3692,3695,3702,3710,3718,3732,3737,3742,3745,3758,3782, + 3792,3795,3804,3807,3809,3812,3815,3833,3842,3849,3861,3870,3880, + 3883,3887,3893,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936, + 3939,3952,3958,3962 ]; private static __ATN: antlr.ATN; @@ -22508,6 +22556,15 @@ export class CreateTableLikeContext extends StatementContext { return this.getRuleContext(i, LocationSpecContext); } + public tableLifecycle(): TableLifecycleContext[]; + public tableLifecycle(i: number): TableLifecycleContext | null; + public tableLifecycle(i?: number): TableLifecycleContext[] | TableLifecycleContext | null { + if (i === undefined) { + return this.getRuleContexts(TableLifecycleContext); + } + + return this.getRuleContext(i, TableLifecycleContext); + } public KW_TBLPROPERTIES(): antlr.TerminalNode[]; public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -25788,6 +25845,15 @@ export class CreateTableClausesContext extends antlr.ParserRuleContext { return this.getRuleContext(i, CommentSpecContext); } + public tableLifecycle(): TableLifecycleContext[]; + public tableLifecycle(i: number): TableLifecycleContext | null; + public tableLifecycle(i?: number): TableLifecycleContext[] | TableLifecycleContext | null { + if (i === undefined) { + return this.getRuleContexts(TableLifecycleContext); + } + + return this.getRuleContext(i, TableLifecycleContext); + } public KW_OPTIONS(): antlr.TerminalNode[]; public KW_OPTIONS(i: number): antlr.TerminalNode | null; public KW_OPTIONS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -25874,6 +25940,39 @@ export class CreateTableClausesContext extends antlr.ParserRuleContext { } +export class TableLifecycleContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LIFECYCLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LIFECYCLE, 0)!; + } + public INTEGER_VALUE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.INTEGER_VALUE, 0)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_tableLifecycle; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTableLifecycle) { + listener.enterTableLifecycle(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTableLifecycle) { + listener.exitTableLifecycle(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTableLifecycle) { + return visitor.visitTableLifecycle(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PropertyListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -35865,6 +35964,9 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_LEADING(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LEADING, 0); } + public KW_LIFECYCLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LIFECYCLE, 0); + } public KW_LIKE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LIKE, 0); } diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index a653741..a304ff6 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -124,6 +124,7 @@ import { CtesContext } from "./SparkSqlParser.js"; import { NamedQueryContext } from "./SparkSqlParser.js"; import { TableProviderContext } from "./SparkSqlParser.js"; import { CreateTableClausesContext } from "./SparkSqlParser.js"; +import { TableLifecycleContext } from "./SparkSqlParser.js"; import { PropertyListContext } from "./SparkSqlParser.js"; import { PropertyContext } from "./SparkSqlParser.js"; import { PropertyKeyContext } from "./SparkSqlParser.js"; @@ -1652,6 +1653,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateTableClauses?: (ctx: CreateTableClausesContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.tableLifecycle`. + * @param ctx the parse tree + */ + enterTableLifecycle?: (ctx: TableLifecycleContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.tableLifecycle`. + * @param ctx the parse tree + */ + exitTableLifecycle?: (ctx: TableLifecycleContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.propertyList`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index 909a4e1..cec7c43 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -124,6 +124,7 @@ import { CtesContext } from "./SparkSqlParser.js"; import { NamedQueryContext } from "./SparkSqlParser.js"; import { TableProviderContext } from "./SparkSqlParser.js"; import { CreateTableClausesContext } from "./SparkSqlParser.js"; +import { TableLifecycleContext } from "./SparkSqlParser.js"; import { PropertyListContext } from "./SparkSqlParser.js"; import { PropertyContext } from "./SparkSqlParser.js"; import { PropertyKeyContext } from "./SparkSqlParser.js"; @@ -1099,6 +1100,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.tableLifecycle`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableLifecycle?: (ctx: TableLifecycleContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.propertyList`. * @param ctx the parse tree diff --git a/test/parser/hive/syntax/fixtures/createTable.sql b/test/parser/hive/syntax/fixtures/createTable.sql index f9536bb..aa08695 100644 --- a/test/parser/hive/syntax/fixtures/createTable.sql +++ b/test/parser/hive/syntax/fixtures/createTable.sql @@ -104,4 +104,17 @@ CREATE MANAGED TABLE managed_table ( name STRING COMMENT '名称' ) COMMENT '测试分桶' CLUSTERED BY(id) SORTED BY (id) INTO 4 BUCKETS STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'; -CREATE TABLE list_bucket_multiple (col1 STRING, col2 INT, col3 STRING) SKEWED BY (col1, col2) ON (('s1', 1), ('s3', 3), ('s13', 13), ('s78', 78)) STORED AS JSONFILE; \ No newline at end of file +CREATE TABLE list_bucket_multiple (col1 STRING, col2 INT, col3 STRING) SKEWED BY (col1, col2) ON (('s1', 1), ('s3', 3), ('s13', 13), ('s78', 78)) STORED AS JSONFILE; + +-- dtstack SparkSQL/HiveSQL lifecycle +CREATE TABLE IF NOT EXISTS t1 ( + id INT COMMENT '索引', + name STRING COMMENT '姓名', + age SMALLINT COMMENT '年龄' +) COMMENT "t1表" lifecycle 29; + +-- dtstack SparkSQL/HiveSQL lifecycle +CREATE MANAGED TABLE managed_table ( + id INT COMMENT 'ID', + name STRING COMMENT '名称' +) COMMENT '测试分桶' lifecycle 29 CLUSTERED BY(id) SORTED BY (id) INTO 4 BUCKETS STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'; diff --git a/test/parser/spark/syntax/fixtures/createDataSourceTable.sql b/test/parser/spark/syntax/fixtures/createDataSourceTable.sql index 3e0f314..f3e4eef 100644 --- a/test/parser/spark/syntax/fixtures/createDataSourceTable.sql +++ b/test/parser/spark/syntax/fixtures/createDataSourceTable.sql @@ -66,3 +66,10 @@ CREATE TABLE student_bucket ) SELECT * FROM tmpTable ); + +-- dtstack SparkSQL/HiveSQL lifecycle +CREATE TABLE IF NOT EXISTS t1 ( + id INT COMMENT '索引', + name STRING COMMENT '姓名', + age SMALLINT COMMENT '年龄' +) COMMENT "t1表" lifecycle 29; diff --git a/test/parser/spark/syntax/fixtures/createTableLike.sql b/test/parser/spark/syntax/fixtures/createTableLike.sql index 366bd6e..2d55960 100644 --- a/test/parser/spark/syntax/fixtures/createTableLike.sql +++ b/test/parser/spark/syntax/fixtures/createTableLike.sql @@ -22,3 +22,11 @@ CREATE TABLE Student_Duple like Student ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS TEXTFILE TBLPROPERTIES ('owner'='xxxx'); + + + +-- dtstack SparkSQL/HiveSQL lifecycle +CREATE TABLE Student_Duple like Student + ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' + STORED AS TEXTFILE + TBLPROPERTIES ('owner'='xxxx') lifecycle 29;